Fix crashes in GC in "emacs -nw".
[bpt/emacs.git] / src / ChangeLog
CommitLineData
37dcfea0
EZ
12010-04-19 Eli Zaretskii <eliz@gnu.org>
2
3 * xdisp.c (display_line): Don't write beyond the last glyph row in
4 the desired matrix. Fixes a crash in "emacs -nw", see
5 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
6 and
7 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
8
e9515805
SM
92010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
10
11 * alloc.c (Fpurecopy): Hash-cons if requested.
12 (syms_of_alloc): Update purify-flag docstring.
13
22aa44a8
JD
142010-04-18 Jan Djärv <jan.h.d@swipnet.se>
15
16 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
17 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
18
ebb5722e
EZ
192010-04-17 Eli Zaretskii <eliz@gnu.org>
20
21 Fix a crash when an NSM character is inserted at BEGV.
22
23 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
24 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
25 NEUTRAL_B or UNKNOWN_BT.
26
0f4442ef
EZ
272010-04-16 Eli Zaretskii <eliz@gnu.org>
28
29 * xdisp.c (set_cursor_from_row): Don't consider possibility of
30 other rows with cursor unless they are different from this row and
31 this row is part of a continued line. (Bug#5943)
32
7d4e45f8
DN
332010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
34
35 * s/freebsd.h: Restore osreldate.h include.
36 Suggested by Naohiro Aota.
37
5ba5ec85
J
382010-04-16 Jan Djärv <jan.h.d@swipnet.se>
39
40 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
41
20af301d
CY
422010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
43
44 * s/cygwin.h: Avoid linking against static libgcc.
45
a4b000fb
JL
462010-04-15 Juri Linkov <juri@jurta.org>
47
48 * window.c: Add Qscroll_command.
49 Remove Vscroll_preserve_screen_position_commands.
50 (window_scroll_pixel_based, window_scroll_line_based): Check the
51 `scroll-command' property on the last command instead of searching
52 the last command in Vscroll_preserve_screen_position_commands.
53 (syms_of_window): Initialize and staticpro `Qscroll_command'.
54 Put Qscroll_command property on Qscroll_up and Qscroll_down.
55 (scroll-preserve-screen-position): Doc fix.
56 (Vscroll_preserve_screen_position_commands): Remove variable.
57
bc319ba4
DN
582010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
59
6bb24457
DN
60 * xdisp.c (message): Do not use NO_ARG_ARRAY.
61
19d4c244
DN
622010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
63
64 Reduce cpp use in Makefile.in.
65 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
66 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
67 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
68 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
69 (CRT0_COMPILE): Remove, inline it in the only user.
70
32129746
JL
712010-04-14 Juri Linkov <juri@jurta.org>
72
73 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
74 `scroll-up-command' and `M-v' from `scroll-down' to
75 `scroll-down-command'.
76
9013a7f8
JL
772010-04-14 Juri Linkov <juri@jurta.org>
78
79 * window.c (Vscroll_preserve_screen_position_commands): New variable
80 with the default value as the list of Qscroll_down and Qscroll_up.
81 (window_scroll_pixel_based, window_scroll_line_based): Search the
82 last command in the list Vscroll_preserve_screen_position_commands
83 instead of comparing with Qscroll_up and Qscroll_down.
84
4bef8d26
JD
852010-04-13 Jan Djärv <jan.h.d@swipnet.se>
86
92848133
JD
87 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
88 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
89 does that.
90
4bef8d26
JD
91 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
92 to zero.
93
58b963f7
SM
942010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
95
84164a0d
SM
96 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
97
2b0a91e7
SM
98 Try to solve the problem of spurious EOF chars in long lines of text
99 sent to interactive subprocesses.
100 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
101 (system_process_attributes): Remove unused var `ttotal'.
102 * process.c (send_process): Don't bother breaking long line with EOF
103 chars when talking to ttys any more.
104 (wait_reading_process_output): Output a warning when called in such
105 a way that it could block without being interruptible.
106
58b963f7
SM
107 Try to detect file modification within the same second.
108 * buffer.h (struct buffer): New field modtime_size.
109 * buffer.c (reset_buffer): Initialize it.
110 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
111 (Fverify_visited_file_modtime): Check it.
112 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
113 (Fset_visited_file_modtime): Set (or clear) it.
114
01f5787b
SM
1152010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
116
117 * process.c (status_notify): Remove unused var `ro'.
118
83725342
JD
1192010-04-12 Jan Djärv <jan.h.d@swipnet.se>
120
121 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
122 more than one visual (Bug#5938).
123
b9465836
DN
1242010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
125
126 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE): Undefine.
127
8d9c8ece
DN
1282010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
129
b1f52161
DN
130 Remove C_SWITCH_SYSTEM_TEMACS.
131 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
132 (malloc, realloc, free): Use emacs, not temacs for conditional
133 definition.
134
135 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
136 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
137
8d9c8ece
DN
138 Use autoconf, not cpp for some variables.
139 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
140 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
141 (ALL_CFLAGS): Use them as make variables.
142 (really-lwlib, really-oldXMenu): Do not pass them.
143
1ecb2d3f
JD
1442010-04-11 Jan Djärv <jan.h.d@swipnet.se>
145
146 * xmenu.c (apply_systemfont_to_dialog): New.
147 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
148
3a4fa2f2
SM
1492010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
150
97e53006
SM
151 * process.c (exec_sentinel): Preserve current-buffer.
152
3a4fa2f2
SM
153 * process.c (read_process_output): Move the save-current-buffer to
154 apply to both the filter and the non-filter branches.
155
88df7221
DN
1562010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
157
158 * s/msdos.h (UNEXEC): New definition.
159
5634ff85
YM
1602010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
161
6eff5c3d
YM
162 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
163 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
164
165 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
166 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
167 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
168 TRY_WINDOW_CHECK_MARGINS.
169
170 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
5b253e9c
YM
171 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
172 width only when it is for padding.
5634ff85 173
b13aef54
J
1742010-04-09 Jan Djärv <jan.h.d@swipnet.se>
175
176 * xfns.c (Fx_show_tip): Call try_window in a loop until
177 fonts_changed_p is zero (Bug#2423).
178
21d28484
EZ
1792010-04-08 Eli Zaretskii <eliz@gnu.org>
180
181 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
182 the end of TEXT_AREA. (Bug#5856)
183
0269ef77
JD
1842010-04-08 Jan Djärv <jan.h.d@swipnet.se>
185
186 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
187 HAVE_GCONF.
188
5930fe97
EZ
1892010-04-08 Eli Zaretskii <eliz@gnu.org>
190
191 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
192 prev.orig_type, for resolving type of NSM. (Bug#5858)
193
99852628
JD
1942010-04-08 Jan Djärv <jan.h.d@swipnet.se>
195
196 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
197 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
198 in current_font.
199 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
200 (Ffont_get_system_normal_font, xsettings_get_system_normal_font): New
201 functions.
202 (syms_of_xsettings): Initialize current_font. defsubr
203 Sfont_get_system_normal_font.
204
205 * xsettings.h (Ffont_get_system_normal_font,
206 xsettings_get_system_normal_font): Declare.
207
208 * xfns.c (extern xlwmenu_default_font): Remove.
209 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
210 to xlwmenu.c.
211
212 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
213 menu items in UTF-8.
214
215 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
216 (apply_systemfont_to_menu): New function.
217 (set_frame_menubar, create_and_show_popup_menu): Call
218 apply_systemfont_to_menu.
219
7fc874c4
J
2202010-04-07 Jan Djärv <jan.h.d@swipnet.se>
221
222 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
223 FRAME_LINE_TO_PIXEL_Y.
224
225 * xterm.c (x_set_window_size_1): Don't add border_width/height to
226 pixelwidth/height.
227
863bf481
DN
2282010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
229
5e5a3b92
DN
230 Simplify code for HP machines.
231 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
232 for GNU_LINUX, not needed.
233 (UNEXEC, NEED_BSDTTY): Move definitions...
234 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
235
863bf481
DN
236 * m/iris4d.h (UNEXEC): Move definition ...
237 * s/irix6-5.h (UNEXEC): ... here.
238
3e6bec3b
JD
2392010-04-04 Jan Djärv <jan.h.d@swipnet.se>
240
241 * xfns.c (set_machine_and_pid_properties): New function.
242 (Fx_create_frame): Call set_machine_and_pid_properties.
243
2912322b
SM
2442010-04-03 Eli Zaretskii <eliz@gnu.org>
245
1502b819
EZ
246 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char): Check
247 bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
248 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
249
2912322b
SM
250 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
251 in this function. (Bug#5703)
252
2532010-04-03 Chong Yidong <cyd@stupidchicken.com>
254
255 * nsterm.h: Fix last change.
256
c435b432
DN
2572010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
258
a568f507
DN
259 * m/intel386.h (NO_REMAP): Move definition ...
260 * s/msdos.h (NO_REMAP): ... here.
261
4cd9f6c2
DN
262 * m/vax.h (CRT0_DUMMIES): Remove, unused.
263
c435b432
DN
264 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
265 used on those platforms.
266
42a2c622
DN
2672010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
268
269 Remove extern errno declarations.
270 * xterm.c:
271 * xrdb.c:
272 * w32term.c:
273 * unexec.c:
274 * unexaix.c:
275 * sysdep.c:
276 * process.c:
277 * lread.c:
278 * keyboard.c:
279 * floatfns.c:
280 * filelock.c:
281 * fileio.c:
282 * emacs.c (main):
283 * ecrt0.c:
284 * dispnew.c:
285 * callproc.c:
286 * buffer.c: Remove errno extern declarations.
287 * s/netbsd.h (NEED_ERRNO): Remove.
288
8224f93d
DN
2892010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
290
291 Remove all uses of LIBX11_SYSTEM.
292 * Makefile.in (LIBX11_SYSTEM): Remove.
293 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
294 instead.
295
814062c7
EZ
2962010-04-01 Eli Zaretskii <eliz@gnu.org>
297
ed68db4d
EZ
298 Remove support for DJGPP v1.x (bug#5813).
299
300 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
8224f93d
DN
301 * s/msdos.h:
302 * unexec.c (make_hdr, copy_text_and_data):
303 * sysdep.c (wait_for_termination, sys_subshell):
ed68db4d 304 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
52f4d8d5
EZ
305 (IT_set_terminal_modes, __write, _rename, gethostname)
306 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
307 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
308 the value of __DJGPP__.
ed68db4d
EZ
309 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
310 compatibility code.
8224f93d
DN
311 * lread.c:
312 * gmalloc.c (memalign):
313 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
314 * emacs.c (main):
315 * dosfns.c (init_dosfns):
ed68db4d
EZ
316 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
317
52f4d8d5
EZ
3182010-04-01 Eli Zaretskii <eliz@gnu.org>
319
814062c7
EZ
320 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
321 string with `cursor' property comes from an `after-string'
322 overlay. (Bug#5816)
323
0dc2e11d
GM
3242010-04-01 Glenn Morris <rgm@gnu.org>
325
326 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
327 Define as Makefile variables.
328 (LIBX): Use above variables rather than directly using autoconf.
329
1d29df59
DN
3302010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
331
332 Clean up BSD_SYSTEM use.
333 * xterm.c:
334 * process.c:
335 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
336 for including <sys/ioctl.h>.
337 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
338 code is only used for MSDOS.
339
1546c559
JL
3402010-03-31 Juri Linkov <juri@jurta.org>
341
342 * image.c: Add `Qextension_data'.
343 (syms_of_image): Initialize and staticpro `Qextension_data'.
344 (Fimage_metadata): Rename from `Fimage_extension_data'.
345 (gif_load): Put GIF extension data to the property
346 `Qextension_data'.
347
b8a1d5a1
CY
3482010-04-05 Chong Yidong <cyd@stupidchicken.com>
349
350 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
351 terminal frames (Bug#5837).
352
6521c534
CY
3532010-03-31 Chong Yidong <cyd@stupidchicken.com>
354
355 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
356 * nsterm.h: Fix prototype.
357
52c30783
EZ
3582010-03-31 Eli Zaretskii <eliz@gnu.org>
359
360 * xdisp.c (highlight_trailing_whitespace): Support highlight of
361 trailing whitespace in right-to-left rows.
362
855a0da7
SM
3632010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
364
365 Get rid of the direct_output optimizations.
366 * keyboard.c (nonundocount): Remove extern declaration.
367 (command_loop_1): Remove brittle optimisation for cheap and
368 common operations.
369 * xdisp.c (redisplay_internal): Don't bother checking
370 redisplay_performed_directly_p any more.
371 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
372 any more.
373 * dispnew.c (redisplay_performed_directly_p)
374 (direct_output_for_insert, direct_output_forward_char):
375 * dispextern.h (redisplay_performed_directly_p)
376 (direct_output_for_insert, direct_output_forward_char): Remove.
377 * cmds.c (nonundocount): Make it static.
378
85738751 3792010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
a6d676d9
CY
380
381 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
382
85738751 3832010-03-31 Jan Djärv <jan.h.d@swipnet.se>
67fee863
JD
384
385 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
386 invisible (Bug#5766).
387
85738751 3882010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
9ae6e189 389
855a0da7
SM
390 * xdisp.c (x_consider_frame_title, update_window_cursor):
391 Remove HAVE_NS conditionals.
194d44e7 392 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
9ae6e189
CY
393
394 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
395 filename for the title.
396 (ns_set_doc_edited): Do nothing if the selected window is a
397 minibuffer window.
398
399 * nsterm.h: Add prototypes for ns_set_name_as_filename and
400 ns_set_doc_edited.
401
402 * nsterm.m: Remove unneeded prototype.
403
85738751 4042010-03-31 Glenn Morris <rgm@gnu.org>
25c72475
GM
405
406 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
407 in the DOC file. (Bug#5336)
408
85738751 4092010-03-31 Chong Yidong <cyd@stupidchicken.com>
f79a01db
CY
410
411 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
412
75d1428c
SM
4132010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
414
415 * window.c (keys_of_window): Remove redundant/overridden bindings.
416
82043cfb
EZ
4172010-03-30 Eli Zaretskii <eliz@gnu.org>
418
419 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
420 Restore original behavior when the iterator is not bidi_p.
421
b5dd0ae7
DN
4222010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
423
424 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
425
bd924a5d
EZ
4262010-03-30 Eli Zaretskii <eliz@gnu.org>
427
428 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
429 are outside the range of cached character positions.
430
3580374b
JB
4312010-03-30 Juanma Barranquero <lekktu@gmail.com>
432
433 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
434
a7b02820
EZ
4352010-03-30 Eli Zaretskii <eliz@gnu.org>
436
437 Initial support for bidirectional editing.
438
439 * Makefile.in (obj): Include bidi.o.
440 (bidi.o): New target.
441
442 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
443 ($(BLD)/bidi.$(O)): New target.
444
445 * bidi.c: New file.
446
447 * buffer.h (struct buffer): New members bidi_display_reordering
448 and bidi_paragraph_direction.
449
450 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
451 and bidi_paragraph_direction.
452 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
453 and bidi-paragraph-direction.
454 (Fbuffer_swap_text): Swap the values of
455 bidi_display_reordering and bidi_paragraph_direction.
456
457 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
458 (bidi_type_t, bidi_dir_t): New types.
459 (bidi_saved_info, bidi_stack, bidi_it): New structures.
460 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
461 prev_stop, base_level_stop, and eol_pos.
462 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
463 (IT_STACK_SIZE): Enlarge to 5.
464 (struct glyph_row): New member reversed_p.
465 <string_buffer_position>: Update prototype.
466 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
467 glyph_row if bidi_it.paragraph_dir == R2L.
468 (struct glyph): New members resolved_level and bidi_type.
469
470 * dispnew.c (direct_output_forward_char): Give up if we need bidi
471 processing or buffer's direction is right-to-left.
472 (prepare_desired_row): Preserve the reversed_p flag.
473 (row_equal_p): Compare the reversed_p attributes as well.
474
475 * xdisp.c (init_iterator): Initialize it->bidi_p. Call
476 bidi_init_it and set it->paragraph_embedding from the current
477 buffer's value of bidi_paragraph_direction.
478 (reseat_1): Initialize bidi_it.first_elt.
479 (set_iterator_to_next, next_element_from_buffer): Use the value of
480 paragraph_embedding to determine the paragraph direction.
481 (set_iterator_to_next): Under bidi reordering, call
482 bidi_get_next_char_visually. Call bidi_paragraph_init if the
483 new_paragraph flag is set in the bidi iterator.
484 (next_element_from_buffer): If bidi_it.first_elt is set,
485 initialize paragraph direction and find the first character to
486 display in the visual order. If reseated to a middle of a line,
487 prime the bidi iterator starting at the line's beginning. Handle
488 the situation where we overstepped stop_charpos due to
489 non-linearity of the bidi iteration. Likewise for when we back up
490 beyond the previous stop_charpos. When moving across stop_charpos,
491 record it in prev_stop.
492 (display_line): Set row->end and it->start for the next row to the
493 next character in logical order. Always extend reversed_p rows to
494 the end of line, even if they end at ZV. Copy the reversed_p flag
495 to the next glyph row. Keep calling set_cursor_from_row for
496 bidi-reordered rows even if we already have a possible candidate
497 for cursor position. Set row_end after all the row's glyphs have
498 been produced, by looping over the glyphs. Record the position
499 after EOL in it->eol_pos, and use it to set end_pos of the last
500 row produced for a continued line.
501 <Qright_to_left, Qleft_to_right>: New variables.
502 (syms_of_xdisp): Initialize and staticpro them.
503 (string_buffer_position_lim): New function.
504 (string_buffer_position): Most of code moved to
505 string_buffer_position_lim. Last argument and return value are
506 now EMACS_INT; all callers changed.
507 (set_cursor_from_row): Rewritten to support bidirectional text and
508 reversed glyph rows.
509 (text_outside_line_unchanged_p, try_window_id): Disable
510 optimizations if we are reordering bidirectional text and the
511 paragraph direction can be affected by the change.
512 (append_glyph, append_composite_glyph)
513 (produce_image_glyph, append_stretch_glyph): Set the
514 resolved_level and bidi_type members of each glyph.
515 (append_glyph): If the glyph row is reversed, prepend the glyph
516 rather than appending it.
517 (handle_stop_backwards): New function.
518 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
519 (reseat): call handle_stop_backwards to recompute prev_stop and
520 base_level_stop for the new position.
521 (handle_invisible_prop): Under bidi iteration, skip invisible text
522 using bidi_get_next_char_visually. If we are `reseat'ed, init the
523 paragraph direction. Update IT->prev_stop after skipping
524 invisible text.
525 (move_it_in_display_line_to): New variables prev_method
526 and prev_pos. Compare for strict equality in
527 BUFFER_POS_REACHED_P.
528 (try_cursor_movement): Examine all the candidate rows that occlude
529 point, to return the best match. If rows are bidi-reordered
530 and point moved backwards, back up to the row that is not a
531 continuation line, and start looking for a suitable row from
532 there.
533
534 * term.c (append_glyph): Reverse glyphs by pre-pending them,
535 rather than appending, if the glyph_row's reversed_p flag is set.
536 Set the resolved_level and bidi_type members of each glyph.
537
538 * .gdbinit (pbiditype): New command.
539 (pgx): Use it to display bidi level and type of the glyph.
540 (pitx): Display some bidi information about the iterator.
541 (prowlims, pmtxrows): New commands.
542
32a8894e
DN
5432010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
544
545 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
546 * s/usg5-4.h (LIBS_DEBUG):
547 * s/irix6-5.h (C_DEBUG_SWITCH):
548 * s/gnu-linux.h (LIBS_DEBUG):
549 * s/darwin.h (LIBS_DEBUG):
550 * s/bsd-common.h (LIBS_DEBUG):
551 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
552 * m/iris4d.h (LIBS_DEBUG):
553 * m/hp800.h (LIBS_DEBUG): Remove definitions.
554
555 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
556 (LIBS_DEBUG): Remove definition.
557
649dbf36
CY
5582010-03-27 Chong Yidong <cyd@stupidchicken.com>
559
560 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
561 Windows.
562
cad4261f
YM
5632010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
564
565 * process.c (Fmake_network_process): Don't call turn_on_atimers around
566 `connect' (Bug#5723).
567
cd591dbc
HE
5682010-03-25 Helmut Eller <eller.helmut@gmail.com>
569
570 * process.c (Fmake_network_process): Call `select' for interrupted
571 `connect' rather than creating new socket (Bug#5173).
572
e867cb5d 5732010-03-24 Jan Djärv <jan.h.d@swipnet.se>
93318cbd
JD
574
575 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
576
577 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
578
579 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
580
e867cb5d 5812010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
ad13a3ee
YM
582
583 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
584 XLoadQueryFont.
585
e867cb5d 5862010-03-24 Kenichi Handa <handa@m17n.org>
fbdc1721
KH
587
588 * coding.c (decode_coding_ccl): Fix previous change for the
589 multibyte case.
fb608df3
KH
590 (encode_coding_ccl): Don't setup ccl program here. Fix for the
591 case that the output buffer is fullfilled.
592 (encode_coding): Setup ccl program here.
fbdc1721 593
e867cb5d 5942010-03-24 Andreas Politz <politza@fh-trier.de> (tiny change)
35cd7cd6
CY
595
596 * editfns.c (Fformat): Account for string precision when computing
597 field width (Bug#5710).
598
5845f0ed
DN
5992010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
600
814fb708
DN
601 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
602
5845f0ed
DN
603 Simplify LIBS_MACHINE definitions.
604 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
605 * m/iris4d.h (LIBS_MACHINE): Likewise.
606 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
607 * s/aix4-2.h (LIBS_SYSTEM): ... here.
38e3487c 608 * s/netbsd.h: Remove commented out code.
5845f0ed 609
b7064064
DN
6102010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
611
df7734b2
DN
612 Remove dead code dealing with POSIX_SIGNALS.
613 * atimer.c (set_alarm): Remove dead code, all USG systems define
614 POSIX_SIGNALS.
615 * data.c (arith_error): Likewise.
616 * keyboard.c (input_available_signal, handle_user_signal)
617 (interrupt_signal): Likewise.
618 * process.c (sigchld_handler): Likewise.
619 (create_process): Remove if 0 code. Remove HPUX conditional when
620 !defined (POSIX_SIGNALS), it cannot be true.
621 * syssignal.h: Remove USG5_4 and USG conditionals when
622 !POSIX_SIGNALS, they cannot be true.
623
b7064064
DN
624 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
625 NO_SOCK_SIGIO, not used anymore.
626
55da5ee3
DN
6272010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
628
0be96e3a
DN
629 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
630 support vax on BSDs.
631
55da5ee3
DN
632 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
633 * s/aix4-2.h (ORDINARY_LINK): ... here.
634
c0282183
AS
6352010-03-21 Andreas Schwab <schwab@linux-m68k.org>
636
82c3d67a
AS
637 * Makefile.in (abs_builddir): Define.
638 (bootstrap_exe): Use it.
639 (VPATH): Use $(srcdir) instead of @srcdir@.
c0282183 640
3613edce
SM
6412010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
642
643 * Makefile.in (bootstrap_exe): Use an absolute name.
644
7f110ddc
DN
6452010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
646
22e87574
DN
647 Remove support for old GNU/Linux using libc version 5.
648 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
649 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
650
05a670e6
DN
651 Consolidate redundant definitions in s/bsd-common.h.
652 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
653 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
654 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
655 doing it in all files that include this one.
656 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
657 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
658 (LDAV_SYMBOL, KERNEL_FILE): Remove.
659 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
660 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
661 (LDAV_SYMBOL, KERNEL_FILE): Remove.
662 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
663 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
664 (LDAV_SYMBOL, KERNEL_FILE): Remove.
665
2968f561
DN
666 Consolidate redundant definitions.
667 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
668 it's undefined in all files that include this one.
669 (POSIX_SIGNALS): Define here instead of doing it in all files that
670 include this one.
671 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
672 (POSIX_SIGNALS): Do not define.
673 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
674 (POSIX_SIGNALS): Do not define.
675 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
676 (POSIX_SIGNALS): Do not define.
677
15d25dc0
DN
678 Remove support for old UNIX System V systems.
679 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
680 * s/usg-5-4-2.h: Remove.
681
07e339e4
DN
682 Remove support for Solaris on PPC and for old versions.
683 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
684 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
685 that cancel each other.
686 * s/sol2-3.h:
687 * s/sol2-4.h:
688 * s/sol2-5.h: Remove.
689 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
690 (NO_REMAP): Remove, unused.
691 (UNEXEC): Move definition ...
692 * s/aix4-2.h (UNEXEC): ... here.
693
7f110ddc
DN
694 * s/openbsd.h: Remove support for non-ELF and for systems that do
695 not support shared libraries.
696 * s/netbsd.h:
697 * s/freebsd.h: Likewise.
698
605f35cd
DN
6992010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
700
701 Remove non-working support for lynxos 3.0.
702 * s/lynxos.h: Remove file.
703
704 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
705 COFF_BSD_SYMBOLS, nothing defines it anymore.
706
aed71cf4
DN
7072010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
708
709 Remove obsolete uses of HAVE_SHM.
710 * emacs.c (standard_args):
711 (Fdump_emacs):
712 (syms_of_emacs): Remove code depending on HAVE_SHM.
713
714 * alloc.c: Remove HAVE_SHM dependent definition.
715
716 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
717
aded53ff
GM
7182010-03-18 Glenn Morris <rgm@gnu.org>
719
17284745
GM
720 * emacs.c (USAGE4): Hard-code bug address.
721 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
722 (bug_reporting_address): Remove.
723 (main): Don't call bug_reporting_address.
724
aded53ff
GM
725 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
726 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
727
303500aa
CY
7282010-03-15 Chong Yidong <cyd@stupidchicken.com>
729
730 * xfns.c (Fx_create_frame):
731 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
732 on left.
733
cef3058f
CY
7342010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
735
736 * editfns.c (Fformat): Account for string precision when computing
737 field width (Bug#5710).
738
a647d59d
CY
7392010-03-12 Chong Yidong <cyd@stupidchicken.com>
740
4fa42018
CY
741 * xfns.c (Fx_create_frame): Set default to Qright.
742
a647d59d
CY
743 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
744 all window systems.
745
6da23aaa
EZ
7462010-03-12 Eli Zaretskii <eliz@gnu.org>
747
a96f6398 748 These changes remove termcap.c from the build on Posix platforms.
83d02def 749 * Makefile.in (termcapobj): Move termcap.o from here...
6da23aaa
EZ
750 (MSDOS_OBJ): ...to here.
751 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
752 now identical to when LIBS_TERMCAP is defined.
753
754 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
755
756 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
757
a96f6398 758 * config.in: Regenerated. (See top-level ChangeLog.)
6da23aaa 759
288f9fc0
CY
7602010-03-10 Chong Yidong <cyd@stupidchicken.com>
761
762 * Branch for 23.2.
763
d48cd3f4
SM
7642010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
765
766 Cleanup setup of gl_state in various parts of the code.
767 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
768 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
769 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
770 (skip_chars):
771 * regex.c (regex_compile): Use it.
772 (re_compile_pattern): Don't set gl_state.current_syntax_table since
773 it's now set in regex_compile when/if we need it.
774
618db430
SM
7752010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
776
c0335e02
SM
777 Make it possible to C-g in a tight bytecode loop again (bug#5680).
778 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
779 (QUIT): Use it to consolidate code and remove redundancy.
780 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
781
254c06a8
SM
782 * regex.c (regex_compile): Setup gl_state as well.
783
618db430
SM
784 * syntax.c (skip_chars): Setup gl_state (bug#3823).
785 (in_classes): Use CONSP before XCAR/XCDR.
786
233f0c9f
CY
7872010-03-03 Chong Yidong <cyd@stupidchicken.com>
788
789 * keymap.c (Fwhere_is_internal): Use Fequal to compare
790 definitions, so that keyboard macros are correctly handled
791 (Bug#5481).
792
75f80e63
EZ
7932010-03-02 Eli Zaretskii <eliz@gnu.org>
794
795 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
796 text that could be relocated inside the call to emacs_mule_char.
797 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
798 (CODING_DECODE_CHAR): Add a comment describing its purpose.
799
dcfb9bc4
KH
8002010-03-02 Kenichi Handa <handa@m17n.org>
801
fc9a17bc
KH
802 * character.c (parse_str_as_multibyte): Fix handling of the
803 multibyte form of raw-bytes.
804 (str_as_multibyte): Likewise.
805
dcfb9bc4
KH
806 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
807 form of raw-bytes.
808
412c01b6
CY
8092010-02-28 Chong Yidong <cyd@stupidchicken.com>
810
811 * charset.c (load_charset_map_from_file)
812 (load_charset_map_from_vector): Zero out allocated
813 charset_map_entries before using them.
814
df7e1ea0
AS
8152010-02-27 Andreas Schwab <schwab@linux-m68k.org>
816
817 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
818
fe69a722
CY
8192010-02-27 Chong Yidong <cyd@stupidchicken.com>
820
4ed28cf4
CY
821 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
822 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
fe69a722 823
7379cfce
KH
8242010-02-26 Kenichi Handa <handa@m17n.org>
825
f88cc4d6
KH
826 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
827
7379cfce
KH
828 * xdisp.c (reseat_to_string): Fix previous change.
829
cf2fdcfb
CY
8302010-02-26 David Reitter <david.reitter@gmail.com>
831
832 * nsfont.m (nsfont_draw): ns_antialias_text should be a
833 Lisp_Object (Bug#4736).
834
cc6c7c75
KH
8352010-02-25 Kenichi Handa <handa@m17n.org>
836
837 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
838
32e737d7
JD
8392010-02-24 Jan Djärv <jan.h.d@swipnet.se>
840
841 * xterm.c (XTflash): Move declarations before statements.
842
843 * gtkutil.c (xg_get_gdk_display): Remove (unused).
844 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
845 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
846 (xg_create_tool_bar): Remove unused variables.
847 (x_wm_set_size_hint): Move declarations before statements.
848 (xg_create_frame_widgets): Remove variable grav,
849
676cae9f
CY
8502010-02-21 Chong Yidong <cyd@stupidchicken.com>
851
852 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
853
886cc2b8
SM
8542010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
855
856 * term.c (fatal): Add a final \n if needed (bug#5596).
857
ddb2d8e2
CY
8582010-02-18 Chong Yidong <cyd@stupidchicken.com>
859
860 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
861
2a4f8d3d
GM
8622010-02-18 Glenn Morris <rgm@gnu.org>
863
864 * callint.c (Finteractive): Doc fix.
865
ebaf11b6
KH
8662010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
867
886cc2b8
SM
868 * coding.c (record_conversion_result):
869 Handle CODING_RESULT_INSUFFICIENT_DST.
ebaf11b6
KH
870 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
871 memory allocation error.
872
d0396581
KH
8732010-02-17 Kenichi Handa <handa@m17n.org>
874
886cc2b8
SM
875 * coding.c (decode_coding_ccl): Don't setup ccl program here.
876 Fix for the case that the output buffer is fullfilled.
d0396581
KH
877 (decode_coding): Setup ccl program here. Keep looping when the
878 decoder stopped because the output buffer is
879 fullfilled (bug#5534).
880
881 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
882
98599f74
JD
8832010-02-13 Jan Djärv <jan.h.d@swipnet.se>
884
471e4f04 885 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
98599f74 886 bug #5571.
886cc2b8 887 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
471e4f04 888 overdrawn.
98599f74 889
182659ae
JD
8902010-02-10 Jan Djärv <jan.h.d@swipnet.se>
891
892 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
893 doing_interact here.
894 (ice_connection_closed): New function.
895 (x_session_check_input, smc_die_CB, ice_io_error_handler)
896 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
897 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
898 returns I/O error.
899 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
900 bug #5512.
901
9be32c4e 9022010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
14a225f9
CY
903
904 * nsfont.m (nsfont_open): The system's value for the font descent
905 is negative, so round it down to avoid clipping.
906
a2f3eb19
CY
9072010-02-06 Chong Yidong <cyd@stupidchicken.com>
908
909 * charset.c (load_charset_map_from_file)
910 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
953d248c 911 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
a2f3eb19 912
3088147c
CY
9132010-02-05 Chong Yidong <cyd@stupidchicken.com>
914
915 * charset.c (load_charset_map_from_file): Allocate large
916 charset_map_entries structure on the heap rather than the stack.
917 (Bug#5526).
918
b57d9029
KH
9192010-01-31 Kenichi Handa <handa@m17n.org>
920
921 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
115e4fd3 922 size in NAME is invalid, return -1 (Bug#5396).
b57d9029 923
c67d885b
CY
9242010-01-31 Chong Yidong <cyd@stupidchicken.com>
925
926 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
927 <deactivated@gmail.com> (Bug#3605).
928
8fab2362
CY
9292010-01-31 David De La Harpe Golden <david@harpegolden.net>
930
931 * fileio.c (Frename_file): Correctly rename symlinks to
932 directories (Bug#5496).
933
cb2a62f2
CY
9342010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
935
936 * nsterm.m (ns_ring_bell): Handle visible bell like X.
937
944c7a26
AS
9382010-01-30 Andreas Schwab <schwab@linux-m68k.org>
939
940 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
941
c024ac08
CY
9422010-01-29 Chong Yidong <cyd@stupidchicken.com>
943
944 * frame.c (DEFAULT_ROWS): Change default to 35.
945
946 * xfns.c (x_default_font_parameter): Change default XFT font to
947 monospace-10 (Bug#3643).
948
af93af83
EZ
9492010-01-29 Eli Zaretskii <eliz@gnu.org>
950
951 * w32inevt.c (key_event): Remove unnecessary comparison of
952 event->uChar.AsciiChar with 128.
953
ca0eb708
CY
9542010-01-28 Chong Yidong <cyd@stupidchicken.com>
955
b242dbfc
CY
956 * fileio.c (Frename_file): Fix last change (Bug#5487).
957
ca0eb708
CY
958 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
959
960 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
961
45d45af5
JD
9622010-01-28 Jan Djärv <jan.h.d@swipnet.se>
963
964 * xfns.c (Fx_create_frame): Remove window size matching code from
965 2010-01-15.
966 (x_get_current_desktop, x_get_desktop_workarea): Remove
967
7e233730
JR
9682010-01-27 Jason Rumney <jasonr@gnu.org>
969
970 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
a292592c 971 (key_event): Use unicode for characters 128 and higher (Bug#4567).
7e233730 972
86e893e3
KH
9732010-01-27 Kenichi Handa <handa@m17n.org>
974
975 * regex.c (analyse_first): Fix setting of fastmap for unibyte
c8b96b2a 976 pattern string (Bug#4209).
86e893e3 977
8719abec
CY
9782010-01-27 David De La Harpe Golden <david@harpegolden.net>
979
980 * fileio.c (Frename_file): Call copy-directory and
981 delete-directory for directories, in order to handle cross-device
982 renaming (Bug#3353).
983
844794c8
JD
9842010-01-25 Jan Djärv <jan.h.d@swipnet.se>
985
aa3e13b5 986 * xfns.c (Fx_create_frame): If frame height is too big, try
ac146f82 987 sizes 24 and 10. Bug #3643.
844794c8 988
bd4b5750
SM
9892010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
990
8dc1adf6 991 Try and fix bug#788, hopefully for real this time.
bd4b5750
SM
992 * keymap.c (shadow_lookup): Add `remap' arg.
993 (describe_map, describe_vector): Update calls to shadow_lookup.
994 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
995 `remapped' so this flag is applicable to `sequence'. Be careful to
8dc1adf6
SM
996 perform remapping during shadow_lookup check of remapped_sequences.
997
285d07e2
CY
9982010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
999
1000 * image.c (png_load): Use png_sig_cmp instead of the obsolete
1001 png_check_sig, which has been removed in libpng 1.4.
1002
c6d09b8d
CY
10032010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
1004
1005 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
1006 lacks this header file).
1007
3d782998
YM
10082010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1009
1010 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
1011 as in Emacs 22.
1012
2aff7c53
YM
10132010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1014
1015 * lisp.h (make_pure_string): String pointer arg now points to const.
1016
1017 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
1018 args now point to const.
1019
74327f7a
EZ
10202010-01-22 Eli Zaretskii <eliz@gnu.org>
1021
1022 * lread.c (Fload): Don't treat files without .elc extension as
1023 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
1024 them. (bug#5303)
1025
4d1e6632
KH
10262010-01-20 Kenichi Handa <handa@m17n.org>
1027
1028 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
1029 treat the source as actual byte sequence.
1030
1fdede8f
AM
10312010-01-19 Alan Mackenzie <acm@muc.de>
1032
1033 Fix spurious before-change-functions invocation from (insert ?\n).
194d44e7 1034 * textprop.c (set_text_properties): Rename parameter
1fdede8f
AM
1035 `signal_after_change_p' to `coherent_change_p', and make the
1036 invocation of `modify_region' conditional on it.
1037
67477f30
JD
10382010-01-19 Jan Djärv <jan.h.d@swipnet.se>
1039
1040 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
1041 for debug purpose.
1042 (syms_of_xsettings): Declare xft-settings.
1043
244b023e
CY
10442010-01-18 Chong Yidong <cyd@stupidchicken.com>
1045
1046 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
1047
617364fe
CY
10482010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
1049
1050 * xterm.c (event_handler_gdk): Block input (Bug#5037).
1051
4fe22cdf
CY
10522010-01-16 Chong Yidong <cyd@stupidchicken.com>
1053
1054 * emacs.c (standard_args): Adjust arg priorities to reflect how
1055 they are processed in startup.el.
1056
e118d2be
AS
10572010-01-16 Andreas Schwab <schwab@linux-m68k.org>
1058
1059 * Makefile.in (lisp, shortlisp): Update.
1060
523ae620
SM
10612010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
1062
1063 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
1064 code, link the new kboard into all_kboard before running Lisp code,
1065 and protect the new terminal with GCPRO (Bug#5365).
1066 (x_term_init): Remove unused var `atom'.
1067 (x_delete_display, x_delete_terminal): Remove unused var `i'.
1068
f0d13888
JD
10692010-01-15 Jan Djärv <jan.h.d@swipnet.se>
1070
1071 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
1072 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
1073 to find out usable size of the desktop. Don't make frames larger than
ac146f82 1074 this. Bug #3643.
f0d13888 1075
cc320f07
KH
10762010-01-15 Kenichi Handa <handa@m17n.org>
1077
1078 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
1079
7ffdf101
CY
10802010-01-15 Chong Yidong <cyd@stupidchicken.com>
1081
1082 * nsterm.m (Qnone): Define.
1083
1084 * nsfns.m (Qnone): Move definition to nsterm.m.
1085
d12bd917
KH
10862010-01-14 Kenichi Handa <handa@m17n.org>
1087
1088 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
1089 systems.
1090
d9a7c140
KH
10912010-01-14 Kenichi Handa <handa@m17n.org>
1092
1093 Make auto-composition work on all buffers even if they are
1094 fundamental mode.
1095
1096 * composite.c (Vauto_composition_mode): New variable.
1097 (composition_compute_stop_pos): Check Vauto_composition_mode
1098 instead of Vauto_composition_function.
1099 (composition_adjust_point, Ffind_composition_internal): Likewise.
1100 (syms_of_composite): Declare Lisp variable
1101 "auto-composition-mode" here.
1102
63286bb2
CY
11032010-01-13 Chong Yidong <cyd@stupidchicken.com>
1104
1105 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
1106 during call to vendor-specific-keysyms (Bug#5365).
1107
c2623ee7
YM
11082010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1109
1110 * keyboard.c (input_available_signal) [SYNC_INPUT]:
1111 Call SIGNAL_THREAD_CHECK (Bug#5333).
1112
1113 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
1114 Call SIGNAL_THREAD_CHECK.
1115
0b5397c2
SM
11162010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1117
1118 Try to fix bug#5314. This is probably not the final word, tho.
1119 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
1120 recent-auto-save-p as a side-effect.
1121 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
1122 * buffer.c (Fkill_buffer, reset_buffer):
1123 * editfns.c (Fsubst_char_in_region):
1124 * fileio.c (Finsert_file_contents, Fdo_auto_save)
1125 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
1126
dc954cb2
KH
11272010-01-13 Kenichi Handa <handa@m17n.org>
1128
1129 Display buffer name, etc. in mode line by composing correctly.
1130
1131 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
1132 STRING is not nil.
0b5397c2 1133 (display_mode_element): Adjust for the change of
dc954cb2
KH
1134 decode_mode_spec and display_line.
1135 (decode_mode_spec): Change arg MULTIBYTE to STRING.
1136 (display_string): Handle the case that STRING is non-null and
1137 LISP_STRING is not nil.
1138
0b5397c2
SM
1139 * xterm.c (x_draw_composite_glyph_string_foreground):
1140 Pay attention to s->face->overstrike.
dc954cb2
KH
1141
1142 * composite.c (composition_reseat_it): Don't check PT if STRING is
1143 non nil.
1144
4a00eaca
YM
11452010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1146
1147 * keyboard.c (read_char): Don't apply previous change when current
1148 buffer is unchanged by command execution.
1149
60abb287
JD
11502010-01-12 Jan Djärv <jan.h.d@swipnet.se>
1151
1152 * keyboard.c (read_char): Return after executing from special map.
1153
893db5bc
GM
11542010-01-12 Glenn Morris <rgm@gnu.org>
1155
1156 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
1157 bug-gnu-emacs rather than emacs-pretest-bug.
1158
4d03ece0
CY
11592010-01-11 Chong Yidong <cyd@stupidchicken.com>
1160
1161 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
1162 initializing the Lisp variables that depend on them.
1163
1df47e38
YM
11642010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1165
1166 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
1167 Clear areas that will not be updated after change of menu bar lines.
1168 Clear the menu bar window's current matrix when the window gets empty.
1169
2f1c6384
CY
11702010-01-09 Chong Yidong <cyd@stupidchicken.com>
1171
e398c61c
CY
1172 * intervals.h, textprop.c (extend_property_ranges): Return value
1173 and args changed. Discard properties that begin at or after the
1174 new end (Bug#5306).
1175
1176 * editfns.c (Fformat): Caller changed.
1177
e5a29a10
CY
1178 * nsterm.m (ns_set_default_prefs): Delete function.
1179 (syms_of_nsterm): Initialize ns_command_modifier,
1180 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
1181 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
1182
2f1c6384
CY
1183 * xdisp.c (pos_visible_p): Check for invisible text at the correct
1184 position (Bug#4040).
1185
d427a9fa
EZ
11862010-01-09 Eli Zaretskii <eliz@gnu.org>
1187
1188 * editfns.c (Ffloat_time): Doc fix.
1189
21b9df2f
JD
11902010-01-09 Jan Djärv <jan.h.d@swipnet.se>
1191
1192 * xfns.c (Fx_create_frame): Don't create frame larger than display
1193 by default bug#3643.
1194
4b00d3b1
YM
11952010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1196
1197 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
1198 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
1199 windows above internal border.
1200
1201 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
1202 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
1203 windows above internal border.
1204
1205 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
1206 tool bar windows specially.
1207
1208 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
1209
1210 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
1211 specially.
1212 (XTflash): Take account of menu bar height.
1213
1214 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
1215 specially.
1216
5075d853
JD
12172010-01-08 Jan Djärv <jan.h.d@swipnet.se>
1218
ac146f82 1219 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
5075d853
JD
1220 also be true before we can return early (bug #5339).
1221
474217c8
CY
12222010-01-06 David Reitter <david.reitter@gmail.com>
1223
1224 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
1225 (Fns_display_usable_bounds): Rewrite, computing bounds properly
1226 (Bug#3233).
1227
c0e6d47d
JD
12282010-01-06 Jan Djärv <jan.h.d@swipnet.se>
1229
d0cf45b7
JD
1230 * font.c (font_open_entity): Enable chache and call cached_font_ok
1231 for the driver if defined.
1232 (QCuser_spec): New symbol.
1233 (font_spec_from_name): Save name as user-spec.
1234 (font_load_for_lface): Keep user-spec instead of name.
1235 (font_open_by_name): Save name as user-spec.
1236 (syms_of_font): Initialize QCuser_spec.
b7f8e4f5 1237 (font_clear_prop): Clear name if it exists in font (bug#5157).
d0cf45b7
JD
1238
1239 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
1240 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
1241 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
1242
1243 * font.h (struct font_driver): Add cached_font_ok.
1244
c0e6d47d
JD
1245 * xterm.c (x_clear_frame): Queue draw for scroll bars.
1246
7c583cd8
JD
12472010-01-05 Jan Djärv <jan.h.d@swipnet.se>
1248
1249 * xterm.c (x_new_font): Move code for setting rows/cols before
1250 resizing ...
ac146f82 1251 (x_set_window_size): ... to here. Bug #2568.
7c583cd8
JD
1252
1253 * gtkutil.c (xg_clear_under_internal_border): New function.
0b5397c2
SM
1254 (xg_frame_resized, xg_frame_set_char_size):
1255 Call xg_clear_under_internal_border.
7c583cd8 1256 (xg_update_scrollbar_pos): Clear under old scroll bar position.
69e2f185 1257
03f77f0a
CY
12582010-01-05 Chong Yidong <cyd@stupidchicken.com>
1259
1260 * keyboard.c (read_key_sequence): Catch keyboard switch after
1261 making a new tty frame (Bug#5095).
1262
2a1ef5be
KH
12632010-01-05 Kenichi Handa <handa@m17n.org>
1264
1265 * fontset.c (fontset_find_font): Fix getting the frame pointer.
1266
e3eb1dae
SM
12672010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1268
1269 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
1270 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
1271 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
1272
777013f2
MA
12732010-01-03 Michael Albinus <michael.albinus@gmx.de>
1274
1275 * dbusbind.c (xd_add_watch): Improve debug message.
1276 (xd_remove_watch): Improve debug message. If DATA is the session
1277 bus, unset D-Bus session environment.
1278 (Fdbus_init_bus): Pass the bus as argument to
1279 dbus_connection_set_watch_functions. (Bug#5283)
7c583cd8 1280
8932b1c2
CY
12812010-01-01 Chong Yidong <cyd@stupidchicken.com>
1282
87231e2c
CY
1283 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
1284
4801c5fa
CY
1285 * lread.c (syms_of_lread): Make it clearer that these are the
1286 names of loaded files (Bug#5068).
1287
8932b1c2
CY
1288 * eval.c (run_hook_with_args): Handle the case where the global
1289 value has the obsolete single-function form (Bug#5026).
1290
11e3c684
CY
12912009-12-27 Chong Yidong <cyd@stupidchicken.com>
1292
1293 * minibuf.c (Fall_completions): Minor optimization.
1294
5b28ce35
EZ
12952009-12-26 Eli Zaretskii <eliz@gnu.org>
1296
5ce6e4f4
JB
1297 * .gdbinit (pgx): Fix display of composite glyphs.
1298 Display cmp.from and cmp.to as well.
1299 (pitx): Fix last change.
5b28ce35 1300
bcffff46
KH
13012009-12-25 Kenichi Handa <handa@m17n.org>
1302
1303 * composite.h (composition_adjust_point): Update prototype.
1304
1305 * composite.c (composition_reseat_it): Don't make a composition
1306 spanning over point.
1307 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
1308 composable characters.
1309 (composition_adjust_point): New arg NEW_PT. Callers changed.
1310
1311 * keyboard.c (command_loop_1): Force redisplay if the last point
1312 was within a composition.
1313 (adjust_point_for_property): Don't adjust point for automatic
1314 composition when called after buffer modification.
1315
3f670e9a
EZ
13162009-12-19 Eli Zaretskii <eliz@gnu.org>
1317
5ce6e4f4
JB
1318 * .gdbinit (pitx): Don't use enum names, use their values.
1319 Remove reference to non-existing value GET_FROM_COMPOSITION.
be996d82
EZ
1320 (pgx): Don't use enum names, use their values.
1321 (pitmethod): New helper command.
1322 (pitx): Use it to display iteration method.
1323 (pgrowit): New command.
1324
ad903955
EZ
1325 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
1326
3f670e9a
EZ
1327 Update dependencies in Makefile.in.
1328
1329 * Makefile.in (alloc.o): Depend on termhooks.h.
1330 (atimer.o): Depend on blockinput.h.
1331 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
1332 and frame.h.
1333 (callint.o): Depend on systime.h, coding.h, and composite.h.
1334 (callproc.o): Depend on buffer.h.
1335 (casefiddle.o): Don't depend on charset.h.
1336 (casetab.o): Depend on character.h.
1337 (ccl.o): Depend on composite.h.
1338 (chartab.o): Depend on ccl.h.
1339 (cm.o): Depend on dispextern.h.
1340 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
1341 (coding.o): Don't depend on $(INTERVALS_H).
1342 (composite.o): Don't depend on dispextern.h explicitly (it's in
1343 $(INTERVALS_H)). Depend on ccl.h.
1344 (data.o): Depend on systime.h, coding.h, composite.h,
1345 dispextern.h, font.h, and ccl.h.
1346 (dired.o): Depend on composite.h.
1347 (dispnew.o): Depend on coding.h. Don't depend explicitly on
1348 composite.h (it's in $(INTERVALS_H)).
1349 (doc.o): Depend on systime.h, coding.h, and composite.h.
1350 (editfns.o): Don't depend explicitly on dispextern.h.
1351 (emacs.o): Depend on frame.h and coding.h.
1352 (eval.o): Depend on coding.h, composite.h, and xterm.h.
1353 (fileio.o): Depend on frame.h and commands.h. Don't depend
1354 explicitly on dispextern.h.
1355 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
1356 composite.h.
1357 (fns.o): Don't depend on termhooks.h.
1358 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
1359 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
1360 coding.h, $(INTERVALS_H), window.h, xterm.h.
1361 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
1362 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
1363 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
1364 fontset.h, ccl.h, and ftfont.h.
1365 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
1366 (gtkutil.o): Depend on dispextern.h and composite.h.
1367 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
1368 termhooks.h, and ccl.h.
1369 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
1370 (intervals.o): Depend on systime.h and coding.h.
1371 (keyboard.o): Depend on composite.h and coding.h.
1372 (keymap.o): Depend on coding.h and frame.h.
1373 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
1374 (macros.o): Depend on systime.h, coding.h, and composite.h.
1375 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
1376 and atimer.h.
1377 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
1378 dispextern.h explicitly.
0b5397c2
SM
1379 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
1380 Don't depend explicitly on dispextern.h and composite.h.
3f670e9a
EZ
1381 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
1382 (regex.o): Don't depend on charset.h.
1383 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
1384 (search.o): Don't depend explicitly on composite.h.
1385 (sound.o): Depend on atimer.h and systime.h.
1386 (syntax.o): Don't depend explicitly on composite.h.
1387 (sysdep.o): Depend on coding.h and composite.h.
1388 (term.o): Depend on xterm.h and buffer.h.
1389 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
1390 (textprop.o): Don't depend on dispextern.h explicitly.
1391 (undo.o): Depend on dispextern.h.
1392 (window.o): Depend on coding.h and termhooks.h. Don't depend on
1393 dispextern.h and composite.h explicitly.
1394 (xdisp.o): Depend on ccl.h.
1395 (xfaces.o): Depend on coding.h and ccl.h.
1396 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
1397 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
1398 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
1399 ftfont.h.
1400 (xgselect.o): New dependency.
1401 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
1402 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
1403 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
1404 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
1405 (xsmfns.o): Depend on frame.h and dispextern.h.
1406 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
1407 sysselect.h.
1408
7a6f7fea
AS
14092009-12-19 Andreas Schwab <schwab@linux-m68k.org>
1410
1411 * font.c (Fclear_font_cache): Pass correct cache argument to
1412 font_clear_cache.
1413
f4c21026
AS
14142009-12-16 Andreas Schwab <schwab@linux-m68k.org>
1415
1416 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
1417 twice.
1418
f7ab0997
CY
14192009-12-15 Chong Yidong <cyd@stupidchicken.com>
1420
1421 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
1422 calling file-remote-p. Reported by Jim Meyering.
1423
fa8e045a
MA
14242009-12-15 Michael Albinus <michael.albinus@gmx.de>
1425
1426 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
777013f2 1427 avoid compiler warnings. (Bug #5217)
fa8e045a 1428
a63dba42
KH
14292009-12-14 Kenichi Handa <handa@m17n.org>
1430
1431 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
1432 in 8-bit encoding.
1433
5ce6e4f4 14342009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
36acb2a7
JD
1435
1436 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
1437 tooltip windows.
1438
223e5fc6
JD
14392009-12-13 Jan Djärv <jan.h.d@swipnet.se>
1440
36acb2a7
JD
1441 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
1442 Xatom_net_window_type.
1443
1444 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
1445 Xatom_net_window_type.
1446
b8f00677
JD
1447 * xterm.c (my_log_handler): New function.
1448 (x_term_init): Set my_log_handler as log handler during gtk_init
5ce6e4f4 1449 so we can filter out buggy messages. (Bug #5120).
b8f00677 1450
e5f0bc9a
JD
1451 * xterm.c (xg_scroll_callback): Parameter list changed,
1452 use parameter GtkScrollType to determine scroll/line/page.
1453 Only allow dragging if a button < 4 is grabbed (bug #5177).
1454 (xg_end_scroll_callback): New function.
1455 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
1456 xg_create_scroll_bar.
1457
1458 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
1459 (scroll_end_callback): Remove.
1460 (xg_create_scroll_bar): Add parameter end_callback, bind it to
1461 button-release-event. Replace value-changed event with change-value,
1462 bug #5177,
1463 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
1464 bug #5177.
1465
1466 * gtkutil.h (XG_LAST_SB_DATA): Remove.
1467 (xg_create_scroll_bar): Add GCallback end_callback.
1468
223e5fc6
JD
1469 * xftfont.c (QClcdfilter): New variable.
1470 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
1471 (syms_of_xftfont): Initialize QClcdfilter.
1472
3c055b77
JD
14732009-12-12 Jan Djärv <jan.h.d@swipnet.se>
1474
1475 * xsettings.c (struct xsettings): Add member seen.
1476 (parse_xft_settings): Update member seen with what we have read.
ba68c0b0 1477 Return non-zero if Xft-settings have been parsed, 0 otherwise.
3c055b77
JD
1478 (apply_xft_settings): Only update Xft settings with what member seen
1479 indicates as new.
1480
05fe33ff
EZ
14812009-12-12 Eli Zaretskii <eliz@gnu.org>
1482
1483 * dispextern.h (struct text_pos): Use EMACS_INT;
1484 (struct glyph): Use EMACS_INT for charpos.
1485 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
1486 region_beg_charpos, region_end_charpos,
1487 redisplay_end_trigger_charpos, and also for
1488 iterator_stack_entry.end_charpos and
1489 iterator_stack_entry.stop_charpos.
1490
e8d7886a
JD
14912009-12-12 Jan Djärv <jan.h.d@swipnet.se>
1492
5ce6e4f4 1493 * gtkutil.c (scroll_end_callback): New function (bug #5177).
e8d7886a
JD
1494 (xg_create_scroll_bar): Call scroll_end_callback on button release
1495 event (bug #5177).
1496 (xg_event_is_for_scrollbar): != replaced with ==.
1497
d0db2ec8
KH
14982009-12-12 Kenichi Handa <handa@m17n.org>
1499
1500 * ftfont.c (struct ftfont_info): New member matrix.
1501 (ftfont_open): Setup xftfont_info->matrix.
1502 (MFLTFontFT): New member matrix.
1503 (FLOOR, CEIL, ROUND): New macros.
1504 (ftfont_get_metrics): Handle matrix transformation.
1505 (ftfont_shape_by_flt): New arg matrix. Callers changed.
1506
1507 * xftfont.c (struct xftfont_info): New member matrix.
1508 (xftfont_open): Setup xftfont_info->matrix.
1509
15102009-12-10 Kenichi Handa <handa@m17n.org>
1511
1512 * xdisp.c (append_space_for_newline): Consider face-remapping.
1513
2cc7b62f
AS
15142009-12-09 Andreas Schwab <schwab@linux-m68k.org>
1515
b87dd913
AS
1516 * xsettings.c: Include "keyboard.h".
1517
eba5eb94
AS
1518 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
1519
2cc7b62f
AS
1520 Fix implicit function declarations.
1521 * cmds.c: Include "frame.h".
1522 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
1523 * frame.h: Move declaration of delete_frame outside of
1524 HAVE_WINDOW_SYSTEM.
1525
a4ef73c8
CY
15262009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
1527
1528 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
1529
1530 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
1531 GTK builds.
1532
944a300c
AS
15332009-12-07 Andreas Schwab <schwab@linux-m68k.org>
1534
1535 * unexelf.c (unexec): Don't search for .data twice.
1536
022eef62
CY
15372009-12-05 Chong Yidong <cyd@stupidchicken.com>
1538
426ac949
CY
1539 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
1540 if push failed.
1541 (handle_line_prefix): Set avoid_cursor_p here. Check return value
1542 of push_display_prop (Bug#5000).
1543
022eef62
CY
1544 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
1545 value of font_list_entities (Bug#5085).
1546
be95bee9
JB
15472009-12-04 Juanma Barranquero <lekktu@gmail.com>
1548
1549 Fix `string-to-number' to deal consistently with integers and floats.
1550 * lread.c (isfloat_string): New argument ignore_trailing to accept all
1551 trailing characters, not just whitespace.
1552 (read1): Pass new arg 0 to keep old behavior.
1553 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
1554 trailing chars, as it is already done for integers. Doc fixes.
1555 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
1556
24c2d7ce
EZ
15572009-12-04 Eli Zaretskii <eliz@gnu.org>
1558
0b5397c2
SM
1559 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
1560 Delete unused enumeration value.
24c2d7ce 1561
7e694795
EZ
15622009-12-03 Eli Zaretskii <eliz@gnu.org>
1563
1564 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
1565
84b31826
SM
15662009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
1567
1568 * process.c (Fmake_network_process): Fix up the tests for
1569 "connectionless socket", so they DTRT for seqpacket sockets as well.
1570
f00c449b
SM
15712009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
1572
1573 * process.c (Qseqpacket): New symbol.
1574 (HAVE_SEQPACKET): New macro.
1575 (Fmake_network_process): Accept new :type `seqpacket'.
1576 (init_process): Add `seqpacket' feature when applicable.
1577 (syms_of_process): Initialize Qseqpacket.
1578
8096a0ff
YM
15792009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1580
1581 * font.c (font_load_for_lface, font_open_by_name): Don't store name
1582 if entity is Qnil.
1583
3e0de07f
SM
15842009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
1585
1586 * print.c (print_preprocess): Preprocess the key_and_value table of
1587 hashtables, even tho they're "hidden" (bug#5082).
1588
abeafb2a
JD
15892009-11-29 Jan Djärv <jan.h.d@swipnet.se>
1590
1591 * frame.c (frame_make_pointer_invisible)
1592 (frame_make_pointer_visible): Declare f before statements.
1593
4bf47195
EZ
15942009-11-28 Eli Zaretskii <eliz@gnu.org>
1595
1596 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
1597 omitted dependencies on lisp.h.
1598
c525b3f2
JD
15992009-11-27 Jan Djärv <jan.h.d@swipnet.se>
1600
ece2d4ed
JD
1601 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
1602 is NULL.
1603
1604 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
1605
1606 * frame.c (frame_make_pointer_invisible)
3e0de07f 1607 (frame_make_pointer_visible): Just return if there isn't any selected
ece2d4ed
JD
1608 frame.
1609
c525b3f2
JD
1610 * search.c (simple_search): Remove warning by making *p const.
1611
2f00e299
DN
16122009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
1613
1614 * xdisp.c (power_letter): Remove duplicate const.
1615
084b049b
JD
16162009-11-25 Jan Djärv <jan.h.d@swipnet.se>
1617
a1fadc6f
JD
1618 * term.c (delete_tty): Remove check for last terminal (bug#4970).
1619
5ce6e4f4 1620 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
084b049b
JD
1621 defaults (bug #5025).
1622
28259cac
SM
16232009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
1624
1625 * insdel.c (adjust_markers_for_delete): Move it in the
1626 right direction! (bug#4803)
1627
e8e14166
YM
16282009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1629
1630 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
1631
1632 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
1633
86677b58
GM
16342009-11-24 Glenn Morris <rgm@gnu.org>
1635
1636 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
1637
581e51e8
JD
16382009-11-23 Jan Djärv <jan.h.d@swipnet.se>
1639
cfc86c7a
JD
1640 * Makefile.in: Must create deps for ecrt0.o in its rule.
1641
581e51e8
JD
1642 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
1643 because that is what Gtk+ font dialog understands.
1644
1645 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
1646 of Fcopy_sequence.
1647 (font_open_by_name): Put name given into QCname for font-object returned.
1648
1649 * frame.c (x_set_font): Save original font name as frame parameter
1650 font-parameter.
1651
1652 * xsettings.c (set_default_xft_settings): New function.
1653 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
1654 is found.
1655
8b264ecb
AS
16562009-11-22 Andreas Schwab <schwab@linux-m68k.org>
1657
1658 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
1659 searching backwards through multibyte buffer.
1660
872870b2
JD
16612009-11-21 Jan Djärv <jan.h.d@swipnet.se>
1662
1663 * xterm.c: #include xgselect.h.
1664 (x_initialize): Call xgselect_initialize.
1665
1666 * xsettings.c (something_changedCB): C++ comments => C comments.
1667 (init_gconf): Do not deal with any GLib file descriptors, xg_select
1668 does that now.
1669
1670 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
1671 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
1672 (scroll_bar_button_cb): Remove.
5ce6e4f4 1673 (create_menus): C++ comments => C comments. Don't bind grab-notify
872870b2
JD
1674 event.
1675 (xg_create_scroll_bar): Don't bind button-press-event and
1676 button-release-event.
1677
1678 * process.c: Include xgselect.h if defined (USE_GTK) ||
1679 defined (HAVE_GCONF).
1680 (wait_reading_process_output): Call xg_select for the same condition.
1681
1682 * xgselect.c (xg_select): New function to better integrate with
1683 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
1684
1685 * xgselect.h: New file, declare xg_select, xgselect_initialize.
1686
1687 * Makefile.in (XOBJ): Add xgselect.o.
1688
62a6e103
AS
16892009-11-21 Andreas Schwab <schwab@linux-m68k.org>
1690
0b5397c2
SM
1691 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
1692 Remove ignored second argument. All callers changed.
62a6e103
AS
1693 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
1694 (RE_STRING_CHAR_AND_LENGTH): Likewise.
1695 * xdisp.c (string_char_and_length): Likewise.
1696
b0ca0f33
DN
16972009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
1698
1699 * xterm.c (x_new_font):
1700 * print.c (print_object):
1701 * cmds.c (Fself_insert_command): Move declarations before statements.
1702
dd5a6279
CY
17032009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
1704
1705 * s/cygwin.h: Remove unneeded linker flags.
1706
4a8e097d
JD
17072009-11-20 Jan Djärv <jan.h.d@swipnet.se>
1708
0d1d0d26
JD
1709 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
1710
1711 * xsettings.h: Declare xsettings_get_system_font.
1712
1713 * xsettings.c (xsettings_get_system_font): New function.
1714 (init_gconf): No use initiating gconf unless we have Xft also.
1715 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
1716 HAVE_GCONF.
1717
4a8e097d
JD
1718 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
1719 add a blank entry so it doesn't collapse into nothing.
1720
8ab1650e
SM
17212009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
1722
1723 * lread.c (Funintern): Comment out last change.
1724
82c602f0
RS
17252009-11-19 Richard Stallman <rms@gnu.org>
1726
1727 * lread.c (Funintern): Error if symbol is t or nil.
1728
87e32266
SM
17292009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
1730
1731 * insdel.c (make_gap_larger): Don't make as many assumptions about the
1732 representation of Lisp integers.
1733 Reported by MJ Chan <mjchan.inbox@gmail.com>.
1734
1b9ac145
AS
17352009-11-17 Andreas Schwab <schwab@linux-m68k.org>
1736
1737 * lisp.h: Remove declaration of Ffont_get_system_font.
1738 * xfns.c: Move include of "xsettings.h".
1739 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
1740
dfb3c4c6
JD
17412009-11-17 Jan Djärv <jan.h.d@swipnet.se>
1742
87e32266
SM
1743 * xsettings.c (something_changedCB, Ffont_get_system_font):
1744 Check use_system_font.
dfb3c4c6
JD
1745 (syms_of_xsettings): DEFVAR font-use-system-font.
1746
9370c1d8
AS
17472009-11-17 Andreas Schwab <schwab@linux-m68k.org>
1748
25fe851a
AS
1749 * xfns.c (x_default_font_parameter): Remove dead assignment.
1750
9370c1d8
AS
1751 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
1752
637fa988
JD
17532009-11-17 Jan Djärv <jan.h.d@swipnet.se>
1754
87e32266 1755 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
21050de1 1756 not have FC_LCD_*. #define them if not there.
a6eb20d8 1757
87e32266 1758 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
a6eb20d8 1759
637fa988
JD
1760 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
1761
1762 * xterm.c (handle_one_xevent): Call xft_settings_event for
1763 ClientMessage, PropertyNotify and DestroyNotify.
1764 (x_term_init): If we have XFT, get DPI from Xft.dpi.
1765 Call xsettings_initialize.
1766
1767 * xftfont.c (xftfont_fix_match): New function.
1768 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
1769 Call xftfont_fix_match after XftFontMatch.
1770
1771 * xfont.c (xfont_driver): Initialize all members.
1772
87e32266
SM
1773 * xfns.c (x_default_font_parameter):
1774 Try font from Ffont_get_system_font.
637fa988
JD
1775 Do not get font from x_default_parameter if we got one from
1776 Ffont_get_system_font.
87e32266 1777 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
637fa988
JD
1778
1779 * w32font.c (w32font_driver): Initialize all members.
1780
1781 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
1782
1783 * lisp.h: Declare syms_of_xsettings.
1784
87e32266
SM
1785 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
1786 Handle CONFIG_CHANGED_EVENT.
637fa988
JD
1787
1788 * ftfont.c (ftfont_filter_properties): New function.
1789
1790 * frame.c (x_set_font): Remove unused variable lval.
1791
87e32266 1792 * font.h (struct font_driver): Add filter_properties.
637fa988
JD
1793
1794 * font.c (font_put_extra): Don't return if val is nil, it means
1795 boolean option is off.
1796 (font_parse_fcname): Collect all extra properties in extra_props
1797 and call filter_properties for all drivers with extra_props and
1798 font as parameter.
87e32266
SM
1799 (font_open_entity): Do not use cache, it does not pick up new
1800 fontconfig settings like hinting.
637fa988
JD
1801 (font_load_for_lface): If spec had a name in it, store it in entity.
1802
1803 * emacs.c (main): Call syms_of_xsettings
1804
1805 * config.in: HAVE_GCONF is new.
1806
1807 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
1808 xsettings.o is new.
1809
5a942932
KH
18102009-11-17 Kenichi Handa <handa@m17n.org>
1811
1812 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
1813 back to the default font in case that no suitable font is found.
1814
b7c7a4d1
SM
18152009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
1816
1817 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
1818 Suggested by Chad Brown <yandros@mit.edu>.
1819 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
1820
072f1e39
JD
18212009-11-16 Jan Djärv <jan.h.d@swipnet.se>
1822
1823 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
1824
5d1e70a2
AS
18252009-11-14 Andreas Schwab <schwab@linux-m68k.org>
1826
87e32266 1827 * Makefile.in: Ignore errors from mkdir when creating deps directory.
5d1e70a2 1828
a53cfbe5
JD
18292009-11-14 Jan Djärv <jan.h.d@swipnet.se>
1830
473a99b7
JD
1831 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
1832 has a parent.
1833
a53cfbe5 1834 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
5ce6e4f4 1835 dependency files in deps/. Include those files into Makefile.
a53cfbe5
JD
1836
1837 * config.in: Generated (AUTO_DEPEND).
1838
f04bb9b2
MA
18392009-11-13 Michael Albinus <michael.albinus@gmx.de>
1840
b7c7a4d1 1841 * dbusbind.c (Vdbus_registered_objects_table): Rename from
f04bb9b2
MA
1842 Vdbus_registered_functions_table, because it contains also
1843 properties. Fix docstring.
b7c7a4d1 1844 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
f04bb9b2 1845
8f11f7ec
SM
18462009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
1847
1848 * alloc.c (mark_object): Don't reprocess marked strings.
1849 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
1850 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
1851
8a605fe8
KH
18522009-11-13 Kenichi Handa <handa@m17n.org>
1853
8f11f7ec 1854 * category.c (word_boundary_p): Adjust for the change of the
8a605fe8
KH
1855 semantics of Vword_combining_categories.
1856 (Vword_combining_categories): Describe the slight change of the
1857 semantics.
1858
241c4680
EZ
18592009-11-13 Eli Zaretskii <eliz@gnu.org>
1860
1861 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
1862
1863 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
1864
5d58e44c
SM
18652009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
1866
1867 * xdisp.c (syms_of_xdisp): Fix typo in last change.
1868
5e13f9d3
JB
18692009-11-12 Juanma Barranquero <lekktu@gmail.com>
1870
1871 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
1872
cf54c754
DR
18732009-11-11 David Reitter <david.reitter@gmail.com>
1874
1875 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
1876 variables to fix 2009-11-09 change.
1877
a4ada374
DN
18782009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
1879
91433552
DN
1880 * process.c (ifflag_def): Make flag_sym constant.
1881 (Fnetwork_interface_info): Use a constant pointer.
1882 (ifflag_table):
1883 * xfns.c (cursor_bits):
1884 * xdisp.c (power_letter):
1885 * termcap.c (speeds, esctab):
1886 * sysdep.c (baud_convert):
1887 * keyboard.c (lispy_accent_codes, modifier_names):
1888 * image.c (xbm_format, xpm_format, pbm_format, png_format)
1889 (jpeg_format, tiff_format, gif_format, svg_format)
1890 (interlace_start, interlace_increment, gs_format):
1891 * gtkutil.c (separator_names):
1892 * fringe.c (swap_nibble):
1893 * fns.c (base64_value_to_char, base64_char_to_value):
1894 * fileio.c (make_temp_name_tbl):
1895 * coding.c (suffixes): Make constant.
1896
f4265f6c
DN
1897 * frame.c (make_initial_frame):
1898 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
1899 build_string.
1900 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
1901
04420943
DN
1902 * s/freebsd.h:
1903 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
1904
0a5d24ae
DN
1905 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
1906 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
1907
a4ada374
DN
1908 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
1909 * xterm.c (syms_of_xterm):
1910 * xfaces.c (syms_of_xfaces):
1911 * xdisp.c (syms_of_xdisp):
1912 * lread.c (syms_of_lread):
1913 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
1914 build_string.
91433552 1915
a4ada374
DN
1916 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
1917
af98fc7f
SM
19182009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
1919
8ab1650e 1920 * fns.c (Fplist_get): Merge the active and the commented out code.
af98fc7f 1921
e90292a9
JD
19222009-11-10 Jan Djärv <jan.h.d@swipnet.se>
1923
1924 * keyboard.h: Declare timer_check.
1925
1926 * keyboard.c (timer_check_2): New function that does what the old
1927 timer_check did.
1928 (timer_check): Call timer_check_2 until -1 or a non-zero time is
1929 returned, i.e. don't return -1 with timers pending.
1930
1931 * process.c: Remove extern declaration of timer_check.
1932
1933 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
1934 even if timer_check returned -1.
1935
af98fc7f
SM
1936 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
1937 xg_dialog_data.
e90292a9
JD
1938 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
1939 the event loop.
1940 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
1941 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
1942 Destroy the dialog after xg_dialog_run.
1943
045b83c0
SM
19442009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
1945
1946 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
1947
1fb99a3a
JD
19482009-11-10 Jan Djärv <jan.h.d@swipnet.se>
1949
1950 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
1951
04e452cb
JB
19522009-11-09 Juanma Barranquero <lekktu@gmail.com>
1953
1954 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
1955
ef7417fd
SM
19562009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1957
1958 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
1959 w32menu.c, and nsmenu.m.
1960 Simplify the obsolete case where position is nil.
1961 (cleanup_popup_menu): New function, moved from nsmenu.m.
1962 (struct skp): Remove slot `notreal'.
1963 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
1964 adjust callers.
1965 (single_menu_item): Adjust call to parse_menu_item.
1966 (syms_of_menu): Defsubr x-popup-menu.
1967 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
1968 (keymap_panes): Don't export any more.
1969 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
1970 (xmenu_show): Declare.
1971 * keyboard.c (parse_menu_item): Remove arg `notreal'.
1972 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
1973 * keyboard.h (parse_menu_item): Update declaration.
1974 * xmenu.c (Fx_popup_menu): Remove.
1975 (syms_of_xmenu): Don't defsubr x-popup-menu.
1976 * w32menu.c (Fx_popup_menu): Remove.
1977 (syms_of_w32menu): Don't defsubr x-popup-menu.
1978 * nsmenu.m (cleanup_popup_menu): Remove.
1979 (ns_menu_show): Rename from ns_popup_menu and remove all the code
1980 moved to menu.c's Fx_popup_menu.
1981 (Fx_popup_menu): Remove.
1982 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
1983 menu_items (it's done in menu.c already).
1984
424d6179
SM
19852009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1986
1987 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
1988 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
1989
c0df13a6 19902009-11-08 Chong Yidong <cyd@stupidchicken.com>
a20903d0
CY
1991
1992 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
c0df13a6 1993 xmenu_show. Hide any tooltip before opening a menu.
a20903d0
CY
1994 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
1995 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
1996
2de9f71c
SM
19972009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
1998
1999 Let integers use up 2 tags to give them one extra bit and thus double
2000 their range.
2001 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
2002 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
2003 New macros.
2004 (enum Lisp_Type): Use them. Give explicit values.
2005 (Lisp_Type_Limit): Remove.
2006 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
2007 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
2008 Pay attention to USE_2_TAGS_FOR_INTS.
2009 (INTEGERP): Use LISP_INT_TAG_P.
2010 * fns.c (internal_equal): Simplify the default case.
2011 (sxhash): Use case_Lisp_Int.
2012 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
2013 any more.
2014 (Ftype_of): Use case_Lisp_Int.
2015 (store_symval_forwarding): Take into account the fact that Ints can
2016 now have more than one tag.
2017 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
2018 buffer_slot_type_mismatch):
2019 * xfaces.c (face_attr_equal_p):
2020 * print.c (print_object):
2021 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
2022 Use case_Lisp_Int.
2023
323637a2
EZ
20242009-11-06 Eli Zaretskii <eliz@gnu.org>
2025
7ac65b38
EZ
2026 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
2027
323637a2
EZ
2028 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
2029 warning.
2030
e511451f
JD
20312009-11-06 Jan Djärv <jan.h.d@swipnet.se>
2032
2033 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
2034
2035 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
2036
2037 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
2038 ButtonPressRelease and MotionNotify (bug#4870).
2039
5e2327cf
DN
20402009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
2041
5adc433e
DN
2042 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
2043
d67b4f80
DN
2044 * xterm.c (syms_of_xterm):
2045 * xselect.c (syms_of_xselect):
2046 * xmenu.c (syms_of_xmenu):
2047 * xfns.c (syms_of_xfns):
2048 * xfaces.c (syms_of_xfaces):
2049 * xdisp.c (syms_of_xdisp):
2050 * window.c (syms_of_window):
2051 * w32fns.c (syms_of_w32fns):
2052 * undo.c (syms_of_undo):
2053 * textprop.c (syms_of_textprop):
2054 * terminal.c (syms_of_terminal):
2055 * syntax.c (syms_of_syntax):
2056 * sound.c (syms_of_sound):
2057 * search.c (syms_of_search):
2058 * print.c (syms_of_print):
2059 * minibuf.c (syms_of_minibuf):
2060 * macros.c (syms_of_macros):
2061 * keymap.c (syms_of_keymap, initial_define_key)
2062 (initial_define_lispy_key):
2063 * keyboard.c (syms_of_keyboard):
2064 * insdel.c (syms_of_insdel):
2065 * image.c (syms_of_image):
2066 * fringe.c (syms_of_fringe):
2067 * frame.c (syms_of_frame):
2068 * fontset.c (syms_of_fontset):
2069 * fns.c (syms_of_fns):
2070 * fns.c (syms_of_fns):
2071 * fileio.c (syms_of_fileio):
2072 * fileio.c (syms_of_fileio):
2073 * eval.c (syms_of_eval):
2074 * doc.c (syms_of_doc):
2075 * dispnew.c (syms_of_display):
2076 * dired.c (syms_of_dired):
2077 * dbusbind.c (syms_of_dbusbind):
2078 * data.c (syms_of_data):
2079 * composite.c (syms_of_composite):
2080 * coding.c (syms_of_coding):
2081 * cmds.c (syms_of_cmds):
2082 * charset.c (define_charset_internal, syms_of_character):
2083 * ccl.c (syms_of_ccl):
2084 * category.c (syms_of_category, init_category_once):
2085 * casetab.c (syms_of_casetab):
2086 * casefiddle.c (syms_of_casefiddle):
2087 * callint.c (syms_of_callint):
2088 * bytecode.c (syms_of_bytecode):
2089 * buffer.c (keys_of_buffer, syms_of_buffer):
2090 * alloc.c (syms_of_alloc):
2091 * process.c (syms_of_process, init_process):
2092 * lread.c (syms_of_lread, init_obarray):
2093 * font.c (build_style_table):
2094 * emacs.c (syms_of_emacs, main): Replace calls to intern with
2095 intern_c_string, calls to make_pure_string with
2096 make_pure_c_string. Use pure_cons instead of Fcons.
2097
5e2327cf
DN
2098 * process.c (socket_options): Make it const.
2099 (set_socket_option, init_process): Use a const pointer.
2100
2101 * lread.c (intern_c_string): New function.
2102 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
2103 (defvar_int): Uset it. Make the name const char*.
2104
2105 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
2106 (defvar_int): Update prototypes.
2107 (DEFUN, EXFUN): Support for prototypes is now required.
2108 (intern_c_string): New prototype.
2109 (struct Lisp_Subr): Make symbol_name constant.
2110
2111 * font.c (struct table_entry): Remove unused member. Make NAMES
2112 constant.
2113 (weight_table, slant_table, width_table): Make constant.
2114
2115 * emacs.c (struct standard_args): Make name and longname constant.
2116
2117 * character.h (DEFSYM): Use intern_c_string.
2118
a56eaaef
DN
21192009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2120
2121 * alloc.c (make_pure_c_string): New function.
2122
2123 * eval.c (Fautoload): Purecopy all arguments.
2124
f6a07420
KH
21252009-11-05 Kenichi Handa <handa@m17n.org>
2126
2127 * fileio.c (Finsert_file_contents): Be sure set coding-system of
2128 the buffer in case of replace.
2129
5d28d4b1
DN
21302009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
2131
2132 * puresize.h (BASE_PURESIZE): Increase to 1620000.
2133
b349d111
SM
21342009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
2135
d528b1ce
SM
2136 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
2137 when applicable (bug#4851).
2138
b349d111
SM
2139 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
2140 (P_): Support for prototypes is now required.
2141
c38eb027
CY
21422009-10-31 Chong Yidong <cyd@stupidchicken.com>
2143
2144 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
2145 (Bug#4827).
2146
0405f8d9
EZ
21472009-10-30 Eli Zaretskii <eliz@gnu.org>
2148
d528b1ce 2149 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
0405f8d9 2150
ca0a881a
DN
21512009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
2152
2153 * puresize.h (BASE_PURESIZE): Increase to 1470000.
2154
d528b1ce
SM
2155 * lread.c (Fload): Purecopy the file name when building
2156 Vpreloaded_file_list.
ca0a881a 2157
47e0e0e4
JR
21582009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
2159
2160 * w32fns.c (syms_of_w32fns): Change default value of
2161 w32-scroll-lock-modifier to nil. (Bug#2827)
2162
057bce6f
JB
21632009-10-26 Juanma Barranquero <lekktu@gmail.com>
2164
782a943e 2165 * minibuf.c (Fall_completions): Fix typos in docstring.
057bce6f 2166
242bc74c
AS
21672009-10-26 Andreas Schwab <schwab@redhat.com>
2168
2169 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
2170
522d013a
JB
21712009-10-26 Juanma Barranquero <lekktu@gmail.com>
2172
2173 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
2174 For delta < 0, skip check that only makes sense when the mini-window
2175 is going to be enlarged. (Bug#4534)
2176
18060980
CY
21772009-10-25 Chong Yidong <cyd@stupidchicken.com>
2178
2179 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
2180 string in menu maps (Bug#4471).
2181
fec8f0fe
CY
21822009-10-24 Chong Yidong <cyd@stupidchicken.com>
2183
2184 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
2185 FRAME_NS_VIEW on terminal frames (Bug#4765).
2186
10d66ec0
AS
21872009-10-24 Andreas Schwab <schwab@linux-m68k.org>
2188
1cae01f7
AS
2189 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
2190 DBUS_TYPE_UINTnn separately to get proper sign extension.
2191
58a12889
AS
2192 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
2193 can properly handle unsigned types.
d528b1ce 2194 (make_uid, make_gid): Remove.
58a12889 2195
987c9327
AS
2196 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
2197 types again.
2198
522d013a 2199 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
10d66ec0
AS
2200 (system_process_attributes): Likewise.
2201
905a9ed3
DN
22022009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
2203
2204 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
2205
2206 * eval.c (Fautoload): Purecopy the filename. Simplify.
2207
2208 * category.c (Fdefine_category): Purecopy docstring.
2209
a599b3e8
AS
22102009-10-23 Andreas Schwab <schwab@linux-m68k.org>
2211
7b792fc9
AS
2212 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
2213
a599b3e8
AS
2214 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
2215
b35ac83e
CY
22162009-10-23 Chong Yidong <cyd@stupidchicken.com>
2217
2218 * window.c (Fwindow_edges, Fwindow_pixel_edges)
2219 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
2220 (Bug#4775).
2221
e8903e00
SM
22222009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
2223
2224 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
2225 (init_fileio_once):
2226 * lisp.h (init_fileio_once): Remove.
2227 * emacs.c (main): Don't call init_fileio_once.
2228
8f43cbf3
DN
22292009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
2230
2231 * puresize.h (BASE_PURESIZE): Increase to 1430000.
2232
26898943
AS
22332009-10-21 Andreas Schwab <schwab@linux-m68k.org>
2234
2235 * doprnt.c (doprnt): Fix overflow check.
2236
5c646d5a
JD
22372009-10-21 Jan Djärv <jan.h.d@swipnet.se>
2238
3132a7ea
JD
2239 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
2240
5c646d5a
JD
2241 * xterm.h (x_wait_for_event): Declare it.
2242
2243 * xterm.c (pending_event_wait): New variable.
2244 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
2245 see pending_event_wait.eventtype.
2246 (handle_one_xevent): Don't change gravity when parent changes.
d528b1ce
SM
2247 (x_new_font): Call change_frame_size with new rows/columns before we
2248 try to resize the frame.
5c646d5a 2249 (x_wait_for_event): New function.
d528b1ce
SM
2250 (x_set_window_size_1): Don't change gravity unless change_gravity
2251 is set.
5c646d5a
JD
2252 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
2253 don't change frame size, instead wait for the ConfigureNotify.
2254 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
2255 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
2256 (x_initialize): Initialize pending_event_wait.
2257
2258 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
2259 size.
2260
2261 * widget.c (EmacsFrameSetValues): Add comment.
2262 (EmacsFrameSetCharSize): Just call x_set_window_size.
2263
2264 * gtkutil.c (xg_frame_set_char_size): Flush events and call
2265 x_wait_for_event.
d528b1ce 2266 (flush_and_sync): Remove again.
5c646d5a
JD
2267 (xg_get_font_name): Suggest monospace if no previous font is known.
2268
e9c1637d
SM
22692009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
2270
2271 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
46be764e 2272 8th bit, since that only made sense in the ASCII world (bug#4751).
e9c1637d 2273
5a72cccb
YM
22742009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2275
2276 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
2277 processing pending events when event is filtered for input method.
ab04798f 2278 (Bug#3681)
5a72cccb 2279
2629aa37
JB
22802009-10-20 Juanma Barranquero <lekktu@gmail.com>
2281
2282 * fns.c: Add #endif accidentally removed in previous change.
2283
c3417a74
DN
22842009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
2285
2286 * fns.c: Remove code for unsupported system: MAC_OS.
2287 * image.c: Likewise. Include setjmp.h.
2288
9685cef2
JD
22892009-10-19 Jan Djärv <jan.h.d@swipnet.se>
2290
2291 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
2292 pixel -1 (bug #4742).
2293
d7306fe6
DN
22942009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
2295
019d2c4c
DN
2296 * process.c (create_pty): Remove conditionals for no longer
2297 supported systems: UNIPLUS and RTU.
2298
ee6bacd4
DN
2299 * xterm.c:
2300 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
2301
d7306fe6
DN
2302 * alloc.c: Do not define struct catchtag.
2303 * eval.c: Move struct catchtag definition ...
2304 * lisp.h: ... here.
2305
2306 * image.c: Move png.h #include earlier to avoid warnings.
2307
2308 * xterm.c:
2309 * xsmfns.c:
2310 * xselect.c:
2311 * xrdb.c:
2312 * xmenu.c:
2313 * xftfont.c:
2314 * xfont.c:
2315 * xfns.c:
2316 * xfaces.c:
2317 * xdisp.c:
2318 * window.c:
2319 * widget.c:
2320 * w32xfns.c:
2321 * w32uniscribe.c:
2322 * w32term.c:
2323 * w32select.c:
2324 * w32reg.c:
2325 * w32proc.c:
2326 * w32menu.c:
2327 * w32inevt.c:
2328 * w32heap.c:
2329 * w32font.c:
2330 * w32fns.c:
2331 * w32console.c:
2332 * w32.c:
2333 * w16select.c:
2334 * vm-limit.c:
2335 * unexsol.c:
2336 * unexec.c:
2337 * unexcw.c:
2338 * unexaix.c:
2339 * undo.c:
2340 * tparam.c:
2341 * textprop.c:
2342 * terminfo.c:
2343 * terminal.c:
2344 * termcap.c:
2345 * term.c:
2346 * syntax.c:
2347 * sound.c:
2348 * sheap.c:
2349 * search.c:
2350 * scroll.c:
2351 * region-cache.c:
2352 * regex.c:
2353 * ralloc.c:
2354 * process.c:
2355 * print.c:
b024548b
DN
2356 * nsterm.m:
2357 * nsselect.m:
2358 * nsmenu.m:
2359 * nsimage.m:
2360 * nsfont.m:
2361 * nsfns.m:
d7306fe6
DN
2362 * msdos.c:
2363 * minibuf.c:
2364 * menu.c:
2365 * marker.c:
2366 * macros.c:
2367 * keymap.c:
2368 * keyboard.c:
2369 * intervals.c:
2370 * insdel.c:
2371 * indent.c:
2372 * gtkutil.c:
2373 * ftxfont.c:
2374 * ftfont.c:
2375 * fringe.c:
2376 * frame.c:
2377 * fontset.c:
2378 * font.c:
2379 * fns.c:
2380 * floatfns.c:
2381 * filelock.c:
2382 * fileio.c:
2383 * emacs.c:
2384 * editfns.c:
2385 * dosfns.c:
2386 * doprnt.c:
2387 * doc.c:
2388 * dispnew.c:
2389 * dired.c:
2390 * dbusbind.c:
2391 * data.c:
2392 * composite.c:
2393 * coding.c:
2394 * cmds.c:
2395 * cm.c:
2396 * chartab.c:
2397 * charset.c:
2398 * character.c:
2399 * ccl.c:
2400 * category.c:
2401 * casetab.c:
2402 * casefiddle.c:
2403 * callproc.c:
2404 * callint.c:
2405 * bytecode.c:
2406 * buffer.c:
2407 * atimer.c: Include setjmp.h. (Bug#4643)
2408
fd5f21e6
SM
24092009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
2410
4c0354d7
SM
2411 Remove leftover table unibyte_to_multibyte_table.
2412 * character.c (unibyte_to_multibyte_table): Remove.
2413 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
2414 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
2415 * character.h (UNIBYTE_TO_CHAR): New macro.
2416 (MAKE_CHAR_MULTIBYTE): Use it.
2417 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
2418 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
2419 (message_dolog, set_message_1):
2420 * search.c (Freplace_match):
2421 * editfns.c (Fcompare_buffer_substrings):
2422 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
2423 (concat):
2424 * insdel.c (copy_text, count_size_as_multibyte):
2425 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
2426 * term.c (produce_glyphs):
2427 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
2428 * regex.c (RE_CHAR_TO_MULTIBYTE):
2429 * cmds.c (internal_self_insert):
2430 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
2431
fd5f21e6
SM
2432 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
2433
4418646e
DN
24342009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
2435
2436 * puresize.h (BASE_PURESIZE): Increase to 1310000.
2437
35f5c1d2
JB
24382009-10-16 Juanma Barranquero <lekktu@gmail.com>
2439
2440 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
2441
a0cd8f6b
AR
24422009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
2443
2444 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
2445 still needed under Tiger.
2446
2447 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
2448
2449 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
2450 __Apple__.
2451
2452 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
2453
01a8d3fa
KH
24542009-10-15 Kenichi Handa <handa@m17n.org>
2455
2456 * print.c (print_object): Escape a symbol like "2E10" too.
2457
bf6c75c9 24582009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
6e4780c5
JB
2459
2460 Cleanups and changes for 64-bit compile under Snow Leopard.
2461 Based on suggestions by Erik Charlebois.
bf6c75c9
AR
2462
2463 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
2464
c5959062 2465 * nsfont.m (ns_char_width): Replace deprecated call.
bf6c75c9
AR
2466 (ns_findfonts, nsfont_list_family): Use long format in printf, and
2467 cast argument.
2468 (nsfont_open): Use ns_char_width() everywhere.
d528b1ce 2469 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
bf6c75c9
AR
2470
2471 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
2472
2473 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
2474 where appropriate.
2475
2476 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
2477 where appropriate.
6e4780c5
JB
2478 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
2479 Use stringWithUTF8String.
bf6c75c9
AR
2480 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
2481
6e4780c5
JB
2482 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
2483 Add formal protocol mention to inheritance.
bf6c75c9
AR
2484 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
2485
6e4780c5
JB
2486 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
2487 Fix printf format.
bf6c75c9
AR
2488 (ns_query_color): Use CGFloat where appropriate.
2489 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
ac146f82 2490 (EmacsScroller-mouseDown:): Use long format in printf, and cast
bf6c75c9
AR
2491 argument.
2492
3d87f118
AR
2493 * config.in (NS_HAVE_NSINTEGER): Drop.
2494
a95c8102
AR
2495 * dbusbind.c (dbus-method-return-internal)
2496 (dbus-method-error-internal): Use long format in printf, and cast
2497 argument.
2498
2499 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
2500 in printf, and cast argument.
2501
6873acca 2502 * process.c (list_processes_1): Use long format in printf, and
a95c8102
AR
2503 cast argument.
2504
9ec6f100
GM
25052009-10-11 Glenn Morris <rgm@gnu.org>
2506
2507 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
2508
5be883cd
JD
25092009-10-08 Jan Djärv <jan.h.d@swipnet.se>
2510
2511 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
2512 menu bar with a small width so it doesn't enlarge the frame.
2513
d7a39b51
JB
25142009-10-08 Juanma Barranquero <lekktu@gmail.com>
2515
2516 * fontset.c (Fset_fontset_font): Fix typos in error messages.
2517
0c2b6f8e
GM
25182009-10-06 Glenn Morris <rgm@gnu.org>
2519
2520 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
2521 SOME_MACHINE_LISP (this enters indirectly via DOC).
2522
e02131a2
EZ
25232009-10-05 Eli Zaretskii <eliz@gnu.org>
2524
2525 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
2526
b4744254
EZ
25272009-10-04 Eli Zaretskii <eliz@gnu.org>
2528
2529 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
2530 Doc fix.
2531
dbf64827
JB
25322009-10-03 Martin Rudalics <rudalics@gmx.at>
2533
2534 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
2535
e9a0aef8
MA
25362009-10-02 Michael Albinus <michael.albinus@gmx.de>
2537
d528b1ce 2538 * lisp.h (Qdelete_directory_internal): Remove, because it is not
e9a0aef8
MA
2539 used anymore outside fileio.c.
2540
2541 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
2542
64eb2b56
JB
25432009-10-01 Juanma Barranquero <lekktu@gmail.com>
2544
2545 * lisp.h (Qdelete_directory_internal):
2546 Declare, instead of Qdelete_directory.
2547
2548 * w32fns.c (Fsystem_move_file_to_trash): Use it.
2549
9d28c33e
SM
25502009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
2551
2552 * eval.c (Fcalled_interactively_p): Add `kind' argument.
2553
9d8f3bd9
MA
25542009-10-01 Michael Albinus <michael.albinus@gmx.de>
2555
9d28c33e 2556 * fileio.c (Fdelete_directory_internal): Rename from
9d8f3bd9
MA
2557 Fdelete_directory. It is not a command anymore. It has no file
2558 name handler.
2559
9694740b
SM
25602009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2561
2562 * xdisp.c (get_next_display_element): Use an enum in last change.
2563
748e162f
KH
25642009-09-28 Kenichi Handa <handa@m17n.org>
2565
9694740b 2566 * xdisp.c (get_next_display_element): Pay attention to
748e162f
KH
2567 unibyte_display_via_language_environment in handling
2568 Vnobreak_char_display.
2569
17efd58d
AR
25702009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
2571
2572 * nsterm.h (ns_app_name): New extern variable.
2573
2574 * nsterm.m (ns_app_name): New variable.
2575 (ns_term_init): Set and use it.
2576 (ns_term_shutdown): Use it.
2577
2578 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
2579 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
2580
2581 * nsfns.m (ns_set_name_iconic, ns_set_name)
2582 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
2583 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
2584
9694740b
SM
2585 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
2586 Remove double-casting in client_data comparison.
31c2d412 2587
3208cb35
YM
25882009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2589
2590 * keyboard.c (make_lispy_event): Remember last wheel direction.
2591 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
2592
b7d552d6
GM
25932009-09-26 Glenn Morris <rgm@gnu.org>
2594
2595 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
2596 internal.elc. Add term/pc-win.elc.
2597 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
2598 term/x-win.elc.
2599 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
2600 term/w32-win.elc.
2601 (NS_SUPPORT): New.
2602 (lisp): Add NS_SUPPORT.
2603 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
2604
4ff670a8
DR
26052009-09-25 David Reitter <david.reitter@gmail.com>
2606
2607 * nsmenu.m (EmacsMenu-clear): Recognize application menu
2608 on Mac OS X 10.6+ (bug#4513).
2609
feabfb6c
JB
26102009-09-24 Juanma Barranquero <lekktu@gmail.com>
2611
2612 * frame.c (xrdb_get_resource): Return nil for empty string resources;
d528b1ce
SM
2613 some parts of Emacs code (like font selection) don't grok them.
2614 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
feabfb6c 2615
de59072a
AS
26162009-09-24 Andreas Schwab <schwab@redhat.com>
2617
2618 * coding.c (decode_coding_iso_2022): Fix operator precedence.
2619
a489517b
JB
26202009-09-24 Juanma Barranquero <lekktu@gmail.com>
2621
2622 * dired.c (Fdirectory_files): Fix typo in docstring.
2623
0592970c
AR
26242009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
2625
2626 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
2627 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
2628 (EmacsScroller-setPosition:portion:whole:): Remove -display call
2629 under GNUstep.
2630 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
2631
2632 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
2633 glyph advancement.
2634
48e8a88b
AR
26352009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
2636
2637 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
b3aac06a 2638 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
48e8a88b
AR
2639
2640 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
2641 deleted (bug #4492).
2642
e14f0a78
AR
2643 * nsfont.m (Vns_reg_to_script): New lisp variable.
2644 (syms_of_nsfont): Declare it.
2645 (ns_registry_to_script): New function.
2646 (ns_get_req_script): Call it.
2647 (ns_findfonts): Don't give up on non-unicode registry.
2648
2649 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
2650
5b650faa
SM
26512009-09-20 Tom Tromey <tromey@redhat.com>
2652
2653 * eval.c (find_handler_clause): Make stack-trace-on-error work in
2654 batch mode (bug#4228).
2655
a489517b 26562009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
0bae4e09
AR
2657
2658 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
a489517b 2659 carefully. (Bug #4339)
0bae4e09 2660
fcfe06f3
CY
26612009-09-18 Chong Yidong <cyd@stupidchicken.com>
2662
d798ba87 2663 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
fcfe06f3 2664
31642728
AR
26652009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
2666
2667 * emacs.c (inhibit_x_resources): Update doc string for NS.
2668 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
cff11156 2669 legacy code for -NXHost. Fix error printf in daemon case.
31642728
AR
2670
2671 * nsterm.h (ns_no_defaults): Remove.
2672
2673 * nsterm.m (ns_no_defaults): Remove.
2674 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
2675 (ns_use_qd_smoothing): Remove legacy variable.
6516d10a
AR
2676 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
2677 don't update the NSWindow itself.
2678 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
a489517b 2679 state detection and store user rect ourselves. (Bug #3581)
31642728
AR
2680
2681 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
2682 ns_use_qd_smoothing.
2683
2684 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
2685 platform versions. Drop support for emacs-20-style face specs.
8aad0aea 2686 (x-close-connection): Drop PSFlush() under OS X.
a489517b 2687 (x-focus-frame): Activate the app first. (Bug #4180)
31642728 2688
8686ac71
JB
26892009-09-17 Juanma Barranquero <lekktu@gmail.com>
2690
2691 * emacs.c (inhibit_x_resources): New variable.
2692 (main) [HAVE_NS]: Don't process --quick command line option.
2693 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
2694
2695 * lisp.h (inhibit_x_resources): Declare it extern.
2696
2697 * w32reg.c (x_get_string_resource):
2698 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
2699
e227ba05
EZ
27002009-09-17 Eli Zaretskii <eliz@gnu.org>
2701
362654a6
JB
2702 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
2703 Add lisp/term/internal.elc.
e227ba05 2704
742d40e8
SM
27052009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
2706
2707 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
2708 (bug#4461).
2709
005bd5a2
DN
27102009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
2711
2712 * puresize.h (BASE_PURESIZE): Increase to 1290000.
2713
2714 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
2715 (OBJECTS_MACHINE): Remove, unused.
2716
f9af9719
SM
27172009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2718
2719 * frame.c (x_get_resource_string): Remove unused.
2720
0307c7d2
JD
27212009-09-15 Jan Djärv <jan.h.d@swipnet.se>
2722
2723 * xterm.c (x_new_font): Call change_frame_size before calling
2724 x_set_window_size, in case frame size won't change.
2725
2726 * frame.c (x_set_font): Remove dead code.
2727
428b13d6
SM
27282009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
2729
2730 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
2731
5766c380
SM
27322009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2733
2734 * lread.c (Fload): Don't output a message after loading an obsolete
2735 package any more (done in Lisp now).
2736
2fd0161b
CY
27372009-09-12 Chong Yidong <cyd@stupidchicken.com>
2738
2739 * fns.c (syms_of_fns): Doc fix (Bug#4227).
2740
bc5e75b6
SM
27412009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2742
2743 * keymap.c (Fwhere_is_internal): Use nconc2.
2744
c31c985e
AM
27452009-09-11 Alan Mackenzie <acm@muc.de>
2746
2747 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
2748 batch mode.
2749
78012bd2
AS
27502009-09-11 Andreas Schwab <schwab@linux-m68k.org>
2751
2752 * xdisp.c (display_mode_element): Detect cycles.
2753
9d889332
SM
27542009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2755
2756 * keymap.c (where_is_internal): Don't erroneously return nil right after
2757 filling the cache.
2758 (where_is_internal_1): Fix up typo.
2759
7ab5d780
GM
27602009-09-11 Glenn Morris <rgm@gnu.org>
2761
2762 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
2763 share a common doc-string.
2764
5238a749
SM
27652009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2766
66d77eda
SM
2767 * keymap.c (get_keymap): Return the actual keymap symbol rather than
2768 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
2769
5238a749
SM
2770 * keymap.c (QCadvertised_binding): New constant.
2771 (syms_of_keymap): Initialize it.
2772 (Fwhere_is_internal): Try and use bindings from :advertised-binding
2773 if applicable.
2774
19f48442
SM
27752009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2776
50d4ba39
SM
2777 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
2778 (parse_menu_item): Streamline since bindings are recomputed all the
2779 time anyway. Don't bother checking Vdefine_key_rebound_commands any
2780 more and don't support lmenu's menu-alias any more either.
2781
a88a5372
SM
2782 * keymap.c (where_is_internal_data): Make noindirect a boolean.
2783 (where_is_internal): Strip it down to only traverse the keymaps.
2784 Move the cache handling from Fwhere_is_internal to here.
2785 (Fwhere_is_internal): Move the handling of remapping and the choice of
2786 the best binding from where_is_internal to here.
2787 Unify the cached/noncached paths, so remapping is also handled
2788 correctly when the cache is used, and so the cache can be used to
2789 speed up remap-handling when applicable.
2790 Give preference to non-remapped bindings.
2791 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
2792 non-remapped bindings.
2793 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
2794 command remapping.
2795
19f48442
SM
2796 * xdisp.c (display_mode_element): Move list length limit from 50 to
2797 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
2798
599498c3 27992009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
c1905ca3
AR
2800
2801 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
2802
f9b7b5ac
SM
28032009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2804
a53af587
JB
2805 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
2806 (Bug#4334)
2807
f9b7b5ac
SM
2808 * keymap.c (where_is_internal): Filter out shadowed remappings.
2809 Assume that where_is_internal returns unshadowed bindings to simplify
2810 the code and get rid of the gotos. Use ASIZE.
2811
04f4b72d
JD
28122009-09-04 Jan Djärv <jan.h.d@swipnet.se>
2813
4da146f2
JD
2814 * xterm.c (x_focus_changed): If we get a focusout and pointer
2815 is invisible, make it visible.
2816
04f4b72d
JD
2817 * xterm.h: Remove condition for declaration of
2818 x_*_window_to_frame.
2819
7cef7ce3
SM
28202009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2821
2822 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
2823 initial terminal as well.
2824
a54fa5b7
JD
28252009-09-02 Jan Djärv <jan.h.d@swipnet.se>
2826
2827 * xterm.h: Rename x_non_menubar_window_to_frame to
7cef7ce3 2828 x_menubar_window_to_frame.
a54fa5b7
JD
2829
2830 * xterm.c: Remove declarations also in xterm.h
2831 (XTmouse_position): Do not return valid positions
2832 for clicks in the menubar and the toolbar for Gtk+.
2833
2834 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
2835 if the widget for the event has the same top level as a frame,
2836 return the frame.
2837 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
2838 internal windows, bug #4122.
2839 (x_non_menubar_window_to_frame): Remove.
2840
5a021dd0
GM
28412009-09-02 Glenn Morris <rgm@gnu.org>
2842
2843 * buffer.c (default-major-mode): Move most of the doc from here...
2844 (major-mode): ... to here.
2845
548fe2f3
NR
28462009-08-30 Nick Roberts <nickrob@snap.net.nz>
2847
2848 * process.c (wait_reading_process_output): Keep the descriptor
2849 when pty is used by a non-child process, e.g., in I/O buffer of
2850 GDB this allows inferior to be restarted.
2851
e0840eef
EZ
28522009-08-29 Eli Zaretskii <eliz@gnu.org>
2853
2854 * xdisp.c (redisplay_internal): Remove redundant test and collapse
2855 both branches into one.
2856
82e98df4
SM
28572009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2858
2859 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
2860 (main): Use enable-multibyte-characters rather than
2861 default-enable-multibyte-characters. Output a warning message when
2862 running a unibyte session.
2863
890617cb
YM
28642009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2865
2866 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
2867 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
2868 (copy_data_segment): Also copy __program_vars section.
2869 (copy_dyld_info) [LC_DYLD_INFO]: New function.
2870 (dump_it) [LC_DYLD_INFO]: Use it.
2871
2872 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
2873
e7adeadc
EZ
28742009-08-28 Eli Zaretskii <eliz@gnu.org>
2875
2876 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
2877 $(SRC)/buildobj.h.
2878 (buildobj.h): Renamed from $(SRC)/buildobj.h.
2879 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
2880 $(SRC)/buildobj.h.
2881 (clean): Add buildobj.h.
2882
3ed8bbdc
TZ
28832009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
2884
2885 * print.c (print_object): Set escapeflag to 1 when printing
2886 hashtable keys and values.
2887
155a6764
SM
28882009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2889
2890 * lread.c (read_integer): Use doubles (and potentially return a float
2891 number) as we do in string-to-number.
2892 (read1): Use strtol to read integers, signal errors on strtol's
2893 overflow and use floats if strtol's output is too large for
2894 Elisp integers.
2895
877610de
EZ
28962009-08-27 Eli Zaretskii <eliz@gnu.org>
2897
2898 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
2899 (make-buildobj-SH): Fix last change.
2900 (SRC): Move to before where it's first used.
2901
ef73e7be
KH
29022009-08-27 Kenichi Handa <handa@m17n.org>
2903
550c8289
KH
2904 * process.c (send_process): Use encode_coding_object instead of
2905 encode_coding_string to perform eol-conversion even if the string
2906 is unibyte.
2907
60afa08d
KH
2908 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
2909 character.
2910
ef73e7be 2911 * cmds.c (Fself_insert_command): Avoid unnecessay
8a0b709a 2912 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
ef73e7be 2913
7b3a82d7
DN
29142009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
2915
5654bf63
DN
2916 * callproc.c (Fcall_process): Remove always true #if.
2917
7b3a82d7
DN
2918 * lisp.h: Replace #if 0 code for checking with text pointing to
2919 the --enable-checking configure flag.
2920
2921 * emacs.c (main): Mention the --enable-profiling configure flag
2922 instead of using CFLAGS.
2923
878bde49
KR
29242009-08-26 Ken Raeburn <raeburn@raeburn.org>
2925
2926 * Makefile.in (buildobj.h): New target.
2927 (doc.o): Depend on it.
2928 (temacs${EXEEXT}): Don't generate buildobj.lst.
2929 (mostlyclean): Delete buildobj.h, not buildobj.lst.
2930 * makefile.w32-in ($(SRC)/buildobj.h): New target.
2931 ($(BLD)/doc.$(O)): Depend on it.
2932 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
2933 provided by Eli Zaretskii.)
2934 ($(TEMACS)): Don't generate buildobj.lst.
2935 * doc.c: Include buildobj.h.
2936 (buildobj): New static variable.
2937 (Fsnarf_documentation): Use it, instead of opening and reading
2938 buildobj.lst.
2939
1574224c
MA
29402009-08-25 Michael Albinus <michael.albinus@gmx.de>
2941
2942 * dbusbind.c (Fdbus_call_method)
2943 (Fdbus_call_method_asynchronously): Use English numeric format for
2944 timeout values in doc string.
2945
d9da2f45
KH
29462009-08-25 Kenichi Handa <handa@m17n.org>
2947
ef73e7be
KH
2948 * alloc.c (mark_char_table): New function.
2949 (mark_object): Use mark_char_table for a char-table.
2950
d9da2f45
KH
2951 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
2952 (CHAR_TABLE_REF): Use it.
2953
c8edcc01
KR
29542009-08-23 Ken Raeburn <raeburn@raeburn.org>
2955
2956 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
2957 before invoking the newly build emacs to check for load-path
2958 shadowing.
2959
7763401b
GM
29602009-08-22 Glenn Morris <rgm@gnu.org>
2961
2962 * Makefile.in (bootstrap_exe): New variable.
2963 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
2964 Use ${bootstrap_exe}.
2965
729eadda
EZ
29662009-08-22 Eli Zaretskii <eliz@gnu.org>
2967
2968 * coding.h (encode_coding_string): Don't encode unibyte strings.
2969 (Bug#4047)
2970
eb4c6ace
MA
29712009-08-22 Michael Albinus <michael.albinus@gmx.de>
2972
2973 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
2974
2975 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
2976 intended as hotfix only.
2977 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
2978
36e34d1b
AR
29792009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
2980
2981 * nsterm.m (ns_get_color): Update documentation properly for last
2982 change, and clean up loose ends in the code left by it. Fix
2983 longstanding bug with 16-bit hex parsing, and add support for
2984 yet another X11 format (rgb:r/g/b) for compatibility.
2985 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
2986 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
2987
f983eb8a
SM
29882009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2989
2990 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
2991
3f56d3c6
MA
29922009-08-20 Michael Albinus <michael.albinus@gmx.de>
2993
2994 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
2995 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
2996 (xd_initialize, xd_pending_messages): Check, whether
2997 $DBUS_SESSION_BUS_ADDRESS is set.
2998
fb641d68
YM
29992009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3000
3001 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
3002
3003 * nsterm.m (ns_get_color): Remove incompatible color formats again.
3004
cf59a374
GM
30052009-08-20 Glenn Morris <rgm@gnu.org>
3006
3007 * emacs.c (system-type): Doc fix.
3008
1373f3be
SM
30092009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
3010
3011 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
3012 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
3013
058ed861
MA
30142009-08-18 Michael Albinus <michael.albinus@gmx.de>
3015
1373f3be
SM
3016 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
3017 New functions.
058ed861
MA
3018 (xd_initialize): Revert change from 2009-08-16.
3019
563a866e 30202009-08-18 Kenichi Handa <handa@m17n.org>
5fc05db0
KH
3021
3022 * fontset.c (Ffontset_font): If a nil element is found in a
563a866e 3023 font-group vector, return nil.
5fc05db0 3024
e42bdf01
CY
30252009-08-17 Chong Yidong <cyd@stupidchicken.com>
3026
3027 * process.c (status_notify): Don't perform redisplay.
3028 (Fdelete_process, list_processes_1, process_send_signal):
3029 Expliticly perform redisplay.
3030 (wait_reading_process_output): Always check process status, but
3031 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
3032
4230ab74
KR
30332009-08-17 Ken Raeburn <raeburn@raeburn.org>
3034
1373f3be 3035 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
f601cdf3
KR
3036 (XFLOAT_INIT): New macro for storing a float value.
3037 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
3038 * fns.c (sxhash): Copy out the value of a float in order to
3039 examine its bytes.
3040 * dbusbind.c (xd_append_arg): Likewise.
3041
4230ab74
KR
3042 * emacs.c (main): Don't call syms_of_data twice.
3043
a0645cdd
MA
30442009-08-16 Michael Albinus <michael.albinus@gmx.de>
3045
3046 * dbusbind.c (xd_initialize): Add connection file descriptor to
3047 input_wait_mask, in order to let select() detect, whether a new
3048 message has been arrived.
ca4f31ea 3049 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
a0645cdd 3050
485db0ba
MA
30512009-08-15 Michael Albinus <michael.albinus@gmx.de>
3052
1373f3be
SM
3053 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
3054 New functions.
485db0ba
MA
3055
3056 * lisp.h (xd_pending_messages): Declare.
3057
3058 * keyboard.c (readable_events): Call xd_pending_messages.
3059
b5b98ff4
CY
30602009-08-15 Chong Yidong <cyd@stupidchicken.com>
3061
1373f3be 3062 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
84b17ab0 3063
f8354c6e
CY
3064 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
3065
b5b98ff4
CY
3066 * buffer.c (set_buffer_internal_1)
3067 (swap_out_buffer_local_variables): Check for unbound local
3068 variables (Bug#4138).
3069
8b9fc636
EZ
30702009-08-14 Eli Zaretskii <eliz@gnu.org>
3071
3072 * process.c (create_pty): Fix last change.
3073
ce959360
CY
30742009-08-13 Chong Yidong <cyd@stupidchicken.com>
3075
3076 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
3077 (xbm_load_image): Caller changed.
64b807c9 3078 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
ce959360 3079
c7baf7e9
NR
30802009-08-13 Nick Roberts <nickrob@snap.net.nz>
3081
3082 * process.c (create_pty): New function.
3083 (Fstart_process): Use it to allow Emacs to just associate a pty
3084 with the buffer. See associated change in gdb-mi.el.
3085 (list_processes_1): Deal with no program name.
3086 (start_process_unwind): Use pid == -2 to mean no process.
3087
1ac9108a
SM
30882009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3089
3090 * cmds.c (nonundocount): New global variable.
3091 (keys_of_cmds): Initialize it.
3092 (Fself_insert_command): Use it to combine upto 20 sequential chars
3093 into a single undo entry, just like the Qself_insert_command code in
3094 keyboard.c does.
3095 Call frame_make_pointer_invisible, also like the Qself_insert_command
3096 code in keyboard.c does.
3097 * keyboard.c (command_loop_1): Use the new global nonundocount rather
3098 than its own local replacement for it.
3099
e267324c
KR
31002009-08-10 Ken Raeburn <raeburn@raeburn.org>
3101
1ac9108a 3102 * fns.c (concat): Don't re-set string length to its current value.
77437343 3103
1ac9108a
SM
3104 * coding.h (decode_coding_string, encode_coding_string):
3105 Use SBYTES macro.
f0bed503 3106
1ac9108a 3107 * doprnt.c (doprnt_lisp): Delete unused function.
e267324c
KR
3108 (doprnt): Merge with doprnt1, discarding lispstrings code.
3109 * lisp.h (doprnt_lisp): Don't declare.
3110
416e006d
JL
31112009-08-07 Juri Linkov <juri@jurta.org>
3112
3113 * puresize.h (BASE_PURESIZE): Increase to 1270000.
3114
6f7d5780
DN
31152009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
3116
3117 * print.c (syms_of_print): Undo previous change.
3118
f19a0f5b
TZ
31192009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
3120
3121 * lread.c (read1, syms_of_lread): Read hashtables back from the
3122 readable format.
3123
3124 * print.c (print_preprocess, print_object): Print hashtables fully
3125 and readably.
3126 (syms_of_print): Provide 'hashtable-print-readable.
3127
b9173dc2
AR
31282009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
3129
3130 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
3131 no family set.
3132 (nsfont_open): Handle case when entity has no family.
3133
1586503c
AR
31342009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
3135
3136 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
3137 element, not a list, for match case.
3138
087048cd
KH
31392009-07-28 Kenichi Handa <handa@m17n.org>
3140
3141 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
3142 rigidly.
3143
3144 * xfont.c (xfont_list_pattern): Don't ignore the return value of
3145 font_parse_xlfd. Check font properties more rigidly.
3146
780c2506
DN
31472009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
3148
31fd7c5c
JB
3149 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
3150 bsd-common.h.
780c2506 3151
a8c0cc18
KH
31522009-07-27 Kenichi Handa <handa@m17n.org>
3153
3154 * xfaces.c (face_with_height): Call font_clear_prop.
3155
4fbe2306
CY
31562009-07-26 Chong Yidong <cyd@stupidchicken.com>
3157
111d9af3
CY
3158 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
3159
3160 * xterm.c (x_term_init): Use Qx.
3161
4fbe2306
CY
3162 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
3163
1ac9108a 3164 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
4fbe2306
CY
3165 (ns_get_color): Revert 2009-07-16 change.
3166
beb0b7f9
EZ
31672009-07-25 Eli Zaretskii <eliz@gnu.org>
3168
3169 * lread.c (syms_of_lread) <force_load_messages>: New variable.
1ac9108a 3170 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
beb0b7f9 3171
2baf5e76
KR
31722009-07-25 Ken Raeburn <raeburn@raeburn.org>
3173
1ac9108a
SM
3174 * coding.h (decode_coding_string, encode_coding_string):
3175 Use SCHARS macro.
8890e5f5 3176
2baf5e76 3177 * lread.c: Rewrite 2009-07-21 changes.
1ac9108a 3178 (load_depth): Delete.
2baf5e76
KR
3179 (Qload_in_progress): New variable.
3180 (load_unwind): Don't reference load_depth or load_in_progress.
3181 (Fload): Likewise; specbind Qload_in_progress instead.
3182 (init_lread): Don't initialize load_depth.
3183 (syms_of_lread): Initialize and protect Qload_in_progress.
3184
1395c6f5
AR
31852009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
3186
3187 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
3188
4e2f36cf
AR
31892009-07-23 Yavor Doganov <yavor@gnu.org>
3190
3191 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
3192
5dd9a6f7
AR
31932009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
3194
3195 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
7f6ad209
AR
3196 Bugs 3792, 3720, 2402.
3197 (ns_lookup_indexed_color): Check for bad index.
3198 (ns_index_color): Init unused slot to 0.
3199 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
3200 Bug 3714, possibly 3082.
5dd9a6f7 3201
c902b920
JR
32022009-07-22 Jason Rumney <jasonr@gnu.org>
3203
1ac9108a
SM
3204 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
3205 Position IME window at cursor (Bug#2570).
c902b920
JR
3206 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
3207 (globals_of_w32fns): Dynamically load functions required above.
3208
3209 * w32term.c (w32_draw_window_cursor): Send message to reposition
3210 any IME window.
3211
090101cf
CY
32122009-07-21 Chong Yidong <cyd@stupidchicken.com>
3213
3214 * fileio.c: Revert 2009-07-16 changes.
3215 (Vauto_save_include_big_deletions): New variable.
3216 (Fdo_auto_save): Disable auto-save only if
3217 auto-save-include-big-deletions is nil.
3218
e6583e3d
CY
32192009-07-21 Chong Yidong <cyd@stupidchicken.com>
3220
3221 * xdisp.c (move_it_to): For continued lines ending in a tab, take
3222 the overflowed pixels into account (Bug#3879).
3223
ece435a5
KR
32242009-07-21 Ken Raeburn <raeburn@raeburn.org>
3225
3226 * lread.c (load_depth): New variable.
3227 (Fload, load_unwind, init_lread): Set it to the load recursion
3228 depth; set load_in_progress as a simple boolean based on the
3229 current load_depth. (Bug#3892)
3230
40b2d973
AR
32312009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
3232
3233 * nsfont.m (ns_has_attribute): Remove.
3234 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
3235
10be7e0d
JL
32362009-07-18 Juri Linkov <juri@jurta.org>
3237
3238 * process.c (Fset_process_query_on_exit_flag): Mention killing
3239 a buffer in docstring.
3240
fa055055
KH
32412009-07-17 Kenichi Handa <handa@m17n.org>
3242
3243 * casetab.c (shuffle): Fix the logic of setting up the cycle.
3244
042f7b69
YM
32452009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3246
3247 * nsfns.m (Fns_set_alpha): Remove function.
3248 (syms_of_nsfns): Don't defsubr it.
3249
3250 * nsterm.m (ns_get_color): Remove incompatible color formats.
3251 (ns_color_to_lisp): Generate #rrggbb color format string.
3252
4be941e3
RS
32532009-07-16 Richard Stallman <rms@gnu.org>
3254
3255 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
3256 (Fset_buffer_auto_saved): Handle save_length = -2.
3257
4e6b227d
CY
32582009-07-16 Chong Yidong <cyd@stupidchicken.com>
3259
3260 * xterm.c (Qx_gtk_map_stock): New var.
3261
3262 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
3263 of calling intern each time.
3264
a1856973
YM
32652009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3266
3267 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
3268 does tiling.
3269
3270 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
3271
497e54d8
KH
32722009-07-14 Kenichi Handa <handa@m17n.org>
3273
72d36834
KH
3274 * font.c (font_vconcat_entity_vectors): New function.
3275 (struct font_sort_data): New member font_driver_preference.
3276 (font_compare): Check font_driver_preference.
3277 (font_sort_entities): The format of the first argument changed.
3278 (font_delete_unmatched): Likewise.
3279 (font_list_entities): The return type changed.
3280 (font_select_entity): The format of the second argument changed.
1ac9108a
SM
3281 (font_find_for_lface): Adjuste for the above changes.
3282 Don't suppress the checking of C even if the repertory supports it.
3283 (Flist_fonts): Adjust for the above changes.
72d36834 3284
1ac9108a
SM
3285 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
3286 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
497e54d8
KH
3287 Reject a font who has adstyle property that is different from a
3288 langname derived from registry property.
1ac9108a 3289 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
497e54d8 3290
b6046155
EZ
32912009-07-13 Eli Zaretskii <eliz@gnu.org>
3292
3293 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
3294 local copy of dirfilename.
3295
fb6b6049
KH
32962009-07-13 Kenichi Handa <handa@m17n.org>
3297
e2402a5e
KH
3298 * chartab.c (sub_char_table_ref_and_range): Fix the range check
3299 against max_char.
3300
fb6b6049
KH
3301 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
3302 calling XSYMBOL (sym).
3303
65156807
EZ
33042009-07-11 Eli Zaretskii <eliz@gnu.org>
3305
1ac9108a
SM
3306 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
3307 New function.
3308 (directory_files_internal) [WINDOWSNT]:
3309 Bind w32-get-true-file-attributes to either t or nil, depending whether
65156807
EZ
3310 the filesystem of the directory is fast or slow.
3311
3312 * w32.c (logon_network_drive): Don't assume PATH is an absolute
3313 file name.
3314 (is_slow_fs): New function.
3315 (stat): Use it to determine whether to issue more system calls to
3316 get accurate file attributes, when w32-get-true-file-attributes is
3317 `local'.
3318
e0ab5fcf
JD
33192009-07-10 Jan Djärv <jan.h.d@swipnet.se>
3320
3321 * xfns.c (Fx_select_font): Remember last font selected in
31fd7c5c 3322 x_last_font_name and use that the next time. Also try the frame
e0ab5fcf
JD
3323 parameter font-parameter as default to the font dialog.
3324
784ceded
KH
33252009-07-10 Kenichi Handa <handa@m17n.org>
3326
3327 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
3328
fb8edc0b
EZ
33292009-07-09 Eli Zaretskii <eliz@gnu.org>
3330
1ac9108a 3331 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
017dab84 3332
fb8edc0b
EZ
3333 * w32.c (stat): Treat UNC file names as residing on remote
3334 drives. (Bug#3542)
3335
635c75b1
KH
33362009-07-09 Kenichi Handa <handa@m17n.org>
3337
3338 * fontset.c (fontset_find_font): Fix previous change.
3339
c1d5ce94
MA
33402009-07-08 Michael Albinus <michael.albinus@gmx.de>
3341
3342 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
3343 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
3344 error flag.
3345
edb61b39
KH
33462009-07-08 Kenichi Handa <handa@m17n.org>
3347
374bf7e4
KH
3348 * fontset.c (fontset_find_font): Fix the logic of handling
3349 charset_matched.
3350 (font_for_char): Delete unused var.
3351 (generate_ascii_font_name): Delete it.
3352
edb61b39
KH
3353 * coding.h (JIS_TO_SJIS2): Fix the code range check.
3354
3355 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
3356 (encode_coding_sjis): Fix the code range check.
3357
0f3f018c
CY
33582009-07-07 Chong Yidong <cyd@stupidchicken.com>
3359
3360 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
3361 (Fexpand_file_name): Copy string data properly (Bug#3772).
3362
fcaf6f3a
JD
33632009-07-07 Jan Djärv <jan.h.d@swipnet.se>
3364
3365 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
3366 first MapNotify.
3367
6809ca75
KH
33682009-07-07 Kenichi Handa <handa@m17n.org>
3369
3370 * character.h (unibyte_has_multibyte_table): Delete extern.
3371 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
3372
3373 * charset.c (Fset_charset_priority): Update charset_unibyte.
3374 (syms_of_charset): Initialize charset_unibyte.
3375
3376 * character.c (unibyte_has_multibyte_table): Delete it.
3377 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
3378 charset_unibyte.
3379 (multibyte_char_to_unibyte_safe): Likewise.
3380 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
3381
1ac9108a 3382 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
6809ca75
KH
3383 (x_produce_glyphs): Likewise.
3384
3385 * .gdbinit (xcharset): Fix the treating $arg0.
3386
ad9e2d54
EZ
33872009-07-04 Eli Zaretskii <eliz@gnu.org>
3388
3389 Emulation of `getloadavg' on MS-Windows.
3390 * w32.c: Include float.h
3391 (g_b_init_get_native_system_info, g_b_init_get_system_times)
3392 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
3393 (get_native_system_info, get_system_times): New functions.
3394 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
3395 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
3396 (globals_of_w32): Initialize g_b_init_get_native_system_info,
3397 g_b_init_get_system_times, and num_of_processors.
3398
0a3472c7
JR
33992009-07-03 Jason Rumney <jasonr@gnu.org>
3400
3401 * w32term.c (w32_initialize): Use standard types.
3402
80904120
EZ
34032009-07-03 Eli Zaretskii <eliz@gnu.org>
3404
3405 * dired.c (Ffile_attributes): Decode user and group names by the
3406 locale's encoding. (Bug#3443)
3407
6978862d
DN
34082009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
3409
f8d23104
DN
3410 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
3411 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
3412
3413 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
3414
3415 * term.c (init_tty): Remove spurious #ifdef.
3416
6978862d
DN
3417 * m/mips.h: Mention this file is also used for netbsd.
3418 * m/pmax.h: Remove file.
3419
e044e4fc
JD
34202009-07-03 Jan Djärv <jan.h.d@swipnet.se>
3421
3422 * xterm.h (struct x_display_info): Add invisible_cursor.
3423 (struct x_output): Add current_cursor.
3424
3425 * xterm.c (XTtoggle_invisible_pointer): New function.
3426 (x_define_frame_cursor): Don't define cursor if invisible or the
3427 same as before. Set current_cursor.
3428 (x_create_terminal): Set toggle_invisible_pointer_hook.
3429
3430 * xfns.c (make_invisible_cursor): New function.
3431 (x_set_mouse_color): Call make_invisible_cursor.
3432 Set current_cursor.
3433 (x_window): Set current_cursor.
3434
3435 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
3436
3437 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
3438 inserting a character.
3439 (read_avail_input): Call frame_make_pointer_visible.
3440
3441 * frame.c (Vmake_pointer_invisible): New variable.
1ac9108a
SM
3442 (frame_make_pointer_invisible, frame_make_pointer_visible):
3443 New functions.
e044e4fc
JD
3444 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
3445
3446 * frame.h: Declare frame_make_pointer_invisible and
3447 frame_make_pointer_visible.
3448 (struct frame): Add pointer_invisible.
3449
574c8efa
JD
34502009-07-02 Jan Djärv <jan.h.d@swipnet.se>
3451
7b507248
JD
3452 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
3453 frame isn't visible.
3454 (xg_frame_resized): If width/height is -1, get size of window
3455 from X server.
3456
3457 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
3458 for MapNotify.
3459
835bdaa7 3460 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
31fd7c5c 3461 here or call change_frame_size. Just call flush_and_sync.
1ac9108a 3462 (flush_and_sync): Reintroduce.
574c8efa 3463
3f1c6666 34642009-07-01 Jan Djärv <jan.h.d@swipnet.se>
69b16610 3465
31fd7c5c 3466 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
acd51077
JD
3467
3468 * xterm.c (x_handle_net_wm_state): Also look for sticky.
3469 (x_term_init): Initialize Xatom_net_wm_state_sticky.
3470
3471 * frame.h: Declare Qsticky.
3472
cad9ef74
JD
3473 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
3474
3475 * nsfns.m (ns_frame_parm_handlers): Ditto.
3476
3477 * frame.c: Declare Qsticky.
3478 (frame_parms): Add sticky.
3479
3480 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
3481
3482 * xterm.h: Declare x_set_sticky.
3483
3484 * xterm.c (x_set_sticky): New function.
3485
69b16610
JD
3486 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
3487 (xg_tool_bar_menu_proxy): Attach enter/leave events to
3488 xg_tool_bar_proxy_help_callback.
3f1c6666
JD
3489
3490 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
3491
3492 * frame.c: Qmaximized is new.
3493 (x_set_frame_parameters): Do not handle fullscreen specially.
3494 Only set width and height if explicitly set.
3495 (x_set_fullscreen): Handle Qmaximized.
3496 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
3497 (syms_of_frame): Initialize Qmaximized.
3498
1ac9108a
SM
3499 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
3500 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
3f1c6666
JD
3501
3502 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
31fd7c5c
JB
3503 for Expose event. Add call to x_check_fullscreen for MapNotify event.
3504 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
3f1c6666
JD
3505 set gravity to NorthWestGravity when USE_GTK.
3506 (set_wm_state): New function.
31fd7c5c 3507 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
3f1c6666
JD
3508 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
3509 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
31fd7c5c 3510 or the case when no window manager is running. That means remove calls
3f1c6666
JD
3511 to x_real_positions and x_fullscreen_adjust.
3512
3513 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
3514 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
3515 flush_and_sync.
3516 (xg_height_changed): New function.
3517 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
1ac9108a
SM
3518 and gtk_window_set_policy. Set frame gravity after parsing the
3519 geometry string.
3f1c6666
JD
3520 (xg_update_frame_menubar, free_frame_menubar)
3521 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
3522 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
3523 Remove calls to xg_frame_set_char_size.
3524
fd503d99
KH
35252009-07-01 Kenichi Handa <handa@m17n.org>
3526
3527 * keyboard.c (decode_keyboard_code): New function.
3528 (tty_read_avail_input): Decode the input bytes if necessary.
3529
1ac9108a
SM
3530 * coding.c (setup_coding_system):
3531 Initialize coding->carryover_bytes to 0.
fd503d99
KH
3532 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
3533 use Qno_conversion.
3534
24ed93fb
YM
35352009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3536
3537 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
3538
99061dfc
CY
35392009-06-30 Chong Yidong <cyd@stupidchicken.com>
3540
1ac9108a 3541 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
99061dfc 3542
ff90fbde
JR
35432009-06-30 Jason Rumney <jasonr@gnu.org>
3544
3545 * w32term.c (w32_initialize): Use GetModuleHandle for library that
3546 is already loaded.
3547 Set user model ID if supported (bug#1849).
3548
5f445726
JM
35492009-06-29 Jim Meyering <meyering@redhat.com>
3550
3551 Remove useless if-before-xfree test.
3552 * nsfont.m (nsfont_close): Remove useless test.
3553 * term.c (delete_tty): Likewise.
3554 * w32.c (system_process_attributes): Likewise.
3555 * w32font.c (w32font_close): Likewise.
3556 * xfaces.c (x_free_gc): Likewise.
3557 * xselect.c (buffer): Likewise.
3558
b9607587
AS
35592009-06-28 Andreas Schwab <schwab@linux-m68k.org>
3560
3561 * process.c (send_process): Keep decoded string in a local
3562 variable and protect it from GC. (Bug#3521)
3563
89ba96f4
EZ
35642009-06-28 Eli Zaretskii <eliz@gnu.org>
3565
3566 * term.c (create_tty_output) [MSDOS]: #ifdef away.
3567 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
3568
098a1589
CY
35692009-06-28 Chong Yidong <cyd@stupidchicken.com>
3570
485422be
CY
3571 * xdisp.c (start_display, handle_face_prop)
3572 (move_it_vertically_backward, cursor_row_fully_visible_p)
1ac9108a
SM
3573 (redisplay_window, try_window_id, produce_image_glyph):
3574 Delete some #ifdef-ed out code chunks that are now obsolete.
485422be 3575
098a1589
CY
3576 * xterm.c (x_update_window_begin, x_new_focus_frame)
3577 (x_scroll_bar_handle_click, handle_one_xevent)
3578 (handle_one_xevent, XTread_socket, x_focus_on_frame)
3579 (x_make_frame_visible, x_make_frame_invisible)
3580 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
3581 code chunks that are now obsolete.
3582
78c38319
MA
35832009-06-28 Michael Albinus <michael.albinus@gmx.de>
3584
3585 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
3586 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
3587 for hours, when optimzation is enabled.
3588 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
3589 (xd_read_message): Make them static.
3590
4189ed40
CY
35912009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
3592
3593 * term.c (turn_on_face): Allow simultaneously bold and dim
3594 terminal faces (Bug#3530).
3595
cd9b5e16
CY
35962009-06-27 Chong Yidong <cyd@stupidchicken.com>
3597
4e23bedb
CY
3598 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
3599
cd9b5e16
CY
3600 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
3601 truncation glyphs (Bug#3686).
3602
07cc3c35
GM
36032009-06-27 Glenn Morris <rgm@gnu.org>
3604
3605 * m/pmax.h: Restore file, with only netbsd portions.
3606
31fd7c5c 36072009-06-26 David Reitter <david.reitter@gmail.com>
25c5550f 3608
cd9b5e16 3609 * nsterm.m (keydown): Avoid infinite loop.
25c5550f 3610
42d4a64f
KH
36112009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
3612
3613 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
3614 the arg FORCE_SYMBOL.
3615
930fe55b 36162009-06-25 Kenichi Handa <handa@m17n.org>
a71ccf3a
KH
3617
3618 * fontset.c (fontset_find_font): When a usable rfont_def is found
3619 in a fallback font-group, make it the first element of the group.
3620
57ebc3fd
CY
36212009-06-24 Chong Yidong <cyd@stupidchicken.com>
3622
3623 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
3624
f084f942
KH
36252009-06-24 Kenichi Handa <handa@m17n.org>
3626
3627 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
3628 set for C.
3629 (fontset_font): Record the availability of a font for C both in
3630 the realized fontsets of the current one and the default one.
3631
2f686c87
DN
36322009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
3633
3634 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
3635 conditional, it is always defined on AIX.
3636
666e158e
MB
36372009-06-23 Miles Bader <miles@gnu.org>
3638
3639 * window.c (Vrecenter_redisplay): New variable.
3640 (syms_of_window): Initialize it.
3641 (Qtty): New extern declaration.
3642 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
3643
c6da7cd2
JM
36442009-06-23 Jim Meyering <meyering@redhat.com>
3645
1ac9108a
SM
3646 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
3647 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
632c2030 3648 pointer dereferences are guaranteed to be valid.
c6da7cd2 3649
678dca3d
KH
36502009-06-23 Kenichi Handa <handa@m17n.org>
3651
74d75424
KH
3652 * emacs.c (main): Call init_font ().
3653
3654 * font.h (Vfont_log): Extern it.
3655 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
3656
3657 * font.c (font_sort_entities, font_list_entities)
3658 (font_matching_entity, font_open_entity)
3659 (font_close_object): Change font_add_log to FONT_ADD_LOG.
3660 (Vfont_log): Delete static.
3661 (font_log_env_checked): Delete this variable.
3662 (font_add_log): Don't check font_log_env_checked.
3663 (font_deferred_log): Check Vfont_log.
3664 (init_font): New function.
3665
678dca3d
KH
3666 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
3667
3668 * w32font.c: Change font_add_log to FONT_ADD_LOG.
3669
3670 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
3671
3672 * xfont.c: Change font_add_log to FONT_ADD_LOG.
3673
3674 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
3675 (face_for_char): Don't call font_deferred_log here.
3676 (font_for_char): Likewise.
3677
8a668709
CY
36782009-06-22 Chong Yidong <cyd@stupidchicken.com>
3679
9a01ee33
CY
3680 * w32term.c (x_draw_glyph_string): Use the glyph string's width
3681 rather than its background_width for drawing the overline and
3682 underline (Bug#489).
3683
3684 * xterm.c (x_draw_glyph_string): Use the glyph string's width
3685 rather than its background_width for drawing the overline and
3686 underline (Bug#489).
ec7c9926
CY
3687 (xg_default_icon_file): New variable.
3688 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
3689 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
9a01ee33 3690
8a668709
CY
3691 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
3692 (load_overlay_strings): Remove externs.
3693 (fast_find_position): Function deleted.
3694 (mouse_face_from_buffer_pos): New function, based on
3695 fast_find_position. Correctly handle before-strings,
3696 display-strings, and after-strings (Bug#1220).
3697 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
3698
4d4c02d8
CY
36992009-06-21 Chong Yidong <cyd@stupidchicken.com>
3700
1ac9108a 3701 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
4d4c02d8
CY
3702 (move_it_in_display_line_to, move_it_in_display_line_to)
3703 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
3704
70243478
CY
37052009-06-21 Chong Yidong <cyd@stupidchicken.com>
3706
3707 * Branch for 23.1.
3708
13087e59
JR
37092009-06-21 Jason Rumney <jasonr@gnu.org>
3710
3711 * w32term.c (keyboard_codepage): New static variable.
3712 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
3713 (w32_read_socket) [WM_CHAR]: Use it to decode character
3714 input (bug#3237).
3715 (w32_initialize): Initialize it.
3716 (codepage_for_locale): New function.
3717
4735b74e
KR
37182009-06-20 Ken Raeburn <raeburn@raeburn.org>
3719
3720 * process.c (status_message): Pass Faset index argument as a lisp
3721 object, so as to work with USE_LISP_UNION_TYPE.
3722
0e727afa
YM
37232009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3724
3725 * coding.c (Ffind_coding_systems_region_internal):
3726 Cache checked characters.
3727
cf299835
KH
37282009-06-18 Kenichi Handa <handa@m17n.org>
3729
1ac9108a 3730 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
cf299835 3731
90f20d94
AS
37322009-06-18 Andreas Schwab <aschwab@redhat.com>
3733
3734 * xdisp.c (redisplay_internal): Check that the frame is still
3735 live after redisplay of its windows.
3736 (redisplay_windows): Check that the window is still live.
3737
7f1faf1c
KH
37382009-06-17 Andreas Schwab <schwab@linux-m68k.org>
3739
3740 * coding.c (detect_coding_utf_16): Fix previous change.
3741
cc13543e
KH
37422009-06-16 Kenichi Handa <handa@m17n.org>
3743
3744 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
3745 UTF-16 by checking the dispersion of Eth and Oth bytes.
3746
977b85f4
AS
37472009-06-15 Andreas Schwab <schwab@linux-m68k.org>
3748
3749 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
3750
66bd43d1
KH
37512009-06-15 Kenichi Handa <handa@m17n.org>
3752
3753 * process.c (status_message): Fix previous change. Be sure to
3754 decode a localized string.
3755
cb5ca9c5
YM
37562009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3757
3758 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
3759 add comment explaining why.
3760
ec7709ba 37612009-06-14 Sidney Markowitz <sidney@sidney.com>
5ee6f629 3762
ec7709ba 3763 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
5ee6f629 3764
4b7f335c
AR
37652009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
3766
3767 * nsfont.m (ns_attribute_value): Remove.
3768 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
3769 (ns_has_attribute): Shrink the normal range.
3770 (ns_findfonts): Don't worry about requested spec in determining
3771 need for synthItal.
e41820ee 3772 (ns_get_covering_families): Retain scriptToFamilies.
4b7f335c 3773
73b26103
SZ
37742009-06-14 Seiji Zenitani <zenitani@mac.com>
3775
3776 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
3777
5753e4da
KH
37782009-06-11 Kenichi Handa <handa@m17n.org>
3779
3780 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
3781 overhang for the static composition case.
3782
3561b671
KH
37832009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3784
5753e4da
KH
3785 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
3786 overhang for the automatic composition case.
3787
3561b671
KH
3788 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
3789 composition case.
3790
852bbd41
CY
37912009-06-10 Chong Yidong <cyd@stupidchicken.com>
3792
3793 * xdisp.c (get_next_display_element): When handling wrap-prefix
3794 and line-prefix, treat \n as a control character (bug#3502).
3795
9903d1e6
KH
37962009-06-10 Kenichi Handa <handa@m17n.org>
3797
3798 * font.c (font_parse_family_registry): Fix for one-char foundry.
3799 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
3800
0bcbaaaa
CY
38012009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
3802
3803 * process.c (status_message): Fix handling of multibyte signal
3804 string (Bug#3499).
3805
40aa3f13
JM
38062009-06-09 Jim Meyering <meyering@redhat.com>
3807
1f80c7e2
CY
3808 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
3809 color name is missing.
40aa3f13 3810
72d51285
KH
38112009-06-09 Kenichi Handa <handa@m17n.org>
3812
3813 * charset.c (Fmap_charset_chars): In docstring, state clearly that
3814 FROM-CODE and TO-CODE are codepoints of CHARSET.
3815
c1d04d84
AR
38162009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
3817
3818 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
3819
38202009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
3821
3822 Changes to support :script/:lang/:otf in NS font driver.
3823 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
3824 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
3825 indicate not part of font driver interface, and change callers.
3826 (ns_get_family): Remove pointless null check.
3827 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
3828 ns_spec_to_descriptor, ns_descriptor_to_entity.
3829 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
3830 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
3831 (ns_spec_to_descriptor, ns_descriptor_to_entity)
3832 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
3833 (ns_get_req_script, ns_accumulate_script_ranges)
3834 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
3835 New functions.
3836 (nsfont_list, nsfont_match): Use ns_findfonts.
3837 (nsfont_open): Use font descriptor instead of traits.
3838 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
3839 (dump_glyphstring): Rename to ns_dump_glyphstring.
3840
c7eb9816
AR
3841 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
3842
c1d04d84
AR
3843 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
3844
3845 * fontset.c (fontset_from_font): Remove NS-specific code.
3846
ec7709ba 38472009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
c1d04d84
AR
3848
3849 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
3850 nonactive windows.
3851
31fd7c5c 38522009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
c1d04d84 3853
1ac9108a 3854 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
c1d04d84 3855
68852c13 38562009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
e7777236
AR
3857
3858 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
3859
6756cd1d
CY
38602009-06-07 Chong Yidong <cyd@stupidchicken.com>
3861
3862 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
3863 account for the overflowing of newlines into the last glyph on the
3864 display line (Bug#3482).
3865
28bf482a
DR
38662009-06-05 David Reitter <david.reitter@gmail.com>
3867
ec7709ba
JB
3868 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
3869 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
28bf482a
DR
3870 Fns_selection_exists_p, Fns_selection_owner_p.
3871
fdb55376
JR
38722009-06-03 Jason Rumney <jasonr@gnu.org>
3873
3874 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
3875 available. (Bug#3379)
3876
05129fbe
KH
38772009-05-29 Kenichi Handa <handa@m17n.org>
3878
1ac9108a
SM
3879 * coding.c (get_translation_table):
3880 Check Venable_character_translation.
05129fbe 3881
ec7709ba 38822009-05-26 David Reitter <david.reitter@gmail.com>
15891144 3883
ec7709ba
JB
3884 * nsterm.m (ns_raise_frame): Only raise frame if visible.
3885 (x_make_frame_visible): Move frame to front rather than calling
15891144 3886 ns_raise_frame().
ec7709ba 3887 (keyDown:): Do not swallow events that aren't re-sent if frame
15891144 3888 isn't key window.
ec7709ba 3889 (drawRect:): Do not set visibility/iconified flags because
15891144
DR
3890 drawRect may be called by NSView even if the frame is hidden.
3891
ec7709ba
JB
3892 * nsfns.m (Fx_create_frame): Follow other ports in
3893 determining visibility; default to t. Ensure async_visible is set.
15891144 3894
21f73755
EZ
38952009-05-23 Eli Zaretskii <eliz@gnu.org>
3896
3897 * dired.c (Ffile_attributes): Doc fix.
3898
34001e41
CY
38992009-05-22 Chong Yidong <cyd@stupidchicken.com>
3900
3901 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
3902
46306a17
SM
39032009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
3904
3905 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
3906 and xfont_scratch_props.
3907 (syms_of_xfont): Do it here instead.
3908 (xfont_find_ccl_program): Delete, unused.
3909 (xfont_open): Delete unused var `i'.
3910
ef6e0694
KH
39112009-05-21 Kenichi Handa <handa@m17n.org>
3912
3913 * fontset.c (Qlatin): Don't make it static.
3914
46306a17
SM
3915 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
3916 New functions.
ef6e0694
KH
3917 (xfont_scripts_cache, xfont_scratch_props): New variables.
3918 (Qlatin, Vscalable_fonts_allowed): Extern it.
46306a17
SM
3919 (xfont_list_pattern): Argument changed. Callers changed.
3920 Check Vscalable_fonts_allowed. Check the support of a script.
ef6e0694
KH
3921 (xfont_list): Don't reject a font spec with :script property.
3922 (xfont_has_char): Fix setting of encoding.
3923 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
3924 xfont_scratch_props.
3925
39262009-05-19 Kenichi Handa <handa@m17n.org>
3927
46306a17 3928 * font.c (font_sort_entities): Rename from font_sort_entites.
ef6e0694
KH
3929 Callers changed.
3930
39312009-05-18 Kenichi Handa <handa@m17n.org>
3932
3933 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
3934
ac71ced7
SM
39352009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
3936
3937 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
3938 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
3939
1c6d1051
YM
39402009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3941
3942 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
3943 (x_delete_terminal): Dissociate resource database from display and
3944 then call XrmDestroyDatabase before closing display.
3945
9b9b779c
AR
39462009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
3947
3948 * nsterm.m (ns_read_socket): Remove unused variable.
1564e649
AR
3949 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
3950 whether selected frame is viable before raising it (based on patch
3951 by David Reitter), and improve commentary.
3952 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
9b9b779c 3953
cccd42d5
KH
39542009-05-15 Kenichi Handa <handa@m17n.org>
3955
3956 * font.c (Ffont_spec): Check arguments.
3957
337fbd17
CY
39582009-05-14 Chong Yidong <cyd@stupidchicken.com>
3959
3960 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
3961 weight when testing attributes (Bug#3282).
3962
47a6002f
JD
39632009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3964
3965 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
3966 what we expect to get in the next ConfigureNotify event.
3967
9cb363db
YM
3968 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
3969 before Xft one (Bug#1696).
3970
b9126609
CY
39712009-05-07 David Reitter <david.reitter@gmail.com>
3972
3973 * nsfns.m (Fx_display_planes): Compute bitplanes using
3974 NSBitsPerPixelFromDepth (Bug#3207).
3975
27a69fd9
CY
39762009-05-10 Chong Yidong <cyd@stupidchicken.com>
3977
3978 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
3979
00f37552
TTN
39802009-05-10 Ulrich Mueller <ulm@gentoo.org>
3981
3982 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
3983
2d82a920
DR
39842009-05-07 David Reitter <david.reitter@gmail.com>
3985
ec7709ba
JB
3986 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
3987 Respect mouse face background.
2d82a920 3988
46b0d52d
DR
39892009-05-07 David Reitter <david.reitter@gmail.com>
3990
ec7709ba
JB
3991 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
3992 Mouse movement/highlight: bracket drawing operations
46b0d52d
DR
3993 in ns_update_begin and ns_update_end.
3994
ce1b23bb
SM
39952009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
3996
5996e1b7
SM
3997 * nsfns.m (ns_get_screen): Rewrite.
3998 Don't presume selected-frame is of type `ns'.
3999
ba98e3a0
SM
4000 * font.c (font_update_drivers): Sanity fallback to avoid disabling
4001 all drivers.
4002
ce1b23bb
SM
4003 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
4004
bcda200f
YM
40052009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4006
4007 * keyboard.h (add_user_signal): Fix typo in extern.
4008
4009 * lisp.h (add_user_signal): Remove extern.
4010
4011 * unexelf.c (unexec): Consider a section to precede the .bss section
4012 if its addresses overlap that of .bss.
4013 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
4014 instead of dumping process.
4015
864660a2
SM
40162009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
4017
4018 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
4019
50da4e56
SM
40202009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4021
4022 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
4023
51520a1a
DN
40242009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
4025
4026 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
4027 any statements.
4028
409ea3a1
AS
40292009-05-02 Andreas Schwab <schwab@linux-m68k.org>
4030
59c4c60f
AS
4031 * process.c (read_process_output): Make sure the current buffer is
4032 always restored.
4033
409ea3a1
AS
4034 * coding.c (record_conversion_result): Don't modify
4035 Vlast_code_conversion_error for successful result.
4036 (alloc_destination): Don't clobber conversion result. (Bug#1650)
4037
56f00ed2
KH
40382009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
4039
4040 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
896b1cc9 4041 (load_charset_map): Remove unnecessary code.
56f00ed2 4042
4491c9d2
DR
40432009-04-30 David Reitter <david.reitter@gmail.com>
4044
35f5b128 4045 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
4491c9d2
DR
4046 through f24.
4047
6970f632
CY
40482009-04-30 Chong Yidong <cyd@stupidchicken.com>
4049
4050 * xfaces.c (face_at_buffer_position): New arg base_face_id.
4051
4052 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
4053 face_at_buffer_position.
4054 (face_before_or_after_it_pos, get_next_display_element)
4055 (note_mouse_highlight): Update face_at_buffer_position call.
4056
4057 * term.c (term_mouse_highlight):
4058 * msdos.c (IT_note_mouse_highlight):
4059 * fontset.c (Finternal_char_font):
35f5b128 4060 * font.c (font_at, font_range): Update face_at_buffer_position call.
6970f632
CY
4061
4062 * dispextern.h (face_at_buffer_position): Update prototype.
4063
0c616f63
KH
40642009-04-30 Kenichi Handa <handa@m17n.org>
4065
35f5b128 4066 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
0c616f63 4067
ad3aaf33
AS
40682009-04-29 Andreas Schwab <schwab@linux-m68k.org>
4069
4070 * callproc.c (Fcall_process): Fix GC protection. Make sure
4071 current buffer is always restored.
4072
c3c963a0
YM
40732009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4074
4075 * atimer.c (init_atimer): Also clear stopped_atimers.
4076
4077 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
4078
7e3386cb
YM
4079 * process.c (create_process): Clean up merger residues of
4080 2008-07-17 change.
4081
91f68422
CY
40822009-04-29 Ulrich Mueller <ulm@gentoo.org>
4083
4084 * lread.c (Vread_circle): New variable.
4085 (read1): Disable recursive read if Vread_circle is nil.
4086
24b34550
KH
40872009-04-29 Kenichi Handa <handa@m17n.org>
4088
4089 * fontset.h (set_default_ascii_font): Delete extern.
4090
4091 * fontset.c (set_default_ascii_font): Delete this unused function.
4092
4093 * frame.c (x_set_font): When ARG is a font-object, check if the
4094 font-object matches with the ASCII font-spec of the frame's
9c358bda 4095 fontset. If not, create a new fontset for the frame. (Bug #3075)
24b34550 4096
77bf07e1
AS
40972009-04-28 Andreas Schwab <schwab@linux-m68k.org>
4098
4099 * fns.c (Flocale_info): Protect vector from GC during decoding.
4100
4101 * process.c (Fstart_process): Protect argv strings from GC during
4102 encoding.
4103
2c55aacf
AS
41042009-04-27 Andreas Schwab <schwab@linux-m68k.org>
4105
4106 * sysdep.c: Include <ctype.h>.
4107
b892d3c9
DR
41082009-04-27 David Reitter <david.reitter@gmail.com>
4109
35f5b128 4110 * nsfont.m (nsfont_open): Remove unused variable shrink.
b892d3c9
DR
4111 Remove commented-out code.
4112
9d0644c4
JB
41132009-04-26 Johan Bockgård <bojohan@gnu.org>
4114
4115 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
4116
b7053016
JR
41172009-04-25 Jason Rumney <jasonr@gnu.org>
4118
4119 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
4120
4e8231f3
YM
41212009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4122
4123 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
4124 Swap bytes in short integer if fringe bitmap width > 8.
4125
493dcf2c
KH
41262009-04-23 Kenichi Handa <handa@m17n.org>
4127
4128 * xfaces.c (Fx_list_fonts): If a font size is specified in
4129 PATTERN, set it in returned scalable fonts.
4130
401e9e57
CY
41312009-04-22 Chong Yidong <cyd@stupidchicken.com>
4132
708e05dc
CY
4133 * keyboard.c (Fset_input_meta_mode): Doc fix.
4134
4135 * dispnew.c (Fsend_string_to_terminal): Doc fix.
4136
1ac9108a 4137 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
708e05dc
CY
4138
4139 * coding.c (Fterminal_coding_system): Doc fix.
4140
4141 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
4142 (Fx_display_pixel_height, Fx_display_planes)
4143 (Fx_display_color_cells, Fx_server_max_request_size)
4144 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
4145 (Fx_display_mm_height, Fx_display_mm_width)
4146 (Fx_display_backing_store, Fx_display_visual_class)
1ac9108a
SM
4147 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
4148 Doc fixes, replacing "terminal id" with "terminal object".
708e05dc
CY
4149 (check_x_display_info): Handle terminal objects instead of
4150 terminal ids.
4151
401e9e57
CY
4152 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
4153 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
1ac9108a
SM
4154 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
4155 Doc fixes, replacing "terminal id" with "terminal object".
401e9e57 4156
df80c7f0
KH
41572009-04-21 Kenichi Handa <handa@m17n.org>
4158
5a8f12af 4159 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
c0a6070d 4160 (font_score): Check AVGWIDTH too.
908567ef 4161
df80c7f0
KH
4162 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
4163 worst case.
1ac9108a
SM
4164 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
4165 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
df80c7f0 4166
705af33f
JR
41672009-04-19 Jason Rumney <jasonr@gnu.org>
4168
4169 The following changes fix Bug#3005 for wide glyphs on each platform,
b71ac3dd 4170 without reintroducing Bug#1258 for stretch glyphs.
705af33f
JR
4171
4172 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
4173 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
4174 get_phys_cursor_geometry.
4175
b71ac3dd 4176 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
705af33f
JR
4177 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
4178 using get_phys_cursor_geometry.
4179
4180 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
4181 correctly calculated.
4182
dc2933eb
JD
41832009-04-19 Jan Djärv <jan.h.d@swipnet.se>
4184
1ac9108a
SM
4185 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
4186 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
dc2933eb
JD
4187 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
4188 is deprecated.
4189
973e7849
AS
41902009-04-18 Andreas Schwab <schwab@linux-m68k.org>
4191
4192 * font.c (font_put_frame_data): Use xfree instead of free.
4193
314d66f4
JB
41942009-04-17 Juanma Barranquero <lekktu@gmail.com>
4195
4196 * w32font.c (Qja, Qko): Remove declarations.
4197 (syms_of_w32font): Don't DEFSYM them.
4198
cf702558
CY
41992009-04-17 Chong Yidong <cyd@stupidchicken.com>
4200
4201 * font.c (Qja, Qko): Move definitions here from ftfont.c.
4202
4203 * font.h (Qja, Qko): Extern them.
4204
4205 * ftfont.c (Qja, Qko): Remove declarations.
4206
4207 * xfont.c (Qja, Qko): Remove declarations.
4208
b50504f5
KH
42092009-04-17 Kenichi Handa <handa@m17n.org>
4210
bde25748
KH
4211 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
4212 string from a vector to handle Latin-1 characters correctly.
4213
b50504f5
KH
4214 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
4215 entity even if the cache hits.
4216
f4646fff
AS
42172009-04-16 Andreas Schwab <schwab@linux-m68k.org>
4218
4219 * search.c (boyer_moore): Use zero as marker value for a possible
6340c70e 4220 match instead of depending on overflow behavior. (Bug#2844)
f4646fff 4221
e7deaab0
AS
4222 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
4223 * lisp.h: Adjust prototypes.
4224
0a0e7d49
CY
42252009-04-16 Chong Yidong <cyd@stupidchicken.com>
4226
4227 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
4228 change (Bug#3003).
4229
3c908a57
KH
42302009-04-16 Kenichi Handa <handa@m17n.org>
4231
1ac9108a 4232 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
bd0af90d
KH
4233
4234 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
4235 adstyle.
4236
4237 * ftfont.c (Qja, Qko): Don't make them static.
4238 (enum ftfont_cache_for): New enum.
4239 (fc_charset_table): Undo the previous change.
4240 (ftfont_get_latin1_charset): Delete it.
1ac9108a
SM
4241 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
4242 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
bd0af90d
KH
4243 non-scarable font, try to get AVERAGE_WIDTH.
4244 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
4245 Change ft_face_cache from a list of a hash-table. Don't check
4246 `ja' and `ko' adstyle here.
4247 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
4248 FTFONT_CACHE_FOR_CHARET.
4249 (ftfont_get_charset): Undo the previous change.
1ac9108a 4250 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
bd0af90d
KH
4251 (ftfont_close): Likewise.
4252 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
4253
4254 * font.c (font_sort_entites): Change the meaning of the arg
4255 BEST-ONLY. Don't optimize for VEC of lenght 1.
4256 (font_select_entity): Just return the value of font_sort_entites.
4257
4258 * xfaces.c (merge_face_vectors): Reflect font properties in
4259 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
4260 font_clear_prop if a face attribute doesn't change.
4261
3c908a57
KH
4262 * charset.h (charset_ksc5601): Extern it.
4263
4264 * charset.c (charset_ksc5601): New variable.
4265 (Fdefine_charset_internal): Set charset_ksc5601.
4266 (init_charset_once): Initialize charset_ksc5601 to -1.
4267
d65859c3
DN
42682009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
4269
4270 * fileio.c (history_delete_duplicates): Remove unused declaration.
4271
4272 * callint.c (history_delete_duplicates): New declaration.
4273 (Fcall_interactively): Remove command history duplicates when
4274 history_delete_duplicates is true.
4275
3ba010e5
EZ
42762009-04-14 Eli Zaretskii <eliz@gnu.org>
4277
4278 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
4279
06f19b91
KH
42802009-04-14 Kenichi Handa <handa@m17n.org>
4281
4282 * font.c (Ffont_info): Fix docstring. Fix the second element of
4283 the returned value (bug#2949).
4284
2cce8bfc
CY
42852009-04-14 Chong Yidong <cyd@stupidchicken.com>
4286
4287 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
4288
d156542d
KH
42892009-04-14 Kenichi Handa <handa@m17n.org>
4290
4291 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
4292 encoding charset is ascii_compatible.
4293
4294 * charset.c (Fdefine_charset_internal): Make charset
4295 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
4296 code_offset is 0, and covers all ASCII characters.
4297
86fa089e
SM
42982009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4299
4300 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
4301 (ns_string_to_pasteboard_internal):
4302 * nsmenu.m (process_dialog):
4303 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
4304 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
4305 * lisp.h (Fx_load_color_file): Declare.
4306
a8a3728b
KH
43072009-04-13 Kenichi Handa <handa@m17n.org>
4308
1ac9108a 4309 * font.c (font_delete_unmatched): Preserve the order of list elements.
a8a3728b
KH
4310 (font_select_entity): Suppress the code to optimize for the same
4311 kind of fonts.
4312 (font_load_for_lface): Get a font that supports at least ASCII
4313 characters.
4314
4315 * ftfont.c (Qja, Qko): New variables.
4316 (fc_charset_table): Delete uniquifier data for iso8859-1.
4317 (ftfont_get_latin1_charset): New function.
4318 (get_adstyle_property): New function.
4319 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
4320 bitmap fonts.
4321 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
4322 Delete iso-8859-1 range from the charset of fonts whose adstyle is
4323 `ko' or `ja'.
4324 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
1ac9108a 4325 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
a8a3728b
KH
4326 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
4327 property.
4328 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
4329 (syms_of_ftfont): DEFSYM Qja and Qko.
4330
483670b5
KH
43312009-04-09 Kenichi Handa <handa@m17n.org>
4332
12b55765
KH
4333 * charset.c (map_charset_chars): For a charset of `superset'
4334 method, fix calculation of code range.
4335
483670b5
KH
4336 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
4337 from the list of extra properties.
4338 (font_clear_prop): Be sure to delete `:name' font property.
4339
57d3b93b
KH
43402009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4341
b4b2c2ca
YM
4342 * dispnew.c (redraw_overlapping_rows): Fix detection of
4343 overlapping for topmost and bottommost rows.
4344
1ac9108a 4345 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
57d3b93b 4346
472c3609
JR
43472009-04-06 Jason Rumney <jasonr@gnu.org>
4348
4349 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
4350
ab193662
KH
43512009-04-06 Kenichi Handa <handa@m17n.org>
4352
4353 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
4354
4355 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
4356
0c26f026
KH
43572009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4358
4359 * ftfont.c (ftfont_open): Fix checking of the return value of
4360 FT_Load_Char. Fix setting font->underline_thickness.
4361
e173bbce
CY
43622009-04-04 Chong Yidong <cyd@stupidchicken.com>
4363
4364 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
4365 (Fterminal_parameters, Fterminal_parameter)
4366 (Fset_terminal_parameter): In doc string, refer to terminal
4367 objects rather than terminal ids.
4368
693a2698
EZ
43692009-04-04 Eli Zaretskii <eliz@gnu.org>
4370
4371 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
4372 ret_lim_data. (Bug#2867)
4373
d5221487
CY
43742009-04-03 Chong Yidong <cyd@stupidchicken.com>
4375
4376 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
4377 so they don't get wider than the window, matching 2006-01-23
4378 change to the partner function in xdisp.c (Bug#2800).
4379
223509a3
KH
43802009-04-03 Kenichi Handa <handa@m17n.org>
4381
4382 * print.c (print_object): Make each lowest sub_char_table start a
4383 new line (Bug#2866).
4384
74fcd0b1
KH
43852009-04-02 Kenichi Handa <handa@m17n.org>
4386
4387 * fontset.c (fontset_font): Record no-font when a fontset
4388 explicitly tells not to try another font-specs.
4389
c542407d
SM
43902009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
4391
4392 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
4393
e3869731
KH
43942009-03-30 Kenichi Handa <handa@m17n.org>
4395
d8d2f142
KH
4396 * fontset.c (fontset_from_font): Specify only registry in a
4397 font-spec for all characters supported by that registry.
4398
e3869731
KH
4399 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
4400 even if HAVE_M17N_FLT is not defined.
4401
5da5f805
CY
44022009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
4403
4404 * ftfont.c: Conditionalize prototyping and use of
4405 ftfont_variation_glyphs.
4406
ab226c50
SM
44072009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4408
9628fed7
SM
4409 * frame.c (delete_frame): Work around compiler bug.
4410
4411 * editfns.c (general_insert_function): Adjust to insdel.c changes.
4412 * insdel.c (prepare_to_modify_buffer, signal_before_change):
4413 Some more EMACS_INT.
4414 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
4415
4416 * xdisp.c (dump_glyph): Fix typo.
4417
ae19ba7c
SM
4418 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
4419 (adjust_markers_gap_motion, adjust_markers_for_delete)
4420 (adjust_markers_for_insert, adjust_point)
4421 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
4422 (make_gap, copy_text, count_size_as_multibyte, insert)
4423 (insert_and_inherit, insert_before_markers)
4424 (insert_before_markers_and_inherit, insert_1)
4425 (count_combining_before, count_combining_after, insert_1_both)
4426 (insert_from_string, insert_from_string_before_markers)
4427 (insert_from_string_1, insert_from_gap, insert_from_buffer)
4428 (insert_from_buffer_1, adjust_after_replace)
4429 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
4430 (replace_range_2, del_range, del_range_1, del_range_byte)
4431 (del_range_both, del_range_2, modify_region)
4432 (prepare_to_modify_buffer, signal_before_change)
4433 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
4434 for buffer positions and sizes.
4435 * lisp.h: Adjust prototypes accordingly.
4436
4437 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
4438 (non_regular_inserted, non_regular_nbytes, read_non_regular)
4439 (Finsert_file_contents): Use EMACS_INT for buffer positions.
4440
ab226c50
SM
4441 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
4442
46dfb8fb
JD
44432009-03-27 Jan Djärv <jan.h.d@swipnet.se>
4444
4445 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
4446 lines and columns so we keep the same pixel height and width.
4447
4448 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
4449 the property _NET_WM_STATE has changed.
46dfb8fb
JD
4450 (x_handle_net_wm_state): New function to update frame parameter
4451 fullscreen.
4452 (x_term_init): Initialize atoms for _NET_WM_STATE.
4453
4454 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
4455
d347e494
SM
44562009-03-27 Kevin Ryde <user42@zip.com.au>
4457
4458 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
4459 Gpm_GetEvent as an error that justifies closing the filedescriptor.
4460 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
4461 (Fgpm_mouse_stop): Pass that new parameter.
4462 * termhooks.h (close_gpm): Adjust prototype.
4463
84db11d6
SM
44642009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4465
c95a5008
SM
4466 * lisp.h (Fx_focus_frame): Declare.
4467
84db11d6
SM
4468 * callint.c (Fcall_interactively): For '^' just delegate the work to
4469 handle-shift-selection.
4470 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
4471
0a1958d6
CY
44722009-03-24 Chong Yidong <cyd@stupidchicken.com>
4473
0bfdff23
CY
4474 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
4475
0a1958d6
CY
4476 * data.c (Qinteractive_form): New variable.
4477 (Finteractive_form): Use it.
4478
4479 * eval.c (Fcommandp): Use Qinteractive_form.
4480
58aec0d6
JR
44812009-03-24 Jason Rumney <jasonr@gnu.org>
4482
4483 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
4484 Calculate total size precisely. Decode environment variables
4485 before substituting. (Bug#38)
4486
553dd618
KH
44872009-03-24 Kenichi Handa <handa@m17n.org>
4488
4489 * font.c (find_font_encoding): Return Qnil for unsupported
639239cf 4490 encoding (Bug#2722).
553dd618 4491
c39ea606
JD
44922009-03-23 Jan Djärv <jan.h.d@swipnet.se>
4493
4494 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
4495 that gdpy is set.
4496
bc9b2b5e
AM
44972009-03-22 Alan Mackenzie <acm@muc.de>
4498
4499 * callint.c (Finteractive): Clarify the doc string - even
4500 promptless elements need \n separators.
4501
9f995a76
JR
45022009-03-22 Jason Rumney <jasonr@gnu.org>
4503
4504 * w32term.c (syms_of_w32term): Doc fix for
4505 x-use-underline-position-properties.
4506
22749e9a
EZ
45072009-03-21 Eli Zaretskii <eliz@gnu.org>
4508
4509 * w32.c (getpwuid): Change argument type to unsigned.
4510 (struct w32_id): Change type of `rid' member to unsigned.
4511 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
4512 argument ID to unsigned. All callers changed.
4513 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
4514
e00553bf
EZ
45152009-03-20 Eli Zaretskii <eliz@gnu.org>
4516
4517 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
4518 negative, produce a float value.
4519
4520 * dired.c (make_uid, make_gid): New functions.
4521 (Ffile_attributes): Use them to avoid negative UID and GID.
4522
f761d6b6
JB
45232009-03-20 Juanma Barranquero <lekktu@gmail.com>
4524
4525 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
4526 (syms_of_keyboard) <command-hook-internal, input-method-function>:
4527 Fix typos in docstrings.
4528
d507f8d7
KH
45292009-03-19 Kenichi Handa <handa@m17n.org>
4530
4531 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
f761d6b6
JB
4532 changed, use font_load_for_lface to get a new font object.
4533 Call free_realized_fontset after handling ASCII font change.
d507f8d7
KH
4534
4535 * frame.c (x_set_font): Handle the case that ARG is a cons.
4536
c68845e0
GM
45372009-03-19 Glenn Morris <rgm@gnu.org>
4538
4539 * fileio.c (Fsubstitute_in_file_name): Doc fix.
4540
bfa49dd1
CY
45412009-03-19 Chong Yidong <cyd@stupidchicken.com>
4542
4543 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
4544
8458d4c1
KH
45452009-03-19 Kenichi Handa <handa@m17n.org>
4546
4547 * charset.c (load_charset_map_from_file): When a mapfile can't be
4548 loaded, signal an error.
4549
78e7d1fe
EZ
45502009-03-18 Eli Zaretskii <eliz@gnu.org>
4551
4552 * dired.c (Ffile_attributes): Make sure UID and GID are always
4553 positive, even if the value is too large for a positive EMACS_INT.
4554 Doc fix.
4555
4556 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
4557
5da9fdfa
YM
45582009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4559
4560 * xmenu.c (xdialog_show): Move Fredisplay call ...
4561 (Fx_popup_dialog): ... here.
4562
7519c40d
SM
45632009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
4564
4565 * dired.c (file_name_completion): Disable the first optimization just
4566 installed, since it is not implemented correctly.
4567
2cd298e2
SM
45682009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
4569
4570 * dired.c (file_name_completion): Check completion-ignored-extensions
c95a5008 4571 only if the entry can affect bestmatch.
2cd298e2
SM
4572 Stop the search early, as Ftry_completion already does.
4573
48d37adf
CY
45742009-03-17 Chong Yidong <cyd@stupidchicken.com>
4575
e10c9c93 4576 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
48d37adf 4577
9286b16a
CY
45782009-03-15 Chong Yidong <cyd@stupidchicken.com>
4579
4580 * keyboard.c (parse_menu_item): Don't display remappings as menu
4581 equivalent bindings (Bug#788).
4582
f7b146dc
JR
45832009-03-15 Jason Rumney <jasonr@gnu.org>
4584
4585 * w32term.h (WM_EMACS_PAINT): New message.
4586 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
4587 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
4588 before passing to lisp thread. (Bug#950)
4589
f761d6b6 45902009-03-14 David Reitter <david.reitter@gmail.com>
c6c62e78 4591
d93f9575
CY
4592 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
4593 variable as it was never reset.
4594 (ns_term_init): Remove initialization of Lisp-settable defaults
4595 and ns_expand_space.
4596 (-setPanelFromDefaultValues): Remove ns_expand_space.
4597 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
4598 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
c6c62e78
DR
4599 i.e. no additional spacing, similar to Carbon port.
4600
d93f9575
CY
4601 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
4602 * nsfns.m (ns-popup-prefs-panel): Remove.
c6c62e78 4603
305018ec
JD
46042009-03-14 Jan Djärv <jan.h.d@swipnet.se>
4605
4606 * sound.c (alsa_configure): Remove call to deprecated
4607 snd_pcm_sw_params_set_xfer_align.
4608
f761d6b6 46092009-03-14 Stephen Berman <stephen.berman@gmx.net>
4a02423f
JD
4610
4611 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
4612 after clicking in a detached tool bar.
4613 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
4614
46e722a9
SM
46152009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
4616
348db3dd
SM
4617 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
4618 int/Lisp_Object mixup).
46e722a9 4619
a3d16f39
KH
46202009-03-13 Kenichi Handa <handa@m17n.org>
4621
4622 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
fe24f56a 4623 Handle NAME nil and t correctly. Callers changed.
a3d16f39
KH
4624 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
4625 (set_fontset_font): Change ARG to a vector. Handle range_list in
4626 ARG correctly.
4627 (Fset_fontset_font): Fix the case that TARGET is both a script
fe24f56a 4628 name and charset name. Adjust the arg to set_fontset_font for
a3d16f39
KH
4629 the above change.
4630 (fontset_from_font): Fix previous change.
fe24f56a 4631 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
a3d16f39
KH
4632 entry. If FONTSET is the default fontset, don't set the extra
4633 slot of the returning char-table.
4634
b066e6b6
JB
46352009-03-12 Juanma Barranquero <lekktu@gmail.com>
4636
4637 * nsfns.m (Fx_close_connection): Doc fix.
4638 (Fns_do_applescript): Reflow docstring.
4639 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
4640 (Fx_display_pixel_width, Fx_display_pixel_height)
4641 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
4642 Fix typos in docstrings.
4643 (Fns_set_alpha): Fix typos in error messages.
4644
d472514e 46452009-03-12 David Reitter <david.reitter@gmail.com>
d6220c13 4646
d472514e 4647 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
d6220c13
DR
4648 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
4649 were used for such events.
4650
d472514e
JB
4651 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
4652 (toggleToolbar, performDragOperation, runHelp): Use it.
d6220c13 4653
d472514e 4654 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
d6220c13
DR
4655 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
4656
fb930676
KH
46572009-03-11 Kenichi Handa <handa@m17n.org>
4658
ff85581a
KH
4659 * font.h (font_open_by_spec): Extern it.
4660
c50b7e98
KH
4661 * font.c (font_open_by_spec): New function.
4662 (font_open_by_name): Use font_open_by_spec.
4663
fb930676
KH
4664 * frame.c (x_set_font): When ARG is a font-object, don't alter the
4665 fontset of the frame.
4666
4667 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
4668 modify the default font of frames that use this fontset.
4669 (num_auto_fontsets): New variable.
4670 (fontset_from_font): Use num_auto_fontsets to decide a fontset
4671 name. Be sure to set FONTSET_ASCII to the correct font name.
4672 (update_auto_fontset_alist): New function.
4673
df4e8455
JB
46742009-03-11 Juanma Barranquero <lekktu@gmail.com>
4675
4676 * makefile.w32-in: Update dependencies.
4677
0a375797
AR
46782009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
4679
4680 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
4681
61313fa3
SM
46822009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
4683
4684 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
4685
b55103fb
CY
46862009-03-10 Chong Yidong <cyd@stupidchicken.com>
4687
4688 * lread.c (Feval_buffer): Doc fix.
4689
dde2559c
KH
46902009-03-09 Kenichi Handa <handa@m17n.org>
4691
4692 * charset.c (Qfile_name_handler_alist): Extern it.
4693 (load_charset_map_from_file): Temporarily bind
4694 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
4695
df4e8455 46962009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
340e08a4 4697
47f588bb
GM
4698 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
4699 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
340e08a4 4700
4ddf94bd
AR
47012009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
4702
4c9bdfc2
AR
4703 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
4704 (x_set_window_size): Change back to calculated method of setting
4705 toolbar height under Cocoa. (Bug#2546)
4ddf94bd
AR
4706 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
4707 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
4708
fe41ae9e
AR
4709 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
4710
4c9bdfc2
AR
4711 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
4712 accelerator in parens under GNUstep.
4713
825d0875
KH
47142009-03-06 Kenichi Handa <handa@m17n.org>
4715
4716 These changes are to detect incorrect composition sequence without
f3b3be74 4717 looking ahead the source. (Bug#2370)
825d0875
KH
4718
4719 * coding.h: Include "composite.h".
4720 (enum compisition_state): New enum.
4721 (struct compisition_status): New struct.
4722 (struct iso_2022_spec): New member cmp_status.
4723 (struct emacs_mule_spec): New struct.
4724 (struct coding_system): New members ctext_extended_segment_len and
4725 embedded_utf_8. Change the union member
4726 spec.emacs_mule_full_support to spec.emacs_mule.
4727
4728 * coding.c (CODING_ISO_CMP_STATUS): New macro.
4729 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
98a326f7 4730 (MAX_ANNOTATION_LENGTH): Define to 5.
825d0875
KH
4731 (ADD_COMPOSITION_DATA): New arg nbytes.
4732 (emacs_mule_char): New arg cmp_status.
4733 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
4734 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
4735 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
4736 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
4737 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
4738 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
4739 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
4740 (EMACS_MULE_COMPOSITION_END): New macro.
4741 (emacs_mule_finish_composition): New function.
4742 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
4743 (decode_coding_emacs_mule): Avoid long looking ahead while
4744 handling composition.
4745 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
4746 (ENCODE_COMPOSITION_RULE): New macro.
4747 (finish_composition): New function.
4748 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
4749 (DECODE_COMPOSITION_START): New implementation.
4750 (DECODE_COMPOSITION_END): Likewise.
4751 (STORE_COMPOSITION_RULE): New macro.
4752 (decode_coding_iso_2022): Avoid long looking ahead while handling
4753 composition, CTEXT extended segment, and embedded UTF-8.
4754 (setup_coding_system): For a coding of type iso-2022, reset
4755 CODING_ISO_EXTSEGMENT_LEN (coding) and
4756 CODING_ISO_EMBEDDED_UTF_8 (coding).
4757 (get_translation): Delete arguments last_block, from_nchars,
4758 to_nchars. Callers changed.
4759 (produce_chars): Don't modify charbuf. Adjusted for the change of
4760 get_translation.
98a326f7 4761 (produce_composition): Adjust for the new annotation sequence.
825d0875 4762 (handle_composition_annotation): Likewise.
98a326f7 4763 (consume_chars): Adjust for the change of get_translation.
825d0875 4764
ccbc4452
AR
47652009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
4766
4ddf94bd 4767 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
ccbc4452 4768
988a7ddb
KH
47692009-03-05 Kenichi Handa <handa@m17n.org>
4770
4771 * font.c (font_select_entity): New function.
4772 (font_find_for_lface): Use font_select_entity to select a font.
4773
4774 * fontset.c (fontset_find_font): If a font found without
a8a3728b 4775 restricting to the characters C doesn't support C, try to find a
988a7ddb
KH
4776 font with C restriction.
4777
98a326f7 47782009-03-04 Nikolaj Schumacher <me@nschum.de>
2f462d73 4779
be1bce46 4780 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
2f462d73 4781
10ea2b82
JR
47822009-03-04 Jason Rumney <jasonr@gnu.org>
4783
2c93b248 4784 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
4891ba1d 4785 characters that have already been read. (Bug#2569)
2c93b248 4786
10ea2b82
JR
4787 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
4788 Log an error message if check_image_size failed.
4789 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
4891ba1d 4790 (gs_load): Mention max-image-size in size error message. (Bug#2560)
10ea2b82 4791
71a0c011
EZ
47922009-03-02 Eli Zaretskii <eliz@gnu.org>
4793
4794 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
4795 when decoding process output.
4796
2f63bba8
RS
47972009-03-01 Richard M Stallman <rms@gnu.org>
4798
4799 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
4800
4801 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
4802
0a9564cb
EZ
48032009-02-28 Eli Zaretskii <eliz@gnu.org>
4804
4805 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
4806 (decode_coding_emacs_mule, decode_coding_iso_2022)
4807 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
4808 (decode_coding_raw_text, decode_coding_charset)
4809 (setup_coding_system, decode_eol, decode_coding, consume_chars):
4810 Honor inhibit-eol-conversion. (Bug #2186)
4811
449148b3
JR
48122009-02-28 Jason Rumney <jasonr@gnu.org>
4813
4814 * coding.c (detect_coding_charset): If not checking latin extra,
4815 fail on characters between 0x80 and 0xA0. (Bug#2354)
4816
a4aee864
EZ
48172009-02-28 Eli Zaretskii <eliz@gnu.org>
4818
4819 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
2a1573ff 4820 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
a4aee864 4821
d88bee5a
GM
48222009-02-27 Glenn Morris <rgm@gnu.org>
4823
4824 * callint.c (Finteractive): Doc fix.
4825
a808f22d
KH
48262009-02-27 Kenichi Handa <handa@m17n.org>
4827
4828 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
4829
caf8d60c
CY
48302009-02-27 Chong Yidong <cyd@stupidchicken.com>
4831
4832 * font.c (font_style_to_value): Set value for unknown symbols to
4833 100 instead of 255.
b61137ea
CY
4834 (weight_table, slant_table, width_table): Treat "unspecified" as
4835 the default value.
caf8d60c 4836
1a0de25c
JB
48372009-02-26 Juanma Barranquero <lekktu@gmail.com>
4838
4839 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
4840
8fc45744
JB
48412009-02-25 Juanma Barranquero <lekktu@gmail.com>
4842
107bd7d1
JB
4843 * lread.c (Fload): Stop checking Vloads_in_progress and signal
4844 error as soon as a recursive load is detected.
8fc45744 4845
f097e223
AR
48462009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
4847
4848 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
4849 before caching.
4850
8810a12f
KH
48512009-02-24 Kenichi Handa <handa@m17n.org>
4852
4853 * fontset.c (fontset_find_font): Fix the condition for checking
4854 unavailable font.
4855
2c7d1565
GM
48562009-02-24 Glenn Morris <rgm@gnu.org>
4857
4858 * xfaces.c (Finternal_set_font_selection_order): Remove leading
4859 whitespace that confuses documentation.
4860
a20878b6
MB
48612009-02-23 Miles Bader <miles@gnu.org>
4862
4863 * process.c (Flist_system_processes, Fprocess_attributes)
4864 (syms_of_process): Rename `system-process-attributes' to
4865 `process-attributes'.
4866
b3b58c01
AS
48672009-02-22 Andreas Schwab <schwab@linux-m68k.org>
4868
1b3b981b
AS
4869 * coding.h (struct coding_system): Make safe_charsets a pointer to
4870 unsigned char.
4871 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
4872 being 255.
4873 (SAFE_CHARSET_P): Likewise.
4874 (setup_iso_safe_charsets): Properly setup safe_charsets.
4875 (Fdefine_coding_system_internal): Likewise.
4876 (setup_coding_system): Likewise. Remove unneeded casts.
4877 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
4878 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
4879 unneeded casts.
4880
b3b58c01
AS
4881 * insdel.c (del_range_2): Don't modify gap contents when called
4882 from decode_coding_object. (Bug#1809)
4883
0b6f228c
CY
48842009-02-21 Chong Yidong <cyd@stupidchicken.com>
4885
4886 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
4887 Qfont_object.
4888 (Ftype_of): Recognize font objects.
4889
4890 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
4891
4892 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
4893 moved to data.c.
4894
52f8870b
AR
48952009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
4896
4897 * nsterm.m (x_make_frame_invisible): Unset async_visible,
4898 async_iconified. Based on a patch by Christian Lynbech
4899 <christian.lynbech@tieto.com>.
4900 (EmacsView-windowDidMiniaturize:): Unset async_visible.
4901
7087d5e9
GM
49022009-02-20 Glenn Morris <rgm@gnu.org>
4903
4904 * syntax.c (Fskip_chars_forward): Fix doc typo.
4905
41d2ceef
CY
49062009-02-20 Chong Yidong <cyd@stupidchicken.com>
4907
4908 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
4909
1a3b7ca6
CY
49102009-02-19 Chong Yidong <cyd@stupidchicken.com>
4911
4912 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
4913
73cce38d
KH
49142009-02-19 Kenichi Handa <handa@m17n.org>
4915
4916 * coding.c (detect_coding): Preserve coding->mode.
2bc550cb 4917 Don't overflow coding->carryover. (Bug#2370)
73cce38d 4918
a51092ee
DN
49192009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
4920
4921 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
4922
c423ecca
KH
49232009-02-18 Kenichi Handa <handa@m17n.org>
4924
4925 * font.c (font_check_otf_features): Fix handling of `nil' element.
4926 (Ffont_spec): Describe :lang and :otf in the docstring.
4927
4c1958f4
AS
49282009-02-16 Andreas Schwab <schwab@suse.de>
4929
4930 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
4931 string.
4932
5704f39a
KH
49332009-02-16 Kenichi Handa <handa@m17n.org>
4934
4935 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
a057d86a 4936 (Bug#1723)
5704f39a 4937
8f0085aa
CY
49382009-02-14 Chong Yidong <cyd@stupidchicken.com>
4939
a057d86a 4940 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
8f0085aa
CY
4941
4942 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
4943 (handle_line_prefix): Suppress wrapping of wrap prefixes.
4944
aff01dd9
EZ
49452009-02-14 Eli Zaretskii <eliz@gnu.org>
4946
4947 * msdos.c (MAX_SCREEN_BUF): New macro.
4948 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
4949 Encode the entire run of glyphs sharing the same face, instead of
4950 doing that one glyph at a time (fixes a bug with displaying
4951 double-size characters).
4952
ba301db3
AR
49532009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
4954
4955 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
4956
4957 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
4958 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
a057d86a 4959 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
ba301db3
AR
4960
4961 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
a057d86a 4962 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
ba301db3 4963
51d861de
SM
49642009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
4965
ac146f82 4966 * keyboard.c (adjust_point_for_property): Allow stopping between two
51d861de
SM
4967 invisible areas.
4968
7fed8996
JR
49692009-02-12 Jason Rumney <jasonr@gnu.org>
4970
631ea4fb
JR
4971 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
4972 (add_font_entity_to_list): Call check_face_name even when family
4973 is unspecified.
4974
cb4a3e42
JR
4975 * w32term.c (x_display_pixel_height, x_display_pixel_width):
4976 Release DC when finished. Use NULL window to refer to desktop.
631ea4fb 4977 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
cb4a3e42 4978
7fed8996 4979 * w32font.c (add_font_entity_to_list): Fix check for substituted
631ea4fb 4980 raster fonts. (Bug#2219)
7fed8996 4981
895416e3
KH
49822009-02-12 Kenichi Handa <handa@m17n.org>
4983
4984 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
4985 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
4986 (autocmp_chars): Use fast_looking_at. Don't compose more
1dacf998 4987 characters than MAX_COMPOSITION_COMPONENTS.
895416e3
KH
4988 (find_automatic_composition): While looking forward and backward,
4989 check static composition. Fix where to stop looking forward.
4990 (composition_adjust_point): Fix checking of static composition.
4991 (Fcomposition_get_gstring): Pay attention to
1dacf998 4992 MAX_COMPOSITION_COMPONENTS.
895416e3
KH
4993
4994 * lisp.h (fast_looking_at): Extern it.
4995
4996 * search.c (fast_looking_at): New function.
4997
51d861de 4998 * term.c (encode_terminal_code): Adjust for the change of
895416e3
KH
4999 <struct glyph>.u.cmp.to.
5000 (append_composite_glyph): Likewise.
5001
51d861de 5002 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
895416e3
KH
5003 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
5004 composition.
51d861de 5005 (append_composite_glyph): Adjust for the change of
895416e3
KH
5006 <strcut glyph>.u.cmp.to.
5007
8510724d
JB
50082009-02-11 Juanma Barranquero <lekktu@gmail.com>
5009
5010 * casetab.c (init_casetab_once):
5011 * coding.c (ALLOC_CONVERSION_WORK_AREA):
5012 * font.c (font_update_lface):
5013 * fontset.c (Fnew_fontset):
5014 * ftfont.c (ftfont_drive_otf):
5015 * xfont.c (xfont_open):
5016 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
5017
294fa707
SM
50182009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5019
5020 * fileio.c (Fwrite_region): !NILP -> CONSP.
5021
b5bfebec
AS
50222009-02-10 Andreas Schwab <schwab@suse.de>
5023
5024 * process.c (send_process): Properly relocate pointer into data
adab88bd 5025 when using encoded data. (Bug#2272)
b5bfebec 5026
cb84a2be
KH
50272009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
5028
5029 * coding.c (detect_coding_charset): Fix previous change.
5030
89e09428
JR
50312009-02-08 Jason Rumney <jasonr@gnu.org>
5032
5033 * w32fns.c (w32_hide_hourglass): Handle case where frame
adab88bd 5034 disappeared while hourglass was displayed. (Bug #2193)
89e09428 5035
4470a277
AS
50362009-02-07 Andreas Schwab <schwab@suse.de>
5037
5038 * unexelf.c (unexec): Fix error message.
5039
3175b12a
AR
50402009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
5041
5042 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
adab88bd 5043 when modal window is active. (Bug #2152)
3175b12a
AR
5044 (applicationShouldTerminate:): Remove now-unneeded while loop
5045 around NSRunAlertPanel.
5046
5047 * nsmenu.m (popupSession): New file-global variable.
5048 (pop_down_menu): End the popupSession before closing dialog.
5049 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
5050 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
5051 don't query NSApp for events (just sleep instead).
5052
8434d0b8
EZ
50532009-02-07 Eli Zaretskii <eliz@gnu.org>
5054
51d861de
SM
5055 * coding.c (syms_of_coding) <translation-table-for-input>:
5056 Modify doc string to discourage use for character code unification.
8434d0b8 5057
aa82edfd
CY
50582009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5059
5060 * atimer.c (run_timers): Update pending_atimers.
5061
2d283c7c
CY
50622009-02-06 Chong Yidong <cyd@stupidchicken.com>
5063
eb306cab
CY
5064 * image.c (svg_load_image): Fix last change.
5065
2d283c7c
CY
5066 * xfns.c (Fx_create_frame): Signal an error if no font is
5067 found (Bug#2147).
5068
4d8e170e
JB
50692009-02-05 Juanma Barranquero <lekktu@gmail.com>
5070
5071 * character.c (syms_of_character) <script-representative-chars>:
5072 Fix typo in docstring.
5073
c96169a0
AR
50742009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
5075
5076 * nsmenu.m (pop_down_menu): New function.
5077 (ns_popup_dialog): Call it on unwind.
5078 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
5079 call timer_check() (Bug#2154).
5080 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
5081 handling_signal is set.
5082 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
5083
31fd7c5c 5084 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
c96169a0
AR
5085
5086 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
5087
5088 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
5089
51d861de
SM
5090 * keyboard.c (poll_for_input_1, handle_async_input):
5091 Set handling_signal under HAVE_NS.
c96169a0 5092
aacd8ba1
GM
50932009-02-04 Glenn Morris <rgm@gnu.org>
5094
5095 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
5096
4cb75c4b
KH
50972009-02-04 Kenichi Handa <handa@m17n.org>
5098
5099 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
5100
5101 * charset.c (Fchar_charset): New optional arg restriction.
5102
5103 * coding.h (coding_system_charset_list): Extern it.
5104
5105 * coding.c (coding_system_charset_list): New function.
5106
5107 * composite.c: Include coding.h and termhooks.h.
5108 (composition_gstring_p): Fix for the terminal case.
5109 (composition_gstring_width): Likewise.
5110 (fill_gstring_body): Likewise.
5111 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
5112 the frame.
5113 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
5114 is within a composition.
867d4bb3 5115 (Fcomposition_get_gstring): Fix the terminal case.
4cb75c4b
KH
5116
5117 * term.c (encode_terminal_code): Fix handling of composition.
5118 (produce_composite_glyph): For static composition, get pixel_width
5119 from struct composition.
5120
826ba17e
AS
51212009-02-02 Andreas Schwab <schwab@suse.de>
5122
5123 * unexelf.c (unexec): Handle unaligned bss offset.
5124
8ad093db
AR
51252009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
5126
5127 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
5128 XT,w32read_socket changes to ns_read_socket.
d0a76a6e 5129
8ad093db
AR
5130 * keyboard.c (handle_interrupt): Don't call
5131 quit_throw_to_read_char() under NS.
d0a76a6e 5132
8ad093db
AR
5133 * blockinput.h: Remove NS-specific code.
5134
4d18a7a2
DN
51352009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
5136
db878925
DN
5137 * dispnew.c (window_change_signal): Don't try to get the size of a
5138 suspended tty frame.
5139 * term.c (Fresume_tty): Resize if the size has changed while the
5140 tty was suspended.
5141
4d18a7a2
DN
5142 * alloc.c (mark_stack): Properly conditionalize previous change.
5143
8984df7c
JB
51442009-01-30 Juanma Barranquero <lekktu@gmail.com>
5145
5146 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
5147 * w32term.c (w32_read_socket) [SYNC_INPUT]:
5148 Remove; this code is not used on Windows.
5149
75f4f1ac
EZ
51502009-01-30 Eli Zaretskii <eliz@gnu.org>
5151
5152 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
5153 EOLs that also has stray ^M characters.
5154
07a1e794
JB
51552009-01-30 Juanma Barranquero <lekktu@gmail.com>
5156
5157 * atimer.c (run_timers, alarm_signal_handler):
5158 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
5159 * w32inevt.c (w32_console_read_socket):
5160 * w32term.c (w32_read_socket):
5161 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
5162
a8b11cc9
CY
51632009-01-30 Chong Yidong <cyd@stupidchicken.com>
5164
5165 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
5166 Initialize it as a relative filename pattern.
5167 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
5168 (Fcall_process_region): Simplify temp file creation using
5169 temporary-file-directory.
5170
c279587b
EZ
51712009-01-29 Eli Zaretskii <eliz@gnu.org>
5172
5173 * msdos.c: Rename pending_signals to msdos_pending_signals.
5174 (sig_suspender, sigprocmask): Adjust.
5175
a8fe3242
CY
51762009-01-29 Chong Yidong <cyd@stupidchicken.com>
5177
5178 * keyboard.c (pending_signals): New var.
5179 (poll_for_input, input_available_signal, init_keyboard): Set it.
5180 (process_pending_signals): New function.
5181
5182 * lisp.h (QUIT): Check pending_signals instead of
5183 interrupt_input_pending. Use process_pending_signals.
5184
51d861de 5185 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
a8fe3242 5186
51d861de 5187 * process.c (wait_reading_process_output): Use process_pending_signals.
a8fe3242
CY
5188
5189 * sysdep.c (emacs_write): Use process_pending_signals.
5190
5191 * xterm.c (XTread_socket): Update pending_signals.
5192
5193 * w32term.c (w32_read_socket): Update pending_signals.
5194
5195 * w32inevt.c (w32_console_read_socket): Update pending_signals.
5196
6570a1c4
KH
51972009-01-29 Kenichi Handa <handa@m17n.org>
5198
5199 * xftfont.c (xftfont_has_char): New function.
5200 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
5201
d72a4afa
AR
52022009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
5203
5204 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
5205 under GNUstep.
5206 (ns_query_color): New declaration.
5207
5208 * nsterm.m (ns_confirm_quit): New variable.
5209 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
5210 (EmacsApp-applicationShouldTerminate:): Use it.
5211 (EmacsPrefsController): Let user set it.
5212 (ns_query_color): New function.
5213 (ns_defined_color): Use it.
5214 (ns_initialize): Drop.
5215 (ns_term_init): Add two lines from ns_initialize(), and set
5216 input_interrupt_mode to nil.
5217
5218 * image.c (svg_load_image): Don't right-shift background RGB when
6af84d77 5219 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
d72a4afa 5220
9fe78804
KH
52212009-01-28 Kenichi Handa <handa@m17n.org>
5222
5223 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
f088b054
KH
5224 (fontset_get_font_group): Remember that no font-group is specified
5225 for C.
9fe78804 5226
fa57de36
CY
52272009-01-27 Chong Yidong <cyd@stupidchicken.com>
5228
930600e9
CY
5229 * fns.c (concat): Check for string overflow (bug#1787).
5230
fa57de36
CY
5231 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
5232 Quadruple undo limits (bug#1501).
5233
7179ce7b
KH
52342009-01-27 Kenichi Handa <handa@m17n.org>
5235
5236 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
5237 directly use GT_Get_Char_index.
5238
5239 * xftfont.c (struct xftfont_info): New member `index'.
5240
5241 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
51d861de 5242 (Ffontset_font): Adjust for the change of fontset entry.
7179ce7b 5243
5be8fcc0
CY
52442009-01-26 Kenichi Handa <handa@m17n.org>
5245
5246 * fontset.c (fontset_find_font): Fix handling of non-cons return
5247 value of fontset_get_font_group.
5248 (fontset_font): Revert last change.
5249
19ae3e61
JR
52502009-01-26 Jason Rumney <jasonr@gnu.org>
5251
5252 * w32font.c (w32font_list_internal): Return quickly if registry is
5253 unknown. Simplify final return.
5254 (add_font_entity_to_list): Break complex logic down into more
5255 manageable chunks. Move unknown registry check to
5256 w32font_list_internal.
5257
8612b71a
AR
52582009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
5259
5260 Changes to remove Feval calls from GUI under NS.
5261
d8038940
JB
5262 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
5263 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
8612b71a
AR
5264 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
5265
5266 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
5267 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
5268 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
5269 instead of NON_ASCII_KEYSTROKE_EVENT.
5270 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
5271 (EmacsApp-applicationShouldTerminate:): Query user.
5272 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
5273 instead of Feval.
5274
5275 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
5276
5277 * keyboard.c (kbd_buffer_get_event): Check for it.
5278 (keys_of_keyboard): Define lispy keys for
5279 ns-put/unput-working-text.
5280
5281 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
5282 versions.
5283 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
5284
6288ae55
CY
52852009-01-25 Chong Yidong <cyd@stupidchicken.com>
5286
5287 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
64cc3cf6 5288 setting current_buffer directly. (Bug#2044)
6288ae55 5289
289e7f8f
CY
52902009-01-24 Chong Yidong <cyd@stupidchicken.com>
5291
5ce87308 5292 * fontset.c (fontset_font): If we know there is no font, don't do
d8038940 5293 any work. (Bug#1952, bug#1990).
5ce87308 5294
64cc3cf6 5295 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
289e7f8f 5296
b3243e6f
AR
52972009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
5298
5299 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
d900b2af
AR
5300 (ns_no_defaults): New declaration.
5301 (main): Use it.
e0d2e69a 5302
d900b2af 5303 * nsterm.h (ns_no_defaults): New declaration.
e0d2e69a 5304
d900b2af 5305 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
e0d2e69a 5306
d900b2af
AR
5307 * nsterm.m (ns_no_defaults): New variable.
5308 (ns_initialize): Don't read defaults when ns_no_defaults.
5309 (EmacsView-readSelectionFromPasteboard:)
5310 (writeSelectionToPasteboard:types:): New stubbed-out methods for
d8038940 5311 NSServicesRequests protocol. (Bug#1435)
27521ca6
AR
5312 (ns_dumpglyphs_stretch): New function.
5313 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
d8038940 5314 of 2008-11-15 to other terms. (Bug#615)
b3243e6f 5315
e0d2e69a
AR
5316 * nsimage.m (setPixmapData:): Set to ignore image DPI.
5317
3ac71f5d
CY
53182009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
5319
5320 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
5321 call for Sparc64.
5322
3fe53a83
AR
53232009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
5324
5325 * nsfns.m:
5326 * nsgui.h:
5327 * nsmenu.m:
5328 * nsselect.m:
5329 * nsterm.h:
5330 * nsterm.m: Remove '23' comments that indicated code added during
5331 update from emacs-20 -> emacs-23.
5332
10f87c6f 53332009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
a3b53a85
AR
5334
5335 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
3a88a825 5336 ns_alternate_modifier. (Bug#1217)
a3b53a85 5337
c7cef62d
AR
5338 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
5339 Display all shortcuts, including those w/o super modifier.
5340
575fb8bd
AR
5341 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
5342
918b848b
CY
53432009-01-22 Chong Yidong <cyd@stupidchicken.com>
5344
5345 * fileio.c (Vwrite_region_post_annotation_function)
5346 (Vwrite_region_annotation_buffers): New vars.
5347 (build_annotations_unwind): Just reset
5348 Vwrite_region_annotation_buffers.
5349 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
5350 Call write-region-post-annotation-function.
5351 (build_annotations): Add to Vwrite_region_annotation_buffers if
5352 buffer changes.
5353
a39e2539
AR
53542009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
5355
5356 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
5357 Tiger.
51d861de
SM
5358 * nsfns.m (ns_do_applescript):
5359 Conditionalize typeUTF16ExternalRepresentation on Tiger.
a39e2539 5360
35ed44db
AR
53612009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
5362
5363 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
5364
cbe0b5bf
AR
53652009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
5366
5367 * nsmenu.m (NSMENUPROFILE): Change #if style.
4c7077c3 5368
6049d3a0
AR
5369 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
5370
5371 * nsterm.m (x_set_frame_alpha): Add prototype.
a9b4df69
AR
5372 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
5373 handle Ctrl-tab. (Bug#1841)
5374 (ns_get_color): Use unsigned long long for scanned hex string value.
5375 (ns_term_shutdown): Abort on non SIGTERM signals.
e889fa06 5376 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
b71ac3dd 5377 (EmacsPrefsController-setPanelFromDefaultValues): New function.
3a88a825 5378 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
35ed44db 5379 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
d3810c21 5380 (ns_defined_color): Fix settings of the XColor variable fields:
3a88a825 5381 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
cbe0b5bf 5382
d3810c21 5383 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
3a88a825 5384 DPI. (Bug#1316)
d3810c21
AR
5385 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
5386 values in onTiger section.
4c7077c3 5387
e301e634
CY
53882009-01-19 Chong Yidong <cyd@stupidchicken.com>
5389
7f82490b
CY
5390 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
5391 Check return value of font_spec_from_name.
64cc3cf6 5392 (Fx_list_fonts): Doc fix. (Bug#1951)
7f82490b
CY
5393
5394 * font.c (font_spec_from_name): Return Qnil if font name could not
5395 be parsed.
5396 (font_parse_name): Treat a `?' character as part of an XLFD.
5397
e301e634
CY
5398 * fns.c (Fsubstring): Doc fix.
5399
1c0db158
KH
54002009-01-19 Kenichi Handa <handa@m17n.org>
5401
51d861de 5402 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
1c0db158
KH
5403 (ftfont_list): Likewise.
5404
acf20901
JB
54052009-01-18 Juanma Barranquero <lekktu@gmail.com>
5406
fff4e459
JB
5407 * dbusbind.c (Fdbus_register_signal):
5408 * process.c (conv_sockaddr_to_lisp):
5409 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
5410
acf20901
JB
5411 * callproc.c (Fgetenv_internal): Doc fix.
5412
e7abcdfb
CY
54132009-01-16 Chong Yidong <cyd@stupidchicken.com>
5414
5415 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
5416 it is not even used.
5417
b60861e6
GM
54182009-01-16 Glenn Morris <rgm@gnu.org>
5419
5420 * font.c (Ffont_variation_glyphs): Silence compiler.
5421
8db52afe
JB
54222009-01-15 Juanma Barranquero <lekktu@gmail.com>
5423
5424 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
5425 Reported by David Robinow <drobinow@gmail.com>.
5426
4cddb209
KH
54272009-01-15 Kenichi Handa <handa@m17n.org>
5428
51d861de 5429 * coding.c (detect_coding_system): Fix handling of null_byte_found.
4cddb209 5430
f247f67b
JR
54312009-01-14 Jason Rumney <jasonr@gnu.org>
5432
5433 * frame.c (x_set_font): Always store a font to the font parameter,
fff4e459 5434 never a fontset. (Bug#1562)
f247f67b 5435
f56a4450
KH
54362009-01-14 Kenichi Handa <handa@m17n.org>
5437
5438 * coding.c (TWO_MORE_BYTES): New macro.
fff4e459 5439 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
f56a4450 5440
4e99855e
CY
54412009-01-13 Chong Yidong <cyd@stupidchicken.com>
5442
5443 * font.c (font_clear_prop): If clearing the family, clear the font
5444 width index too.
5445
fff4e459 5446 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
4e99855e 5447
24f01470
JB
54482009-01-12 Juanma Barranquero <lekktu@gmail.com>
5449
5450 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
5451 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
5452 functions, use sizeof.
5453
a41240a3
MR
54542009-01-12 Martin Rudalics <rudalics@gmx.at>
5455
5456 * keyboard.c (read_char): Fix case where last_nonmenu_event
5457 returned a bad value with submenus. (Bug#447)
5458
944636b8
CY
54592009-01-12 Chong Yidong <cyd@stupidchicken.com>
5460
5461 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
5462 family, clear the font width index too.
5463
0dad7c6f
JR
54642009-01-11 Jason Rumney <jasonr@gnu.org>
5465
5466 * keyboard.c (cmd_error_internal): Exit when errors occur before
5467 frame creation and not in daemon mode. (Bug#1836)
5468
7c2363af
CY
54692009-01-10 Chong Yidong <cyd@stupidchicken.com>
5470
5471 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
5472 of a display vector, backtrack.
5473 (try_window_reusing_current_matrix): Check glyph type before
5474 referencing charpos member.
5475
97b1b294
EZ
54762009-01-10 Eli Zaretskii <eliz@gnu.org>
5477
5478 Fix Bug #876:
5479
5480 * coding.c (inhibit_null_byte_detection): New variable.
5481 (detect_coding, detect_coding_system): Don't pay attention to null
5482 bytes if inhibit_null_byte_detection is non-zero.
51d861de 5483 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
97b1b294
EZ
5484 <inhibit-iso-escape-detection>: Doc fix.
5485
4624b6e3
JR
54862009-01-09 Jason Rumney <jasonr@gnu.org>
5487
5488 * w32font.c (add_font_entity_to_list): Don't report unknown
fff4e459 5489 Windows charset as any unrecognized registry. (Bug#1548)
4624b6e3
JR
5490 Only report Unicode Plane 2 fonts as unicode-sip.
5491
323b840c
CY
54922009-01-09 Chong Yidong <cyd@stupidchicken.com>
5493
51d861de
SM
5494 * xfaces.c (Fx_font_family_list): Delete function.
5495 Move compatibility version to faces.el.
323b840c 5496
51d861de 5497 * font.c (Ffont_family_list): Return a list of strings, not symbols.
323b840c 5498
eba7400d
MR
54992009-01-09 Martin Rudalics <rudalics@gmx.at>
5500
5501 * frame.c (x_set_frame_parameters): Remember requested value for
5502 fullscreen before it's reset by the parameter handler.
5503
4b09796d
GM
55042009-01-09 Glenn Morris <rgm@gnu.org>
5505
5506 * keyboard.c (last_command_char): For clarity, rename to...
46e722a9 5507 (last_command_event): ... and update all users.
4b09796d
GM
5508 (last_input_char): For clarity, rename to...
5509 (last_input_event): ... and update all users.
5510 (last-command-char, last-input-char): Move to subr.el as aliases.
5511 * cmds.c, commands.h: Update for last_command_char rename.
5512
14ccea62
CY
55132009-01-08 Chong Yidong <cyd@stupidchicken.com>
5514
51d861de 5515 * font.c (font_open_for_lface): Handle unspecified height attribute.
14ccea62 5516
5f004711
JR
55172009-01-08 Jason Rumney <jasonr@gnu.org>
5518
5519 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
5520 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
5521 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
5522 Don't declare.
fff4e459 5523 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
5f004711
JR
5524 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
5525
b71f6f73
KH
55262009-01-07 Kenichi Handa <handa@m17n.org>
5527
50b06221 5528 * fileio.c (Finsert_file_contents): In the case of replace,
f56a4450 5529 remember the coding system used for decoding in
50b06221
KH
5530 coding_system (Bug#1039).
5531
b71f6f73 5532 * coding.c (decode_coding_utf_8): Check byte_after_cr before
79a97217 5533 breaking the loop. (Bug#870)
b71f6f73
KH
5534 (decode_coding_utf_16, decode_coding_emacs_mule)
5535 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
5536 (decode_coding_charset): Likewise.
5537
56f668f7
MR
55382009-01-05 Martin Rudalics <rudalics@gmx.at>
5539
5540 * frame.c (x_set_frame_parameters): Make sure height (width) get
5541 applied when fullwidth (fullheight) is set. (Bug#1522)
5542
5da9424d
JB
55432009-01-04 Juanma Barranquero <lekktu@gmail.com>
5544
5545 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
5546 (utc_base): Declare as ULONGLONG, not long double.
5547 (convert_time_raw): Delete.
5548 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
5549 (initialize_utc_base): New function.
5550 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
5551 (convert_from_time_t): Use initialize_utc_base; compute result with
5552 64-bit arithmetic.
5553 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
5554
c4605e09
EZ
55552009-01-03 Eli Zaretskii <eliz@gnu.org>
5556
9acef61c 5557 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
c4605e09
EZ
5558 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
5559 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
5560 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
5561 [!subprocesses]: Define.
5562 (syms_of_process) [!subprocesses]: Intern and staticpro them.
5563 (Flist_system_processes, Fsystem_process_attributes)
5564 [!subprocesses]: Call list_system_processes and
5565 system_process_attributes instead of returning Qnil.
5566
9acef61c
JB
5567 * dosfns.c (system_process_attributes, list_system_processes):
5568 New functions.
c4605e09
EZ
5569
5570 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
5571
5572 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
5573 Don't use the default (no-op) implementation.
5574
8b7d0a16
JR
55752009-01-03 Jason Rumney <jasonr@gnu.org>
5576
a6d46bc1
JR
5577 * keyboard.c (parse_modifiers_uncached): Wheel events are
5578 clicks (bug#687).
5579
8b7d0a16
JR
5580 * w32term.c (x_query_colors, x_query_color): New functions.
5581
5582 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
5583 (svg_load_image): Cast returned pointers from dynamically loaded
5584 functions. Eliminate W32 specific code.
5585
bfe11752
DN
55862009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
5587
89e2438a
DN
5588 * nsfns.m (x_set_foreground_color, x_set_background_color)
5589 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
5590 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
5591 x_ prefix instead of ns_. Update references.
5592 (syms_of_nsfns): Add a FIXME comment.
5593
5594 * nsterm.m (x_set_cursor_type): New prototype.
5595 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
5596
bfe11752
DN
5597 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
5598 for Solaris instead of incorrectly providing Qutime and Qcutime.
5599
031da700
EZ
56002009-01-02 Eli Zaretskii <eliz@gnu.org>
5601
5602 * w32.c (process_times): Compute sum of utime and stime.
5603 (system_process_attributes): Add Qtime to the alist.
5604
5605 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
5606 and add them to the alist.
5607
5608 * process.c (top level) <Qtime, Qctime>: New variables.
5609 (syms_of_process): staticpro them.
5610 (Fsystem_process_attributes): Add their documentation to the doc
5611 string.
5612
5613 * process.h: Declare Qtime and Qctime.
5614
df23bf08
JR
56152009-01-02 Jason Rumney <jasonr@gnu.org>
5616
9acef61c 5617 * image.c (Qgobject): New symbol.
df23bf08
JR
5618 (syms_of_image): Initialize it.
5619 (init_svg_functions): Load some functions from gobject library.
5620
5bbdf7aa
DN
56212009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
5622
5623 * frame.c (make_terminal_frame): Remove redundant code and useless
5624 block.
5625
63136da6
AS
56262009-01-01 Andreas Schwab <schwab@suse.de>
5627
5628 * process.c (conv_sockaddr_to_lisp): Add workaround for
5629 getsockname bug on BSD.
5630
9ef69046
CY
56312009-01-01 Chong Yidong <cyd@stupidchicken.com>
5632
d6fafbe0
CY
5633 * xfns.c (x_create_tip_frame): Set border width of the X window.
5634
51d861de 5635 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
9ef69046 5636
f9c34147
JR
56372009-01-01 Jason Rumney <jasonr@gnu.org>
5638
9acef61c 5639 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
f9c34147
JR
5640 Don't block input, as per earlier xterm.c changes.
5641
f5497e45
AR
56422008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
5643
5644 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
5645 (ns_appkit_version_int): New function.
5646 (x-server-version): Use ns_appkit_version_int and follow 21+
5647 convention of returning 3 integers.
5648
c19cab20
KH
56492008-12-30 Kenichi Handa <handa@m17n.org>
5650
5651 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
5652 (CHAR_SURROGATE_PAIR_P): New macro.
5653
5654 * font.h (struct font_driver): New member get_variation_glyphs.
5655
9acef61c 5656 * font.c (font_range): Don't require a font for a variation selector.
c19cab20
KH
5657 (Ffont_variation_glyphs): New function.
5658 (syms_of_font): Defsubr it.
5659
5660 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
5661 ftfont_variation_glyphs.
5662 (setup_otf_gstring): New function.
5663 (ftfont_drive_otf): Use it.
5664 (ftfont_shape_by_flt): Handle variation selector.
5665 (ftfont_variation_glyphs): New function.
5666
28cd591f
MR
56672008-12-30 Martin Rudalics <rudalics@gmx.at>
5668
5669 * frame.c (Vemacs_iconified): Remove.
5670
7f714baf
JR
56712008-12-30 Jason Rumney <jasonr@gnu.org>
5672
5673 * frame.c (store_frame_param, x_get_arg): Enable newer code on
9acef61c 5674 WINDOWSNT too, as related changes have already been synced. (Bug#117)
7f714baf 5675
9d2d22ab
CY
56762008-12-30 Chong Yidong <cyd@stupidchicken.com>
5677
5678 * indent.c (Fvertical_motion): Don't advance iterator if we have
5679 reseated to the desired position.
5680
5681 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
5682 checking for pos match.
5683
545312c2
KH
56842008-12-30 Kenichi Handa <handa@m17n.org>
5685
1ede3eb6
KH
5686 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
5687 just get the low 8-bit of the code.
5688
545312c2
KH
5689 * font.c (font_intern_prop): Validate str as multibyte.
5690
bd7bbf29
DN
56912008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
5692
31e0750e
DN
5693 * dispextern.h (struct face): Move lface and hash from the middle
5694 of bitfields.
5695
bd7bbf29
DN
5696 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
5697
b5672e7c
DN
56982008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
5699
5700 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
5701 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
5702 instead of intervals.h.
5703
d704470f
AS
57042008-12-26 Andreas Schwab <schwab@suse.de>
5705
5706 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
5707 cons.
5708
54b33868
MR
57092008-12-26 Martin Rudalics <rudalics@gmx.at>
5710
5711 * textprop.c (Qminibuffer_prompt): New variable.
5712 (syms_of_textprop): Initialize it.
5713 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
5714 in minibuffer-prompt face. (Bug#1662)
5715
40b615d6
JR
57162008-12-25 Jason Rumney <jasonr@gnu.org>
5717
5718 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
5719
baae5c2d
JR
57202008-12-24 Jason Rumney <jasonr@gnu.org>
5721
5722 * ralloc.c (r_alloc_reset_variable): New function.
5723
5724 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
9acef61c 5725 record of what points where. (Bug#716)
baae5c2d 5726
a9051c88
DN
57272008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
5728
5729 * minibuf.c (read_minibuf): Follow the non-interactive case when
5730 running as a daemon, before detaching.
5731
8b146312
AS
57322008-12-22 Andreas Schwab <schwab@suse.de>
5733
5734 * buffer.c (init_buffer): Use realloc instead of xrealloc.
5735 * gtkutil.c (free_widget_value): Use xfree instead of free.
5736
56f2de10
MR
57372008-12-22 Martin Rudalics <rudalics@gmx.at>
5738
5739 * frame.c (delete_frame): New function derived from
5740 Fdelete_frame to handle Qnoelisp value for FORCE argument.
5741 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
5742 (Fdelete_frame): Call delete_frame. Remove line from doc-string
5743 saying that FORCE non-nil doesn't run `delete-frame-functions'.
5744 * frame.h: Extern delete_frame.
5745 * window.c (window_loop):
5746 * terminal.c (delete_terminal):
5747 * xterm.c (x_connection_closed):
5748 * xfns.c (Fx_hide_tip):
9acef61c 5749 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
56f2de10 5750
1fc200d6
JR
57512008-12-21 Jason Rumney <jasonr@gnu.org>
5752
5753 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
5754 when character maps to .notdef character.
5755
5e252df2
SM
57562008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
5757
5758 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
5759
99b72cc4
JR
57602008-12-20 Jason Rumney <jasonr@gnu.org>
5761
5762 * frame.c (Fmake_terminal_frame): Raise an error when called from
9acef61c 5763 a graphical frame on Windows. (Bug#1325)
99b72cc4 5764
acc49a52
JD
57652008-12-20 Jan Djärv <jan.h.d@swipnet.se>
5766
5767 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
5768
6ea15123
CY
57692008-12-20 Chong Yidong <cyd@stupidchicken.com>
5770
5771 * minibuf.c (Fread_buffer): Doc fix.
5772
b2dab6c8
JR
57732008-12-20 Jason Rumney <jasonr@gnu.org>
5774
54ea0c87 5775 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
9acef61c 5776 server name in UNC paths. (Bug#719)
54ea0c87 5777
b2dab6c8 5778 * coding.c (decode_coding): Clear chars_at_source flag when using
9acef61c 5779 charbuf. (Bug#1035)
b2dab6c8 5780
6d1921be
DN
57812008-12-19 Daniel Engeler <engeler@gmail.com>
5782
5783 * sysdep.c (serial_configure): Fix typo.
5784
53934c98
DN
57852008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
5786
5787 * sysdep.c: Include alloca.h.
f4f634e8
DN
5788 (system_process_attributes): Add implementation for Solaris.
5789
5790 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
53934c98 5791
06e111a6
DN
57922008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
5793
5794 Reorganize implementation of Flist_system_processes and
5795 Fsystem_process_attributes. No functional changes.
5796 * process.c: Don't #include pwd.h, grp.h and limits.h.
5797 (Flist_system_processes): Just call list_system_processes.
5798 (Fsystem_process_attributes): Just call system_process_attributes.
5799 (procfs_list_system_processes, time_from_jiffies)
5800 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
5801 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
5802
5803 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
5804 (list_system_processes): Rename from
5805 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
5806 Provide a do nothing implementation.
5807 (system_process_attributes): Rename from
5808 procfs_list_system_processes.
5809 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
9acef61c 5810 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
06e111a6
DN
5811
5812 * w32.c (list_system_processes): Rename from
5813 w32_list_system_processes.
5814 (system_process_attributes): Rename from
5815 w32_system_process_attributes.
5816
5817 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
5818
5819 * process.h (w32_list_system_processes)
5820 (w32_system_process_attributes): Remove.
362654a6
JB
5821 (list_system_processes, system_process_attributes):
5822 New prototypes.
06e111a6 5823
6a705b23
KH
58242008-12-19 Kenichi Handa <handa@m17n.org>
5825
5826 * xfont.c (xfont_decode_coding_xlfd): New function.
5827 (xfont_encode_coding_xlfd): New function.
5828 (xfont_list_pattern): Decode XLFD by iso-8859-1.
5829 (xfont_list): Decode and encode XLFD by iso-8859-1.
5830 (xfont_match): Likewise.
5831 (xfont_list_family): Likewise.
5832 (xfont_open): Likewise.
5833
d66c0241 5834 * ftfont.c (ftfont_open): Generate a multibyte string if given
6a705b23
KH
5835 names are utf-8.
5836
d66c0241 5837 * xftfont.c (xftfont_open): Generate a multibyte string if given
6a705b23
KH
5838 names are utf-8.
5839
5a130941
JD
58402008-12-18 Jan Djärv <jan.h.d@swipnet.se>
5841
5842 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
5843 changed.
bfd20325
JD
5844 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
5845 clicked on a detached tool bar button.
5a130941 5846
fd95644b
DN
58472008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
5848
5849 * emacs.c (main): Print and error and exit when no data is read
5850 from the pipe.
5851
e6eee6ae
JR
58522008-12-17 Jason Rumney <jasonr@gnu.org>
5853
5854 * w32font.c (w32font_has_char): Always return -1.
5855
a35dd56b
KH
58562008-12-16 Kenichi Handa <handa@m17n.org>
5857
5858 * font.c (font_open_entity): Fix previous change.
5859
0e3635c2
DN
58602008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
5861
5862 * process.c: Include <limits.h>.
5863
d4835507 58642008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
b5356c39
CY
5865
5866 * font.c (font_update_drivers): Fix mistake in reconstructing the
5867 driver list.
5868
58692008-12-16 Chong Yidong <cyd@stupidchicken.com>
5870
5871 * font.c (font_clear_cache): Fix format of font cache data.
5872
e2cbc401
CY
58732008-12-15 Chong Yidong <cyd@stupidchicken.com>
5874
5875 * xftfont.c (xftfont_open): Free Xft font pattern if
5876 XftFontOpenPattern fails.
5877
5878 * xterm.c (x_free_frame_resources): Remove extraneous call to
5879 free_frame_faces.
5880
b131d535
CY
58812008-12-13 Chong Yidong <cyd@stupidchicken.com>
5882
5883 * xterm.c (x_delete_display): Move xim_close_dpy call to
5884 x_delete_terminal.
5885 (x_delete_terminal): Call xim_close_dpy.
5886
e6df5336
JR
58872008-12-13 Jason Rumney <jasonr@gnu.org>
5888
5889 * w32font.c (intern_font_name): New function.
5890 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
5891 (w32font_open_internal, Fx_select_font): Decode font name.
5892 (fill_in_logfont, list_all_matching_fonts): Encode font name.
5893
5894 * w32font.h (intern_font_name): Declare new function.
5895
5896 * w32uniscribe.c (add_opentype_font_name_to_list):
5897 Use intern_font_name.
5898
20d68145
CY
58992008-12-13 Chong Yidong <cyd@stupidchicken.com>
5900
9f2554de
CY
5901 * frame.c (Fdelete_frame): Call free_font_driver_list.
5902
3d9bec9a
CY
5903 * font.c (free_font_driver_list): Implement missing function.
5904
20d68145
CY
5905 * w32term.c (w32_term_init): Don't initialize the image cache
5906 here; it will be done in init_frame_faces.
5907
5908 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
5909 (struct x_display_info): Remove unused member null_pixel. New
5910 member xim_callback_data.
5911
5912 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
5913 (xim_initialize): Save pointer to callback function data.
5914 (xim_close_dpy): Free callback function data. Call XCloseIM,
5915 reverting 2008-11-04 change by David Smith.
5916 (x_term_init): Don't initialize the image cache here; it will be
5917 done in init_frame_faces. Remove ancient "null_pixel" cruft.
5918 (x_delete_display): Free x_dnd_atoms member.
5919
96f9306b
KH
59202008-12-13 Kenichi Handa <handa@m17n.org>
5921
6dec9044
JB
5922 * font.c (font_rescale_ratio): Moved from xfaces.c.
5923 Argument type changed. Handle a font-spec too.
96f9306b 5924 (font_score): Check Vface_font_rescale_alist.
6dec9044 5925 (font_open_entity): Likewise. (Bug#1547)
96f9306b
KH
5926
5927 * xfaces.c (font_rescale_ratio): Moved to font.c.
5928
8d5b4964
CY
59292008-12-13 Chong Yidong <cyd@stupidchicken.com>
5930
5931 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
5932
e6df5336
JR
59332008-12-12 Jason Rumney <jasonr@gnu.org>
5934
5935 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
5936 Vwindow_system_version to the real w32 major version.
5937
97c6058a
DN
59382008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
5939
5940 * term.c (init_tty): Move setting the terminal name before the
5941 potential user: maybe_fatal.
5942
ec4e88d7
CY
59432008-12-11 Chong Yidong <cyd@stupidchicken.com>
5944
d4835507
JB
5945 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
5946 all callers changed. Call free_frame_faces to free the face cache.
ec4e88d7 5947
b4233ec9
JR
59482008-12-11 Jason Rumney <jasonr@gnu.org>
5949
8ec71e23 5950 * w32font.c (fill_in_logfont): Don't assume symbol script means
9acef61c 5951 SYMBOL_CHARSET. (Bug#547)
8ec71e23 5952
b4233ec9 5953 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
9acef61c 5954 size for surrogates. (Bug#1096, bug#872)
b4233ec9 5955
011a0143
JB
59562008-12-11 Juanma Barranquero <lekktu@gmail.com>
5957
5958 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
5959
3c309f34
JB
59602008-12-11 Juanma Barranquero <lekktu@gmail.com>
5961
5962 * process.c (Fsystem_process_attributes, syms_of_process):
5963 Fix typo in name of Ssystem_process_attributes.
5964 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
5965
fedc6ab5
JB
59662008-12-11 Juanma Barranquero <lekktu@gmail.com>
5967
5968 * syntax.c (Fmodify_syntax_entry): Doc fix.
5969
ba3de0e8
JB
59702008-12-10 Juanma Barranquero <lekktu@gmail.com>
5971
5972 * font.c (Ffont_spec): Move usage to end of docstring.
5973
174f1c74
JR
59742008-12-10 Jason Rumney <jasonr@gnu.org>
5975
5976 * w32font.c (Qcham): New symbol.
5977 (font_supported_scripts): Add cham, and comments for other new
5978 scripts in bitfield from OpenType spec.
9d32f818
JR
5979 (add_font_entity_to_list): Limit unicode-sip fonts to those that
5980 contain characters beyond the bmp.
174f1c74 5981
7b649478
KH
59822008-12-10 Kenichi Handa <handa@m17n.org>
5983
5984 * ftfont.c (fc_charset_table): Add "unicode-sip".
2ae37cf0 5985 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
7b649478
KH
5986 Qunicode_sip.
5987
2133e2d1
JB
59882008-12-10 Juanma Barranquero <lekktu@gmail.com>
5989
5990 * coding.c (QCdefault_char): Rename from QCdefalut_char.
5991 (Fcoding_system_put): Use QCdefault_char.
5992 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
5993
9af886ee
CY
59942008-12-09 Chong Yidong <cyd@stupidchicken.com>
5995
74d819eb
CY
5996 * xftfont.c (syms_of_xftfont): Fix typo.
5997
4ccfa1c0 5998 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
9af886ee 5999
7c19d3ae
DN
60002008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
6001
6002 * emacs.c (main): Close daemon_pipe on exec.
6003
567826bb
CY
60042008-12-08 Chong Yidong <cyd@stupidchicken.com>
6005
6006 * termchar.h (struct tty): New members termcap_term_buffer and
6007 termcap_strings_buffer.
6008
6009 * term.c (encode_terminal_code): Free any previous memory blocks
4ccfa1c0 6010 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
567826bb
CY
6011 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
6012 All callers changed.
6013 (init_tty): Store termcap data and string buffers in new struct
6014 tty members termcap_term_buffer and termcap_strings_buffer.
6015 (delete_tty): Free them.
4ccfa1c0 6016 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
567826bb 6017
aa96c42b
SZ
60182008-12-07 Seiji Zenitani <zenitani@mac.com>
6019
6020 * nsfns.m (ns_set_background_color): Remove code duplication.
4ccfa1c0 6021 It was a substitute for face-transparency on OS X 10.3.
aa96c42b 6022
b7e1d896
CY
60232008-12-06 Chong Yidong <cyd@stupidchicken.com>
6024
6025 * coding.c (make_conversion_work_buffer): Disable buffer
6026 modification hooks in the work buffer.
6027
b5ec91a5
EZ
60282008-12-05 Eli Zaretskii <eliz@gnu.org>
6029
6030 * process.c (procfs_system_process_attributes): If `nread' has a
6031 negative value, assign zero to it.
6032
a5d2a52b
CY
60332008-12-05 Chong Yidong <cyd@stupidchicken.com>
6034
68c5540b 6035 * eval.c (Vdebug_on_error): Doc fix.
a5d2a52b 6036
7bf1bb21
KH
60372008-12-05 Kenichi Handa <handa@m17n.org>
6038
6039 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
6040 second character is a combining character.
6041
2fdc7d00
EZ
60422008-12-05 Eli Zaretskii <eliz@gnu.org>
6043
6044 * process.c (procfs_system_process_attributes): Don't use cmd,
6045 cmdsize, and q without initializing them first.
6046
bf6bfba8
JR
60472008-12-04 Jason Rumney <jasonr@gnu.org>
6048
6049 * w32font.c (w32font_draw): Initialize orig_clip before getting
6050 it, and delete it when finished.
6051
a3b1a468
DN
60522008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
6053
6054 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
6055 case when running as a daemon before detaching.
6056
8b8be8eb
JB
60572008-12-03 Juanma Barranquero <lekktu@gmail.com>
6058
805f2638 6059 * w32.c (init_environment): Don't unload library shell32.dll.
8b8be8eb 6060
b1bde622
KH
60612008-12-03 Kenichi Handa <handa@m17n.org>
6062
e500c47d
KH
6063 * font.c (font_at): Set `multibyte' at first.
6064
ca516334
KH
6065 * coding.c (decode_coding_charset): Check type of an element of
6066 vector VALIDS.
7bf1bb21 6067 (encode_coding_emacs_mule): Be sure to set `code'.
ca516334 6068
4ccfa1c0 6069 * fontset.c (face_for_char): Handle invalid charset property correctly.
b1bde622
KH
6070 (font_for_char): Likewise.
6071
1e5ecd37
CY
60722008-12-03 Chong Yidong <cyd@stupidchicken.com>
6073
d5b01609 6074 * font.c (Fopen_font): Compute pixel size correctly.
ba207571
CY
6075 (font_update_lface): Handle fonts with corrupted size specs,
6076 i.e. non-int and non-float.
d5b01609 6077
11e3a6e4 6078 * ftfont.c (ftfont_match): Initialize entity variable.
9a48c8cb 6079 (ftfont_resolve_generic_family): Avoid using uninitialized var.
8adb3a3b 6080 (ftfont_list_family): Initialize list var earlier.
11e3a6e4 6081
ab06788b
CY
6082 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
6083
1e5ecd37 6084 * xterm.c (x_draw_glyph_string): Fall back on
0cff82ab 6085 underline_minimum_offset for underline position.
1e5ecd37 6086
63c125ab
DN
60872008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
6088
6089 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
6090
6091 * character.c (c_string_width): Specify the type for LEN.
6092
3a8406e1
KH
60932008-12-03 Kenichi Handa <handa@m17n.org>
6094
4ccfa1c0 6095 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
453b38f0 6096 (decode_coding_utf_8): Likewise.
4ccfa1c0 6097 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
4533845d 6098 (produce_chars): Initialize consumed_chars to 0.
3a8406e1 6099
651df7d9
CY
61002008-12-02 Chong Yidong <cyd@stupidchicken.com>
6101
6102 * keyboard.c (make_lispy_position): Only use PT if the selected
6103 window is current.
6104
1f625c6c
AS
61052008-12-02 Andreas Schwab <schwab@suse.de>
6106
f7741ce9
AS
6107 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
6108
1f625c6c
AS
6109 * doprnt.c (doprnt1): Fix size of charbuf.
6110
92bc2678
CY
61112008-12-02 Chong Yidong <cyd@stupidchicken.com>
6112
6113 * keyboard.c (timer_check): Revert last change.
6114
93b9e8cc
JB
61152008-12-02 Juanma Barranquero <lekktu@gmail.com>
6116
6117 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
6118
fd7a37d5
JB
61192008-12-01 Juanma Barranquero <lekktu@gmail.com>
6120
6121 * makefile.w32-in: Update dependencies.
6122 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
6123
c115043b
AS
61242008-12-01 Andreas Schwab <schwab@suse.de>
6125
6126 * font.c (register_font_driver): Use xmalloc.
6127 (font_put_frame_data): Likewise.
6128
f5668d2a
CY
61292008-12-01 Chong Yidong <cyd@stupidchicken.com>
6130
860d96be
CY
6131 * xfaces.c (realize_x_face): Make abort condition clearer.
6132
f5668d2a
CY
6133 * gtkutil.c (update_frame_tool_bar): Initialize variable.
6134
379c17e7
CY
61352008-11-30 Chong Yidong <cyd@stupidchicken.com>
6136
6137 * keyboard.c (timer_check): After a timer runs, ensure that the
6138 selected window's buffer is current.
6139
35f36d65
JB
61402008-11-30 Juanma Barranquero <lekktu@gmail.com>
6141
f952c61c
JB
6142 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
6143 It was accidentally restored by the Unicode merge.
6144
35f36d65
JB
6145 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
6146
b23077df
JB
61472008-11-29 Juanma Barranquero <lekktu@gmail.com>
6148
6149 * w32proc.c: Include "coding.h".
6150 (Fw32_short_file_name): Encode filename passed to Windows API.
6151 (Fw32_long_file_name): Encode filename passed to Windows API and
6152 decode back the result. (Bug#1433)
6153
b8ebe9dd
KH
61542008-11-29 Kenichi Handa <handa@m17n.org>
6155
8cc53f96
KH
6156 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
6157 not before accessing it.
6158
b8ebe9dd
KH
6159 * charset.c (Fdefine_charset_internal): After calculating
6160 min_char, max_char, and fastmap, copy the charset structure again.
6161 (encode_char): Fix the previous change.
6162
59bc82c0
SZ
61632008-11-28 Seiji Zenitani <zenitani@mac.com>
6164
6165 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
6166
6167 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
6168
6169 * nsterm.m (x_set_frame_alpha): New function.
6170
32247e3d
EZ
61712008-11-27 Eli Zaretskii <eliz@gnu.org>
6172
6173 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
6174
b003e5ff
JB
61752008-11-27 Juanma Barranquero <lekktu@gmail.com>
6176
6177 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
6178 pointer to check_face_name.
6179
708550f5
KH
61802008-11-27 Kenichi Handa <handa@m17n.org>
6181
6182 * category.h (SET_CATEGORY_SET): Call set_category_set.
6183 (set_category_set): Extern it.
6184
6185 * category.c (hash_get_category_set): New function.
6186 (Fmodify_category_entry): Adjusted for the change of
6187 char_table_ref_and_range. Call hash_get_category_set to get a
6188 category set to store in the table.
6189
6190 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
6191 Funify_charset.
6192
2ae37cf0 6193 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
708550f5
KH
6194 (DECODE_CHAR): Check if the decoder vector is ready.
6195 (ENCODE_CHAR): Check if the encoder char-table is ready.
6196 (maybe_unify_char): Extern it.
6197
6198 * charset.c (Vchar_unified_charset_table): Delete it.
6199 (inhibit_load_charset_map): New variable.
6200 (temp_charset_work): New variable.
6201 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
6202 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
6203 New macros.
6204 (load_charset_map): Meaning of control_flag changed. If
6205 inhibit_load_charset_map is nonzero, setup a table in
6206 temp_charset_work.
6207 (load_charset): New argument control_flag.
6208 (map_charset_for_dump): New function.
6209 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
6210 map_charset_for_dump.
6211 (Fdefine_charset_internal): If the charset method is MAP, load
6212 mapping tables by calling load_charset.
6213 (Funify_charset): Don't load a mapping table but directly set
6214 Vchar_unify_table.
6215 (maybe_unify_char): New function.
6216 (decode_char): Don't handle the deleted method MAP_DEFERRED.
6217 Handle the case of inhibit_load_charset_map being nonzero.
6218 (encode_char): Don't handle the deleted method MAP_DEFERRED.
6219 Handle the case of inhibit_load_charset_map being nonzero.
6220 (Fclear_charset_maps): Just free temp_charset_work.
6221 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
6222 variable.
6223
6224 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
6225 change of char_table_ref_and_range.
6226 (char_table_ref_and_range): Change the meaning of argument FROM
6227 and TO. Now the caller must provide initial values for *FROM
6228 and *TO.
6229
6230 * fontset.c (fontset_add): Adjusted for the change of
6231 char_table_ref_and_range.
6232 (fontset_get_font_group): Likewise.
6233 (Ffontset_info): Likewise.
6234
6235 * keymap.c (describe_vector): Adjusted for the change of
6236 char_table_ref_and_range. For char-table, put boundary between
6237 non-ASCII and 8-bit characters.
6238
6239 * print.c (print_object): For bool-vector, delete unnecessary
6240 check of ASCII_BYTE_P.
6241
9196133b
JR
62422008-11-26 Jason Rumney <jasonr@gnu.org>
6243
6244 * w32font.c (w32font_open_internal): Don't include external
9acef61c 6245 leading in font height. (Bug#879)
9196133b 6246
9f688acf
GM
62472008-11-26 Glenn Morris <rgm@gnu.org>
6248
6249 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
6250 redefinition with ifdef. (Bug#1383)
6251
90d19aff
AR
62522008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
6253
6254 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
6255
4ccfa1c0 62562008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
90d19aff
AR
6257
6258 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
6259 New EmacsView methods.
6260 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
6261 Fixes bug #1048,1357,1414.
6262
62632008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
6264
6265 Fix bug #1362.
6266 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
6267 is not an indexed color.
6268 * nsterm.m (free_indexed_color): Add argument checking.
6269 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
6270
e7d5ecb3
CY
62712008-11-24 Chong Yidong <cyd@stupidchicken.com>
6272
6273 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
6274 Document confirm-after-completion value for
6275 minibuffer-completion-confirm.
6276
c285743c
JR
62772008-11-24 Jason Rumney <jasonr@gnu.org>
6278
6279 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
6280 warning.
6281
b0857706
JR
62822008-11-23 Jason Rumney <jasonr@gnu.org>
6283
6284 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
6285 restored before returning.
6286
6287 * w32font.c (check_face_name): New function.
6288 (add_font_entity_to_list): Use it to filter out common substituted
9acef61c 6289 fonts. (Bug#642)
b0857706 6290
ee50ff07
MR
62912008-11-22 Martin Rudalics <rudalics@gmx.at>
6292
6293 * buffer.c (Fswitch_to_buffer): Reword and mention new option
6294 confirm-nonexistent-file-or-buffer in doc-string.
6295
b8ff72fa
SM
62962008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6297
6298 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
6299 Fix copy/paste typo. Add checks.
6300
cee53ed4
KH
63012008-11-21 Kenichi Handa <handa@m17n.org>
6302
6303 * coding.c (detect_coding_iso_2022): Reject invalid composition
6304 sequence.
6305 (DECODE_COMPOSITION_START): If the current source is the last
6306 block, and the current composition doesn't end, regard this
6307 sequence as invalid.
6308 (decode_coding_iso_2022): Handle invalid composition sequence.
6309
f6ef1e65
MR
63102008-11-20 Martin Rudalics <rudalics@gmx.at>
6311
6312 * window.c (coordinates_in_window): Don't return
6313 ON_VERTICAL_BORDER for the rightmost position of a mode/header
6314 line when the window is not the rightmost one. (Bug#1372)
6315
e08b1705
MR
63162008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
6317
6318 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
6319
ad98e89f
EZ
63202008-11-15 Eli Zaretskii <eliz@gnu.org>
6321
6322 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
6323 and bright_bg if noninteractive is non-zero.
6324
fb098a4b
CY
63252008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6326
6327 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
6328 x_draw_glyph_string_background.
6329
6330 * w32term.c (x_draw_glyph_string): Likewise.
6331
ce952b6e
CY
63322008-11-15 Chong Yidong <cyd@stupidchicken.com>
6333
6334 * xterm.c (x_draw_glyph_string): Stop drawing the background of
6335 the next glyph string once past the overhang width.
6336
6337 * nsterm.m (ns_draw_glyph_string): Likewise.
6338
6339 * w32term.c (x_draw_glyph_string): Likewise.
6340
26ea7079
CY
63412008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
6342
6343 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
6344 double file close.
6345
1c33c906
MR
63462008-11-14 Martin Rudalics <rudalics@gmx.at>
6347
6348 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
6349 dedicated status of window before attempting to display another
6350 buffer in it.
6351
8fc29035
JB
63522008-11-14 Juanma Barranquero <lekktu@gmail.com>
6353
6354 * msdos.c (Fmsdos_long_file_names):
6355 (syms_of_msdos) <dos-unsupported-char-glyph>:
6356 * dosfns.c (Fint86): Fix typos in docstrings.
6357
55fb4286
EZ
63582008-11-14 Eli Zaretskii <eliz@gnu.org>
6359
6360 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
6361
3fda0315
KY
63622008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
6363
6364 * puresize.h (BASE_PURESIZE): Increase to 1260000.
6365
7e849c17
CY
63662008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
6367
6368 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
6369
6370 * frame.h: Negative alpha means "don't touch".
6371
6372 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
6373
6374 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
6375
b9fd67bd
DN
63762008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
6377
6378 * hftctl.c:
6379 * chpdef.h:
6380 * acldef.h: Remove files used only for systems no longer supported.
6381
6382 * Makefile.in: Fix .o alphabetical ordering.
6383 (hftctl.o): Remove dependency, file removed.
6384 (keymap.o, print.o): Depend on charset.h.
6385
d5998e03
KH
63862008-11-10 Kenichi Handa <handa@m17n.org>
6387
2ae37cf0 6388 * character.c (Fget_byte): Fix and make it faster for unibyte target.
d5998e03 6389
be70e183
CY
63902008-11-08 Chong Yidong <cyd@stupidchicken.com>
6391
6392 * dired.c (file_name_completion): If completion_ignore_case is
6393 enabled, ignore case when checking completion-regexp-list.
6394
7cf94eac
EZ
63952008-11-08 Eli Zaretskii <eliz@gnu.org>
6396
6397 * vm-limit.c (get_lim_data): Fix last change.
6398
ee107a89
KH
63992008-11-08 Kenichi Handa <handa@m17n.org>
6400
6401 * character.c (Fget_byte): New function.
6402 (syms_of_character): Defsubr Fget_byte.
6403
5fd15622
CY
64042008-11-07 Chong Yidong <cyd@stupidchicken.com>
6405
6406 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
6407 cursor position is valid after scrolling.
6408
13d62fad
JB
64092008-11-06 Juanma Barranquero <lekktu@gmail.com>
6410
6411 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
6412
a1dd2936
GM
64132008-11-06 Glenn Morris <rgm@gnu.org>
6414
6415 * xterm.c (handle_one_xevent): Don't let popup menus cause
6416 mouse-autoselect-window related window switching. (Bug#1261)
6417
860cd236
CY
64182008-11-04 David Smith <davidsmith@acm.org> (tiny change)
6419
6420 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
6421
653a3150
AS
64222008-11-04 Andreas Schwab <schwab@suse.de>
6423
6424 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
6425
870f5cac
CY
64262008-11-03 Chong Yidong <cyd@stupidchicken.com>
6427
6428 * xfns.c (Fx_wm_set_size_hint): New function.
6429
1e02f3cb
MR
64302008-11-03 Martin Rudalics <rudalics@gmx.at>
6431
6432 * textprop.c (Fprevious_single_char_property_change): Return 0
6433 when there's no change in a string. (Bug#1301)
6434
e630dfc6
MR
64352008-11-02 Martin Rudalics <rudalics@gmx.at>
6436
6437 * frame.c (do_switch_frame): New argument NORECORD passed to
6438 Fselect_window.
6439 (Fselect_frame): New argument NORECORD passed to
6440 do_switch_frame.
6441 (Fset_frame_selected_window): New argument NORECORD passed to
6442 Fselect_frame.
6443 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
6444 in call of do_switch_frame.
6445 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
6446 Handle NORECORD argument in call of Fselect_frame.
6447 * lisp.h (do_switch_frame, Fselect_frame)
6448 (Fset_frame_selected_window): Adjust declarations.
6449 * window.c (select_frame_norecord): New function.
6450 (run_window_configuration_change_hook): Use it and call
6451 Fselect_frame with NORECORD set.
6452 (Fselect_window): Pass NORECORD to Fselect_frame.
6453 (Fset_window_configuration): Handle NORECORD argument in call of
6454 do_switch_frame.
6455 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
6456 Fset_frame_selected_window.
6457 * keyboard.c (command_loop_1): Handle NORECORD in call of
6458 Fselect_frame (currently ifdefd).
6459
9020b223
GM
64602008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
6461
6462 * emacs.c (USAGE2): Untabify.
6463
793ffee8
SM
64642008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
6465
6466 * composite.c (fill_gstring_header): Fix copy/paste typo.
6467
ab6d1131
MR
64682008-10-31 Martin Rudalics <rudalics@gmx.at>
6469
6470 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
6471 (Fother_window): Rename argument and rewrite doc-string.
6472 (select_window_norecord): Fix return value. (Bug#1276)
6473
601a9cf1
JB
64742008-10-30 Juanma Barranquero <lekktu@gmail.com>
6475
6476 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
6477 new frames overriding foreground for tooltips. Based on similar patch
6478 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
6479
813b0652
CY
64802008-10-29 Chong Yidong <cyd@stupidchicken.com>
6481
6482 * emacs.c (Fdaemon_initialized): Initialize nfd.
6483
4414f58f
MR
64842008-10-29 Martin Rudalics <rudalics@gmx.at>
6485
6486 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
6487 (Fwindow_text_height): Clarify doc-strings.
6488 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
6489 doc-string of window-scroll-functions.
6490
ecdcaa09
RS
64912008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
6492
6493 * category.c (syms_of_category): Fix typo in docstring.
6494
23fe745a
JB
64952008-10-28 Juanma Barranquero <lekktu@gmail.com>
6496
6497 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
6498 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
6499 Fix typos in docstrings.
6500
ff808935
DN
65012008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
6502
6503 * emacs.c (daemon_pipe): Make non-static.
6504 (IS_DAEMON): Move definition ...
6505 * lisp.h (IS_DAEMON): ... here.
6506 (daemon_pipe): Declare.
6507 (is_daemon): Remove.
6508 * dispnew.c (init_display): Use IS_DAEMON.
6509
fc012771
SM
65102008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6511
6512 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
6513 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
6514
6515 * emacs.c (is_daemon): Remove.
6516 (main): Don't set is_daemon.
6517 (IS_DAEMON): New macro.
6518 (Fdaemonp, Fdaemon_initialized): Use it.
601a9cf1 6519 (Fdaemon_initialized): Write a char into the pipe to make sure the
fc012771
SM
6520 parent exits.
6521 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
6522
d8bdbe6f
CY
65232008-10-27 Chong Yidong <cyd@stupidchicken.com>
6524
d1a072bf
CY
6525 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
6526 over-sized glyph, draw it with the default glyph width.
6527
e2e325aa
CY
6528 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
6529 glyph, draw it with the default glyph width.
6530
6531 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
6532 glyph, draw it with the default glyph width.
6533
d8bdbe6f
CY
6534 * xdisp.c (try_scrolling): When computing the distance from the
6535 scroll margin to PT, try moving some distance past the window
6536 bottom before giving up.
6537
7bfac547
MR
65382008-10-27 Martin Rudalics <rudalics@gmx.at>
6539
6540 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
6541 (Fset_window_buffer): Explain in doc-string that a window can be
6542 "strongly" dedicated to its buffer.
6543
4ff029f6
DN
65442008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
6545
6546 * emacs.c (daemon_name): New variable.
6547 (main): Deal with --daemon=SERVER_NAME.
6548 (Fdaemonp): Return a name if one was passed to --daemon.
6549
5790ef40
DN
65502008-10-26 Romain Francoise <romain@orebokech.com>
6551
f9bd0df9 6552 * emacs.c (daemon_pipe): New variable.
5790ef40
DN
6553 (main): Create a pipe before forking, make the parent exit only after
6554 the child has closed its end of the pipe. Move closing the
6555 descriptors ...
6556 (Fdaemon_initialized): ... here. New function.
6557
f5385255
SM
65582008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
6559
4d632321
SM
6560 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
6561 the previous unoptimized table.
6562
f5385255
SM
6563 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
6564 the distinction between non-nil and non-t value of `dedicated'.
6565
6c56a0f3
CY
65662008-10-25 Chong Yidong <cyd@stupidchicken.com>
6567
6568 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
f5385255 6569 read_char_minibuf_menu_text is large enough to hold the menu string.
6c56a0f3 6570
fec89261
MR
65712008-10-25 Martin Rudalics <rudalics@gmx.at>
6572
6573 * window.c (Fget_buffer_window, Fdelete_windows_on)
6574 (Freplace_buffer_in_windows): Make buffer argument optional and
6575 rename to buffer_or_name.
6576
34fcddd0
CY
65772008-10-24 Chong Yidong <cyd@stupidchicken.com>
6578
f5385255
SM
6579 * xdisp.c (handle_single_display_spec, handle_display_prop):
6580 Undo 2005-05-16 change.
34fcddd0
CY
6581 (handle_stop): Pop iterator if it's loaded with an empty string.
6582 (get_overlay_strings_1): Don't save iterator if it's loaded with
6583 an empty string (bug#1201).
6584
064766f2
KH
65852008-10-24 Kenichi Handa <handa@m17n.org>
6586
6587 * ftfont.c (ftfont_otf_features): Fix previous change.
6588 (ftfont_otf_capability): Check FeatureList.FeatureCount before
6589 calling ftfont_otf_features.
6590
f9bd0df9 65912008-10-24 Kenichi Handa <handa@m17n.org>
064766f2
KH
6592
6593 * font.c (font_match_p): Fix for the case that a vector of
6594 characters is in script-representative-chars.
6595
1dae9197
MA
65962008-10-24 Michael Albinus <michael.albinus@gmx.de>
6597
6598 * dbusbind.c (xd_in_read_queued_messages): New variable.
f5385255 6599 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
1dae9197
MA
6600 (xd_read_queued_messages): Catch Qdbus_error from the macros.
6601 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
777013f2 6602 macro. (Bug#1186)
1dae9197 6603
f9bd0df9 66042008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
9b3362b8
DN
6605
6606 * s/sol2-10.h: New file.
6607
878a4584
JB
66082008-10-23 Juanma Barranquero <lekktu@gmail.com>
6609
6610 * xdisp.c (fill_glyph_string): Fix typo in source (though the
6611 poor beast has survived 9+ years and the jump from xterm.c!).
6612
cd265ca6
MR
66132008-10-23 Martin Rudalics <rudalics@gmx.at>
6614
6615 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
6616 Reword doc-string.
f5385255 6617 (Fbury_buffer): In doc-string say what happens to the buffer's window.
cd265ca6 6618
472a4dc9
JB
66192008-10-23 Juanma Barranquero <lekktu@gmail.com>
6620
6621 * character.c (syms_of_character) <script-representative-chars>:
6622 <unicode-category-table>: Doc fixes.
6623
159bd5a2
NF
66242008-10-23 Noah Friedman <friedman@splode.com>
6625
6626 * coding.c (make_conversion_work_buffer): Check that
6627 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
6628 Fget_buffer_create.
6629
49f9c344
KH
66302008-10-23 Kenichi Handa <handa@m17n.org>
6631
6632 * font.c (font_add_log): Check the values of extra properties.
6633
12bb3111
MR
66342008-10-22 Martin Rudalics <rudalics@gmx.at>
6635
6636 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
6637 Reword doc-string.
6638 (Fset_window_parameter): Use NILP.
6639 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
f5385255 6640 (Frecenter): Use "selected" instead of "current" window in doc-strings.
12bb3111 6641
bbeb4e99
JB
66422008-10-22 Juanma Barranquero <lekktu@gmail.com>
6643
6644 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
6645
66462008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
cb83c00b
AR
6647
6648 * nsfns.m (ns_appkit_version): New function.
6649 (x-server-version): Use it.
6650 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
6651 (x-server-vendor): Don't check_ns().
6652
6653 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
6654
a9b555d3
JB
66552008-10-22 Juanma Barranquero <lekktu@gmail.com>
6656
6657 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
6658 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
6659
4626499f
KH
66602008-10-22 Kenichi Handa <handa@m17n.org>
6661
e3681952
KH
6662 * syntax.c (scan_words): Call word_boundary_p instead of comparing
6663 scripts.
6664
4626499f
KH
6665 * category.c (word_boundary_p): Check scripts instead of charset.
6666 Handle nil value in word-separating-categories and
6667 word-combining-categories.
6668 (syms_of_category): Fix docstrings of word-separating-categories
6669 and word-combining-categories.
6670
1560f91a
EZ
66712008-10-21 Eli Zaretskii <eliz@gnu.org>
6672
6673 * coding.c (Fencode_coding_region, Fdecode_coding_region)
6674 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
6675
f4668441
MR
66762008-10-21 Martin Rudalics <rudalics@gmx.at>
6677
6678 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
6679 Rename arg "buffer" to "buffer_or_name".
6680 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
6681 it optional.
6682 (no_switch_window): Remove since the return value is not used.
a9b555d3 6683 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
f4668441
MR
6684 Consider window as dedicated when Fwindow_dedicated_p returns a
6685 non-nil value.
6686 * lisp.h: Remove prototype for no_switch_window.
6687
fd75ddb2
JD
66882008-10-21 Jan Djärv <jan.h.d@swipnet.se>
6689
6690 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
2ae37cf0 6691 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
fd75ddb2 6692
07295713
KH
66932008-10-21 Kenichi Handa <handa@m17n.org>
6694
6695 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
6696 check Vlatin_extra_code_table.
6697
712adc82
EZ
66982008-10-20 Eli Zaretskii <eliz@gnu.org>
6699
6700 * fileio.c (Fset_file_modes): Doc fix.
6701
f549eb0b
MA
67022008-10-19 Michael Albinus <michael.albinus@gmx.de>
6703
6704 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
6705 in arrays.
6706
aac0c6e3
MR
67072008-10-19 Martin Rudalics <rudalics@gmx.at>
6708
6709 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
6710 Mention kill-buffer in doc-string.
6711 (Fset_window_buffer): Reinsert tem check removed in last commit.
6712 (Fenlarge_window, Fshrink_window): Have argument names and
6713 doc-string follow Elisp manual more closely.
6714
67152008-10-18 Eli Zaretskii <eliz@gnu.org>
6716
6717 * fileio.c (Fset_file_modes): Doc fix.
6718
67192008-10-18 Martin Rudalics <rudalics@gmx.at>
6720
6721 * window.c (Fwindow_width, Fset_window_start)
6722 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
f5385255
SM
6723 (Fdelete_windows_on, Freplace_buffer_in_windows):
6724 Make doc-strings follow code and Elisp manual more closely.
aac0c6e3
MR
6725 (Fwindow_dedicated_p): Make window argument optional.
6726 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
6727 (Fset_window_buffer): Respect any non-nil dedicated value for
6728 window. Rename "buffer" argument to "buffer_or_name".
6729
67302008-10-18 Ulrich Mueller <ulm@gentoo.org>
6731
6732 * m/sh3.h: New file, machine description for SuperH.
6733
67342008-10-17 Martin Rudalics <rudalics@gmx.at>
6735
6736 * window.c (Fsplit_window): Rename arg horflag to horizontal.
6737
67382008-10-17 Kenichi Handa <handa@m17n.org>
6739
6740 * ftfont.c (ftfont_otf_features): Fix indexing
6741 gsub_gpos->FeatureList.Feature. Check the validity of indices.
6742
67432008-10-16 Magnus Henoch <mange@freemail.hu>
6744
6745 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
6746 (Fdbus_call_method_asynchronously): Ditto.
6747 This change makes C-h f display the argument list.
6748
67492008-10-16 Chong Yidong <cyd@stupidchicken.com>
6750
6751 * fileio.c (Fexpand_file_name): Doc fix.
6752
6753 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
6754 of :foreground and :background equivalent to unspecified (20.x
6755 compatibility).
6756
67572008-10-15 Eli Zaretskii <eliz@gnu.org>
6758
6759 * buffer.c (syms_of_buffer): Doc fix.
6760
67612008-10-14 Kenichi Handa <handa@m17n.org>
6762
6763 * font.c (font_clear_prop): When clearing font width, clear the
6764 average width field too.
6765
67662008-10-12 Andreas Schwab <schwab@suse.de>
6767
6768 * ftfont.c (ftfont_shape_by_flt): Make static.
6769 * ftfont.h (ftfont_shape_by_flt): Don't declare.
6770
6771 * font.c: Don't include <m17n-flt.h>.
6772
67732008-10-10 Eli Zaretskii <eliz@gnu.org>
6774
6775 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
6776
67772008-10-09 Eli Zaretskii <eliz@gnu.org>
6778
6779 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
6780 away code.
6781
67822008-10-09 Chong Yidong <cyd@stupidchicken.com>
6783
6784 * dispnew.c (update_text_area): Avoid looping due to large glyph
6785 overhangs (bug#1070).
6786
67872008-10-09 Kenichi Handa <handa@m17n.org>
6788
6789 * fontset.c (face_for_char): If face->fontset is negative, just
6790 return ascii_face.
6791
f5385255
SM
6792 * font.c (font_delete_unmatched): Fix previous change.
6793 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
aac0c6e3
MR
6794
67952008-10-09 Martin Rudalics <rudalics@gmx.at>
6796
6797 * frame.c (Fraise_frame): On text-only terminals select frame in
6798 order to make it visible. (Bug#1061)
6799
68002008-10-08 Chong Yidong <cyd@stupidchicken.com>
6801
6802 * fontset.c (fontset_find_font): Check frame validity.
6803
68042008-10-07 Chong Yidong <cyd@stupidchicken.com>
6805
a9b555d3 6806 * gtkutil.c (xg_display_open): Reset default display if none exists.
aac0c6e3
MR
6807 (xg_display_close): Allow Emacs to close all displays (bug#985).
6808
68092008-10-06 Andreas Schwab <schwab@suse.de>
6810
f5385255 6811 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
aac0c6e3
MR
6812
68132008-10-06 Chong Yidong <cyd@stupidchicken.com>
6814
f5385255 6815 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
aac0c6e3 6816
a9b555d3 6817 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
aac0c6e3
MR
6818
6819 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
6820 during initialization.
6821
68222008-10-04 Eli Zaretskii <eliz@gnu.org>
6823
6824 * xdisp.c (redisplay_internal): If frame switched, redisplay the
6825 whole thing on MSDOS frames as well as on a TTY.
6826
6827 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
6828 well as for TTY.
6829 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
6830 well as on a TTY.
6831
6832 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
6833 as well as for TTY.
6834
6835 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
6836
6837 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
6838 MSDOS frames as well.
6839
68402008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
6841
6842 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
6843 correct arguments.
b71ac3dd 6844 * menu.c (find_and_return_menu_selection): Add cast.
aac0c6e3
MR
6845
68462008-10-03 Glenn Morris <rgm@gnu.org>
6847
6848 * emacs.c (USAGE1): Add --daemon.
6849
68502008-10-02 Eli Zaretskii <eliz@gnu.org>
6851
6852 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
6853 100, so it's in percents as advertised.
6854
68552008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
6856
6857 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
6858 (ns_output.current_cursor, ns_output.desired_cursor)
6859 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
6860 (FRAME_NEW_CURSOR_COLOR): Remove.
6861
6862 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
a9b555d3 6863 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
aac0c6e3
MR
6864 enumeration (HOLLOW_BOX_CURSOR, etc.).
6865
6866 * nsterm.m (ns_frame_rehighlight): Remove commented code.
6867 (draw_window_cursor): Simplify code.
f5385255
SM
6868 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
6869 Don't change cursor type. In latter, call rehighlight instead of doing
aac0c6e3 6870 updates manually.
a9b555d3
JB
6871 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
6872 Use core Emacs cursor types.
aac0c6e3 6873
b8ff72fa 6874 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
aac0c6e3
MR
6875
68762008-10-02 Martin Rudalics <rudalics@gmx.at>
6877
6878 * process.c (Faccept_process_output): Fix doc-string.
6879
68802008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
6881
6882 * gmalloc.c (__sbrk): Also define for uClibc.
6883
6884 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
6885 for uClibc.
6886
68872008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6888
6889 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
6890 styles.
6891 (nsfont_open): Reenable the cache.
6892
68932008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6894
6895 * font.c (font_matching_entity): Reflect ATTRS in font selection.
6896 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
6897
68982008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6899
6900 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
6901 a suspended terminal.
6902
69032008-09-30 Michael Albinus <michael.albinus@gmx.de>
6904
6905 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
6906
69072008-09-30 Eli Zaretskii <eliz@gnu.org>
6908
6909 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
6910
69112008-09-30 Chong Yidong <cyd@stupidchicken.com>
6912
6913 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
6914 in a continued line coincides with a line beginning.
6915
69162008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
6917
6918 * nsfont.m (nsfont_trait_distance): Fix bug.
6919 (nsfont_list): Return a list rather than a vector (syncs with Handa
6920 changes of 2008-05-14).
6921 (nsfont_open): Improve logging.
6922
69232008-09-29 Andreas Schwab <schwab@suse.de>
6924
6925 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
6926
69272008-09-28 Martin Rudalics <rudalics@gmx.at>
6928
6929 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
6930 name as char-resolve-modifiers.
6931 Reported by: Markus Triska <markus.triska@gmx.at>
6932
69332008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
6934
6935 * dispnew.c (init_display): Return earlier when running as a daemon.
6936
69372008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
6938
6939 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
6940
69412008-09-27 Eli Zaretskii <eliz@gnu.org>
6942
6943 * composite.c (Fcomposition_get_gstring)
6944 (Fcompose_region_internal, Fcompose_string_internal)
6945 (Ffind_composition_internal): Doc fix.
6946 (syms_of_composite) <compose-chars-after-function>: Doc fix.
6947 (syms_of_composite) <auto-composition-function>: Doc fix.
6948 (syms_of_composite) <composition-function-table>: Doc fix.
6949
69502008-09-25 Chong Yidong <cyd@stupidchicken.com>
6951
6952 * search.c (wordify): New argument for lax word-ends.
6953 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
6954
69552008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
6956
6957 * lisp.h (is_daemon): Declare.
6958 * dispnew.c (init_display): Do not try to initialize the terminal
6959 when running as a daemon.
6960
69612008-09-22 Chong Yidong <cyd@stupidchicken.com>
6962
6963 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
6964 x_display_pixel_height.
6965
69662008-09-22 Martin Rudalics <rudalics@gmx.at>
6967
6968 * undo.c (record_point): Don't call Fundo_boundary for first
6969 change. (Bug#731)
6970
69712008-09-22 Juanma Barranquero <lekktu@gmail.com>
6972
6973 * emacs.c (Fdaemonp): Doc fix.
6974
69752008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
6976
6977 * emacs.c (main): Place #ifdef in the proper place.
6978
69792008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
6980
6981 * emacs.c (standard_args): Add --daemon.
6982 (main): Disconnect from the terminal when --daemon is passed.
6983 (is_daemon): New variable.
6984 (Fdaemonp): New function.
6985 (syms_of_emacs): Defsubr it.
6986
69872008-09-20 Chong Yidong <cyd@stupidchicken.com>
6988
6989 * xdisp.c (get_next_display_element): Handle string display
6990 correctly when checking for the end of a box run.
6991
69922008-09-20 Glenn Morris <rgm@gnu.org>
6993
6994 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
6995 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
6996 (Frename_file): Avoid copying to trash if a rename involves
6997 a delete. (Bug#964).
6998
69992008-09-20 Eli Zaretskii <eliz@gnu.org>
7000
7001 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
7002 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
7003 frames as well as termcap frames.
7004 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
7005 get_named_tty.
7006
70072008-09-19 Eli Zaretskii <eliz@gnu.org>
7008
7009 * process.c (procfs_system_process_attributes): Fix cmdline in
7010 case /proc/PID/cmdline is empty.
7011
7012 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
7013 x_display_pixel_height.
7014
70152008-09-19 Juanma Barranquero <lekktu@gmail.com>
7016
7017 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
7018
7019 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
7020 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
7021
70222008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
7023
7024 * dispextern.h (struct it): Move line_wrap away from the middle of
7025 bitfields. Move voffset in struct iterator_stack_entry after the
7026 bitfields. Move tab_width near after another short.
7027
70282008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
7029
7030 * frame.h (struct frame): Move alpha from the middle of bitfields.
7031
7032 * window.h (struct window): Move frozen_window_start_p after the
7033 rest of the bitfields to reduce padding.
7034
70352008-09-18 Chong Yidong <cyd@stupidchicken.com>
7036
7037 * xterm.h (x_display_info): Remove `height' and `width' members.
7038
7039 * nsterm.h (ns_display_info): Remove `height' and `width' members.
7040
7041 * w32term.h (w32_display_info): Remove `height', `width',
7042 `height_in', and `width_in' members.
7043
b8ff72fa
SM
7044 * xterm.c (x_display_pixel_height, x_display_pixel_width):
7045 New functions.
aac0c6e3
MR
7046 (x_calc_absolute_position): Use them.
7047 (x_term_init): Omit removed `height' and `width' members.
7048
b8ff72fa
SM
7049 * w32term.c (x_display_pixel_height, x_display_pixel_width):
7050 New functions.
aac0c6e3
MR
7051 (w32_read_socket, x_calc_absolute_position): Use them.
7052 (w32_initialize_display_info, w32_term_init): Omit removed members
7053 of w32_display_info.
7054
b8ff72fa
SM
7055 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
7056 New functions.
7057 (ns_initialize_display_info): Omit removed members of ns_display_info.
aac0c6e3 7058
b8ff72fa
SM
7059 * xterm.c (x_display_pixel_height, x_display_pixel_width):
7060 New functions.
aac0c6e3
MR
7061 (x_calc_absolute_position): Use them.
7062 (x_term_init): Omit removed `height' and `width' members.
7063
7064 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
b8ff72fa
SM
7065 (compute_tip_xy):
7066 * frame.c (x_fullscreen_adjust):
aac0c6e3
MR
7067 * xmenu.c (menu_position_func): Use x_display_pixel_height and
7068 x_display_pixel_width.
7069
70702008-09-18 Kenichi Handa <handa@m17n.org>
7071
7072 * composite.c (fill_gstring_header): Don't check FROM and TO here.
7073 (composition_compute_stop_pos): Fix handling of static composition.
7074 (Fcomposition_get_gstring): Check FROM and TO at first.
7075
70762008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7077
46e722a9 7078 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
aac0c6e3
MR
7079 mixup (YAILOM).
7080
70812008-09-17 Chong Yidong <cyd@stupidchicken.com>
7082
7083 * indent.c (Fvertical_motion): Use position reported by iterator
7084 instead of PT for determining screen motion (bug#943).
7085
70862008-09-17 Romain Francoise <romain@orebokech.com>
7087
7088 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
7089
70902008-09-17 Kenichi Handa <handa@m17n.org>
7091
7092 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
7093
7094 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
7095 if necessary.
7096
70972008-09-16 Kenichi Handa <handa@m17n.org>
7098
7099 * coding.c (make_conversion_work_buffer): Avoid calling
7100 Fget_buffer_create if it is not necessary.
7101
71022008-09-15 Martin Rudalics <rudalics@gmx.at>
7103
7104 * window.c (Fselect_window): Don't update window_select_count and
7105 use_time when norecord is not nil.
7106
71072008-09-14 Kenichi Handa <handa@m17n.org>
7108
7109 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
7110 specpdl_ptr.
7111
71122008-09-12 Kenichi Handa <handa@m17n.org>
7113
7114 * indent.c (scan_for_column): Don't handle automatic composition
7115 if the current buffer is not associated with a window.
7116
7117 * composite.c (composition_reseat_it): If the current buffer is
7118 not associated with a window, ignore the automatic composition.
7119 (find_automatic_composition): Likewise.
7120
71212008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7122
7123 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
7124 (Fgpm_mouse_stop): Use it.
7125 * termhooks.h (close_gpm): Declare.
7126 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
7127 connection if Gpm_GetEvent fails.
7128
7129 * window.c (set_window_buffer): Always preserve current-buffer.
7130
71312008-09-12 Glenn Morris <rgm@gnu.org>
7132
7133 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
7134
71352008-09-11 Glenn Morris <rgm@gnu.org>
7136
7137 * charset.c (charset-map-path): Doc fix.
7138
71392008-09-10 Kenichi Handa <handa@m17n.org>
7140
7141 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
7142
7143 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
7144 compose a grapheme cluster with the preceding base glyph.
7145
7146 * composite.c (composition_compute_stop_pos): Fix previous change.
7147 Reset cmp_it->id to -1 at first.
7148
71492008-09-10 Glenn Morris <rgm@gnu.org>
7150
7151 * Makefile.in (character.o, chartab.o): Fix config.h typo.
7152
71532008-09-09 Chong Yidong <cyd@stupidchicken.com>
7154
7155 * keyboard.c (read_key_sequence): Reapply translation maps when
7156 switching keyboards.
7157
71582008-09-09 Kenichi Handa <handa@m17n.org>
7159
7160 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
7161 characters.
7162
7163 * composite.c (FORWARD_CHAR): Fix calculation
7164 of (POSITION).pos_byte.
7165 (composition_compute_stop_pos): Limit the search of composition to
7166 at most 500 characters ahead. If we reach the limit or find a
7167 newline, set cmp_it->ch to -2 and return 0.
7168 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
7169
71702008-09-08 Kenichi Handa <handa@m17n.org>
7171
7172 * indent.c (Fvertical_motion): Be sure to set
7173 it_overshoot_expected if it.cmp_it.id is non-negative.
7174
71752008-09-07 Andreas Schwab <schwab@suse.de>
7176
7177 * callproc.c (Fcall_process): Don't hold references to string data
7178 across garbage collection. Move initialisation of new_argv down
7179 to avoid compiler bug.
7180
71812008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7182
7183 * process.c (Fsystem_process_attributes): Doc fix.
7184
71852008-09-07 Chong Yidong <cyd@stupidchicken.com>
7186
7187 * callproc.c (Fcall_process): Canonicalize current directory name.
7188
7189 * xdisp.c (move_it_to): When moving by vpos, ensure that the
7190 iterator advances to the next line if the current line ends in a
7191 continued tab.
7192
71932008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
7194
7195 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
7196 member to point to cmp_from.
7197
7198 * xdisp.c: Doc fix for references to gidx data member.
7199
72002008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
7201
7202 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
7203
72042008-09-07 Kenichi Handa <handa@m17n.org>
7205
7206 * composite.c (FORWARD_CHAR): Check STOP after
7207 incrementing (POSITION).pos.
7208
72092008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7210
7211 * process.c (Fsystem_process_attributes): Doc fix.
7212
72132008-09-06 Chong Yidong <cyd@stupidchicken.com>
7214
7215 * keyboard.c (Ftop_level): Doc fix.
7216
72172008-09-06 Eli Zaretskii <eliz@gnu.org>
7218
7219 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
7220 minibuffer, don't let lower part of menu invade the echo area.
7221
7222 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
7223 "char *q" to access menu text and advance through it. Revert the
7224 change that displayed ">" instead of ASCII character 0x10.
7225
72262008-09-05 Eli Zaretskii <eliz@gnu.org>
7227
7228 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
7229 toggle boxes and radio buttons on MS-DOS as well.
7230
72312008-09-05 Kenichi Handa <handa@m17n.org>
7232
7233 * composite.c (autocmp_chars): Check lookback count.
7234 (composition_compute_stop_pos): Set cmp_it->lookback.
7235 (composition_reseat_it): Check lookback count.
7236 (struct position_record): New struct.
7237 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
7238 (find_automatic_composition): New function.
7239 (composition_adjust_point): Use find_automatic_composition.
7240
7241 * dispextern.h (struct composition_it): New member lookback.
7242
72432008-09-02 Chong Yidong <cyd@stupidchicken.com>
7244
7245 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
7246 if moving by a single line.
7247
72482008-09-02 Andreas Schwab <schwab@suse.de>
7249
7250 * xterm.c (x_delete_display): Fix merge error.
7251
7252 * fileio.c (Fexpand_file_name): Remove unused variables.
7253
72542008-09-02 Eli Zaretskii <eliz@gnu.org>
7255
7256 * fileio.c (Fexpand_file_name): Copy argument `name' into local
7257 storage on all platforms, not just on DOS_NT.
7258
72592008-09-02 Jason Rumney <jasonr@gnu.org>
7260
b8ff72fa
SM
7261 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
7262 Ensure mouse is not grabbed after menu is finished.
aac0c6e3
MR
7263
72642008-09-01 Chong Yidong <cyd@stupidchicken.com>
7265
7266 * xfaces.c (Finternal_set_alternative_font_family_alist)
7267 (Finternal_set_alternative_font_registry_alist): Properly copy
7268 entire alist structure.
7269
72702008-09-01 Kenichi Handa <handa@m17n.org>
7271
d66c0241 7272 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
aac0c6e3 7273 representative chars of the script is a vector.
d66c0241
JB
7274 (ftfont_list): Handle the case where the representative chars of
7275 the script is a vector.
aac0c6e3
MR
7276
7277 * character.c (syms_of_character): Docstring of
7278 script-representative-chars fixed.
7279
72802008-08-31 Eli Zaretskii <eliz@gnu.org>
7281
7282 * msdos.c (BUILD_CHAR_GLYPH): New macro.
7283 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
7284 the menu. Allocate larger buffer for `text', to account for
7285 possible ^C characters.
7286
72872008-08-31 Martin Rudalics <rudalics@gmx.at>
7288
7289 * xdisp.c (prepare_menu_bars): Don't call
7290 Vwindow_size_change_functions with arg Qt.
7291
72922008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
7293
7294 * font.h (font_range):
7295 * fileio.c (report_file_error):
46e722a9
SM
7296 * composite.c (composition_update_it): Yet another int/Lisp_Object
7297 mixup (YAILOM).
aac0c6e3
MR
7298
72992008-08-30 Glenn Morris <rgm@gnu.org>
7300
7301 * data.c (Fmake_variable_frame_local): Doc fix.
7302
7303 * frame.c (Fmodify_frame_parameters): Doc fix.
7304
73052008-08-30 Eli Zaretskii <eliz@gnu.org>
7306
7307 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
7308 needed by GetTokenInformation.
7309 (w32_system_process_attributes): Check return values of all system
7310 APIs.
7311
7312 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
7313 only when the state changes.
7314 (IT_update_begin, IT_update_end): Add termscript trace.
7315
7316 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
7317 clipboard is unavailable. Set dst to NULL if it doesn't point to
7318 malloc'ed data.
7319 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
7320 passing random values to xfree.
7321
7322 * dispnew.c (init_display): Set `tty's association in frame's
b8ff72fa 7323 parameters alist to the name of the terminal device, if that is known.
aac0c6e3
MR
7324
73252008-08-29 Jason Rumney <jasonr@gnu.org>
7326
7327 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
7328
73292008-08-29 Eli Zaretskii <eliz@gnu.org>
7330
7331 * composite.c (fill_gstring_body): Avoid compiler warnings.
7332
7333 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
7334 LGLYPH_SET_CODE to avoid compiler warnings.
7335
2ae37cf0 7336 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
aac0c6e3
MR
7337
7338 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
7339
7340 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
7341 LGLYPH_SET_CODE.
7342
73432008-08-29 Kenichi Handa <handa@m17n.org>
7344
7345 * fileio.c (report_file_error): Don't downcase the first character
7346 of errstring if it is still unibyte.
7347
73482008-08-29 Kenichi Handa <handa@m17n.org>
7349
7350 These changes are to re-implement the automatic composition so
7351 that it doesn't use text properties.
7352
7353 * Makefile.in (ftfont.o): Depend on composite.h.
7354 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
7355
7356 * character.h (Vunicode_category_table): Extern it.
7357
7358 * character.c (Vunicode_category_table): New variable.
7359 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
7360
7361 * chartab.c (optimize_sub_char_table): Perform more greedy
7362 optimization.
7363
b8ff72fa
SM
7364 * composite.h (enum composition_method):
7365 Delete COMPOSITION_WITH_GLYPH_STRING.
aac0c6e3
MR
7366 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
7367 (Vcomposition_function_table): Extern it.
7368 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
7369 (composition_gstring_put_cache, composition_gstring_from_id)
7370 (composition_gstring_p, composition_gstring_width)
7371 (composition_compute_stop_pos, composition_reseat_it)
7372 (composition_update_it, composition_adjust_point): Extern them.
7373 (Fcomposition_get_gstring): EXFUN it.
7374
d66c0241 7375 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
aac0c6e3
MR
7376 (Vcomposition_function_table)
7377 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
b8ff72fa
SM
7378 (gstring_hash_table, gstring_work, gstring_work_headers):
7379 New variables.
aac0c6e3
MR
7380 (gstring_lookup_cache, composition_gstring_put_cache)
7381 (composition_gstring_from_id, composition_gstring_p)
7382 (composition_gstring_width, fill_gstring_header)
7383 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
7384 (composition_reseat_it, composition_update_it)
b8ff72fa 7385 (composition_adjust_point, Fcomposition_get_gstring): New functions.
aac0c6e3
MR
7386 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
7387 and gstring_work_headers. DEFVAR_LISP composition-function-table.
7388 Defsubr compostion_get_gstring.
7389
7390 * dispextern.h (struct glyph): New union u.cmp. Delete the member
7391 cmp_id.
7392 (struct glyph_string): Delete the member gidx. New members
7393 cmp_id, cmp_from, and cmp_to.
7394 (enum it_method): Delete GET_FROM_COMPOSITION.
7395 (struct composition_it): New struct.
7396 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
7397 Delete c, len, cmp_id, cmp_len in u.comp.
7398
7399 * font.h (enum lgstring_indices): Delete it.
b8ff72fa 7400 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
aac0c6e3 7401 (enum lglyph_indices): Likewise.
b8ff72fa 7402 (font_range): Adjust extern.
aac0c6e3
MR
7403 (font_fill_lglyph_metrics): Extern it.
7404
7405 * font.c (QCf): New variable.
7406 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
7407 (font_prepare_composition): Delete this function.
7408 (font_range): Type and arguments changed.
7409 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
7410 (font_fill_lglyph_metrics): New function.
b8ff72fa 7411 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
aac0c6e3 7412 (syms_of_font): DEFSYM QCf. Delete defsubr for
b8ff72fa
SM
7413 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
7414 Defsubr Sfont_shape_gstring.
aac0c6e3
MR
7415
7416 * fontset.h (font_for_char): Extern it.
7417
7418 * fontset.c (font_for_char): New function.
7419
7420 * ftfont.c: Include composite.h.
7421 (ftfont_resolve_generic_family): Add langset "en" to pattern.
b8ff72fa 7422 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
aac0c6e3
MR
7423
7424 * indent.c: Include composite.h and dispextern.h.
7425 (check_composition): Delete this function.
7426 (scan_for_column): Handle composition by
7427 composition_compute_stop_pos, composition_reseat_it, and
7428 composition_update_it.
7429 (compute_motion): Likewise.
7430 (Fvertical_motion): Fix checking of composition.
7431
7432 * keyboard.c (adjust_point_for_property): Check composition by
7433 composition_adjust_point.
7434
b8ff72fa 7435 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
aac0c6e3
MR
7436 struct glyph_string.
7437
b8ff72fa
SM
7438 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
7439 (append_composite_glyph): Adjust for the change of struct it and
aac0c6e3
MR
7440 struct glyph.
7441 (produce_composite_glyph): Likewise.
7442
b8ff72fa
SM
7443 * w32term.c (x_draw_composite_glyph_string_foreground):
7444 Adjust for the change of struct glyph_string.
aac0c6e3
MR
7445 (x_draw_glyph_string): Likewise.
7446
7447 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
7448 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
7449
7450 * xdisp.c: Include font.h.
7451 (it_props): Delete the entry for Qauto_composed.
7452 (init_iterator): Initialize it->cmp_it.id to -1.
7453 (compute_stop_pos): Call composition_compute_stop_pos.
b8ff72fa 7454 (face_before_or_after_it_pos): Adjust for the change of struct it.
aac0c6e3
MR
7455 (handle_auto_composed_prop): Delete it.
7456 (handle_composition_prop): Handle only static composition.
7457 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
7458 from xassert. Initialize it->cmp_it.stop_pos.
b8ff72fa 7459 (push_it): Adjust for the change of struct it.
aac0c6e3
MR
7460 (pop_it): Likewise.
7461 (get_next_element): Delete next_element_from_composition.
7462 (CHAR_COMPOSED_P): New macro.
7463 (get_next_display_element): For automatic composition, get a face
7464 from the font in the glyph-string.
7465 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
b8ff72fa 7466 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
aac0c6e3
MR
7467 (next_element_from_string): Check if the character at the current
7468 position is composed by CHAR_COMPOSED_P.
7469 (next_element_from_buffer): Likewise.
d66c0241
JB
7470 (next_element_from_composition): Adjust for the change of struct it.
7471 Update it->cmp_it.
b8ff72fa
SM
7472 (dump_glyph): Adjust for the change of struct glyph.
7473 (fill_composite_glyph_string): Adjust for the change of struct
aac0c6e3
MR
7474 it and struct glyph. Don't handle automatic composition here.
7475 (fill_gstring_glyph_string): New function.
7476 (x_get_glyph_overhangs): Handle automatic composition.
b8ff72fa 7477 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
aac0c6e3
MR
7478 (BUILD_GSTRING_GLYPH_STRING): New macro.
7479 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
7480 automatic composition.
b8ff72fa 7481 (append_composite_glyph): Adjust for the change of struct it and
aac0c6e3 7482 struct glyph.
b8ff72fa 7483 (x_produce_glyphs): Adjust for the change of struct it.
aac0c6e3 7484
b8ff72fa 7485 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
aac0c6e3
MR
7486 the change of struct glyph_string.
7487 (x_draw_glyph_string): Likewise.
7488
74892008-08-29 Glenn Morris <rgm@gnu.org>
7490
7491 * buffer.c (word-wrap): Doc fix.
7492 * xdisp.c (truncate-partial-width-windows): Doc fix.
7493 Increase default to 50.
7494
74952008-08-29 Chong Yidong <cyd@stupidchicken.com>
7496
7497 * xdisp.c (update_tool_bar_unwind): New function.
7498 (update_tool_bar): Temporarily set selected frame before building
7499 tool-bar items.
7500
75012008-08-28 Michael Albinus <michael.albinus@gmx.de>
7502
7503 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
7504 snprintf, respectively.
7505 (xd_append_arg): Convert strings with Fstring_make_unibyte.
7506
75072008-08-28 Chong Yidong <cyd@stupidchicken.com>
7508
7509 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
7510 LDFLAGS to GNUstep CC invocation.
7511
75122008-08-27 Chong Yidong <cyd@stupidchicken.com>
7513
7514 * indent.c (Fvertical_motion): Revert last change. Handle the
7515 general case where we are moving forward, and PT spans multiple
7516 screen lines.
7517
7518 * eval.c (find_handler_clause): Temporarily increase
7519 max-lisp-eval-depth while printing the backtrace buffer, to
7520 guarantee that help-mode code can run.
7521
75222008-08-27 Eli Zaretskii <eliz@gnu.org>
7523
7524 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
7525 colors under -rv.
7526 (IT_set_frame_parameters): Don't swap foreground and background
7527 colors if `(reverse . t)' is present in the frame properties.
7528 (internal_terminal_init): Call init_frame_faces only for the
7529 initial frame.
7530
75312008-08-27 Andreas Schwab <schwab@suse.de>
7532
7533 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
7534
75352008-08-27 Andreas Schwab <schwab@suse.de>
7536
7537 * search.c (search_buffer): Set char_base to zero only at the end.
7538
75392008-08-27 Kenichi Handa <handa@m17n.org>
7540
b8ff72fa 7541 * fileio.c (report_file_error): Fix handling of multibyte error string.
aac0c6e3
MR
7542
75432008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
7544
7545 * xterm.c (x_term_init): Temporarily hide the partially
7546 initialized terminal while calling vendor-specific-keysyms.
7547
75482008-08-26 Eli Zaretskii <eliz@gnu.org>
7549
7550 * msdos.c (internal_terminal_init): Most initializations done only
7551 once, especially initial_screen_colors[] and termscript open.
7552
75532008-08-26 Chong Yidong <cyd@stupidchicken.com>
7554
7555 * eval.c (Fcondition_case): Doc fix.
7556
7557 * widgetprv.h (EmacsFramePart): Change font member to the new font
7558 struct.
7559
7560 * widget.c: Include character.h and font.h for XSETFONT.
7561 (setup_frame_gcs): Compute X font id from font struct, just once.
7562
75632008-08-26 Eli Zaretskii <eliz@gnu.org>
7564
7565 * term.c (get_named_tty): Fix last change.
7566
75672008-08-26 Chong Yidong <cyd@stupidchicken.com>
7568
7569 * indent.c (Fvertical_motion): If moving forward starting from a
b8ff72fa 7570 multi-line string, move the iterator to the last line of that string.
aac0c6e3
MR
7571
75722008-08-25 Eli Zaretskii <eliz@gnu.org>
7573
7574 * frame.c (do_switch_frame): Mark previously displayed frame as
7575 obscured for FRAME_MSDOS_P frames as well.
7576
75772008-08-24 Eli Zaretskii <eliz@gnu.org>
7578
7579 * frame.c (make_terminal_frame): Initialize f->terminal,
7580 f->terminal->reference_count, and scroll bars on MS-DOS as well.
7581 Set the top frame to newly created frame.
7582 (Fmake_terminal_frame): Reuse the_only_display_info.
7583
7584 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
7585 estimating available memory.
7586
b97439ce 75872008-08-23 David Reitter <david.reitter@gmail.com>
aac0c6e3
MR
7588
7589 * nsterm.m (ns_draw_window_cursor): Don't call
7590 NSDisableScreenUpdates and NSEnableScreenUpdates on
7591 non-NS_IMPL_COCOA systems.
7592
75932008-08-23 Andreas Schwab <schwab@suse.de>
7594
7595 * process.c (procfs_system_process_attributes): Fix use of
7596 uninitialized variables.
7597
75982008-08-23 Eli Zaretskii <eliz@gnu.org>
7599
7600 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
7601
7602 * dispnew.c (init_display): Remove MS-DOS specific conditions for
7603 calling tty-set-up-initial-frame-faces.
7604
b8ff72fa
SM
7605 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
7606 Allow MSDOS frames along with X frames.
aac0c6e3
MR
7607
7608 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
7609 addition to output_termcap.
7610
7611 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
7612
7613 * termchar.h (FRAME_TTY): Support output_msdos_raw.
7614 (struct tty_display_info) [MSDOS]: Add fields related to mouse
7615 highlight.
7616
7617 * process.c [!subprocesses]: Define QCname.
7618 (syms_of_process): Intern and staticpro it.
7619
7620 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
b8ff72fa
SM
7621 Adjust for changes in encoding/decoding routines.
7622 Use encode_coding_object and decode_coding_object instead of
aac0c6e3
MR
7623 encode_coding and decode_coding.
7624
b8ff72fa 7625 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
aac0c6e3
MR
7626
7627 * dosfns.c: Include frame.h before termhooks.h.
7628 (dos_cleanup): Use CURTTY ()->termscript instead of a global
7629 variable termscript.
7630
7631 * s/msdos.h (USER_FULL_NAME): Define.
7632 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
7633
7634 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
7635 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
7636 pw->pw_gecos.
7637
7638 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
7639 SELECTED_FRAME as additional (1st) argument.
7640 (tty_read_avail_input): Handle output_msdos_raw in
7641 addition to output_termcap.
7642
7643 * msdos.c: Include frame.h before termhooks.h.
7644 (mouse_on, mouse_off, mouse_moveto, mouse_init)
7645 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
7646 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
7647 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
7648 (IT_set_terminal_modes, IT_reset_terminal_modes)
7649 (IT_set_frame_parameters): Use tty->termscript instead of a global
7650 variable termscript.
7651 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
7652 global variable terminal_coding. Don't refer to
7653 Vnonascii_translation_table.
7654 (internal_terminal_init): Set Vwindow_system in current_kboard.
7655 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
7656 Announce date and time of session start, if termscript is open.
7657 Don't zero out the_only_display_info (it is done in
b8ff72fa
SM
7658 term.c:init_tty). Open termscript only of not already open.
7659 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
aac0c6e3
MR
7660 here instead of dos_ttraw. Don't initialize display if this is an
7661 initial tty. Don't set FRAME_FONT.
7662 (Vwindow_system_version): Bump to 23.
7663 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
7664 is available, set up mouse_position_hook.
7665 (dos_ttraw, IT_set_terminal_modes): If called with initial
7666 terminal, do nothing.
7667 (IT_set_frame_parameters): Handle the Qtty_type frame
7668 parameter by calling internal_terminal_init.
7669 (dos_set_window_size, show_mouse_face)
7670 (clear_mouse_face, IT_note_mode_line_highlight)
7671 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
7672 (dos_rawgetc): Use tty_display_info instead of x_display_info.
7673 (initialize_msdos_display): New function.
7674 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
7675 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
7676 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
7677 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
b8ff72fa 7678 Accept additional argument: a pointer to a frame. Update all callers.
aac0c6e3
MR
7679 (request_sigio, unrequest_sigio): Don't define, now defined on
7680 sysdep.c.
7681 (IT_write_glyphs): Rewrite to use encode_terminal_code.
7682
7683 * term.c [MSDOS]: Include msdos.h.
7684 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
7685 conditional to DOS_NT. Allow only one call to this function in a
7686 session. Don't allocate a new struct tty_display_info; instead,
7687 reuse the_only_display_info. Call get_tty_size to get screen
7688 dimensions. Call init_baud_rate to set bad_rate.
7689 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
7690 (Fsuspend_tty) [MSDOS]: Don't close input and output.
b8ff72fa 7691 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
aac0c6e3
MR
7692 (get_tty_terminal, get_named_tty, Ftty_type)
7693 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
7694 output_termcap.
b8ff72fa
SM
7695 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
7696 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
2ae37cf0 7697 only when subprocesses are supported.
aac0c6e3
MR
7698
7699 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
7700 f->output_data.x.
7701 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
7702 terminal devices.
7703
5582fbc7 7704 * msdos.h: Remove definition of struct x_display_info and struct
aac0c6e3
MR
7705 x_output.
7706 (FRAME_FONT): Use output_data.tty.
7707 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
b8ff72fa
SM
7708 (struct x_display_info): Rename from display_info. Update all users in
7709 msdos.c.
aac0c6e3 7710 (struct x_output): Remove background_pixel and foreground_pixel.
b8ff72fa 7711 (the_only_display_info): Rename from the_only_x_display.
aac0c6e3
MR
7712 (dos_ttraw): Update prototype.
7713
7714 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
7715 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
7716
77172008-08-23 Jason Rumney <jasonr@gnu.org>
7718
7719 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
7720 (fn_TIFFSetDirectory): New library function used.
7721 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
7722 (tiff_load): Use :index to select among multiple images. Set count
7723 property when multiple images exist.
7724 (gif_format): Use :index, not :image.
7725
77262008-08-23 Chong Yidong <cyd@stupidchicken.com>
7727
7728 * xdisp.c (try_scrolling): Check INT_MAX instead of
7729 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
7730 to obtain INT_MAX.
7731
77322008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
7733
7734 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
7735
77362008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
7737
7738 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
7739 GNUstep library location.
7740
77412008-08-21 Chong Yidong <cyd@stupidchicken.com>
7742
7743 * xfaces.c (x_update_menu_appearance): Check validity of menu font
7744 before using it.
7745
7746 * puresize.h (BASE_PURESIZE): Increase to 1250000.
7747
77482008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
7749
7750 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
7751 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
7752 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
7753 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
7754 (EmacsApp-cursor_blink_handler): Remove declaration.
7755 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
7756 match 01 Feb 2008 changes in xterm.c.
7757 (ns_read_socket): Add cast to avoid warning.
7758 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
7759 GNUstep.
7760
77612008-08-20 Chong Yidong <cyd@stupidchicken.com>
7762
7763 * xselect.c (x_get_foreign_selection): Return nil if desired
7764 selection could not be obtained, instead of signalling an error.
7765
77662008-08-20 David Reitter <david.reitter@gmail.com>
7767
7768 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
7769 * nsterm.m: Remove ns-specific code for cursor blinking.
7770 (ns_draw_window_cursor): Clear cursor properly rather than
7771 redrawing the area. Respect width of bar cursors.
7772 These changes enable the use of generic blink-cursor-mode and
7773 generic cursor types in NS and support smooth cursor movements (do
7774 not blink off after command).
7775 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
7776 Nextstep, too.
7777
77782008-08-19 Kenichi Handa <handa@m17n.org>
7779
7780 * font.c (Vfont_log_deferred): New variable.
7781 (font_add_log): Check Vfont_log_deferred.
7782 (font_deferred_log): New function.
7783
7784 * font.h (font_deferred_log): Extern it.
7785
7786 * fontset.c (reorder_font_vector): Use encoding charset of fonts
7787 for sorting.
7788 (face_for_char): Use deferred log.
7789
77902008-08-18 Kenichi Handa <handa@m17n.org>
7791
7792 * fontset.c (face_for_char): Add font log.
7793
7794 * font.c (font_add_log): Add the font properties :script, :lang,
7795 and :otf in the log.
7796
77972008-08-17 Chong Yidong <cyd@stupidchicken.com>
7798
7799 * xdisp.c: Remove dead code.
7800 (handle_invisible_prop, next_overlay_string): Defer call to
7801 setup_for_ellipsis.
7802 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
7803
78042008-08-15 Chong Yidong <cyd@stupidchicken.com>
7805
7806 * xfaces.c (lookup_derived_face): Properly handle possible zero
7807 return value of get_lface_attributes.
7808 (merge_faces): Don't tell lookup_derived_face to signal an error
7809 if face is not found.
7810
7811 * dired.c (Fdirectory_files): Doc fix.
7812
7813 * process.c (make_process): Initialize kill_without_query struct
7814 member.
7815
78162008-08-15 Eli Zaretskii <eliz@gnu.org>
7817
7818 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
7819 Alternative calculation of totphys for Visual Studio 6.
7820
7821 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
7822
7823 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
7824 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
7825 All users changed.
7826 (stat): Only root directory passed to GetDriveType. Allow RAM
7827 disk as well as local fixed disk when w32-get-true-file-attributes
7828 is set to `local'.
7829 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
7830 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
7831 (w32_cached_id, w32_add_to_cache): New functions.
7832 (get_name_and_id): Look account names in the cache before calling
7833 lookup_account_sid.
7834 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
7835 New initialization flags.
7836 (globals_of_w32): Initialize them to zero.
7837 (w32_system_process_attributes): Use w32_cached_id and
7838 w32_add_to_cache.
7839
78402008-08-14 Lawrence Mitchell <wence@gmx.li>
7841
7842 * lread.c (Fread_char, Fread_char_exclusive): If no character
7843 event is read before timeout is reached, return nil, rather than
7844 converting to a number.
7845
78462008-08-14 Chong Yidong <cyd@stupidchicken.com>
7847
7848 * fns.c (use_dialog_box): Doc fix.
7849
7850 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
7851 on OS X.
7852
78532008-08-13 Chong Yidong <cyd@stupidchicken.com>
7854
7855 * frame.c (Qns_parse_geometry): New var.
7856 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
7857
78582008-08-11 Chong Yidong <cyd@stupidchicken.com>
7859
7860 * xdisp.c (x_produce_glyphs): Handle the case when font has no
7861 space character in calculating tabs.
7862
78632008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
7864
7865 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
7866
78672008-08-10 Glenn Morris <rgm@gnu.org>
7868
7869 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
7870 silence gcc "limited range of data type" warnings in some
7871 make_fixnum_or_float calls.
7872
78732008-08-09 Eli Zaretskii <eliz@gnu.org>
7874
7875 * w32.c (w32_system_process_attributes): If the process does not
7876 exist, return nil.
7877
7878 * w32.c: Include thelp32.h, psapi.h and coding.h.
7879 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
7880 declarations.
7881 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
7882 (Process32Next_Proc): New typedefs.
7883 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
7884 (g_b_init_process32_next, g_b_init_open_thread_token)
7885 (g_b_init_impersonate_self, g_b_init_revert_to_self)
7886 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
7887 (g_b_init_get_process_working_set_size)
7888 (g_b_init_global_memory_status_ex): New static variables.
7889 (globals_of_w32): Initialize them.
7890 (create_toolhelp32_snapshot, process32_first, process32_next)
7891 (open_thread_token, impersonate_self, revert_to_self)
7892 (get_process_memory_info, get_process_working_set_size)
7893 (global_memory_status, global_memory_status_ex): New wrapper
7894 functions.
7895 (w32_list_system_processes, w32_system_process_attributes)
7896 (enable_privilege, restore_privilege, ltime, process_times):
7897 New functions.
7898 (convert_time_raw): New function.
7899 (convert_time): Remove conversion of FILETIME into time in 100
7900 nsec units, call convert_time_raw instead.
7901
7902 * process.h (w32_list_system_processes, w32_system_process_attributes):
7903 Add prototypes.
7904 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
7905 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
7906 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
7907 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
7908
7909 * process.c (Fsystem_process_attributes): Doc fix.
7910
79112008-08-08 Chong Yidong <cyd@stupidchicken.com>
7912
7913 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
7914 a continued multi-char glyph; if so, advance to the actual glyph.
7915
79162008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
7917
7918 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
7919
7920 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
7921 (.m.o): Use it.
7922 * config.in: Regenerate.
7923
79242008-08-07 Chong Yidong <cyd@stupidchicken.com>
7925
7926 * xdisp.c (redisplay_window): Revert last change.
7927 (try_window): Check bottom scroll margin too.
7928
79292008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
7930
7931 * config.in: Regenerate.
7932
7933 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
7934 -list-load-path-shadows'.
7935 (nsgui.h): Reduce number of things depending on it.
7936
79372008-08-06 Chong Yidong <cyd@stupidchicken.com>
7938
7939 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
7940 instead of window-end which does the wrong thing at eob.
7941 (try_cursor_movement): Minor optimization.
7942 (redisplay_window): If scroll margin is defined, don't assume
7943 window doesn't need scrolling.
7944
79452008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
7946
7947 * config.in: Regenerate.
7948
7949 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
7950 (mostlyclean): Don't delete *.d under NS.
7951
7952 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
7953
79542008-08-06 Kenichi Handa <handa@m17n.org>
7955
7956 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
7957
79582008-08-06 Andreas Schwab <schwab@suse.de>
7959
7960 * config.in: Regenerate.
7961
79622008-08-05 Chong Yidong <cyd@stupidchicken.com>
7963
7964 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
7965 forcing a window start.
7966
7967 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
7968 (auto_save_1): Update modtime when auto-save-list-file-name is on.
7969
79702008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7971
7972 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
7973 argument.
7974
79752008-08-05 Juanma Barranquero <lekktu@gmail.com>
7976
7977 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
7978 <scroll-down-aggressively, before-change-functions>:
7979 <after-change-functions>: Reflow docstrings.
7980
79812008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7982 Ken Raeburn <raeburn@gnu.org>
7983
7984 Dock menu customization, based on a patch by Ken Raeburn, plus some
7985 other fixes.
7986 * nsmenu.m (dockMenu): New variable.
7987 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
7988
7989 * nsterm.h (dockMenu): Declare.
7990
7991 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
7992 (ns_term_init): Initialize dockMenu.
7993 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
7994 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
7995 left.
7996
7997 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
7998
79992008-08-04 Chong Yidong <cyd@stupidchicken.com>
8000
8001 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
8002
8003 * config.in: Regenerate.
8004
80052008-08-04 Seiji Zenitani <zenitani@mac.com>
8006
8007 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
8008
80092008-08-04 Chong Yidong <cyd@stupidchicken.com>
8010
8011 * nsterm.h (find_and_call_menu_selection): Fix prototype.
8012
80132008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
8014
8015 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
8016
8017 * keyboard.h: Comment an #endif.
8018
8019 * lisp.h (have_menus_p): Adjust comment.
8020
8021 * menu.c (find_and_return_menu_selection): Fix comparison with
8022 client_data.
8023
8024 * nsmenu.m (popup_activated_flag): New variable.
8025 (popup_activated): New function.
8026 (menu-or-popup-active-p): New exported lisp definition.
8027 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
8028 when popup done.
8029 (ns_popup_dialog): Set popup_activated_flag.
8030
8031 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
8032 version for GNUstep (handled by conditional typedef in nsterm.m).
8033 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
8034 in rgb.txt).
8035
8036 * process.c (init_process): Use DARWIN_OS, not DARWIN.
8037
8038 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
8039
8040 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
8041
8042 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
8043 shortcircuit if popup_activated like GTK and X toolkit.
8044
8045 * m/inter386.h: Change DARWIN to DARWIN_OS.
8046
8047 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
8048 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
8049 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
8050 comment on NO_SOCK_SIGIO.
8051
80522008-08-03 Chong Yidong <cyd@stupidchicken.com>
8053
8054 * nsterm.m (windowDidResize): Remove stopModal call.
8055
80562008-08-03 Andreas Schwab <schwab@suse.de>
8057
8058 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
8059 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
8060
80612008-08-02 Chong Yidong <cyd@stupidchicken.com>
8062
8063 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
8064 Don't use uninitialized pointer variable when using getrlimit.
8065
80662008-08-02 Jason Rumney <jasonr@gnu.org>
8067
8068 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
8069
80702008-08-02 Eli Zaretskii <eliz@gnu.org>
8071
8072 * alloc.c (NSTATICS): Bump to 0x640.
8073
8074 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
8075
8076 * lisp.h: Add prototype for directory_files_internal.
8077
8078 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
8079 New functions.
8080 (syms_of_process): Defsubr them. Add initializations for various
8081 Q* symbols used in procfs_system_process_attributes.
8082 (procfs_list_system_processes, procfs_system_process_attributes)
8083 [HAVE_PROCFS]: New functions.
8084 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
8085 (procfs_get_total_memory): New functions.
8086
80872008-08-01 Juanma Barranquero <lekktu@gmail.com>
8088
8089 * xfaces.c (Fx_load_color_file): Fix previous change;
8090 it is #ifdef WINDOWSNT, not WINDOWS_NT.
8091
80922008-08-01 Michael Albinus <michael.albinus@gmx.de>
8093
8094 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
8095
80962008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8097
8098 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
8099
81002008-08-01 Chong Yidong <cyd@stupidchicken.com>
8101
8102 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
8103
8104 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
8105 define NSApplicationDelegateReplySuccess.
8106 (EmacsView -converstationIdentifier): Use long instead of
8107 NSInteger for GNUstep, since it doesn't have NSInteger.
8108
8109 * xmenu.c: Revert last change.
8110
8111 * keyboard.h: Fix last change.
8112
81132008-08-01 Juanma Barranquero <lekktu@gmail.com>
8114
8115 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
8116 on Windows.
8117
81182008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8119
8120 Warning clearing and clean-up in NS port.
8121 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
8122 Add prototypes.
8123 * nsgui.h (FACE_DEFAULT): Remove, unused.
8124 (XGCValues): Change colors to unsigned long.
8125 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
8126 nsterm.m.
8127 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
8128 (ns_list_fonts): Remove, unused.
8129 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
8130 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
8131 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
8132 (nsfont_draw): Compare face colors to 0, not nil.
8133 * nsmenu.m (struct widget_value): Drop unneeded declaration.
8134 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
8135 (-addSubmenuWithTitle:): Use NSMenuItem class.
8136 (ns_popup_menu): Use NO, not NULL, for enabled setting.
8137 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
8138 (ns_clip_to_row): Make gc arg a BOOL.
8139 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
8140 ns_clip_to_row() call.
8141 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
8142 used). Cast FRAME_FONT assignments.
8143 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
8144 (ns_string_to_lispmod): Change arg to const char.
8145 (ns_term_init): Use NSMenuItem class.
8146 (EmacsApp -openFile:): Move to different section of file.
8147 (EmacsApp -application:openFiles:): Don't return a value, call
8148 -replyToOpenOrPrint:.
8149 (EmacsView -keyDown:): Fix up cast.
8150 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
8151 (EmacsView -menuDown:): Cast tag in call to
8152 find_and_call_menu_selection().
8153 (ns_list_fonts): Remove, unused.
8154 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
8155 (ns_fontname_to_xlfd): Make static.
8156 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
8157 Remove prototypes (now in keyboard.h).
8158 (next_menubar_widget_id): Remove, unused.
8159 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
8160 Remove prototypes (now in keyboard.h).
8161 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
8162
81632008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
8164
8165 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
8166 (floatfns.o): Depend on syssignal.h.
8167 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
8168
8169 * systty.h: Fix previous change that removed BSD_TERMIOS.
8170 Add comments to #ifdefs.
8171
81722008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8173
8174 * w32fns.c (w32-load-color-file): Remove.
8175 (x-open-connection): Use renamed Fx_load_color_file.
8176 * xfaces.c (x-load-color-file): Add.
8177 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
8178 Emacs.clr.
8179 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
8180
81812008-07-31 Michael Albinus <michael.albinus@gmx.de>
8182
8183 * dbusbind.c (Fdbus_call_method_asynchronously)
8184 (Fdbus_method_error_internal): New defuns.
8185 (xd_read_message): Handle also reply messages.
8186 (Vdbus_registered_functions_table): Extend docstring.
8187
81882008-07-31 Juanma Barranquero <lekktu@gmail.com>
8189
8190 * keyboard.c (gobble_input): Fix previous change.
8191
81922008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
8193
8194 * bitmaps/README:
8195 * xfns.c:
8196 * termcap.c:
8197 * term.c:
8198 * syswait.h:
8199 * systty.h:
8200 * systime.h:
8201 * syssignal.h:
8202 * sysdep.c:
8203 * process.h:
8204 * process.c:
8205 * print.c:
8206 * ndir.h:
8207 * lread.c:
8208 * keyboard.c:
8209 * getpagesize.h:
8210 * floatfns.c:
8211 * fileio.c:
8212 * emacs.c:
8213 * doc.c:
8214 * dispnew.c:
8215 * dired.c:
8216 * data.c:
8217 * callproc.c:
8218 * buffer.c:
8219 * README:
8220 * Makefile.in:
8221 * s/template.h:
8222 * s/msdos.h:
8223 * m/vax.h: Remove VMS support.
8224 * s/vms.h:
8225 * vlimit.h:
8226 * uaf.h:
8227 * temacs.opt:
8228 * param.h:
8229 * ioctl.h: Remove file.
8230
82312008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
8232
8233 * s/ms-w32.h (MULTI_KBOARD): Remove.
8234 * xterm.c:
8235 * xselect.c:
8236 * xfns.c:
8237 * window.c:
8238 * w32term.c:
8239 * w32fns.c:
8240 * terminal.c:
8241 * termhooks.h:
8242 * term.c:
8243 * sysdep.c:
8244 * keyboard.h:
8245 * keyboard.c:
8246 * frame.h:
8247 * frame.c:
8248 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
8249 * config.in: Regenerate.
8250
82512008-07-30 Jason Rumney <jasonr@gnu.org>
8252
8253 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
8254
8255 * w32font.c (w32font_encode_char): Leave as unicode if in range.
8256 (w32font_open_internal): Get unicode version of textmetrics.
8257 Don't enable or disable glyph indices here.
8258 (w32font_open): Disable use of glyph indices.
8259
8260 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
8261
82622008-07-30 Chong Yidong <cyd@stupidchicken.com>
8263
8264 * minibuf.c (Vread_buffer_function): Doc fix.
8265
82662008-07-30 John Paul Wallington <jpw@pobox.com>
8267
8268 * minibuf.c (read_buffer_completion_ignore_case): New var.
8269 (Fread_buffer): Use it.
8270
82712008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
8272
8273 * systty.h (sensemode): Remove empty #if. Remove reference to
8274 BSD_TERMIOS, unused.
8275
8276 * sysdep.c: Remove reference to DGUX.
8277 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
8278
8279 * config.in: Regenerate.
8280
82812008-07-30 Jason Rumney <jasonr@gnu.org>
8282
8283 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
8284
82852008-07-29 Jason Rumney <jasonr@gnu.org>
8286
8287 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
8288 is populated.
8289 (uniscribe_encode_char): Always use uniscribe.
8290 Avoid using context if cache is populated.
8291
82922008-07-29 Jan Djärv <jan.h.d@swipnet.se>
8293
8294 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
8295 open menu.
8296
8297 * gtkutil.c (menu_nav_ended): Remove.
8298 (create_menus): Remove signal connect for menu_nav_ended.
8299
83002008-07-28 Chong Yidong <cyd@stupidchicken.com>
8301
8302 * xdisp.c (redisplay_window): Check return value of
8303 compute_window_start_on_continuation_line before forcing a window
8304 start.
8305
83062008-07-28 Jason Rumney <jasonr@gnu.org>
8307
8308 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
8309
8310 * w32term.c (w32_enable_unicode_output, cleartype_active):
8311 Remove obsolete display options.
8312 (x_draw_glyph_string_background): Don't use old cleartype_active
8313 workaround.
8314 (w32_initialize): Remove cleartype_active initialization.
8315 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
8316
83172008-07-28 Andreas Schwab <schwab@suse.de>
8318
8319 * lisp.h (init_weak_hash_tables, syms_of_font)
8320 (xd_read_queued_messages, syms_of_dbusbind): Declare.
8321 (remove_hash_entry): Don't declare.
8322 * eval.c (maybe_call_debugger): Make static and move before use.
8323 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
8324 * xdisp.c: Include "gtkutil.h" if USE_GTK.
8325 * xterm.h (x_set_frame_alpha): Declare.
8326
83272008-07-28 Jan Djärv <jan.h.d@swipnet.se>
8328
8329 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
8330 (create_menus): Connect selection-done to menu_nav_ended.
8331
83322008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8333
8334 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
8335 Set Vx_resource_name to a fallback. Replace read of 'buffered'
8336 parameter with read of 'alpha' one.
8337 (Qns_frame_parameter): Remove.
5582fbc7 8338 * nsselect.m (selection-coding-system)
aac0c6e3
MR
8339 (next-selection-coding-system, Vselection_coding_system)
8340 (Vnext_selection_coding_system): Drop.
8341
83422008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8343
8344 * nsfns.m (do-applescript, do_applescript): Rename to
8345 ns-do-applescript, ns_do_applescript, and move within file.
8346
83472008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
8348
8349 Remove support for Mac Carbon.
8350 * mactoolbox.c:
8351 * macterm.h:
8352 * macterm.c:
8353 * macselect.c:
8354 * macmenu.c:
8355 * macgui.h:
8356 * macfns.c:
8357 * mac.c: Remove file.
8358 * s/darwin.h:
8359 * m/intel386.h:
8360 * xfaces.c:
8361 * xdisp.c:
8362 * window.c:
8363 * tparam.c:
8364 * termhooks.h:
8365 * termcap.c:
8366 * term.c:
8367 * syssignal.h:
8368 * sysselect.h:
8369 * sysdep.c:
8370 * process.c:
8371 * lread.c:
8372 * lisp.h:
8373 * keyboard.c:
8374 * image.c:
8375 * fringe.c:
8376 * frame.h:
8377 * frame.c:
8378 * fontset.c:
8379 * font.h:
8380 * font.c:
8381 * fns.c:
8382 * fileio.c:
8383 * emacs.c:
8384 * dispnew.c:
8385 * dispextern.h:
8386 * config.in:
8387 * atimer.c:
2ae37cf0 8388 * Makefile.in: Remove code for Carbon.
aac0c6e3 8389
f0131492 83902008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3
MR
8391
8392 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
8393
83942008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8395
8396 * macterm.h (kCGBitmapByteOrder32Host): New define for
8397 non-universal SDKs.
8398
8399 * image.c (mac_create_cg_image_from_image, image_load_image_io)
8400 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
8401
8402 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
8403 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
8404
84052008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
8406
8407 * w32inevt.c: Include dispextern.h.
8408
84092008-07-26 Andreas Schwab <schwab@suse.de>
8410
8411 * print.c (print_object): Fix off-by-one in last change.
8412
84132008-07-25 Juanma Barranquero <lekktu@gmail.com>
8414
8415 * term.c (syms_of_term): Don't initialize default_orig_pair,
8416 default_set_foreground and default_set_background on Windows.
8417
84182008-07-25 Jason Rumney <jasonr@gnu.org>
8419
8420 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
8421 ScriptItemize. Clean up return value checking. Remove unused
8422 variables.
8423 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
8424 shaping engine.
8425
8426 * w32font.c (w32font_has_char): Handle the case where we can't
8427 determine the script for a character.
8428
84292008-07-25 Chong Yidong <cyd@stupidchicken.com>
8430
8431 * term.c (syms_of_term): Initialize default_orig_pair,
8432 default_set_foreground, and default_set_background.
8433
8434 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
8435 clash (bug#86).
8436 (getloadavg): Callers changed.
8437
8438 * image.c (svg_load_image): Fix last change.
8439 (svg_load_image): Use rsvg_handle_get_dimensions to check that
8440 image size is valid. Use g_object_unref instead of deprecated
8441 rsvg_handle_free to free rsvg handle.
8442 (x_from_xcolors): Don't initialize pixmap (silence compiler).
8443
84442008-07-25 Jason Rumney <jasonr@gnu.org>
8445
8446 * w32font.c (w32font_encode_char): Encode characters outside BMP as
8447 surrogates before looking up glyph index.
8448 (w32font_text_extents): Encode as surrogates if falling back to
8449 functions that need UTF-16 wide chars.
8450
8451 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
8452 BMP as surrogates before looking up glyph index.
8453
84542008-07-25 Chong Yidong <cyd@stupidchicken.com>
8455
8456 * image.c (svg_load_image): Check for failure in return value of
8457 rsvg_handle_get_pixbuf. Free rsvg handle when done.
8458
84592008-07-25 Jason Rumney <jasonr@gnu.org>
8460
8461 * w32font.c (Fx_select_font): Reverse sense of second arg.
8462
84632008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
8464
8465 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
8466 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
8467
8468 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
8469 (PURESIZE): Use it.
8470
84712008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
8472
8473 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
8474 * m/alpha.h (TEXT_END):
8475 * m/ibmrs6000.h (TEXT_END):
8476 * m/macppc.h (TEXT_END):
8477 * s/darwin.h (TEXT_END):
8478 * s/msdos.h (TEXT_END): Remove, unused.
8479 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
8480 * s/cygwin.h: Remove comment.
8481
8482 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
8483 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
8484 * m/intel386.h (DOT_GLOBAL_START):
8485 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
8486 (USG): Remove, file not used on USG platforms.
8487
8488 * Makefile.in (HAVE_X11): Remove empty #else.
8489
84902008-07-24 Andreas Schwab <schwab@suse.de>
8491
8492 * fileio.c (Finsert_file_contents): Properly adjust undo list
8493 after format conversion.
8494
84952008-07-24 Jan Djärv <jan.h.d@swipnet.se>
8496
8497 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
8498 (menu_nav_ended): Remove.
8499 (create_menus): Remove signal connect for menu_nav_ended.
8500 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
8501 create_menus.
8502 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
8503
85042008-07-23 Jason Rumney <jasonr@gnu.org>
8505
8506 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
8507 with opened font.
8508 (w32font_open): Set font type to gdi.
8509
8510 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
8511
85122008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
8513
8514 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
8515 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
8516 defines it.
8517 * unexec.c (ADDR_CORRECT): Define unconditionally.
8518
8519 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
8520
8521 * unexec.c: Remove code depending on !COFF and USG, the file is
8522 not used for such systems.
8523
8524 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
8525 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
8526 (LD_SWITCH_SYSTEM_1): Remove, update users.
8527
8528 * s/darwin.h (DATA_END):
8529 * m/intel386.h (DATA_END):
8530 * m/ibmrs6000.h (DATA_END):
8531 * m/alpha.h (DATA_END): Remove, unused.
8532
8533 * config.in: Regenerate.
8534 * s/ms-w32.h (subprocesses): Define unconditionally.
8535 * s/template.h (subprocesses): Update comment.
8536 * s/vms.h (subprocesses):
8537 * s/usg5-4.h (subprocesses):
8538 * s/hpux10-20.h (subprocesses):
8539 * s/gnu-linux.h (subprocesses):
8540 * s/cygwin.h (subprocesses):
8541 * s/bsd-common.h (subprocesses):
8542 * s/aix4-2.h (subprocesses):
8543 * s/darwin.h (subprocesses): Do not define, defined by default now.
8544
8545 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
8546 Remove all references.
8547 (temacs): Add GNUstep specific ld flags.
8548
8549 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
8550 similarly to what X does.
8551
85522008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8553
8554 * nsfns.m (x-list-fonts): Remove.
8555 (syms_of_nsfns): Drop the x-list-fonts declaration.
8556 * nsterm.m: Get rid of remaining "//" comments.
8557
85582008-07-22 Chong Yidong <cyd@stupidchicken.com>
8559
8560 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
8561
8562 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
8563 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
8564 (Fns_own_selection_internal, Fx_disown_selection_internal)
8565 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
8566
8567 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
8568 ... */' style of docstrings. Doc fixes.
8569
85702008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
8571
8572 * terminfo.c (UP, BC, PC): Undo previous change.
8573
8574 * nsfns.m: Rename ns prefixed functions/variables to the
8575 corresponding x versions. Update references.
8576
85772008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
8578
8579 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
8580
85812008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
8582
8583 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
8584 Remove forwarding functions.
8585 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
8586 non-static.
8587 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
8588 non-static.
8589 (ns_frame_parm_handlers): Use the new names.
8590 (syms_of_nsfns): Move to the end of file.
8591
8592 * nsterm.m (syms_of_nsterm): Move to the end of file.
8593
8594 * dispnew.c (init_display): Remove code for X10.
8595
85962008-07-22 Jason Rumney <jasonr@gnu.org>
8597
8598 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
8599 bare drive.
8600
86012008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8602
8603 * nsterm.m (syms_of_nsterm): Remove debugging println.
8604
86052008-07-22 David Reitter <david.reitter@gmail.com>
8606
8607 * nsfns.m (do_applescript, F_do_applescript): NS version of the
8608 Carbon implementation of the same functionality: execute arbitrary
8609 AppleScript code.
8610
86112008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
8612
8613 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
8614 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
8615 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
8616 (Fx_display_mm_height, Fx_display_mm_width)
8617 (Fx_display_backing_store, Fx_display_visual_class)
8618 (Fx_display_save_under, Fx_open_connection)
8619 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
8620 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
8621 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
8622 (Fx_display_pixel_width, Fx_display_pixel_height)
8623 (Fx_display_usable_bounds, Fx_display_planes)
8624 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
8625 ... */' style of docstrings.
8626
86272008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
8628
8629 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
8630 on this platform.
8631 (mips):
8632 * m/iris4d.h (mips): Do not define.
8633 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
8634
8635 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
8636
8637 * image.c:
8638 * nsfns.m:
8639 * nsselect.m:
8640 * nsterm.h:
8641 * nsterm.m: Rename ns prefixed functions/variables to the
8642 corresponding x versions. Update references.
8643
8644 * m/ibms390x.h (NO_REMAP): Do not undefine.
8645
8646 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
8647
86482008-07-21 Chong Yidong <cyd@stupidchicken.com>
8649
8650 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
8651 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
8652 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
8653 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
8654 (Fns_display_mm_height, Fns_display_mm_width)
8655 (Fns_display_backing_store, Fns_display_visual_class)
8656 (Fns_display_save_under, Fns_open_connection)
8657 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
8658 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
8659 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
8660 (Fns_display_pixel_width, Fns_display_pixel_height)
8661 (Fns_display_usable_bounds, Fx_display_planes)
8662 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
8663
86642008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
8665
8666 * print.c (print_object): Check print_depth before searching for
8667 circularities.
8668
86692008-07-21 Michael Albinus <michael.albinus@gmx.de>
8670
8671 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
8672 only sprintf.
8673
86742008-07-21 Kenichi Handa <handa@m17n.org>
8675
8676 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
8677
86782008-07-20 Andreas Schwab <schwab@suse.de>
8679
8680 * syntax.c (find_start_pos, find_start_value)
8681 (find_start_value_byte, find_start_begv, find_defun_start)
8682 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
8683
86842008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
8685
8686 * s/sol2-3.h: Insert contents of s/sol2.h.
8687 (LD_SWITCH_SYSTEM): Remove redundant definition.
8688 * s/sol2.h: Remove, unused.
8689
86902008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
8691
8692 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
8693
86942008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
8695
8696 * Makefile.in (ns_appdir): Fix typo in find command.
8697
86982008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
8699
8700 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
8701
8702 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
8703 added not supported anymore.
8704
8705 * s/usg5-4-2.h (LIBS_SYSTEM):
8706 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
8707
8708 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
8709 * s/lynxos.h (GETPGRP_NO_ARG):
8710 * s/hpux10-20.h (NO_SIOCTL_H):
8711 * s/gnu.h (GETPGRP_NO_ARG):
8712 * s/gnu-linux.h (NO_SIOCTL_H):
8713 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
8714 * s/cygwin.h (GETPGRP_NO_ARG):
8715 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
8716 (C_DEBUG_SWITCH): Remove duplicate definition.
8717
8718 * m/ibms390.h: Remove boilerplate comments.
8719
8720 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
8721
8722 * process.c (HAVE_SERIAL): Consolidate ifdefs.
8723 (wait_reading_process_output): Remove code for SunOS, platform not
8724 supported anymore. Use SOLARIS2 instead of sun.
8725
87262008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8727
8728 * font.c (font_open_by_name): Under NS, default lface height to zero.
8729 (font_open_for_lface): Under NS, set size based on frame fontsize.
8730 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
8731 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
8732
87332008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8734
8735 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
8736 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
8737 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
8738 YES/NO.
8739 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
8740 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
8741 * Makefile.in (clean): Clear out build destination dir.
8742
87432008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8744
8745 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
8746 xterm, xselect.
8747 * lisp.h: Remove declaration of hash_remove.
8748 * nsgui.h: Remove redefinitions of hash_remove.
8749 * fns.c (hash_remove): Rename to hash_remove_from_table.
8750
87512008-07-19 Seiji Zenitani <zenitani@mac.com>
8752
8753 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
8754 strdup() the family UTF8String before modifying it.
8755
87562008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8757
8758 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
8759 NS_FACE_BACKGROUND with 0 instead of nil.
8760 * nsfont.m (nsfont_draw): Same.
8761
87622008-07-19 Chong Yidong <cyd@stupidchicken.com>
8763
8764 * nsfns.m (ns_set_background_color): Fix crash.
8765
87662008-07-18 Chong Yidong <cyd@stupidchicken.com>
8767
8768 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
8769
87702008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
8771
8772 * puresize.h (BASE_PURESIZE): Increase to 1240000.
8773
87742008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8775
8776 * gtkutil.c: Include <config.h> instead of "config.h".
8777
8778 * lisp.h (Foverlay_buffer): Add EXFUN.
8779
8780 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
8781 child process to complete child_setup. Undo 2005-09-21 change.
8782
8783 * s/darwin.h: Mention setsid after vfork.
8784
87852008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8786
8787 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
8788 Depend on macgui.h.
8789
8790 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
8791 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
8792
8793 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
8794 and f19.
8795 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
8796
8797 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
8798 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
8799 Remove enumerators.
8800
8801 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
8802 Check if FACE_FROM_ID returns NULL.
8803
88042008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
8805
8806 * w32inevt.c (change_frame_size): Remove extern declaration.
8807 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
8808 change_frame_size.
8809
88102008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
8811
8812 * getloadavg.c: Revert last change (2008-07-15).
8813
88142008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
8815
8816 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
362654a6 8817 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
aac0c6e3
MR
8818 from configure.
8819
88202008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
8821
8822 * s/sol2.h:
8823 * s/sol2-4.h: Reorganize conditionals.
8824
8825 * ecrt0.c: Remove code depending on m68000, not used anymore.
8826
8827 * fns.c (hash_remove): Make static.
8828 * lisp.h (hash_remove): Don't prototype.
8829
8830 * m/ibmrs6000.h:
8831 * m/ibms390x.h:
8832 * m/macppc.h: Remove boilerplate comments.
8833
8834 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
8835 Solaris, which does not need them.
8836
8837 * m/vax.h: Remove comments about unsupported systems.
8838
8839 * s/darwin.h: Reorganize ifdefs.
8840
88412008-07-17 Andreas Schwab <schwab@suse.de>
8842
8843 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
8844
88452008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
8846
8847 Use SDATA. Follow coding convention of placing operators at
8848 beginning of next line rather than end of previous line, and placing
8849 spaces around infix operators.
8850
8851 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
8852 in case it was defined already.
8853 USE @GNUSTEP_MAKEFILES@ rather than envvars.
8854 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
8855 ns_default.
8856 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
8857 Lisp_Objects.
8858 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
8859 (ns_defined_color, ns_color_to_lisp): Declare.
8860 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
8861 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
8862 it's accepted even with USE_LISP_UNION_TYPE.
8863 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
8864 (update_frame_tool_bar): Remove apparently obsolete tests for
8865 non-integerness of f->tool_bar_lines.
8866 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
8867 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
8868 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
8869 (nsfont_open): Don't confuse NULL for Qnil.
8870 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
8871 * menu.h (find_and_call_menu_selection):
8872 * menu.c (find_and_call_menu_selection): Use just int for vector size.
8873 (find_and_return_menu_selection): Always return something.
8874 * frame.h: Include dispextern.h for Display_Info.
8875 (display_x_get_resource): Declare.
8876
88772008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
8878
8879 * syntax.c: Remove stdio.h include accidentally introduced in
8880 Emacs.app commit.
8881 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
8882 NS_IMPL_COCOA.
8883 * keyboard.c (handle_async_input, input_available_signal): Remove
8884 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
8885
88862008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
8887
8888 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
8889 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
8890 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
8891 Use SDATA.
8892
8893 * keymap.c: Remove all NS-specific code.
8894 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
8895 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
8896 where_is_preferred_modifier, return a different value depending on how
8897 preferred is the binding.
8898 (where_is_internal): Adjust accordingly.
8899 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
8900 Adjust to new preferred_sequence_p.
8901 (syms_of_keymap): Declare `where-is-preferred-modifier'.
8902 * keyboard.c (parse_solitary_modifier): Not static any more.
8903 * keyboard.h (parse_solitary_modifier): Declare.
8904
89052008-07-16 Andreas Schwab <schwab@suse.de>
8906
8907 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
8908 of easymenu.
8909
89102008-07-16 Chong Yidong <cyd@stupidchicken.com>
8911
8912 * xdisp.c (move_it_in_display_line): Account for word wrap, so
8913 that we don't move off the line.
8914
89152008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
8916
8917 * keyboard.c (Qsuper): Remove.
8918 (parse_menu_item): Don't call where_is_internal specially for NS.
8919
89202008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
8921
8922 * s/gnu-linux.h: Remove boilerplate comments.
8923
8924 * m/alpha.h (__ELF__): Consolidate conditions.
8925
8926 * m/m68k.h (linux): Use GNU_LINUX instead.
8927 Remove boilerplate comments.
8928
8929 * m/intel386.h: Undo refactoring from previous change.
8930 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
8931 too, remove dead code.
8932 (linux): Use GNU_LINUX instead.
8933
89342008-07-16 Jason Rumney <jasonr@gnu.org>
8935
8936 * w32gui.h: Repeat 26 June changes lost by last change.
8937
89382008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
8939
8940 * systty.h: Remove code for Aix on 386, unsupported platform.
8941
8942 * s/ms-w32.h: Remove boilerplate comments.
8943 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
8944
8945 * s/gnu-linux.h (TERM): Remove support.
8946 (HAVE_SYSVIPC): Remove, unused.
8947 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
8948 for this system.
8949
8950 * process.c: Remove support for IRIS, unused.
8951 Remove support for TERM, not relevant anymore.
8952
8953 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
8954 used with the definition.
8955
8956 * s/aix4-2.h (static): Do not undef.
8957
8958 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
8959 only used on Aix.
8960 (HAVE_SYSVIPC): Remove, unused.
8961
8962 * m/hp800.h (CANNOT_DUMP): Do not undef.
8963
8964 * m/alpha.h: Fix comment.
8965
8966 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
8967 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
8968 used by this configuration.
8969 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
8970 * unexec.c: Remove code depending on HPUX and
8971 USG_SHARED_LIBRARIES, not used with this file. Remove code
8972 depending on IRIS, unused. Remove if 0-ed code.
8973
8974 * s/template.h: Remove comments about static.
8975
8976 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
8977 Remove if 0-ed code.
8978 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
8979 were the same as the default.
8980 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
8981 Remove boilerplate comments.
8982 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
8983 (HAVE_SYSVIPC): Remove, unused.
8984 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
8985
8986 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
8987 Remove boilerplate comments.
8988 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
8989 Remove boilerplate comments.
8990 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
8991 Remove boilerplate comments.
8992 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
8993
8994 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
8995 USG systems which do not use DATA_SEG_BITS.
8996 Refactor code. Remove boilerplate comments.
8997
8998 * m/ibms390.h:
8999 * m/m68k.h:
9000 * s/bsd-common.h:
9001 * s/cygwin.h:
9002 * s/darwin.h:
9003 * s/freebsd.h:
9004 * s/gnu.h:
9005 * s/msdos.h: Remove boilerplate comments.
9006
9007 * m/iris4d.h: Remove boilerplate comments and code for systems that
6873acca 9008 do not use this file.
aac0c6e3
MR
9009 (IRIS_4D): Remove, unused.
9010
9011 * m/mips.h: Remove boilerplate comments and code for systems that
6873acca 9012 do not use this file.
aac0c6e3
MR
9013 (SIGN_EXTEND_CHAR):
9014 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
9015 * unexmips.c: Remove file, unused.
9016
9017 * editfns.c (Fuser_full_name): Replace the only use of
9018 USER_FULL_NAME with its value.
9019 * config.in: Regenerate.
9020
90212008-07-16 David Reitter <david.reitter@gmail.com>
9022
9023 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
9024 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
9025
90262008-07-16 Glenn Morris <rgm@gnu.org>
9027
9028 * emacs.c (system-type): Doc fix.
9029
90302008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
9031
9032 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
9033 If the cache doesn't work, let's fix it, rather than work around it.
9034
90352008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
9036
9037 * Makefile.in: Correct additions for nsfont.o in last commit.
9038 * nsfont.m: New file (forgot last commit).
9039
90402008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
9041
9042 * callproc.c (set_initial_environment): Initialize
9043 Vprocess_environment under CANNOT_DUMP (fixes crash when
9044 batch-compiling for bootstrap).
9045
90462008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
9047 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9048
9049 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
9050 fix crash due to different init order.
9051
90522008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
9053
9054 Changes and additions for NeXTstep windowing system (Cocoa and
9055 GNUstep) support.
9056
9057 * Makefile.in:
9058 * config.in: Support defines and build commands for NS port.
9059 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
9060 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
9061 * dispextern.h: Include nsgui.h and add needed typedefs under NS
9062 windowing.
9063 (struct face): Add synth_ital field.
9064 * dispnew.c: Include nsterm.h when compiling under NS windowing.
9065 (init_display): Initialize Vinitial_window_system to "ns" when so
9066 compiled.
9067 * emacs.c: Include GSConfig.h when compiling under GNUstep.
9068 (display_arg): Use under NS.
9069 (main): Under NS, allocate autorelease pool and handle command line
9070 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
9071 (standard_args): Add NS-specific args.
9072 (shut_down_emacs): Shut down NS terminal if compiled under NS.
9073 * font.c (DEFAULT_ENCODING): New variable.
9074 (font_find_for_lface): Use it.
9075 (syms_of_font): Load syms_of_nsfont under NS.
9076 * font.h: Declare nsfont_driver when compiled under NS.
9077 * fontset.c: When compiling under NS, include nsterm.h.
9078 (fontset_from_font): Autoconstruct fontset under NS.
9079 * frame.c (various): Under NS, include nsterm.h, add Qns window system
9080 symbol, document and use it.
9081 (do_switch_frame): When for_deletion under Cocoa, add
9082 Fraise_frame(Qnil).
9083 (x_set_frame_parameters): Ensure font attribute changes are picked up.
9084 (x_get_arg): Allow "yes" and "no" as boolean values.
9085 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
9086 Qright under Cocoa.
9087 (focus-follows-mouse): Default to 0 under NS.
9088 * frame.h (enum output_method): Add output_ns.
9089 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
9090 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
9091 (FRAME_WINDOW_P): NS-specific definition.
9092 * fringe.c (max_used_fringe_bitmap): Make public.
9093 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
9094 (getloadavg): Use NeXT code under descendant OS's.
9095 * image.c (includes and header section, x_create_bitmap_from_data)
9096 (x_create_bitmap_from_file, free_bitmap_record, image_background)
9097 (image_background_transparent, x_clear_image_1)
9098 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
9099 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
9100 (x_to_xcolors, x_from_xcolors, x_disable_image)
9101 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
9102 other GUIs, including XPM support using code originally written for
9103 Carbon GUI.
9104 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
9105 using NS API.
9106 (image_ascent): Use font metrics macros instead of direct struct field
9107 access.
9108 * keyboard.c (includes): Add nsterm.h when compiling under NS.
9109 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
9110 Also, handle NS as GTK for menu bar purposes.
9111 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
9112 toolkit where they differ.
9113 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
9114 use cachelist, still needed under NS.
9115 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
9116 (struct widget_value): Define it here for menu.c.
9117 * keymap.c (includes): Include modifier internals.
9118 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
9119 NS.
9120 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
9121 support for preferring sequences using certain modifiers, specified by
9122 the FIRSTONLY argument.
9123 * lisp.h (hash_remove): Rename to avoid name clash when compiling
9124 under NS GNUstep implementation.
9125 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
9126 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
9127 * menu.c: Include nsterm.h under NS.
9128 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
9129 (free_menubar_widget_tree_value, update_submenu_strings)
9130 (find_and_call_menu_selection): Treat NS as X and NT.
9131 (find_and_return_menu_selection): New function, used for popup menus.
9132 * nsgui.h:
9133 * nsterm.h:
9134 * nsfns.m:
9135 * nsimage.m:
9136 * nsmenu.m:
9137 * nsselect.m:
9138 * nsterm.m: New files.
9139 * process.c (wait_reading_process_output): Under NS, call ns_select()
9140 instead of plain select().
9141 * syntax.c (char_quoted): Under NS, avoid a crash when called near
9142 beginning of buffer.
9143 * sysselect.h (init_process): Rename when compiling under Cocoa to
9144 avoid name conflict.
9145 * termhooks.h (display_info): Add ns_display_info to union.
9146 * terminal.c (Fterminal_live_p): Add ns to terminal types.
9147 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
9148 COCOA environment.
9149 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
9150 unexec() signature. (Note, this will dump, but the resulting file
9151 crashes; unexosx is used instead; keeping around for reference and
9152 possible aid in getting dump working under GNUstep.)
9153 * w32gui.h (button_type, widget_value): Remove definitions (now in
9154 keyboard.h).
9155 * window.c: Include nsterm.h when compiling under NS.
9156 * xdisp.c (includes): Include nsterm.h when compiling under NS.
9157 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
9158 other GUI windowing systems.
9159 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
9160 GTK.
9161 (x_consider_frame_title): Under NS, set icon type and frame
9162 modified-state indicator; use ns_set_name_as_filename() when using
9163 formatted title.
9164 (update_window_cursor): Make public when compiling under NS.
9165 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
9166 (hourglass_atimer, Vhourglass_delay
9167 * xfaces.c (header section, init_frame_faces, clear_font_table)
9168 (defined_color, unload_color, x_face_list_fonts)
9169 (prepare_face_for_display): Add NS support parallel to other GUIs.
9170 Emulate GCs like other non-X GUIs.
9171 (split_font_name): Don't lowercase font name under NS.
9172 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
9173 under NS.
9174 * s/darwin.h: Add support for compilation under NS.
9175
91762008-07-15 Jason Rumney <jasonr@gnu.org>
9177
9178 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
9179 (w32_show_hourglass): Rename from show_hourglass.
9180 (w32_hide_hourglass): Rename from hide_hourglass.
9181 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
9182 (Vhourglass_delay): Declare extern.
9183 (hourglass_started): Remove.
9184
9185 * xdisp.c (Vhourglass_delay): Remove static.
9186 (hourglass_started, start_hourglass, cancel_hourglass):
9187 Don't include these versions on WINDOWSNT.
9188
91892008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
9190
9191 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
9192 variables (formerly in xfns.c).
9193 (show_hourglass, hide_hourglass): New prototypes (same).
9194 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
9195 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
9196 in xfns.c).
9197 (syms_of_xdisp): Declare/initialize display-hourglass,
9198 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
9199 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
9200 formerly in xfns.c.
9201 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
9202 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
9203 (start_hourglass, cancel_hourglass): Remove.
9204 (show_hourglass, hide_hourglass): Remove prototypes and static
9205 modifiers.
9206 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
9207 hourglass_atimer, hourglass_shown_p declaration/initialization.
9208 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
9209 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
9210 (start_hourglass, cancel_hourglass): Remove.
9211 (show_hourglass, hide_hourglass): Remove prototypes and static
9212 modifiers.
9213 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
9214 hourglass_atimer, hourglass_shown_p declaration/initialization.
9215 * w32fns.c (display_hourglass_p, Vhourglass_delay)
9216 (DEFAULT_HOURGLASS_DELAY): Remove.
9217 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
9218 hourglass_shown_p declaration/initialization.
9219
92202008-07-14 Jason Rumney <jasonr@gnu.org>
9221
9222 * w32fns.c (w32_get_arg): Remove wrapper function.
9223 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
9224 directly.
9225 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
9226
92272008-07-14 Kenichi Handa <handa@m17n.org>
9228
9229 * xfont.c (xfont_open): Add workaround for X's bug.
9230
92312008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
9232
9233 * fontset.c: Include <stdio.h> unconditionally.
9234
92352008-07-13 Michael Albinus <michael.albinus@gmx.de>
9236
9237 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
9238 for filtering.
9239
92402008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
9241
9242 * s/vms.h: Use __GNUC__ instead of _GNUC_.
9243
9244 * m/macppc.h:
9245 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
9246
9247 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
9248 (SPECIAL_EMACS_INT):
9249 * m/ia64.h (SPECIAL_EMACS_INT):
9250 * m/amdx86-64.h (SPECIAL_EMACS_INT):
9251 * s/gnu.h (NLIST_STRUCT):
9252 * s/aix4-2.h (X11R5_INHIBIT_I18N):
9253 * s/gnu-linux.h (LINUX):
9254 * s/msdos.h (HAVE_FACES):
9255 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
9256
9257 * systty.h:
9258 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
9259 anymore.
9260
92612008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
9262
9263 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
9264 always defined as int.
9265
9266 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
9267 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
9268 * s/gnu-linux.h (HAVE_WAIT_HEADER):
9269 * s/freebsd.h (HAVE_WAIT_HEADER):
9270 * s/bsd-common.h (HAVE_UNION_WAIT):
9271 * s/aix4-2.h (HAVE_WAIT_HEADER):
9272 * m/mips.h (HAVE_UNION_WAIT):
9273 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
9274 (COFF, static): Do not define, they are undefined later in the file.
9275
9276 * process.c (update_status): Don't use a union.
9277 (status_convert):
9278 (sigchld_handler): Use int instead of WAITTYPE.
9279
92802008-07-12 Chong Yidong <cyd@stupidchicken.com>
9281
9282 * indent.c (Fvertical_motion): Restore hscroll before moving to
9283 goal column.
9284
92852008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
9286
9287 * lisp.h: Remove left over code.
9288
92892008-07-11 Andreas Schwab <schwab@suse.de>
9290
9291 * lisp.h: Fix logic in last change.
9292
9293 * menu.h: New file.
9294 * menu.c: Include it.
9295 * xmenu.c: Likewise.
9296 * Makefile.in: Update dependencies.
9297
92982008-07-11 Kenichi Handa <handa@m17n.org>
9299
9300 * fontset.c (fontset_from_font): Cancel the previous change.
9301
93022008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
9303
9304 * lisp.h:
9305 * w32heap.c:
9306 * emacs.c:
9307 * alloc.c: Replace all references of NO_UNION_TYPE with
9308 USE_LISP_UNION_TYPE.
9309
9310 * m/xtensa.h (NO_UNION_TYPE):
9311 * m/vax.h (NO_UNION_TYPE):
9312 * m/template.h (NO_UNION_TYPE):
9313 * m/sparc.h (NO_UNION_TYPE):
9314 * m/mips.h (NO_UNION_TYPE):
9315 * m/macppc.h (NO_UNION_TYPE):
9316 * m/m68k.h (NO_UNION_TYPE):
9317 * m/iris4d.h (NO_UNION_TYPE):
9318 * m/intel386.h (NO_UNION_TYPE):
9319 * m/ibms390x.h (NO_UNION_TYPE):
9320 * m/ibms390.h (NO_UNION_TYPE):
9321 * m/ibmrs6000.h (NO_UNION_TYPE):
9322 * m/ia64.h (NO_UNION_TYPE):
9323 * m/hp800.h (NO_UNION_TYPE):
9324 * m/arm.h (NO_UNION_TYPE):
9325 * m/amdx86-64.h (NO_UNION_TYPE):
9326 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
9327 defining it the same.
9328
93292008-07-10 Chong Yidong <cyd@stupidchicken.com>
9330
9331 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
9332
93332008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
9334
9335 * fileio.c:
9336 * sysdep.c
9337 * systty.h:
9338 * m/ibmrs6000.h:
9339 * m/iris4d.h:
9340 * s/aix4-2.h:
9341 * s/freebsd.h:
9342 * s/gnu-linux.h:
9343 * s/hpux10-20.h:
9344 * s/hpux11.h:
9345 * s/netbsd.h:
9346 * s/sol2-3.h:
9347 * s/sol2-4.h:
9348 * s/sol2.h:
9349 * s/usg5-4.h:
9350 * s/vms.h: Remove references to unused variables.
9351
93522008-07-10 Andreas Schwab <schwab@suse.de>
9353
9354 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
9355 pattern before matching the generic family.
9356
93572008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
9358
9359 * unexec.c:
9360 * s/vms.h:
9361 * s/usg5-4-2.h:
9362 * s/sol2-5.h:
9363 * s/freebsd.h:
9364 * s/darwin.h: Remove dead code.
9365
9366 * m/template.h:
9367 * m/sparc.h:
9368 * m/mips.h:
9369 * m/m68k.h:
9370 * m/iris4d.h:
9371 * m/intel386.h:
9372 * m/ibms390x.h:
9373 * m/ibms390.h:
9374 * m/ia64.h:
9375 * m/hp800.h:
9376 * m/arm.h:
9377 * m/amdx86-64.h: Remove dead code and references to unused
9378 and compiler defined symbols.
9379
9380 * unexmips.c:
9381 * unexelf.c: Remove references to desupported systems.
9382
9383 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
9384
9385 * m/powermac.h: Remove boilerplate comments.
9386 (NO_REMAP): Remove unused definition.
9387
9388 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
9389 define them.
9390
93912008-07-10 Kenichi Handa <handa@m17n.org>
9392
9393 * xfont.c (xfont_open): Log the reason of failure.
9394
93952008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
9396
9397 * fontset.c (fontset_get_font_group):
9398 * font.c (font_check_otf): Specify argument types.
9399
94002008-07-09 Kenichi Handa <handa@m17n.org>
9401
9402 * coding.c (detect_coding_utf_8): Set detect_info->found only when
9403 non-ASCII char is found.
9404
9405 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
9406 (reorder_font_vector): Change the arg preferred_family to font.
9407 Prefer the spec matching with font.
9408 (fontset_get_font_group): New function.
9409 (fontset_find_font): Change the format of an element of a realized
9410 fontset. Use fontset_get_font_group.
9411 (fontset_font): Try the current fontset, the default fontset, the
9412 fallbacks of the current fontset, and the fallbacks of the default
9413 fontset in this order.
9414 (face_for_char): Delete the shortcut to use the current font.
9415 (fontset_from_font): Don't set fonts for Latin in the fontset.
9416
9417 * font.h (font_make_object, font_match_p): Adjust prototypes.
9418
9419 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
9420
9421 * font.c (font_make_object): New arg entity and pixelsize.
9422 (font_check_otf_features, font_check_otf): New functions.
9423 (font_match_p): Check :lang, :script, and :otf properties.
9424
9425 * xfont.c (xfont_open): Adjust it for the change of
9426 font_make_object.
9427 (xfont_text_extents): Fix initial setting of metrics.
9428
9429 * ftfont.c (struct ftfont_info): New member index, delete member
9430 fc_charset_idx. Make the member order compatible with struct
9431 xftfont_info.
9432 (fc_charset_table): Change charset names to registry names.
9433 (ftfont_pattern_entity): Delete the args registry and
9434 fc_charset_idx. Change the value of :font-entity property
9435 to (FONTNAME . INDEX). Always set :registry property to
9436 `iso10646-1'.
9437 (struct ftfont_cache_data): New struct.
9438 (ftfont_lookup_cache): New arg for_face.
9439 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
9440 (ftfont_driver): Set the member otf_capability.
9441 (ftfont_get_charset): Adjust it for the change of
9442 fc_charset_table.
9443 (OTF_TAG_SYM): New macro.
9444 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
9445 for the change of fc_charset_table.
9446 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
9447 ftfont_pattern_entity. Add FC_INDEX to objset.
9448 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
9449 and ftfont_pattern_entity.
9450 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
9451 font_make_object, struct ftfont_info.
9452 (ftfont_has_char): Use ftfont_get_fc_charset.
9453 (ftfont_otf_features, ftfont_otf_capability): New functions.
9454 (ftfont_shape): Use ftfont_get_otf.
9455 (ftfont_text_extents): Fix initial setting of metrics.
9456
9457 * xftfont.c (struct xftfont_info): New member ft_size. Make the
9458 member order compatible with struct ftfont_info.
9459 (xftfont_open): Add FC_CHARSET to the pattern. Set
9460 xftfont_info->ft_size. Don't unlock the face. Check BDF
9461 properties if appropriate.
9462 (xftfont_close): Unlock the face.
9463 (xftfont_anchor_point, xftfont_shape): Deleted.
9464 (syms_of_xftfont): Don't set members anchor_point and shape of
9465 xftfont_driver.
9466
9467 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
9468 font_make_object.
9469
9470 * w32font.c (w32font_open): Adjust it for the change of
9471 font_make_object.
9472 (w32font_open_internal): Don't set properties of font_object here.
9473
94742008-07-08 Chong Yidong <cyd@stupidchicken.com>
9475
9476 * macfns.c (x_create_tip_frame):
9477 * w32fns.c (x_create_tip_frame):
9478 * xfns.c (x_create_tip_frame): Pass parameter argument to
9479 face-set-after-frame-default.
9480
9481 * xfaces.c (Finternal_merge_in_global_face): Save merged
9482 attributes for the default face back into the face vector.
9483
94842008-07-08 Andreas Schwab <schwab@suse.de>
9485
9486 * fontset.h: Declare fontset_from_font. Don't declare
9487 new_fontset_from_font and fontset_from_font_name.
9488 * xterm.c: Include "fontset.h".
9489 * Makefile.in (xterm.o): Update dependencies.
9490
94912008-07-08 Glenn Morris <rgm@gnu.org>
9492
9493 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
9494 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
9495
94962008-07-07 Chong Yidong <cyd@stupidchicken.com>
9497
9498 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
9499 (x_set_frame_parameters): Don't bind it.
9500
95012008-07-07 Juanma Barranquero <lekktu@gmail.com>
9502
9503 * w32fns.c (map_w32_filename): Declare extern.
9504
95052008-07-07 Jason Rumney <jasonr@gnu.org>
9506
9507 * w32term.c (WS_EX_LAYERED): Define if not already.
9508
95092008-07-06 Chong Yidong <cyd@stupidchicken.com>
9510
9511 * xfaces.c (set_font_frame_param): Don't try to set the font
9512 parameter if it is still unspecified in the lface.
9513
95142008-07-05 Chong Yidong <cyd@stupidchicken.com>
9515
9516 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
9517 face if it didn't already exist.
9518
9519 * xdisp.c (try_window_id): Give up if word-wrapping is on.
9520
95212008-07-05 Andreas Schwab <schwab@suse.de>
9522
9523 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
9524
95252008-07-05 Chong Yidong <cyd@stupidchicken.com>
9526
9527 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
9528 word-wrapping.
9529 (IT_DISPLAYING_WHITESPACE): New macro.
9530 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
9531 when word-wrapping. Simplify word-wrapping logic. Use correct
9532 pixel positions when saving copies of the iterator.
9533 (display_line): Use proper wrap point if the last character on a
9534 line was preceded by whitespace.
9535
95362008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9537
9538 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
9539
95402008-07-04 Kenichi Handa <handa@m17n.org>
9541
9542 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
9543
9544 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
9545
95462008-07-02 Jason Rumney <jasonr@gnu.org>
9547
9548 * xfns.c (syms_of_xfns): Only define x-select-font when both
2ae37cf0 9549 HAVE_FREETYPE and USE_GTK.
aac0c6e3
MR
9550
9551 * xdisp.c (next_element_from_display_vector): Move assignment out
9552 of if statement.
9553
95542008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
9555
9556 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
9557
9558 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
9559 (syms_of_fileio): Initialize and export them.
9560 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
9561
9562 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
9563 (Fsystem_move_file_to_trash): New function.
9564 (syms_of_w32fns): Export it to lisp.
9565
95662008-07-01 Jason Rumney <jasonr@gnu.org>
9567
9568 * w32font.c (w32font_text_extents): Don't count overhang as part
9569 of width.
9570
95712008-06-30 Miles Bader <miles@gnu.org>
9572
9573 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
9574 Add `avoid_cursor_p' field.
9575
9576 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
9577 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
9578 (append_glyph, append_composite_glyph, produce_image_glyph)
9579 (append_stretch_glyph): Initialize avoid_cursor_p.
9580 (get_it_property): Rename from `get_line_height_property'.
9581 (x_produce_glyphs): Use get_it_property.
9582 (handle_line_prefix, push_display_prop): New functions.
9583 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
9584 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
9585 New variables.
9586 (syms_of_xdisp): Initialize them.
9587
95882008-06-30 Kenichi Handa <handa@m17n.org>
9589
9590 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
9591 XftDefaultSubstitute (they are called in XftFontMatch).
9592 (xftfont_open): Fix args to ftfont_font_format.
9593
9594 * ftfont.c (fc_charset_table): New member lang.
9595 (ftfont_resolve_generic_family): New arg pattern.
60612c8f 9596 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
aac0c6e3
MR
9597 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
9598 (ftfont_open): Fix args to ftfont_font_format.
9599 (ftfont_font_format): New arg filename.
9600
96012008-06-30 Chong Yidong <cyd@stupidchicken.com>
9602
9603 * xfaces.c (Finternal_merge_in_global_face): If default face was
9604 modified, realize it again. Update the font face attribute.
9605
96062008-06-29 Jason Rumney <jasonr@gnu.org>
9607
9608 * w32term.c (x_set_frame_alpha): Fix logic.
9609
96102008-06-29 Kenichi Handa <handa@m17n.org>
9611
9612 * fontset.c (Finternal_char_font): Return font-object instead of
9613 font-name.
9614
9615 * composite.c (get_composition_id): Fix the width calculation for TAB.
9616
96172008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9618
9619 * indent.c (Fvertical_motion): Properly handle float column arg.
9620
96212008-06-28 Jason Rumney <jasonr@gnu.org>
9622
9623 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
9624 (pfnSetLayeredWindowAttributes): New function pointer.
9625 (w32_initialize): Initialize it when supported.
9626 (x_set_frame_alpha): New function.
9627
9628 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
9629 (w32_frame_parm_handlers): Set alpha handler.
9630
9631 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
9632
96332008-06-27 Jason Rumney <jasonr@gnu.org>
9634
9635 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
9636 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
9637 (w32_to_x_charset, x_to_w32_charset)
9638 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
9639 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
9640 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
9641 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
9642 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
9643 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
9644 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
9645 (Qw32_charset_unicode): Remove.
9646 (syms_of_w32fns): Update for above changes.
9647
9648 * w32font.c (w32_to_x_charset, x_to_w32_charset)
9649 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
9650 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
9651 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
9652 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
9653 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
9654 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
9655 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
9656 (syms_of_w32font): Update for above changes.
9657
96582008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
9659
9660 * s/usg5-4.h: Fix previous change: keep the correct branch of a
9661 removed #if.
9662 (USG_SHARED_LIBRARIES): Remove duplicate definition.
9663
96642008-06-26 Juanma Barranquero <lekktu@gmail.com>
9665 Eli Zaretskii <eliz@gnu.org>
9666
9667 * makefile.w32-in (LOCAL_FLAGS):
9668 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
9669
9670 * sysdep.c (_spawnlp, _getpid):
9671 Declare with explicit _cdecl instead of _CRTAPI1.
9672
9673 * editfns.c (Fget_internal_run_time):
9674 Check for WINDOWSNT with #ifdef, not #if.
9675
96762008-06-26 Jason Rumney <jasonr@gnu.org>
9677
9678 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
9679
9680 * w32term.c (x_draw_glyph_string_foreground)
9681 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
9682 Use FONT_HANDLE macro.
9683 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
9684
9685 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
9686 (uniscribe_encode_char): Use FONT_HANDLE macro.
9687
9688 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
9689 (w32font_text_extents): Use precast w32_font.
9690 (w32font_close): Free cached metrics.
9691 (w32font_open_internal): Allocate space for name on stack.
9692
96932008-06-26 Chong Yidong <cyd@stupidchicken.com>
9694
9695 * xdisp.c (extend_face_to_end_of_line): Fix last change.
9696
96972008-06-26 Jason Rumney <jasonr@gnu.org>
9698
9699 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
9700 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
9701
97022008-06-26 Juanma Barranquero <lekktu@gmail.com>
9703
9704 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
9705
97062008-06-26 Jason Rumney <jasonr@gnu.org>
9707
9708 * w32bdf.c, w32bdf.h: Remove obsolete files.
9709
9710 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
9711
9712 * w32gui.h: Don't include w32bdf.h.
9713 (XCharStruct, enum w32_char_font_type, W32FontStruct):
9714 Remove obsolete font support.
9715
9716 * w32font.h (struct w32font_info): Remove compat_w32_font.
9717 Add hfont member.
9718 (FONT_COMPAT): Remove obsolete macro.
9719
9720 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
9721 (w32font_encode_char, w32font_text_extents): Use new hfont member.
9722 (w32font_open_internal): Remove compat code. Set new hfont member.
9723 (Fx_select_font): Use new hfont member.
9724
9725 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
9726 (uniscribe_encode_char): Use new hfont member.
9727
9728 * w32term.c (x_draw_glyph_string_foreground)
9729 (x_draw_composite_glyph_string_foreground): Use new hfont member.
9730 (x_draw_glyph_string): Use metrics in w32font_info.
9731
97322008-06-26 Kenichi Handa <handa@m17n.org>
9733
9734 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
9735
97362008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
9737
9738 * unexnext.c:
9739 * m/ews4800.h:
9740 * m/hp9000s300.h:
9741 * m/ibm370aix.h:
9742 * m/mips-siemens.h:
9743 * m/ncr386.h:
9744 * m/next.h:
9745 * m/pmax.h:
9746 * m/powerpcle.h:
9747 * m/tandem-s2.h:
9748 * s/386bsd.h:
9749 * s/bsd386.h:
9750 * s/bsd4-1.h:
9751 * s/bsd4-2.h:
9752 * s/bsdos2-1.h:
9753 * s/bsdos2.h:
9754 * s/bsdos3.h:
9755 * s/bsdos4.h:
9756 * s/nextstep.h:
9757 * s/ultrix4-3.h:
9758 * s/usg5-0.h:
9759 * s/usg5-2-2.h:
9760 * s/usg5-2.h:
9761 * s/usg5-4-3.h:
9762 * s/ux4800.h:
9763 * s/uxpds.h:
9764 * s/uxpv.h: Remove support for obsolete systems.
9765 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
8f3a3ac2 9766 Remove, insert contents in s/hpux10-20.h.
aac0c6e3
MR
9767 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
9768 Remove, insert contents in s/aix4-2.h.
9769 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
9770 * s/bsd4-3.h: Rename to ...
9771 * s/bsd-common.h: ... this.
9772 * data.c:
9773 * doc.c:
9774 * ecrt0.c:
9775 * emacs.c:
9776 * fileio.c:
9777 * floatfns.c:
9778 * keyboard.c:
9779 * mem-limits.h:
9780 * print.c:
9781 * process.c:
9782 * sysdep.c:
9783 * syssignal.h:
9784 * systty.h:
9785 * syswait.h:
9786 * term.c:
9787 * unexec.c:
9788 * unexelf.c:
9789 * unexhp9k800.c:
9790 * m/hp800.h:
9791 * m/ibmrs6000.h:
9792 * m/mips.h:
9793 * m/vax.h:
9794 * s/darwin.h:
9795 * s/freebsd.h:
9796 * s/gnu.h:
9797 * s/ms-w32.h:
9798 * s/msdos.h:
9799 * s/netbsd.h:
9800 * s/template.h: Remove references to obsolete variables.
9801
9802 * Makefile.in: Add dependencies for all unexec files.
9803 (admindir): Remove unused variable.
9804 (UNEXEC_SRC): Remove references.
9805
98062008-06-25 Chong Yidong <cyd@stupidchicken.com>
9807
9808 * xfns.c (x_default_font_parameter): If Xft is available, first
9809 try Monospace-12 for the default font.
9810
98112008-06-25 Jason Rumney <jasonr@gnu.org>
9812
9813 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
9814
98152008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
9816
9817 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
9818
9819 * buffer.c (syms_of_buffer): Remove default-word-wrap.
9820
98212008-06-25 Juanma Barranquero <lekktu@gmail.com>
9822
9823 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
9824 <scroll-conservatively>: Fix typo in docstring.
9825
9826 * xselect.c (Fx_send_client_event): Doc fix.
9827
98282008-06-25 Kenichi Handa <handa@m17n.org>
9829
9830 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
9831
9832 * font.c (font_parse_fcname): Remove unused variables.
9833 (font_sort_entites): Delete the arg SPEC. Caller changed.
9834 Fix for the case of ! best_only.
9835 (font_delete_unmatched): Check DPI and AVGWIDTH too.
9836
9837 * lisp.h (Fstring_to_unibyte): EXFUN it.
9838
9839 * character.h (str_to_unibyte): Extern it.
9840
9841 * character.c (str_to_unibyte): New function.
9842
9843 * fns.c (Fstring_to_unibyte): New function.
9844 (syms_of_fns): Defsubr it.
9845
98462008-06-24 Kenichi Handa <handa@m17n.org>
9847
9848 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
9849 DPI too.
9850 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
9851
98522008-06-24 Andreas Schwab <schwab@suse.de>
9853
9854 * Makefile.in (${lispsource}loaddefs.el): Rename from
9855 ../lisp/loaddefs.el.
9856 (bootstrap-clean): Do what distclean does but don't remove
9857 Makefile.
9858 (distclean): Depend on bootstrap-clean and remove Makefile.
9859
98602008-06-24 Chong Yidong <cyd@stupidchicken.com>
9861
9862 * buffer.h (struct buffer): New member word_wrap.
9863
9864 * buffer.c (syms_of_buffer): New variables default-word-wrap and
9865 word-wrap.
9866 (init_buffer_once): Initialize them.
9867
9868 * dispextern.h (struct it): Replace bool truncate_lines_p with a
9869 line_wrap enum possessing three possible values.
9870
9871 * termopts.h: Replace truncate_partial_width_windows with
9872 Vtruncate_partial_width_windows.
9873
9874 * dispnew.c (direct_output_for_insert): Avoid direct output when
9875 inserting a space with word wrap on.
9876
9877 * indent.c (compute_motion): Obey integer values of
9878 truncate-partial-width-windows.
9879
9880 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
9881 replacing truncate_partial_width_windows.
9882 (init_iterator): If Vtruncate_partial_width_windows is an integer,
9883 truncate only if the window width is below that integer.
9884 (start_display, resize_mini_window, produce_stretch_glyph)
9885 (display_string, move_it_in_display_line_to): Use line_wrap.
9886 (back_to_previous_visible_line_start, reseat_1): Reset
9887 string_from_display_prop_p.
9888 (display_line): Extend default face to end of line when wrapping.
9889
98902008-06-24 Kim F. Storm <storm@cua.dk>
9891
9892 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
9893 to wrap continued lines at word boundaries.
9894
98952008-06-24 Jason Rumney <jasonr@gnu.org>
9896
9897 * font.c (Ffont_face_attributes): Multiply pixel size before point
9898 conversion to avoid multiplying rounding error.
9899
99002008-06-23 Jason Rumney <jasonr@gnu.org>
9901
9902 * w32term.c (x_draw_glyph_string_background)
9903 (x_draw_glyph_string): Remove old bdf font code.
9904
9905 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
9906
99072008-06-22 Kenichi Handa <handa@m17n.org>
9908
9909 * font.c (font_find_for_lface): Try the adstyle specified in
9910 the property of LFACE_FONT of LFACE (if any).
9911
99122008-06-21 Seiji Zenitani <zenitani@mac.com>
9913 Ryo Yoshitake <ryo@shiftmode.net>
9914
9915 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
9916
99172008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9918
9919 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
9920 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
9921 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
9922 (witness-emacs): Remove.
9923 (lisp, shortlisp): Move loaddefs.el earlier.
9924 (mostlyclean): Forget about witness-emacs.
9925
99262008-06-22 Glenn Morris <rgm@gnu.org>
9927
9928 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
9929 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
9930
99312008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9932
9933 * Makefile.in (PRECOMP): Remove.
9934 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
9935 (witness-emacs): Run `compile-first'.
9936 (.el.elc): Use the new compile-onefile target.
9937
99382008-06-21 Kenichi Handa <handa@m17n.org>
9939
9940 * xftfont.c (xftfont_open): Handle QCembolden only when
9941 FC_EMBOLDEN is defined.
9942
99432008-06-21 Andreas Schwab <schwab@suse.de>
9944
9945 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
9946 (.el.elc): Likewise.
9947
99482008-06-21 Miles Bader <miles@gnu.org>
9949
9950 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
9951 build dir, not the lisp source dir.
9952
99532008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9954
9955 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
9956 (bootstrapclean): Remove.
9957 (.el.elc): New rule.
9958 (PRECOMP): New var.
9959 (../lisp/subdirs.el): Remove.
9960 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
9961 (witness-emacs): New target.
9962 (mostlyclean): Remove witness-emacs as well.
9963 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
9964 Add witness-emacs dependency.
9965
99662008-06-20 Chong Yidong <cyd@stupidchicken.com>
9967
9968 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
9969 defined by the font.
9970
99712008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9972
9973 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
9974 (bootstrap-clean): New target that keeps TAGS around.
9975 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
9976 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
9977
99782008-06-20 Jason Rumney <jasonr@gnu.org>
9979
9980 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
9981 Remove obsolete font code.
9982
9983 * w32font.c (font_matches_spec): Use csb bitfield from font signature
9984 to determine language support.
9985
99862008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9987
9988 * sysdep.c (cfsetspeed): New fun extracted from the code.
9989 (cfmakeraw): Move before first use.
9990
99912008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
9992
9993 * sysdep.c (cfmakeraw): Provide fallback implementation.
9994 (serial_configure): Provide fallback implementation of cfsetspeed.
9995
99962008-06-20 Kenichi Handa <handa@m17n.org>
9997
9998 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
9999 the pattern.
10000
10001 * fontset.c (fontset_from_font): Copy font_spec before changing
10002 the elements.
10003
10004 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
10005
100062008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
10007
10008 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
10009 for explicit `font' parameters.
10010
10011 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
10012
100132008-06-19 Kenichi Handa <handa@m17n.org>
10014
10015 * frame.c: Include <ctype.h>.
10016 (x_set_font_backend): Allow spacing characters in the X resource
10017 for FontBackend.
10018
100192008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
10020
10021 * w32fns.c, xfns.c (Qfont_param): New var.
10022 (syms_of_w32fns): Initialize it.
10023 (x_default_font_parameter): Record explicit `font' into
10024 `font-parameter'.
10025
100262008-06-18 Kenichi Handa <handa@m17n.org>
10027
10028 * font.c (font_parse_xlfd): Fix previous change.
10029 (font_parse_fcname): Don't use :fc-unknown-spec.
10030 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
10031 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
10032 (font_add_log): Prepend the driver name to the resulting fonts.
10033
10034 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
10035 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
10036 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
10037
10038 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
10039 (QCembolden): New variables.
10040 (syms_of_xftfont): DEFSYM them.
10041 (xftfont_open): Call XftFontMatch. Don't trust the result of
10042 XftTextExtents8 if the pixel_size is less than 5.
10043
100442008-06-18 Andreas Schwab <schwab@suse.de>
10045
10046 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
10047 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
10048
100492008-06-18 Jason Rumney <jasonr@gnu.org>
10050
10051 * w32font.c (w32font_list, w32font_match): Add logging.
10052
10053 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
10054
100552008-06-17 Chong Yidong <cyd@stupidchicken.com>
10056
10057 * font.c (font_parse_fcname): Store divider characters for
10058 unknown-spec list. For known key symbols, intern using correct
10059 symbol name.
10060
100612008-06-17 Kenichi Handa <handa@m17n.org>
10062
10063 * xfaces.c (realize_default_face): If the frame is not on window
10064 system, set the fontset of face to nil.
10065
100662008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
10067
10068 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
10069
100702008-06-16 Juanma Barranquero <lekktu@gmail.com>
10071
10072 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
10073 (build_font_name_from_vector): Delete externs.
10074
10075 * xfaces.c (struct font_name): Don't declare.
10076
100772008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
10078
10079 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
10080
100812008-06-16 Chong Yidong <cyd@stupidchicken.com>
10082
10083 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
10084
100852008-06-16 Juanma Barranquero <lekktu@gmail.com>
10086
10087 * font.c (Ffont_spec): Fix usage in docstring.
10088 (Ffont_face_attributes): Doc fix.
10089
100902008-06-16 Andreas Schwab <schwab@suse.de>
10091
10092 * font.c (Ffont_face_attributes): Fix definition.
10093
100942008-06-16 Jason Rumney <jasonr@gnu.org>
10095
10096 * font.h (font_style_symbolic_from_value): Remove.
10097
10098 * font.c (font_style_symbolic_from_value): Remove.
10099 (font_style_symbolic): Revert to pre 2008-06-13 version.
10100
10101 * w32font.c (w32_to_fc_weight): New function.
10102 (w32font_full_name, logfont_to_fcname): Use it.
10103
101042008-06-16 Kenichi Handa <handa@m17n.org>
10105
10106 * font.c (font_check_object): Delete it.
10107 (font_clear_cache): Check if a font-object is alive.
10108 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
10109 font-object to nil.
10110 (font_close_object): Don't check FONT_CLOSE_OBJECT.
10111 (font_at): Don't call font_check_object.
10112 (Ffont_get): Return a symbol for :weight, :slant, and :width.
10113
101142008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
10115
10116 * puresize.h (BASE_PURESIZE): Increase to 1230000.
10117
101182008-06-16 Chong Yidong <cyd@stupidchicken.com>
10119
10120 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
10121
101222008-06-15 Chong Yidong <cyd@stupidchicken.com>
10123
10124 * font.c (font_parse_fcname): Only one decimal point.
10125 (font_unparse_fcname): Handle data in family and foundry indices
10126 as symbols, not strings.
10127 (font_unparse_gtkname, Ffont_face_attributes): New functions.
10128
10129 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
10130
10131 * font.h (font_unparse_gtkname): Add prototype.
10132
101332008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
10134
10135 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
10136
101372008-06-15 Andreas Schwab <schwab@suse.de>
10138
10139 * font.c (font_update_drivers): Fix crash when no drivers match.
10140
101412008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10142
10143 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
10144 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
10145
101462008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
10147
10148 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
10149
101502008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10151
10152 * process.c (Fserial_process_configure, Fprocess_send_eof):
10153 Use EQ to compare Lisp_Objects.
10154
101552008-06-13 Jason Rumney <jasonr@gnu.org>
10156
10157 * w32fns.c (Fw32_select_font): Remove old font API function.
10158
10159 * w32font.c (logfont_to_fcname): New function.
10160 (Fx_select_font): New font dialog function compatible with
10161 GTK/fontconfig version.
10162
10163 * font.c (font_style_symbolic_from_value): New function.
10164 (font_style_symbolic): Use it.
10165
10166 * font.h (font_style_symbolic_from_value): Declare new function.
10167
101682008-06-13 Juanma Barranquero <lekktu@gmail.com>
10169
10170 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
10171 <font-width-table>: Fix typos in docstrings.
10172
101732008-06-13 Daniel Engeler <engeler@gmail.com>
10174
10175 These changes add serial port access.
10176 * process.c: Add HAVE_SERIAL.
10177 (Fdelete_process, Fprocess_status, Fset_process_buffer)
10178 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
10179 (list_processes_1, select_wrapper, Fstop_process)
10180 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
10181 (status_notify): Modify to handle serial processes.
10182 [HAVE_SERIAL] (Fserial_process_configure)
10183 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
10184 New functions.
10185 * process.h (struct Lisp_Process): Add `type'.
10186 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
10187 New functions.
10188 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
10189 serial ports.
b71ac3dd 10190 (serial_open, serial_configure): New functions.
aac0c6e3
MR
10191 * w32.h: Add FILE_SERIAL.
10192 (struct _child_process): Add ovl_read, ovl_write.
10193
101942008-06-13 Kenichi Handa <handa@m17n.org>
10195
10196 * dispextern.h (enum lface_attribute_index): New member
10197 LFACE_FOUNDRY_INDEX.
10198
10199 * font.c (font_score): Delete arg alternate_families. Check only
10200 weight, slant, width, and size. Ignore the difference of alias
10201 style symbols.
10202 (font_sort_entites): Adjust for the above change. Reflect the
10203 order of font-driver to scores.
10204 (font_list_entities): Don't check alternate_familes here.
10205 (font_clear_prop): Handle foundry.
10206 (font_update_lface): Don't parse "foundry-family" form here.
10207 Handle FONT_FOUNDRY_INDEX.
10208 (font_find_for_lface): Likewise. Handle alternate families here.
10209 If registry is nil, try iso8859-1 and ascii-0.
10210 (font_open_for_lface): Pay attention to size in ENTITY.
10211 (font_open_by_name): Simplify by calling font_load_for_lface.
10212 (free_font_driver_list): Delete it.
10213 (font_update_drivers): Preserve the order of backends.
10214 (syms_of_font): Setting of sort_shift_bits adjusted for the change
10215 of font_score and font_sort_entites.
10216 (font_update_sort_order): Likewise.
10217
10218 * xfaces.c (LFACE_FOUNDRY): New macro.
10219 (check_lface_attrs): Check foundry.
10220 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
10221 (merge_face_vectors): Check foundry.
10222 (merge_face_ref): Likewise.
10223 (Finternal_set_lisp_face_attribute): Likewise.
10224 (x_update_menu_appearance): Likewise.
10225 (Finternal_get_lisp_face_attribute): Likewise.
10226 (lface_hash): Likewise.
10227 (lface_same_font_attributes_p): Likewise.
10228 (x_supports_face_attributes_p): Likewise.
10229 (tty_supports_face_attributes_p): Likewise.
10230 (Finternal_set_alternative_font_family_alist): Intern strings.
10231 (Finternal_set_alternative_font_registry_alist): Downcase strings.
10232 (realize_default_face): Set LFACE_FOUNDRY (lface).
10233
10234 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
10235 font-driver at first.
10236
10237 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
10238
102392008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
10240
10241 * lread.c (Fload): Use xfree, not free on saved_doc_string.
10242
102432008-06-12 Jim Meyering <meyering@redhat.com>
10244
10245 Make unexec_free handle NULL the same way free does.
10246 * unexmacosx.c (unexec_free): Ignore a NULL argument.
10247
102482008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10249
10250 * character.h (CHAR_TO_BYTE_SAFE): New macro.
10251 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
10252 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
10253 (WEAK_ALIAS): Simplify.
10254 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
10255 when searching a unibyte buffer.
10256
102572008-06-12 Chong Yidong <cyd@stupidchicken.com>
10258
10259 * xfns.c (Fx_select_font): Rename from x-font-dialog.
10260
102612008-06-12 Juanma Barranquero <lekktu@gmail.com>
10262
10263 * w32font.c: Include ctype.h.
10264
102652008-06-11 Jason Rumney <jasonr@gnu.org>
10266
10267 * w32font.c (w32font_encode_char): Detect missing glyphs that are
10268 misreported as space.
10269 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
10270 as aliases for registry iso10646-1.
10271
102722008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10273
10274 * buffer.c (clone_per_buffer_values): Skip `name'.
10275
102762008-06-11 Chong Yidong <cyd@stupidchicken.com>
10277
10278 * font.c (font_parse_fcname): Fix last change; accept decimal
10279 points in font size.
10280
102812008-06-10 Jason Rumney <jasonr@gnu.org>
10282
10283 * w32uniscribe.c (add_opentype_font_name_to_list):
10284 Skip non unicode fonts.
10285
102862008-06-10 Chong Yidong <cyd@stupidchicken.com>
10287
10288 * xfns.c (Fx_font_dialog): New function.
10289
10290 * gtkutil.c (xg_dialog_response_cb): Rename from
10291 xg_file_response_callback.
10292 (pop_down_dialog): Rename from pop_down_file_dialog.
10293 (xg_get_file_name): Callers changed.
10294 (xg_get_font_name): New function.
10295
10296 * gtkutil.h (xg_get_font_name): Insert prototype.
10297
102982008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10299
10300 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
10301 x_underline_minimum_display_offset.
10302 (syms_of_xdisp): Declare it here rather than in xterm.c.
10303 * dispextern.h (underline_minimum_offset): Declare it.
10304 * w32term.c (x_draw_glyph_string): Use it.
10305 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
10306 (syms_of_xterm): Don't declare it any more.
10307 (x_draw_glyph_string): Adjust to the new name.
10308
8719abec 103092008-06-10 David De La Harpe Golden <david@harpegolden.net>
aac0c6e3
MR
10310
10311 * xterm.c (x_underline_minimum_display_offset): New var.
10312 (x_draw_glyph_string): Use it.
10313 (syms_of_xterm): Declare it.
10314
103152008-06-10 Chong Yidong <cyd@stupidchicken.com>
10316
10317 * font.c (font_parse_fcname): Accept GTK-style font names too.
10318
103192008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10320
10321 * dired.c (file_name_completion): Don't return t if the match is exact
10322 but with different capitalization.
10323 * minibuf.c (Ftry_completion): Simplify.
10324
10325 * window.c (Vwindow_point_insertion_type): New var.
10326 (set_window_buffer): Use it.
10327 (syms_of_window): Init and export it to Lisp.
10328
103292008-06-10 Kenichi Handa <handa@m17n.org>
10330
10331 * font.h (font_intern_prop): Prototype adjusted.
10332
10333 * font.c (font_intern_prop): New arg force_symbol.
10334 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
10335 Adjust for the change of font_intern_prop.
10336
10337 * ftfont.c (ftfont_pattern_entity):
10338 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
10339 (w32_registry):
10340 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
10341 the change of font_intern_prop.
10342
103432008-06-09 Juanma Barranquero <lekktu@gmail.com>
10344
10345 * w32menu.c (digest_single_submenu): Declare extern.
10346
103472008-06-09 Jason Rumney <jasonr@gnu.org>
10348
10349 * w32term.c (x_make_frame_visible): Use alternate restore flags.
10350
10351 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
10352 (parse_single_submenu): Remove.
10353 (digest_single_submenu): Remove.
10354 (syms_of_w32menu): Don't initialise variables that have moved
10355 to menu.c.
10356 (set_frame_menubar): Sync with version in xmenu.c.
10357 (w32_menu_show): Sync with xmenu_show in xmenu.c.
10358
10359 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
10360 Make static again.
10361
103622008-06-09 Jason Rumney <jasonr@gnu.org>
10363
10364 Changes to w32 files related to the move of common menu code
10365 to menu.c on 2008-06-08 by Chong Yidong.
10366
10367 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
10368 defs to w32gui.h.
10369 (single_keymap_panes, push_menu_item, push_menu_pane):
10370 Make globally visible.
10371
10372 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
10373 (local_free, malloc_widget_value, free_widget_value)
10374 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
10375 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
10376 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
10377 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
10378 (menu_items, menu_items_allocated, menu_items_used)
10379 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
10380 (init_menu_items, finish_menu_items, discard_menu_items)
10381 (grow_menu_items, push_submenu_start, push_submenu_end)
10382 (push_left_right_boundary, push_menu_pane, push_menu_item)
10383 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
10384 (free_menubar_widget_tree_value, parse_single_submenu)
10385 (update_submenu_strings): Remove functions.
10386 (xmalloc_widget_value): Remove and declare extern.
10387
10388 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
10389 (OBJ1): Build it.
10390
10391 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
10392 (local_heap, local_alloc, local_free, malloc_widget_value)
10393 (free_widget_value): Define here.
10394
103952008-06-09 Kenichi Handa <handa@m17n.org>
10396
10397 * font.h (Qascii_0): Extern it.
10398
10399 * font.c (Qascii_0): New variable.
10400 (syms_of_font): DEFSYM it.
10401 (font_open_by_name): If the registry "iso8859-1" fails, try also
10402 "ascii-0".
10403
10404 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
10405
104062008-06-08 Kenichi Handa <handa@m17n.org>
10407
10408 * .gdbinit (xfont): New command.
10409
104102008-06-08 Andreas Schwab <schwab@suse.de>
10411
10412 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
10413 * Makefile.in (menu.o): Update dependencies.
10414
10415 * Makefile.in (obj): Always add menu.o.
10416 * emacs.c (main): Always call syms_of_menu.
10417 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
10418
104192008-06-08 Chong Yidong <cyd@stupidchicken.com>
10420
10421 * Makefile.in: Compile menu.c.
10422
10423 * lisp.h: Declare syms_of_menu.
10424
10425 * emacs.c (main): Call syms_of_menu.
10426
10427 * keyboard.h: Relocate platform-independent menu definitions from
10428 xmenu.c.
10429
10430 * menu.c: New file. Relocate platform-independent menu
10431 definitions from xmenu.c. Suggested by Adrian Robert.
10432
10433 * xmenu.c: Remove platform-independent menu definitions.
10434 (menu_items menu_items_inuse, menu_items_allocated)
10435 (menu_items_used, menu_items_n_panes)
10436 (menu_items_submenu_depth): Move to keyboard.h.
10437 (init_menu_items, finish_menu_items, unuse_menu_items)
10438 (discard_menu_items, restore_menu_items, save_menu_items)
10439 (grow_menu_items, push_submenu_start, push_submenu_end)
10440 (push_left_right_boundary, push_menu_pane, push_menu_item)
10441 (keymap_panes, single_keymap_panes, single_menu_item)
10442 (list_of_panes, list_of_items, find_and_call_menu_selection)
10443 (xmalloc_widget_value, free_menubar_widget_value_tree)
10444 (parse_single_submenu, digest_single_submenu)
10445 (update_submenu_strings): Move to menu.c.
10446
104472008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10448
10449 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
10450
104512008-06-06 Miles Bader <miles@gnu.org>
10452
10453 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
10454 face, not frame default.
10455
104562008-06-05 Martin Rudalics <rudalics@gmx.at>
10457
10458 * window.c (pop_up_windows, pop_up_frames)
10459 (display_buffer_reuse_frames, Vpop_up_frame_function)
10460 (Vdisplay_buffer_function, Veven_window_heights)
10461 (Vspecial_display_buffer_names, Vspecial_display_regexps)
10462 (Vspecial_display_function, Vsame_window_buffer_names)
10463 (Vsame_window_regexps, split_height_threshold)
10464 (Vsplit_window_preferred_function): Move those vars to window.el.
10465 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
10466 (Fdisplay_buffer): Move those functions to window.el.
10467 (syms_of_window): Remove corresponding declarations.
10468 (display_buffer): New function.
10469 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
10470 * dispnew.c (Flast_nonminibuf_frame): New function.
10471 * buffer.c (Fpop_to_buffer): Move to window.el.
10472
104732008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10474
10475 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
10476
104772008-06-05 Kenichi Handa <handa@m17n.org>
10478
10479 * coding.c (detect_coding): Fix previous change.
10480 (detect_coding_system): Likewise.
10481
104822008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10483
10484 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
10485
10486 * keymap.c (Vminibuffer_local_filename_must_match_map):
10487 Rename from Vminibuffer_local_must_match_filename_map.
10488 (syms_of_keymap):
10489 * minibuf.c (Fcompleting_read): Adjust accordingly.
10490 * commands.h: Rename declaration as well.
10491
104922008-06-05 Kenichi Handa <handa@m17n.org>
10493
10494 * font.c (Ffont_spec): Don't use font_parse_family_registry for
10495 family name.
10496 (Ffont_put): Likewise.
10497
10498 * fontset.c (fontset_find_font): Call font_open_for_lface with the
10499 current font-spec.
10500
10501 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
10502 is unspecified.
10503
10504 * xfaces.c (realize_x_face): If the font-related face attributes
10505 are the same as those of default face, realize a new fontset from
10506 default->fontset.
10507 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
10508
105092008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10510
10511 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
10512 (move_it_in_display_line): New wrapper.
10513
10514 * window.c (window_scroll_pixel_based_preserve_x)
10515 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
10516 (window_scroll_pixel_based, window_scroll_line_based):
10517 Use them to preserve column positions.
10518 (syms_of_window): Initialize them.
10519
10520 * indent.c (Fvertical_motion): Extend first arg to allow passing an
10521 (HPOS . VPOS) pair.
10522
10523 * dispextern.h (move_it_in_display_line): Declare.
10524
105252008-06-05 Juanma Barranquero <lekktu@gmail.com>
10526
10527 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
10528 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
10529 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
10530
105312008-06-04 Juanma Barranquero <lekktu@gmail.com>
10532
10533 * window.c (Fset_window_parameter): Doc fix.
10534 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
10535
105362008-06-04 Joakim Verona <joakim@verona.se>
10537
10538 * window.h (struct window): Add new member window_parameters.
10539
10540 * window.c (Fwindow_parameters, Fwindow_parameter)
10541 (Fset_window_parameter): New defuns.
10542 (syms_of_window): Defsubr the new defuns.
10543 (make_window): Initialize window_parameters to nil.
10544
105452008-06-04 John Paul Wallington <jpw@pobox.com>
10546
10547 * eval.c (Fdefmacro): Doc fix.
10548
105492008-06-04 Kenichi Handa <handa@m17n.org>
10550
10551 * coding.c (detect_coding): Fix handling of coding->head_ascii.
10552 Be sure to call setup_coding_system when we find a proper coding system.
10553 (detect_coding_system): Fix handling of coding->head_ascii.
10554
105552008-06-03 Andreas Schwab <schwab@suse.de>
10556
10557 * font.c (font_prop_validate_spacing): Fix last change.
10558
105592008-06-03 Kenichi Handa <handa@m17n.org>
10560
10561 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
10562 (font_parse_fcname): Fix handling of unknown key.
10563
10564 * xfont.c (xfont_list): Try an alias.
10565
10566 * charset.c (char_charset): Return NULL if the arg charset_list is
10567 specified and C doesn't belong to any of them.
10568
105692008-06-02 Chip Coldwell <coldwell@redhat.com>
10570
10571 * font.c (font_pixel_size): Don't take cdr of an integer.
10572
105732008-06-02 Jim Meyering <meyering@redhat.com>
10574
10575 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
10576 * alloc.c (xfree): Return right away for a NULL arg.
10577 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
10578 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
10579 * mac.c (create_apple_event_from_event_ref): Likewise.
10580 (create_apple_event_from_drag_ref, cfstring_create_normalized):
10581 Likewise.
10582 * doprnt.c (doprnt1): Likewise.
10583 * frame.c (frame): Likewise.
10584 * keyboard.c (wipe_kboard): Likewise.
10585 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
10586 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
10587 * term.c (tty_default_color_capabilities, maybe_fatal)
10588 (delete_tty): Likewise.
10589 * w16select.c (string): Likewise.
10590 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
10591 * w32bdf.c (w32_free_bdf_font): Likewise.
10592 * w32fns.c (w32_unload_font): Likewise.
10593 * w32font.c (w32font_close): Likewise.
10594 * window.c (size_window): Likewise.
10595 * xselect.c (receive_incremental_selection): Likewise.
10596 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
10597 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
10598 * w32.c (stat): Likewise.
10599
10600 Remove useless if-before-free tests.
10601 * editfns.c (Fset_time_zone_rule): Likewise.
10602 * lread.c (nosuffix): Likewise.
10603 * ralloc.c (get_bloc): Likewise.
10604 * regex.c (reg_free): Likewise.
10605 * xftfont.c (xftfont_open, xftfont_close): Likewise.
10606 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
10607 * xsmfns.c (smc_save_yourself_CB): Likewise.
10608
106092008-06-02 Kenichi Handa <handa@m17n.org>
10610
10611 * font.c (font_find_for_lface): Handle float font size.
10612 (font_open_for_lface): Likewise.
10613
10614 * xfaces.c (x_supports_face_attributes_p): Check face->font before
10615 comparing the properties.
10616
106172008-06-01 Jason Rumney <jasonr@gnu.org>
10618
10619 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
10620 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
10621 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
10622 Don't add empty script list.
10623 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
10624
106252008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
10626
10627 * Makefile.in (dot, dotdot): Remove, update users.
10628 ".." has been used elsewhere in the file for a long time.
10629 (LIBXT_STATIC): Remove conditional based on unused variable.
10630
106312008-06-01 Miles Bader <miles@gnu.org>
10632
10633 * xfaces.c (Vface_remapping_alist): New variable.
10634 (syms_of_xfaces): Initialize it.
10635 (enum named_merge_point_kind): New type.
10636 (struct named_merge_point): Add `named_merge_point_kind' field.
10637 (push_named_merge_point): Make cycle detection respect different
10638 named-merge-point kinds.
10639 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
10640 Remove face-name alias resolution.
10641 (lface_from_face_name): New definition using
10642 `lface_from_face_name_no_resolve'.
10643 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
10644 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
10645 (get_lface_attributes): New definition that layers face-remapping on
10646 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
10647 (lookup_basic_face): New function.
10648 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
10649 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
10650 `get_lface_attributes'.
10651 (face_at_buffer_position): Use `lookup_basic_face' to lookup
10652 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
10653 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
10654
10655 * xdisp.c (init_iterator): Pass base_face_id through
10656 `lookup_basic_face' when we actually use it as a face-id.
10657 (handle_single_display_prop): Use `lookup_basic_face' to lookup
10658 DEFAULT_FACE_ID.
10659
10660 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
10661 lookup the initial face-id.
10662
10663 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
10664
106652008-06-01 Juanma Barranquero <lekktu@gmail.com>
10666
10667 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
10668 (Fremove_text_properties): Fix typos in docstrings.
10669
106702008-05-31 Kenichi Handa <handa@m17n.org>
10671
10672 * font.c (font_list_entities): Fix the car part of data to be
10673 stored in the cache.
10674
10675 * ftfont.c (ftfont_font_format): Don't use strcasestr.
10676
106772008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10678
10679 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
10680 Add a `test' argument so another predicate than `equal' can be used.
10681 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
10682 (map_char_table): Remove unused vars `c' and `i'.
10683 * lisp.h (Foptimize_char_table): Adjust declaration.
10684 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
10685
106862008-05-30 Kenichi Handa <handa@m17n.org>
10687
10688 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
10689 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
10690 defined.
10691
106922008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10693
10694 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
10695 (Fmake_variable_frame_local): Disallow mixing buffer-local and
10696 frame-local settings for the same variable.
10697
106982008-05-30 Kenichi Handa <handa@m17n.org>
10699
10700 * fontset.c (Ffont_info): Move to font.c.
10701 (syms_of_fontset): Delete defsubr of Sfont_info.
10702
10703 * font.c (font_style_to_value, font_score): Delete casting of the
10704 args to xstcasecmp.
10705 (register_font_driver): Increment num_font_drivers only when
10706 registering the driver globally.
10707 (Ffont_info): Move from fontset.c. Handle a font object too.
10708 (syms_of_font): Defsubr Sfont_info.
10709
107102008-05-29 Kenichi Handa <handa@m17n.org>
10711
10712 * coding.h (enum define_coding_utf8_arg_index): New enum.
10713 (enum coding_attr_index): Change coding_attr_utf_16_bom to
10714 coding_attr_utf_bom.
10715 (enum utf_bom_type): Rename from utf_16_bom_type.
10716 (struct utf_16_spec): Adjust for the above change.
10717 (struct coding_system): Add utf_8_bom in `spec' union.
10718
10719 * coding.c (CODING_UTF_8_BOM): New macro.
10720 (enum coding_category): Delete coding_category_utf_8, add
10721 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
10722 coding_category_utf_8_sig.
10723 (CATEGORY_MASK_UTF_8): Delete it.
10724 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
10725 (CATEGORY_MASK_UTF_8_SIG): New macros.
10726 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
10727 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
10728 CATEGORY_MASK_UTF_8_SIG.
10729 (CATEGORY_MASK_UTF_8): New macro.
10730 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
10731 (detect_coding_utf_8): Check BOM.
10732 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
10733 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
10734 (encode_coding_utf_16): Likewise.
10735 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
10736 (detect_coding, detect_coding_system): Handle utf-8-auto.
10737 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
10738 (syms_of_coding): Fix setting up of Vcoding_category_table.
10739
107402008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
10741
10742 * process.c (Faccept_process_output): If `millisec' is non-nil,
10743 `seconds' default to 0.
10744 (wait_reading_process_output): Also return non-nil if we read output
10745 from a non-running process.
10746
107472008-05-29 Jason Rumney <jasonr@gnu.org>
10748
10749 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
10750 `raster' specified.
10751 (add_font_entity_to_list): Allow non-opentype truetype fonts back
10752 in the uniscribe backend, but disallow any font that has no
10753 unicode subrange support.
10754
107552008-05-29 Juanma Barranquero <lekktu@gmail.com>
10756
10757 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
10758 Fix typos in docstrings.
10759
107602008-05-29 Kenichi Handa <handa@m17n.org>
10761
10762 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
10763 (Fx_family_fonts): Set frame correctly.
10764
107652008-05-28 Jason Rumney <jasonr@gnu.org>
10766
10767 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
10768
107692008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10770
10771 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
10772 calling build_annotations.
10773
107742008-05-28 Juanma Barranquero <lekktu@gmail.com>
10775
10776 * coding.c (Fdecode_coding_region, Fencode_coding_region)
10777 (Fencode_coding_string):
10778 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
10779 <latin-extra-code-table>: Fix typos in docstrings.
10780 (syms_of_coding) <coding-system-alist>: Doc fix.
10781 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
10782
107832008-05-28 Kenichi Handa <handa@m17n.org>
10784
10785 * fontset.c (Ffont_info): Don't call font_close_object.
10786
10787 * font.c (font_parse_family_registry): Use Ffont_put to validate
10788 foundry and family.
10789 (font_delete_unmatched): Don't check spacing.
10790 (font_list_entities): Add spacing to the spec to list fonts.
10791
10792 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
10793 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
10794
10795 * coding.c (encode_coding_raw_text): Fix previous change.
10796 (encode_coding_object): When the dst_object is a buffer and is
10797 different from src_object, move gap to PT.
10798
107992008-05-27 Chong Yidong <cyd@stupidchicken.com>
10800
10801 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
10802
108032008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10804
10805 * coding.c (encode_coding_raw_text): Set coding->produced_char for
10806 all branches. Compute it differently.
10807
10808 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
10809
108102008-05-27 Juanma Barranquero <lekktu@gmail.com>
10811
10812 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
10813 into "else if () ... else ...".
10814
108152008-05-27 Jason Rumney <jasonr@gnu.org>
10816
10817 * w32font.c (w32font_open_internal): Determine if glyph indices
10818 are likely to work here.
10819
108202008-05-27 Chong Yidong <cyd@stupidchicken.com>
10821
10822 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
10823 draw overlap glyphs with appropriate highlighting.
10824
108252008-05-27 Kenichi Handa <handa@m17n.org>
10826
10827 * xfont.c (xfont_open): Fix calculation of font->average_width.
10828
108292008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10830
10831 * casefiddle.c (casify_object): Try to guess better whether the
10832 argument is a byte or a char.
10833
108342008-05-26 Andreas Schwab <schwab@suse.de>
10835
10836 * xselect.c (x_reply_selection_request): Properly handle format == 32.
10837 Always send multiples of format size.
10838
10839 * xterm.c (x_set_frame_alpha): Fix type mismatch.
10840
108412008-05-26 Jason Rumney <jasonr@gnu.org>
10842
10843 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
10844 (compute_metrics): Don't set failure if we just cleared the cache.
10845 (w32_weight_table): Remove unused variable.
10846 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
10847 backwards compatibility.
10848
108492008-05-25 Kenichi Handa <handa@m17n.org>
10850
10851 * w32term.c (x_draw_glyph_string):
10852 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
10853
10854 * xfaces.c: Delete unused function prototypes.
10855 (xstrlwr, font_frame): Delete them.
10856 (clear_face_cache): Delete unused variable.
10857
10858 * xftfont.c (xftfont_open): Delete unused variable.
10859 If underline_thickness is not 1, adjust underline_position.
10860
10861 * ftxfont.c (ftxfont_open): Delete unused variable.
10862
10863 * fontset.c (face_for_char): Optimize for the case of no charset
10864 property.
10865
10866 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
10867 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
10868 (otf_open, font_otf_capability, generate_otf_features)
10869 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
10870 Comment out by surrounding "#if 0" and "#endif" for the moment.
10871 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
10872 (syms_of_font): Codes for accessing above commented out.
10873
108742008-05-24 Eli Zaretskii <eliz@gnu.org>
10875
10876 * w32proc.c: Include dispextern.h.
10877
10878 * w32.c: Include dispextern.h.
10879
108802008-05-23 Juanma Barranquero <lekktu@gmail.com>
10881
10882 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
10883 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
10884 Fix typos in docstrings.
10885
108862008-05-23 Jason Rumney <jasonr@gnu.org>
10887
10888 * xsmfns.c: Remove includes that are already included by config.h.
10889
108902008-05-23 Kenichi Handa <handa@m17n.org>
10891
10892 * charset.c (Qemacs, charset_emacs): New variables.
10893 (char_charset): Fix for non-Unicode characters.
10894 (syms_of_charset): Define charset_emacs.
10895
10896 * w32term.c (x_draw_glyph_string): Be sure to update
10897 s->underline_thickness and s->underline_position. Be sure to draw
10898 underline within the current line area.
10899
10900 * xterm.c (x_draw_glyph_string): Be sure to update
10901 s->underline_thickness and s->underline_position. Be sure to draw
10902 underline within the current line area.
10903
10904 * fontset.c: Delete unused variables and add casting for char *
10905 throughout the file.
10906 (fontset_font): Try the fallback fonts of the current fontset
10907 before consulting the default fontset.
10908
10909 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
10910
10911 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
10912
109132008-05-22 Jason Rumney <jasonr@gnu.org>
10914
10915 * font.c: Don't include strings.h.
10916
10917 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
10918
10919 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
10920 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
10921 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
10922 to call xstrcasecmp.
10923
10924 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
10925
10926 * fontset.c (fs_query_fontset): Use xstrcasecmp.
10927
10928 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
10929
10930 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
10931
109322008-05-22 Kenichi Handa <handa@m17n.org>
10933
10934 * puresize.h (BASE_PURESIZE): Increase to 1220000.
10935
10936 * font.c (font_prop_validate_style): Adjust for the format
10937 change of font_style_table.
10938
10939 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
10940 two args.
10941
10942 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
10943 two args.
10944
109452008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
10946
10947 * minibuf.c (keys_of_minibuf): Delete.
10948 * lisp.h (keys_of_minibuf): Delete.
10949 * emacs.c (main): Don't call keys_of_minibuf.
10950
109512008-05-22 Kenichi Handa <handa@m17n.org>
10952
10953 * ftfont.c (ftfont_resolve_generic_family): Rename from
10954 ftfont_list_generic_family. Return a single family for each
10955 generic family.
10956 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
10957 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
10958 Call font_add_log.
10959 (ftfont_match): Call font_add_log.
10960
10961 * font.h (Ffont_xlfd_name): EXFUN adjusted.
10962 (FONT_DEBUG): Define it.
10963 (font_add_log): Extern it.
10964 (font_assert): Rename from xassert.
10965
10966 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
10967 (xfont_list_family): Call font_add_log.
10968 (xfont_match): Likewise.
10969 (memq_no_quit): Delete.
10970
10971 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
10972 call of Ffont_xlfd_name.
10973
10974 * xfaces.c (struct table_entry, slant_table, weight_table)
10975 (swidth_table): Move to font.c.
10976
10977 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
10978 xassert are changed to font_assert. Delete many unused variables.
10979 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
10980 New variables.
10981 (struct table_entry): Move from xfaces.c and modified.
10982 (weight_table, slant_table, width_table): Move from xfaces.c and
10983 contents adjusted for the change of struct table_entry.
10984 (font_style_to_value, font_style_symbolic): Adjust for the
10985 format change of font_style_table.
10986 (font_parse_family_registry): Don't overwrite existing foundry and
10987 family of font_spec.
10988 (font_score): Fix calculation of diff for sizes.
10989 (font_sort_entites): Call font_add_log.
10990 (font_delete_unmatched): Return a newly created list.
10991 (font_list_entities): Fix previous change. Call font_add_log.
10992 (font_matching_entity, font_open_entity, font_close_entity):
10993 Call font_add_log.
10994 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
10995 (Finternal_set_font_style_table): Delete.
10996 (BUILD_STYLE_TABLE): New macro.
10997 (build_style_table): New function.
10998 (Vfont_log, font_log_env_checked): New variables.
10999 (font_add_log): New function.
11000 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
11001 Declare Lisp variables "font-weight-table", "font-slant-table",
11002 "font-width-table", and "font-log". Initialize font_style_table.
11003
110042008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
11005
11006 * xterm.c (x_set_frame_alpha): Move declarations before statements.
11007
110082008-05-21 Seiji Zenitani <zenitani@mac.com>
11009 Ryo Yoshitake <ryo@shiftmode.net>
11010
11011 * frame.c (Qalpha): Add a new frame parameter `alpha'.
11012 (Vframe_alpha_lower_limit): New variable.
11013 (x_set_alpha): New function.
11014
11015 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
11016
11017 * xfns.c (x-create-frame, Qalpha):
11018 Initialize the frame parameter `alpha'.
11019 * xterm.c (OPAQUE, OPACITY): New.
11020 (x_set_frame_alpha): New function.
11021 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
11022
11023 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
11024 * w32fns.c (w32_frame_parm_handlers): Likewise.
11025
110262008-05-20 Jason Rumney <jasonr@gnu.org>
11027
11028 * w32font.c (add_font_entity_to_list): Don't add non-opentype
11029 truetype fonts to opentype list.
11030
110312008-05-20 Juanma Barranquero <lekktu@gmail.com>
11032
11033 * fontset.c (Ffontset_info): Doc fix.
11034 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
11035 <ignore-relative-composition>: Fix typos in docstrings.
11036
11037 * font.c (syms-of-font) <font-encoding-alist>:
11038 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
11039 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
11040 (Ffont_otf_alternates): Doc fixes.
11041
110422008-05-20 Kenichi Handa <handa@m17n.org>
11043
11044 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
11045 font.h through out the file.
11046 (FONT_DRIVERS): Rename from FONTOBJ.
11047 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
11048 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
11049
11050 * emacs.c (main): Call syms_of_font unconditionally.
11051
11052 * font.h (find_font_encoding): Extern it.
11053
11054 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
11055 fontset.c.
194d44e7 11056 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
aac0c6e3
MR
11057 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
11058 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
11059 only when HAVE_WINDOW_SYSTEM is defined.
11060 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
11061 when HAVE_WINDOW_SYSTEM is defined.
11062
11063 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
11064 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
11065
11066 * xfaces.c: Include font.h unconditionally.
11067 (merge_face_ref, merge_face_vectors)
11068 (Finternal_set_lisp_face_attribute): Cancel the previous change.
11069
110702008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
11071
11072 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
11073 indirect_variable.
11074 * eval.c (lisp_indirect_variable): New fun.
11075 (Fuser_variable_p): Use it.
11076
110772008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11078
11079 * lisp.h (indirect_variable):
11080 * data.c (indirect_variable, let_shadows_buffer_binding_p):
11081 Use Lisp_Symbol pointers rather than Lisp_Object.
11082 Adjust callers.
11083 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
11084 To this end, change calling-convention.
11085
11086 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
11087 if some non-hidden buffers are selected by string&pred.
11088
110892008-05-19 Chong Yidong <cyd@stupidchicken.com>
11090
11091 * process.c (wait_reading_process_output): Always check status
11092 when in batch mode.
11093
110942008-05-19 Kenichi Handa <handa@m17n.org>
11095
11096 * font.c (font_list_entities): Fix handling of cache.
11097 (font_matching_entity): Likewise.
11098
11099 * ftfont.c (cs_iso8859_1): Delete.
11100 (ft_face_cache): New variable.
11101 (struct ftfont_info): New member fc_charset_idx.
11102 (ftfont_build_basic_charsets): Delete.
11103 (fc_charset_table): New variable.
11104 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
11105 . FC_CHARSET_IDX) as :font-entity property in the font entity.
11106 Callers changed.
11107 (ftfont_lookup_cache, ftfont_get_charset): New functions.
11108 (ftfont_spec_pattern): New argument fc_charset_idx.
11109 Check registry more rigidly. Change callers.
11110 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
11111 change of :font-entity property of the font.
11112
11113 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
11114 property of the font.
11115
111162008-05-18 Juanma Barranquero <lekktu@gmail.com>
11117
11118 * coding.c (Fcoding_system_p): Rename argument to match docstring.
11119 (Funencodable_char_position, Fcheck_coding_systems_region)
11120 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
11121 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
11122 (Ffind_operation_coding_system, Fset_coding_system_priority)
11123 (Fcoding_system_eol_type): Doc fixes.
11124
111252008-05-17 Glenn Morris <rgm@gnu.org>
11126
11127 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
11128
111292008-05-16 Eli Zaretskii <eliz@gnu.org>
11130
11131 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
11132 and st_gid.
11133
11134 * frame.c (Fdelete_frame): Don't call font_update_drivers if
11135 HAVE_WINDOW_SYSTEM is not defined.
11136
11137 * xfaces.c (merge_face_ref, merge_face_vectors)
11138 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
11139 HAVE_WINDOW_SYSTEM is defined.
11140 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
11141
111422008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
11143
11144 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
11145
111462008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11147
11148 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
11149
111502008-05-15 Kenichi Handa <handa@m17n.org>
11151
11152 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
11153 preference.
11154
111552008-05-15 Glenn Morris <rgm@gnu.org>
11156
11157 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
11158
111592008-05-15 Chong Yidong <cyd@stupidchicken.com>
11160
11161 * fns.c (init_fns): Don't initialize weak_hash_tables here.
11162 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
11163
11164 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
11165
111662008-05-15 Kenichi Handa <handa@m17n.org>
11167
11168 * ftfont.c (ftfont_list): Downcase family name to check generic
11169 families.
11170
11171 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
11172 font-spec for QCfont value.
11173
11174 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
11175 buffer. Check the return value of it.
11176
111772008-05-14 Jason Rumney <jasonr@gnu.org>
11178
11179 * w32term.c (w32_get_glyph_overhangs): Remove.
11180 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
11181
111822008-05-14 Kenichi Handa <handa@m17n.org>
11183
11184 * font.c (font_prop_validate): Make nil a valid value.
11185 (font_clear_cache): Check if the cached vector of entities is nil
11186 or not.
11187
111882008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11189
11190 * emacs.c (main_thread): Conditionalize on
11191 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
11192 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
11193
11194 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
11195 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
11196 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
11197
111982008-05-14 Kenichi Handa <handa@m17n.org>
11199
11200 * coding.c (detect_coding_iso_2022): Ignore a coding category that
11201 has no corresponding coding system.
11202
112032008-05-14 Jason Rumney <jasonr@gnu.org>
11204
11205 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
11206
11207 * w32font.h (w32font_open_internal): Update declaration.
11208
11209 * w32font.c (w32font_open_internal): Change last argument from
11210 w32font_info struct to font object. Fill in font object from
11211 font_entity. Get Outline metrics if possible. Use them to
11212 calculate underline position and thickness. Use xlfd name as name
11213 property. Don't set codepage.
11214 (w32font_open): Pass font_object to w32font_open_internal. Don't
11215 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
11216 (w32font_draw): Use s->font.
11217 (clear_cached_metrics): Don't clear non-existent blocks.
11218
11219 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
11220 font was not found.
11221 (x_draw_glyph_string): Use underline position and thickness from font.
11222
11223 * w32uniscribe.c (uniscribe_open): Pass font_object to
11224 w32font_open_internal.
11225
112262008-05-14 Kenichi Handa <handa@m17n.org>
11227
11228 These changes are to delete all legacy font-handling codes, and
11229 make Emacs use only font-backends.
11230
11231 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
11232 (frame.o, image.o, print.o): Depend on $(FONTSRC).
11233
11234 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
11235
11236 * charset.h (Vcharset_non_preferred_head)
11237 (Vcurrent_iso639_language): Extern them.
11238
11239 * charset.c (Vcharset_non_preferred_head): New variable.
11240 (Vcurrent_iso639_language): New variable.
11241 (syms_of_charset): Declare it as a Lisp variable.
11242 (char_charset): Don't check non preferred charsets. As a last
11243 resort, return charset_unicode.
11244 (Fset_charset_priority): Update Vcharset_non_preferred_head.
11245
11246 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
11247 conditionals. Don't check enable_font_backend. Delete all codes
11248 used only when USE_FONT_BACKEND is not defined.
11249
11250 * dispextern.h (struct glyph_string): Change type of `font' to
11251 `struct font *'.
11252 (struct glyph_string): New member underline_position and
11253 underline_thickness.
11254 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
11255 (struct face): Change type of `font' to `struct font *'. Remove
11256 members `font_name', `font_info_id'.
11257 (per_char_metric, encode_char): Delete externs.
11258 (calc_pixel_width_or_height): Adjust the prototype.
11259
11260 * emacs.c (enable_font_backend): Delete extern.
11261 (main): Don't set enable_font_backend. Don't check the command
11262 line argument "-disable-font-backend".
11263
11264 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
11265 (enum font_property_index): New members FONT_DPI_INDEX,
11266 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
11267 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
11268 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
11269 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
11270 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
11271 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
11272 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
11273 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
11274 (struct font_spec, struct font_entity): New structs.
11275 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
11276 (struct font): Many members from old "struct font_info" moved to
11277 here. Members font and entity deleted.
11278 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
11279 the new font-related objects.
11280 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
11281 (CHECK_FONT_GET_OBJECT): Likewise.
11282 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
11283 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
11284 (struct font_driver): New members case_sensitive anc check. Type
11285 of the member list and open changed.
11286 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
11287 (font_symbolic_width, font_find_object, font_get_spec)
11288 (font_set_lface_from_name): Delete extern.
11289 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
11290
11291 * font.c: Include <strings.h>.
11292 (enable_font_backend): Delete it.
11293 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
11294 (CHECK_VALIDATE_FONT_SPEC): Delete it.
11295 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
11296 (null_string): Delete it.
11297 (null_vector): Make it static.
11298 (font_family_alist): Delete it.
11299 (Qnormal): Extern it.
11300 (QCextra, QClanguage): Delete it.
11301 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
11302 (font_make_spec, font_make_entity, font_make_object)
11303 (font_intern_prop): Renamed from intern_downcase. Don't downcase
11304 the string. Callers changed.
11305 (font_pixel_size): Adjusted for the format change of font-related
11306 objects.
11307 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
11308 (font_style_to_value, font_style_symbolic): New function.
11309 (build_font_family_alist): Delete it.
11310 (font_registry_charsets): Use Fassoc_string instead of
11311 assq_no_quit.
11312 (font_prop_validate_symbol): Don't return null_string.
11313 (font_prop_validate_style): Adjusted for the change of
11314 style-related values in a font vector.
11315 (font_property_table): Delete entries for QClanguage and
11316 QCantialias, add entries for QCavgwidth.
11317 (get_font_prop_index): Delete the 2nd argument FROM.
11318 (font_prop_validate): Arguments changed.
11319 (font_put_extra): Adjusted for the change of font-related objects.
11320 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
11321 (font_parse_fcname, font_unparse_fcname)
11322 (font_prepare_composition): Likewise.
11323 (font_parse_family_registry): Renamed from font_merge_old_spec.
11324 (otf_open): Delete the 1st arg entity.
11325 (font_otf_capability): Adjusted for the above change.
11326 (font_score): New arg alternate_families. Adjusted for the change
11327 of font-related objects.
11328 (font_sort_entites): New arg best_only.
11329 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
11330 Delete them.
11331 (font_match_p): Check alternate families.
11332 (font_find_object): Delete it.
11333 (font_check_object): New function.
11334 (font_clear_cache): Adjusted for the change of font-related objects.
11335 (font_delete_unmatched): New arg.
11336 (font_list_entities): Call font_driver->list with a spec that
11337 doesn't specify style-related properties.
11338 (font_matching_entity): Arguments changed. Caller changed.
11339 (font_open_entity): Adjusted for the change of font-related objects.
11340 (font_close_object, font_has_char, font_encode_char)
11341 (font_get_name, font_get_spec): Likewise.
11342 (font_spec_from_name, font_clear_prop, font_update_lface):
11343 New functions.
11344 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
11345 (font_prepare_for_face, font_done_for_face, font_open_by_name)
11346 (font_at): Adjusted for the change of font-related objects.
11347 (font_range): New function.
11348 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
11349 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
11350 (Fcopy_font_spec, Fmerge_font_spec): New function.
11351 (Ffont_family_list): Renamed from list-families.
11352 (Finternal_set_font_style_table): Arguments changed.
11353 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
11354 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
11355 change of font-related objects.
11356 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
11357
11358 * fontset.h (struct font_info): Delete it. Most members go to
11359 struct font.
11360 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
11361 (enum FONT_SPEC_INDEX): Delete it.
11362 (font_info, list_fonts_func, load_font_func, query_font_func)
11363 (set_frame_fontset_func, find_ccl_program_func)
11364 (get_font_repertory_func, new_fontset_from_font_name): Delete
11365 externs.
11366 (fontset_from_font_name): Extern it.
11367 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
11368 (FONT_INFO_FROM_FACE): Deleted.
11369 (face_for_font): Adjust prototype.
11370
11371 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
11372 conditionals. Don't check enable_font_backend. Delete all codes
11373 used only when USE_FONT_BACKEND is not defined.
11374 (get_font_info_func, list_font_func, load_font_func)
11375 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
11376 (get_font_repertory_func): Delete them.
11377 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
11378 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
11379 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
11380 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
11381 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
11382 (fontset_compare_rfontdef): New function.
11383 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
11384 rfont-defs by qsort. Adjusted for the change of font-group vector.
11385 (load_font_get_repertory): Deleted.
11386 (fontset_find_font): Use new macros to ref/set elements of
11387 font-def and rfont-def.
11388 (fontset_font): Fix the timing of remembering that no font for C.
11389 (free_face_fontset): Do nothing if the face has no fontset.
11390 (face_suitable_for_char_p): Use new macros to ref/set elements of
11391 rfont-def.
11392 (face_for_char): Likewise. Call face_for_char with font_object.
11393 (fs_load_font): Delete. Delete #pragma surrounding it.
11394 (fs_query_fontset): Use strcasecmp instead of strcmp.
11395 (generate_ascii_font_name): Adjusted for the format change of
11396 font-spec.
11397 (Fset_fontset_font): Likewise. Use new macros to set elements of
11398 font-def.
11399 (Fnew_fontset): Use font_unparse_xlfd to generate
11400 FONTSET_ASCII (fontset).
11401 (new_fontset_from_font_name): Deleted.
11402 (fontset_from_font): Renamed from new_fontset_from_font. Check if
11403 a fontset is already created for the font. FIx updating of
11404 Vfontset_alias_alist.
11405 (fontset_ascii_font): Deleted.
11406 (Ffont_info): Adjusted for the format change of font-spec.
11407 (Finternal_char_font): Likewise.
11408 (Ffontset_info): Likewise.
11409 (syms_of_fontset): Don't check load_font_func.
11410
11411 * fns.c (internal_equal): Handle PREV_FONT.
11412
11413 * frame.h: Delete USE_FONT_BACKEND conditional.
11414
11415 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
11416 conditionals. Don't check enable_font_backend. Delete all codes
11417 used only when USE_FONT_BACKEND is not defined.
11418 (x_set_font): Call x_new_font, not x_new_fontset2.
11419 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
11420 already set for the frame.
11421
11422 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
11423 a font-entity by font_make_entity. Use font_intern_prop instead
11424 of intern_downcase. Use FONT_SET_STYLE to set a style-related
11425 font property. If a font is scalable, set avgwidth property to 0.
11426 Set font-entity property by font_put_extra.
11427 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
11428 (ffont_driver): Adjusted for the change of struct font_driver.
11429 (ftfont_spec_pattern): New function.
11430 (ftfont_list): Return a list, not vector.
11431 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
11432 (ftfont_list_family): Don't downcase names.
11433 (ftfont_free_entity): Deleted.
11434 (ftfont_open): Return a font-object. Adjusted for the change of
11435 struct font. Get underline_thickness and underline_position from
11436 font property. Don't update dpyinfo->smallest_font_height and
11437 dpyinfo->smallest_char_width.
11438 (ftfont_close): Don't free `struct font'.
11439 (ftfont_has_char): Adjusted for the format change of font-entity.
11440 (ftfont_encode_char, ftfont_text_extents): Likewise.
11441
11442 * ftxfont.c (ftxfont_list): Return a list, not vector.
11443 (ftxfont_open): Return a font-object. Adjusted for the change of
11444 struct font. Get underline_thickness and underline_position from
11445 font property. Don't update dpyinfo->smallest_font_height and
11446 dpyinfo->smallest_char_width.
11447 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
11448 (ftxfont_draw): Adjusted for the change of struct font.
11449
11450 * image.c (image_ascent): Don't include "charset.h". Include
11451 "character.h" and "font.h".
11452
11453 * lisp.h (enum pvec_type): New member PREV_FONT.
11454 (Fassoc_string): EXFUN it.
11455
11456 * print.c: Include font.h.
11457 (print_object): Handle font-related objects.
11458
11459 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
11460 conditionals. Don't check enable_font_backend. Delete all codes
11461 used only when USE_FONT_BACKEND is not defined.
11462 (handle_auto_composed_prop): Do nothing if it->f is not on a
11463 window system. Check how many following characters can be
11464 displayed by the same font.
11465 (calc_pixel_width_or_height): Type of the 4th arg is changed to
11466 'struct font *'.
11467 (get_char_face_and_encoding): Assign the whole encoding task to
11468 the `encode-char' method of a font driver.
11469 (fill_composite_glyph_string): Adjusted for the change of `struct
11470 face' and `struct glyph_string'.
11471 (fill_glyph_string): Likewise.
11472 (get_per_char_metric): Arguments changed.
11473 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
11474 and `struct glyph_string'.
11475 (produce_stretch_glyph, calc_line_height_property)
11476 (x_produce_glyphs): Likewise.
11477
11478 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
11479 conditionals. Don't check enable_font_backend. Delete all codes
11480 used only when USE_FONT_BACKEND is not defined. Use
11481 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
11482 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
11483 (Qp): Extern them.
11484 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
11485 Deleted.
11486 (struct font_name): Deleted.
11487 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
11488 (compare_fonts_by_sort_order): New function.
11489 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
11490 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
11491 Deleted.
11492 (Fx_family_fonts): Use font_list_entities, and sort fonts by
11493 compare_fonts_by_sort_order.
11494 (Fx_font_family_list): Call Ffont_family_list.
11495 (face_numeric_value, face_numeric_weight, face_numeric_slant)
11496 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
11497 (face_symbolic_slant, face_symbolic_swidth)
11498 (split_font_name_into_vector, build_font_name_from_vector)
11499 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
11500 (font_rescale_ratio, split_font_name, build_font_name)
11501 (free_font_names, sort_fonts, x_face_list_fonts)
11502 (face_font_available_p, sorted_font_list, cmp_font_names)
11503 (font_list_1, concat_font_list, font_list, remove_duplicates):
11504 Deleted.
11505 (Fx_list_fonts): Use Ffont_list.
11506 (LFACE_AVGWIDTH): Deleted.
11507 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
11508 by FONTP.
11509 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
11510 (set_lface_from_font_name): Delete it.
11511 (set_lface_from_font): Renamed from
11512 set_lface_from_font_and_fontset. Caller changed. Don't set
11513 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
11514 for face.
11515 (merge_face_vectors): Copy font-spec if necessary.
11516 Clear properties of the font-spec if necessary.
11517 (merge_face_ref): Clear properties of the font-spec if necessary.
11518 (Finternal_set_lisp_face_attribute): Likewise.
11519 (set_font_frame_param): Use font_load_for_lface to load a
11520 font-object, and call Fmodify_frame_parameters with it.
11521 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
11522 font name by Ffont_xlfd_name.
11523 (Finternal_lisp_face_attribute_values): Don't check QCweight,
11524 QCslant, and QCwidth.
11525 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
11526 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
11527 Compare fonts by EQ.
11528 (lookup_non_ascii_face): Deleted.
11529 (face_for_font): The 2nd argument changed.
11530 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
11531 Check atomic font properties by case insensitive.
11532 (realize_non_ascii_face): Set face->overstrike correctly.
11533 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
11534 (dump_realized_face): Get font name from
11535 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
11536
11537 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
11538 conditionals. Don't check enable_font_backend. Delete all codes
11539 used only when USE_FONT_BACKEND is not defined.
11540 (xic_create_xfontset): Original code deleted and renamed from
11541 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
11542 (x_make_gc): Don't set GCFont in GCs.
11543 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
11544 opened by "fixed".
11545 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
11546 find_ccl_program_func, query_font_func, set_frame_fontset_func,
11547 get_font_repertory_func.
11548
11549 * xfont.c: Include <stdlib.h> and "ccl.h".
11550 (struct xfont_info): New structure.
11551 (xfont_query_font): Deleted.
11552 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
11553 moved from xterm.c.
11554 (xfont_driver): Adjusted for the change of struct font_driver.
11555 (compare_font_names): New function.
11556 (xfont_list_pattern): Sort font names case insensitively. Make
11557 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
11558 (xfont_list): Return a list, not vector.
11559 (xfont_match): If the font doesn't have QCname property, generate
11560 a name from the other font properties.
11561 (xfont_open): Return a font-object. Adjusted for the change of
11562 struct font. Get underline_thickness and underline_position from
11563 font property. Don't update dpyinfo->smallest_font_height and
11564 dpyinfo->smallest_char_width.
11565 (xfont_close): Don't free struct font.
11566 (xfont_prepare_face): Adjusted for the change of struct font.
11567 (xfont_done_face): Deleted.
11568 (xfont_has_char): Adjusted for the change of struct font.
11569 (xfont_encode_char, xfont_draw): Likewise.
11570 (xfont_check): New function.
11571
11572 * xftfont.c (xftfont_list): Adjusted for the change of `list'
11573 callback function.
11574 (xftfont_match): Adjusted for the format change of font-entity.
11575 (xftfont_open): Adjusted for the format change of font-entity and
11576 font-object. Adjusted for the change of struct font. Return a
11577 font-object. Don't update dpyinfo->smallest_font_height and
11578 dpyinfo->smallest_char_width.
11579 (xftfont_close): Block input while calling XftFontClose.
11580 (xftfont_prepare_face): Don't block input while calling
11581 xftfont_get_colors. Adjusted for the change of struct font.
11582 (xftfont_shape): Return value of error case fixed.
11583
11584 * xrdb.c (x_load_resources): Don't setup a fontset resource.
11585
11586 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
11587 conditionals.
11588 (FONT_WIDTH): Return (f)->max_width.
11589 (struct x_display_info): Delete member `font'.
11590 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
11591 (x_find_ccl_program, x_get_font_repertory): Delete externs.
11592 (struct x_output): Change type of `font' to `struct font *'.
11593
11594 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
11595 conditionals. Don't check enable_font_backend. Delete all codes
11596 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
11597 (x_per_char_metric, x_encode_char): Deleted.
11598 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
11599 (x_compute_glyph_string_overhangs): Adjusted for the change of
11600 `struct face'.
11601 (x_draw_glyph_string_foreground)
11602 (x_draw_composite_glyph_string_foreground): Likewise.
11603 (x_draw_glyph_string): Likewise. Use font->underline_position and
11604 font->underline_thickness.
11605 (x_new_font): Renamed from x_new_fontset2.
11606 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
11607 (x_check_font): Call `check' method of a font driver.
11608 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
11609 (x_query_font, x_get_font_repertory): Deleted.
11610 (x_find_ccl_program): Renamed and moved to xfont.c.
11611 (x_redisplay_interface): Adjusted for the change of `struct
11612 redisplay_interface'.
11613
11614 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
11615 conditionals. Don't check enable_font_backend. Delete all codes
11616 used only when USE_FONT_BACKEND is not defined. Surround non-used
11617 code by "#ifdef OLD_FONT" and "endif".
11618 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
11619
11620 * w32font.h (struct w32font_info): New member.
11621 (FONT_COMPAT): New macro.
11622 (w32font_open_internal): Prototype adjusted.
11623
11624 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
11625 OLD_FONT" and "endif".
11626
11627 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
11628 conditionals. Don't check enable_font_backend. Delete all codes
11629 used only when USE_FONT_BACKEND is not defined.
11630 (w32font_open): Return a font-object. Make a font-object by
11631 font_make_object. Adjusted for the change of struct w32font_info.
11632 (w32font_close): Don't free struct font. Adjusted for the change
11633 of struct w32font_info.
11634 (w32font_encode_char, w32font_text_extents, w32font_draw):
11635 Adjusted for the change of struct w32font_info.
11636 (w32font_draw): Likewise.
11637 (w32font_list_internal): Return a list, not vector.
11638 (w32font_open_internal): Change the 4th arg to font-object.
11639 Adjusted for the change of struct w32font_info and font-object format.
11640 (add_font_name_to_list): Don't downcase names.
11641 (w32_enumfont_pattern_entity): Make a font-entity by
11642 font_make_entity. Adjusted for the format change of font-entity.
11643 Use FONT_SET_STYLE to set a style-related font property. If a
11644 font is scalable, set avgwidth property to 0. Set font-entity
11645 property by font_put_extra.
11646 (font_matches_spec): Adjusted for the format change of font-entity.
11647 (w32_weight_table, w32_decode_weight): New variables.
11648 (w32_encode_weight): New function.
11649 (fill_in_logfont): Adjusted for the format change of font-spec.
11650 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
11651 weight value.
11652 (w32font_driver): Adjusted for the change of struct font_driver.
11653
11654 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
11655 conditionals. Don't check enable_font_backend. Surround non-used
11656 code by "#ifdef OLD_FONT" and "endif".
11657 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
11658 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
11659
11660 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
11661 conditionals. Don't check enable_font_backend. Delete all codes
11662 used only when USE_FONT_BACKEND is not defined. Surround non-used
11663 code by "#ifdef OLD_FONT" and "endif".
11664
11665 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
11666 (uniscribe_open): Return value changed to font-object.
11667 Adjusted for the format change of font-object.
11668 (uniscribe_otf_capability): Adjusted for the change of struct font.
11669 (add_opentype_font_name_to_list): Don't downcase names.
11670 (uniscribe_font_driver): Adjusted for the change of struct
11671 font_driver.
11672
116732008-05-13 Chong Yidong <cyd@stupidchicken.com>
11674
11675 * dispnew.c (update_frame_1): Check if tty output is still valid
11676 before flushing it.
11677
116782008-05-13 Jan Djärv <jan.h.d@swipnet.se>
11679
11680 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
11681 to Gtk+ menus.
11682
116832008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11684
11685 * dired.c (file_name_completion): Tweak the code so as to always do it
11686 in a single pass. Tighten the scope of some variables.
11687
11688 * dired.c (Qdefault_directory): New var.
11689 (file_name_completion): Use it instead of Fexpand_file_name.
11690 (syms_of_dired): Initialize it.
11691
116922008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
11693
11694 * fileio.c (double_dollars): Remove dead code.
11695
116962008-05-10 Eli Zaretskii <eliz@gnu.org>
11697
11698 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
11699 Mention w32-get-true-file-attributes in doc string.
11700
11701 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
11702
117032008-05-09 Glenn Morris <rgm@gnu.org>
11704
11705 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
11706 2008-04-23.
11707
117082008-05-09 Eli Zaretskii <eliz@gnu.org>
11709
11710 Support for reporting owner and group of each file on MS-Windows:
11711 * dired.c (stat_uname, stat_gname): New functions, with special
11712 implementation for w32.
11713 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
11714
11715 * w32.c: Rename the_passwd_* to dflt_passwd_*.
11716 (dflt_group_name): New static variable.
11717 (dflt_group): Rename from the_group.
11718 (init_user_info): Init dflt_group fields. Get user's group name
11719 from LookupAccountSid.
11720 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
11721 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
11722 New initialization states.
11723 (globals_of_w32): Initialize them to zero. Initialize the default
11724 group name to "None".
11725 (GetFileSecurity_Name): New global var, the name of the function
11726 to call for GetFileSecurity.
11727 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
11728 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
11729 (get_file_security, get_security_descriptor_owner)
11730 (get_security_descriptor_group, is_valid_sid)
11731 (get_file_security_desc, get_rid, get_name_and_id)
11732 (get_file_owner_and_group): New functions.
11733 (stat): Use get_file_security_desc and get_file_owner_and_group to
11734 report the owner and primary group of each file. Don't ignore the
11735 high 32 bits of file's size, now that st_size is 64-bit wide.
11736 Fix test when to get true file attributes.
11737 (init_user_info): Use get_rid instead of equivalent inline code.
11738 (fstat): Don't ignore the high 32 bits of file's size.
11739
117402008-05-09 Chong Yidong <cyd@stupidchicken.com>
11741
11742 * image.c (png_load): Use correct bit-depth for setting background
11743 color.
11744
117452008-05-08 Eli Zaretskii <eliz@gnu.org>
11746
11747 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
11748 epa-hook.elc.
11749
117502008-05-08 Juanma Barranquero <lekktu@gmail.com>
11751
11752 * font.c (Ffont_match_p): Don't use `iff' in docstring.
11753
117542008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
11755
11756 * macfns.c (Fx_create_frame): Make a copy of frame parameters
11757 because the original parameters are in pure storage now.
11758 (mac_window): Remove unused params. Update callers.
11759
117602008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11761
11762 * lread.c (substitute_object_recurse): Use lower-level primitives.
11763 Don't signal errors when traversing sub-char-tables.
11764 Don't loop over all the possible characters when traversing char-tables.
11765
11766 * print.c (print_preprocess): Add sub-char-tables to the print-table,
11767 just like we do in print.c.
11768
117692008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11770
11771 * minibuf.c (Ftry_completion): Remove code left over from when we used
11772 scmp instead of Fcompare_strings.
11773
117742008-05-04 Juanma Barranquero <lekktu@gmail.com>
11775
11776 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
11777
117782008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11779
11780 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
11781 Create bitmap context in native byte order.
11782
11783 * macterm.c (XDrawLine)
11784 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
11785 context in native byte order.
11786
117872008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11788
11789 * config.in: Regenerate.
11790
11791 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
11792 New definitions for Image I/O support.
11793 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
11794 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
11795 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
11796 (mac_data_provider_release_data, image_load_image_io)
11797 [USE_MAC_IMAGE_IO]: New functions.
11798 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
11799 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
11800 (init_image_func_pointer) [MAC_OSX]: Remove function.
11801 (image_load_quartz2d) [MAC_OSX]: Check availability of
11802 CGImageCreateWithPNGDataProvider at compile time.
11803 Use lowercase `false' for boolean constant.
11804 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
11805 Use image_load_image_io.
11806 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
11807 Don't check MyCGImageCreateWithPNGDataProvider.
11808 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
11809 Don't call init_image_func_pointer.
11810
11811 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
11812
11813 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
11814 Make variable non-static.
11815 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
11816 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
11817
11818 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
11819 (RED_FROM_ULONG): Mask off higher bits.
11820 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
11821
11822 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
11823 Include AvailabilityMacros.h.
11824 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
11825 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
11826
118272008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11828
11829 * chartab.c (Fset_char_table_range): If range is t, really set all
11830 chars to that value.
11831
118322008-05-03 Eli Zaretskii <eliz@gnu.org>
11833
11834 * dired.c (Ffile_attributes): Don't allow the device number become
11835 negative.
11836
118372008-05-02 Daiki Ueno <ueno@unixuser.org>
11838
11839 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
11840
118412008-05-02 Juri Linkov <juri@jurta.org>
11842
11843 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
11844 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
11845 DEFAULT argument as a list of default values in docstrings.
11846
118472008-05-01 Chong Yidong <cyd@stupidchicken.com>
11848
11849 * puresize.h (BASE_PURESIZE): Increase to 1210000.
11850
118512008-05-01 Martin Rudalics <rudalics@gmx.at>
11852
11853 * dispnew.c (change_frame_size_1): Preserve small windows when
11854 shrinking frames by calling set_window_height|width with third
11855 arg 2.
11856
11857 * window.h (struct window): Replace field too_small_ok by field
11858 resize_proportionally.
11859
11860 * window.c (make_window): Initialize resize_proportionally.
11861 (enlarge_window): Temporarily set resize_proportionally to make
11862 sure that shrink_windows does scale the window proportionally.
11863 (shrink_windows): When window has resize_proportionally set try
11864 to shrink it proportionally by stealing from other windows.
11865 (struct saved_window, Fset_window_configuration)
11866 (compare_window_configurations): Handle resize_proportionally.
11867 (WINDOW_TOTAL_SIZE): New macro.
11868 (window_min_size, shrink_windows, size_window): Use it.
11869 (check_min_window_sizes): Remove. Invalid values of
11870 window-min-height|width are handled by window_min_size_2 now.
11871 (size_window, Fsplit_window, enlarge_window)
11872 (adjust_window_trailing_edge, grow_mini_window): Don't call
11873 check_min_window_sizes.
11874 (window_min_size_2, window_min_size_1, window_min_size):
11875 New argument safe_p for retrieving "safe" minimum sizes.
11876 (Fdisplay_buffer, Fsplit_window, enlarge_window)
11877 (adjust_window_trailing_edge, grow_mini_window):
11878 Adjust arguments of window_min_size... functions.
11879 (shrink_windows): Argument min_size removed. New argument
11880 safe_p allows shrinking windows to their safe minimum sizes.
11881 Calculate minimum size and decide whether a window shall be
11882 deleted for each window individually.
11883 (size_window): When nodelete_p equals 2, tell shrink_windows to
11884 delete windows only if their new minimum size is no more safe.
11885 (shrink_window_lowest_first): Call window_min_size_1 to make
11886 sure to preserve modeline of bottom-most window when resizing
11887 the minibuffer.
11888 (Fset_window_configuration, Fcurrent_window_configuration)
11889 (compare_window_configurations): Do not handle
11890 window-min-height|width any more.
11891 (syms_of_window): Clarify window-min-height|width doc-strings.
11892
118932008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
11894
11895 * dired.c (file_name_completion): Fix up the encoding/decoding issue
11896 some more. Copy some of the code from Ftry_completions.
11897 Remove special case code that dates back to initial revision when the
11898 slash was only added when necessary and that can't trigger nowadays.
11899
119002008-04-27 Kenichi Handa <handa@m17n.org>
11901
11902 * font.c (font_prop_validate): Signal `error' instead of `font'.
11903
119042008-04-29 Jason Rumney <jasonr@gnu.org>
11905
11906 * w32fns.c (Fw32_battery_status): New defun.
11907 (syms_of_w32fns): Defsubr it.
11908
119092008-04-28 Andreas Schwab <schwab@suse.de>
11910
11911 * dired.c (file_name_completion): Fix another mixing of encoded
11912 and decoded names.
11913
119142008-04-28 Juanma Barranquero <lekktu@gmail.com>
11915
11916 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
11917
119182008-04-27 Juanma Barranquero <lekktu@gmail.com>
11919
11920 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
11921
119222008-04-27 Andreas Schwab <schwab@suse.de>
11923
11924 * dired.c (file_name_completion): Fix inappropriate mixing of
11925 encoded and decoded names.
11926
11927 * xterm.c (XTread_socket): Fix use of uninitialized variable.
11928
11929 * puresize.h (BASE_PURESIZE): Increase to 1200000.
11930
119312008-04-26 Eli Zaretskii <eliz@gnu.org>
11932
11933 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
11934 2008-03-31, it's not needed anymore with `struct stat' definition
11935 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
11936 for the same reasons.
11937
119382008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
11939
11940 * m/sparc.h: Additional redefinitions for GNU/Linux.
11941
119422008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11943
11944 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
11945 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
11946 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
11947 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
11948 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
11949 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
11950 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11951 Likewise.
11952
11953 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
11954 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
11955 (mac_ax_number_of_characters): Add externs.
11956 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
11957 [USE_MAC_TSM]: Likewise.
11958 (mac_handle_text_input_event) [MAC_OSX]:
11959 Handle kEventTextInputOffsetToPos for no active input area case.
11960 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
11961 (mac_handle_document_access_event)
11962 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
11963 (install_application_handler) [MAC_OSX]: Register handlers for
11964 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
11965 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11966 Register mac_handle_document_access_event.
11967
11968 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
11969 Make functions non-static.
11970
119712008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
11972
11973 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
11974 (read_file_name_completion_ignore_case, insert_default_directory)
11975 (Qdefault_directory): Move to minibuffer.el.
11976 (Fread_file_name): Call the new `read-file-name' instead.
11977
119782008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11979
11980 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
11981 Make function non-static.
11982 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
11983 Remove function.
11984 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
11985 Move to mactoolbox.c.
11986 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
11987
11988 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
11989 (mac_rect_make): New macro.
11990
11991 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
11992 instead of float.
11993 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
11994 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
11995 (XSetBackground) [USE_CG_DRAWING]: Likewise.
11996 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
11997 CGRectMake.
11998 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
11999 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
12000 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
12001 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
12002 instead of WindowRef in argument type.
12003 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
12004 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
12005 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
12006 instead of DISPLAY. All uses changed.
12007 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
12008 (x_calc_absolute_position): Simplify so as not to use
12009 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
12010
12011 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
12012 instead of WindowRef in argument type.
12013 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
12014 [TARGET_API_MAC_CARBON]: Remove externs.
12015 (create_apple_event, mac_event_parameters_to_lisp)
12016 [TARGET_API_MAC_CARBON]: Add externs.
12017
12018 * mactoolbox.c (Vmac_ts_script_language_on_focus)
12019 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
12020 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
12021 is clicked.
12022 (x_activate_menubar): Remove extern for saved_menu_event_location.
12023 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
12024 Move from mac.c.
12025
120262008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12027
12028 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
12029 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
12030
120312008-04-23 Jason Rumney <jasonr@gnu.org>
12032
12033 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
12034 attributes only for local files.
12035
12036 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
12037 default to Qlocal.
12038
120392008-04-22 Juri Linkov <juri@jurta.org>
12040
12041 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
12042 read-buffer-to-switch instead of using the letter "B".
12043
120442008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
12045
12046 * fileio.c (Qdefault_directory): New variable.
12047 (Fread_file_name): Use it to pass `dir' to the completion functions.
12048
120492008-04-20 Chong Yidong <cyd@stupidchicken.com>
12050
12051 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
12052
120532008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12054
12055 * keyboard.c (Vpre_help_message): Remove.
12056 (show_help_echo): Remove default C code.
12057
12058 * dired.c (directory_files_internal, file_name_completion):
12059 Only call ENCODE_FILE if the string is indeed decoded.
12060
120612008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
12062
12063 * Makefile.in (TOOLKIT_DEFINES): Remove.
12064 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
12065
120662008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12067
12068 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
12069 (mactoolbox.o): New target.
12070
12071 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
12072 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
12073
12074 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
12075 Use mac_set_frame_window_background instead of XSetWindowBackground.
12076 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
12077 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
12078 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
12079 instead of SetWindowTitleWithCFString.
12080 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
12081 Move function to mactoolbox.c.
12082 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
12083 Use mac_set_window_modified instead of SetWindowModified.
12084 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
12085 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
12086 (Fx_focus_frame): Use mac_front_non_floating_window instead of
12087 FrontNonFloatingWindow. Use mac_activate_window instead of
12088 ActivateWindow. Use mac_active_non_floating_window instead of
12089 ActiveNonFloatingWindow.
12090 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
12091 Use mac_show_hourglass and mac_hide_hourglass.
12092 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
12093 instead of GetGlobalMouse.
12094 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
12095 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
12096 Use mac_bring_window_to_front instead of BringToFront.
12097 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
12098 mactoolbox.c.
12099 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
12100 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
12101 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
12102 mactoolbox.c.
12103
12104 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
12105 (XtPointer): Move typedef from macmenu.c.
12106 (enum button_type): Move enum from macmenu.c.
12107 (widget_value): Move typedef from macmenu.c.
12108 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
12109 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
12110 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
12111 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
12112 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
12113 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
12114 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
12115 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
12116 (Selection): Move typedef from macselect.c.
12117 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
12118 macterm.c.
12119 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
12120 (mac_is_window_collapsed, mac_bring_window_to_front)
12121 (mac_send_window_behind, mac_hide_window, mac_show_window)
12122 (mac_collapse_window, mac_front_non_floating_window)
12123 (mac_active_non_floating_window, mac_activate_window)
12124 (mac_move_window_structure, mac_move_window, mac_size_window)
12125 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
12126
12127 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
12128 (enum mac_menu_kind): Move enum to mactoolbox.c.
12129 (min_menu_id): Move variable to mactoolbox.c.
12130 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
12131 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
12132 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
12133 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
12134 [TARGET_API_MAC_CARBON]: Likewise.
12135 (XtPointer): Move typedef to macgui.h.
12136 (enum button_type): Move enum to macgui.h.
12137 (widget_value): Move typedef to macgui.h.
12138 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
12139 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
12140 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
12141 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
12142 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
12143 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
12144 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
12145 (popup_activated_flag): Make variable non-static.
12146 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
12147 (add_menu_item, fill_menu, dispose_menus):
12148 Move functions to mactoolbox.c.
12149 (restore_show_help_function, menu_target_item_handler)
12150 (install_menu_target_item_handler, mac_handle_dialog_event)
12151 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
12152 [TARGET_API_MAC_CARBON]: Likewise.
12153 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
12154 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
12155 (find_and_call_menu_selection, name_is_separator): Make function
12156 non-static.
12157 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
12158 to mactoolbox.c.
12159 (set_frame_menubar): Don't call install_menu_quit_handler.
12160 (menu_item_selection): New variable.
12161 (mac_menu_show): Use create_and_show_popup_menu.
12162 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
12163 selection but set variable menu_item_selection. All uses changed.
12164 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
12165 Call install_menu_quit_handler. Move to mactoolbox.c.
12166
12167 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
12168 (Selection): Move typedef to macgui.h.
12169 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
12170 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
12171 Make variables non-static.
12172 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
12173 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
12174 Make functions non-static.
12175 (Vmac_service_selection) [MAC_OSX]: Likewise.
12176 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
12177 (mac_valid_selection_target_p, mac_clear_selection)
12178 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
12179 (mac_put_selection_value, mac_selection_has_target_p)
12180 (mac_get_selection_value, mac_get_selection_target_list)
12181 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
12182 Move functions to mactoolbox.c.
12183 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
12184 Likewise.
12185 (copy_scrap_flavor_data, mac_handle_service_event)
12186 (install_service_handler) [MAC_OSX]: Likewise.
12187 (syms_of_macselect) <Vmac_dnd_known_types>:
12188 Use mac_dnd_default_known_types.
12189
12190 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
12191 Move to mactoolbox.c.
12192 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
12193 (Fx_selection_owner_p): Add EXFUN.
12194 (install_window_handler, remove_window_handler, XSetWindowBackground):
12195 Remove externs.
12196 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
12197 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
12198 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
12199 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
12200 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
12201 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
12202 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
12203 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
12204 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
12205 (create_and_show_popup_menu, mac_get_selection_from_symbol)
12206 (mac_valid_selection_target_p, mac_clear_selection)
12207 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
12208 (mac_put_selection_value, mac_selection_has_target_p)
12209 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
12210 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
12211 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
12212 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
12213 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
12214 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
12215 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
12216 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
12217 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
12218
12219 * mactoolbox.c: New file.
12220
122212008-04-18 Jason Rumney <jasonr@gnu.org>
12222
12223 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
12224
122252008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
12226
12227 * character.c (Fmultibyte_char_to_unibyte):
12228 Return latin1 chars unchanged.
12229
12230 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
12231 relocated if it points to `name'.
12232
122332008-04-17 Kenichi Handa <handa@m17n.org>
12234
12235 * data.c (Faset): Allow setting a multibyte character in an
12236 ASCII-only unibyte string.
12237
12238 * lisp.h (STRING_SET_MULTIBYTE): New macro.
12239
122402008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
12241
12242 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
12243 done in config.h.
12244
122452008-04-16 Juanma Barranquero <lekktu@gmail.com>
12246
12247 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
12248 (Fchar_direction): Add usage in the docstring.
12249
122502008-04-15 Chong Yidong <cyd@stupidchicken.com>
12251
12252 * keyboard.c (read_key_sequence): Remove always-true checks.
12253
122542008-04-14 Jason Rumney <jasonr@gnu.org>
12255
12256 * w32font.c (w32font_open_internal): Set max_bounds.descent in
12257 compatibility struct, for better underline positioning.
12258
122592008-04-13 David Hansen <david.hansen@gmx.net>
12260
12261 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
12262 string.
12263
122642008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
12265
12266 * m/hp800.h (XUINT, XSET): Remove.
12267
122682008-04-12 Juanma Barranquero <lekktu@gmail.com>
12269
12270 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
12271 previous change.
12272
122732008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12274
12275 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
12276 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
12277
122782008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12279
12280 * keymap.h (map_keymap_canonical): Declare.
12281 * xmenu.c (single_keymap_panes): Use it.
12282
122832008-04-11 Glenn Morris <rgm@gnu.org>
12284
12285 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
12286 set the target's value to that of the alias.
12287
122882008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12289
12290 * term.c (set_tty_color_mode): Left over typo.
12291
122922008-04-10 Michael Albinus <michael.albinus@gmx.de>
12293
12294 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
12295 only after check for file name handler functions. Signal, when
12296 native functionality is not supported.
12297 (syms_of_fileio): Declare it unconditionally.
12298
122992008-04-10 Jason Rumney <jasonr@gnu.org>
12300
12301 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
12302 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
12303
12304 * w32.c (logon_network_drive): Also logon to remote drives that
12305 are mapped to drive letters.
12306
123072008-04-10 Glenn Morris <rgm@gnu.org>
12308
12309 * xdisp.c (truncate-partial-width-windows): Doc fix.
12310
123112008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12312
12313 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
12314 Move functions to minibuffer.el.
12315 (syms_of_fileio): Don't declare them.
12316
123172008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
12318
12319 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
12320 (syms_of_minibuf): Remove its initialization.
12321
12322 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
12323
123242008-04-09 Juanma Barranquero <lekktu@gmail.com>
12325
12326 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
12327
123282008-04-09 Jason Rumney <jasonr@gnu.org>
12329
12330 * makefile.w32-in (distclean): Delete makefile too.
12331 (maintainer-clean): New target.
12332
12333 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
12334
12335 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
12336 for new font backend and composite cases.
12337
123382008-04-09 Jan Djärv <jan.h.d@swipnet.se>
12339
12340 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
12341 Most of the code moved to run_timers.
12342 (do_pending_atimers): Call run_timers.
12343 (run_timers): New function.
12344
12345 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
12346 run atimers.
12347
12348 * process.c (wait_reading_process_output): The same as above.
12349
123502008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
12351
12352 * minibuf.c (last_exact_completion): Remove variable.
12353 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
12354 (complete_and_exit_1, complete_and_exit_2)
12355 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
12356 (Fdisplay_completion_list, display_completion_list_1)
12357 (Fminibuffer_completion_help, Fself_insert_and_exit)
12358 (Fexit_minibuffer, Fminibuffer_message): Move functions to
12359 minibuffer.el.
12360 (syms_of_minibuf): Remove corresponding initializations.
12361
12362 * keyboard.c (Qdeactivate_mark): New var.
12363 (command_loop_1): Use it to call `deactivate-mark'.
12364 (syms_of_keyboard): Initialize it.
12365
12366 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
12367 to another frame.
12368 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
12369 Don't call set_tty_color_mode.
12370 (store_frame_param): Reset previous_frame rather than call
12371 set_tty_color_mode.
12372 * term.c (set_tty_color_mode): Rewrite.
12373 * dispextern.h (set_tty_color_mode): New type.
12374 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
12375
123762008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
12377
12378 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
12379 for generic chars, which do not exist any more in emacs-unicode.
12380
123812008-04-08 Michael Albinus <michael.albinus@gmx.de>
12382
12383 * coding.c (detect_coding_emacs_mule)
12384 (Ffind_operation_coding_system): Fix typo.
12385
123862008-04-08 Jason Rumney <jasonr@gnu.org>
12387
12388 * w32uniscribe.c (SNAME): Extract only symbol name.
12389
12390 * w32font.h (struct w32_metric_cache): New struct.
12391 (w32font_info): Use it.
12392 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
12393 (CACHE_BLOCKSIZE): New constants.
12394
12395 * w32font.c (Qja, Qko, Qzh): New symbols.
12396 (syms_of_w32font): Initialise them.
12397 (font_matches_spec): Use them to filter by language.
12398 (recompute_cached_metrics): Remove function.
12399 (compute_metrics, clear_cached_metrics): New functions.
12400 (w32font_encode_char): Use them to manage metric cache.
12401 (w32font_text_extents): Cache metrics for all glyphs on demand.
12402 Delay converting glyph indices to WORD until needed.
12403 (w32font_open_internal): Initialize metric cache to empty.
12404 (registry_to_w32_charset): Charset should always be a symbol.
12405 (fill_in_logfont, list_all_matching_fonts): Family should
12406 always be a symbol.
12407
124082008-04-06 Jason Rumney <jasonr@gnu.org>
12409
12410 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
12411 Give up if glyph indices not supported. Use uniscribe obtained
12412 ABC widths for individual metrics. Map glyph clusters back to
12413 characters using fClusterStart flag. Return number of glyphs
12414 produced, not chars processed.
12415 (uniscribe_shape): Map char at FROM to current glyph.
12416
124172008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12418
12419 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
12420 Use SetMenuItemHierarchicalMenu.
12421
124222008-04-05 Jason Rumney <jasonr@gnu.org>
12423
12424 * image.c (pbm_load): Allow color values up to 65535.
12425 Throw an error if max_color_idx is outside the supported range.
12426 Report an error when image size is invalid.
12427 Read two bytes at a time when raw images have max_color_idx above 255.
12428
124292008-04-05 Eli Zaretskii <eliz@gnu.org>
12430
12431 * w32.c (readdir): If FindFirstFile/FindNextFile return in
12432 cFileName a file name that includes `?' characters, use the 8+3
12433 alias in cAlternateFileName instead.
12434
124352008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
12436
12437 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
12438 append "CCL: Quitted" when the CCL program is quitted.
12439 (setup_ccl_program): Initialize ccl->quit_silently to zero.
12440
12441 * ccl.h (struct ccl_program): New member quit_silently.
12442
124432008-04-05 Chong Yidong <cyd@stupidchicken.com>
12444
12445 * search.c (compile_pattern_1): Treat non-nil and non-string of
12446 search-spaces-regexp as nil.
12447
12448 * minibuf.c (Fassoc_string): Tweak docstring.
12449
124502008-04-05 Eli Zaretskii <eliz@gnu.org>
12451
12452 * dired.c (Ffile_attributes): Support inode numbers wider than 32
12453 bits. Remove ugly WINDOWSNT-specific kludge introduced on
12454 2008-03-14 to force inode be positive.
12455
12456 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
12457 _S_* ones, since we now use our own sys/stat.h.
12458 (stat, fstat): Don't mangle the inode number.
12459 (init_user_info): Don't restrict UID and GID to 0-60000 range.
12460
124612008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12462
12463 * frame.h (struct frame): Give one more bit to `visible' since we use
12464 values larger than 1 to indicate obscured frames on ttys.
12465
12466 * keymap.c (Qkeymap_canonicalize): New var.
12467 (Fmap_keymap_internal): New fun.
12468 (describe_map): Use keymap-canonicalize.
12469
12470 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
12471 (Fundo_boundary): Set them.
12472 (syms_of_undo): Initialize them.
12473 (record_point): Use them instead of last_point_position*.
12474 (last_undo_buffer): Change type.
12475
124762008-04-04 Jason Rumney <jasonr@gnu.org>
12477
12478 * w32font.c (w32font_text_extents): Use font's ascent and descent.
12479 (recompute_cached_metrics): Don't set ascent and descent per char.
12480
12481 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
12482 (uniscribe_check_otf): Add GC protection before consing.
12483 Rearrange loop for counting features.
12484
124852008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
12486
12487 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
12488 buffer with byte-size of source buffer.
12489
124902008-04-03 Chong Yidong <cyd@stupidchicken.com>
12491
12492 * callint.c (Fcall_interactively): Handle temporary region even
12493 when shift-select-mode is off.
12494
124952008-04-03 Jason Rumney <jasonr@gnu.org>
12496
12497 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
12498
124992008-04-03 Kenichi Handa <handa@m17n.org>
12500
12501 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
12502 (CATEGORY_MASK_UTF_16): Likewise.
12503 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
12504 binary file.
12505 (detect_coding): Add null-byte detection for a binary file.
12506 (detect_coding_system): Likewise.
12507
125082008-04-03 Jason Rumney <jasonr@gnu.org>
12509
12510 * w32uniscribe.c: New file.
12511
12512 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
12513
12514 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
12515
12516 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
12517 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
12518 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
12519 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
12520 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
12521 (Qphonetic): New symbols.
12522 (syms_of_w32font): Initialize them.
12523 (font_supported_scripts): Use them.
12524 (w32font_list_family): List all charsets.
12525 (w32font_text_extents, recompute_cached_metrics): Fix metric
12526 calculations.
12527 (w32_enumfont_pattern_entity): Make full_type a DWORD.
12528 Give opentype fonts their own format.
12529 (font_matches_spec): New arguments backend and logfont.
12530 Handle :otf spec for uniscribe backend.
12531 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
12532 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
12533
12534 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
12535 font backend.
12536 (globals_of_w32fns): Initialize uniscribe font backend.
12537
12538 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
12539 dependencies.
12540 (w32uniscribe.$(O)): New file to build.
12541 (FONT_OBJ): Include w32uniscribe.$(O).
12542 (LIBS): Add uniscribe libraries.
12543
12544 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
12545
125462008-04-02 Chong Yidong <cyd@stupidchicken.com>
12547
12548 * callint.c (Vshift_select_mode): New var.
12549 (Finteractive): Document new ^ spec.
12550 (Fcall_interactively): Call handle-shift-selection if the ^ spec
12551 is present.
12552
12553 * keyboard.c (Vthis_command_keys_shift_translated): New var.
12554 (command_loop_1): Avoid running the direct display versions of
12555 forward-char and backward-char if shift-selection may occur.
12556 (read_key_sequence): Set Vthis_command_keys_shift_translated if
12557 shift-translation takes place.
12558
12559 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
12560 avoid clobbering by define-minor-mode.
12561
12562 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
12563 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
12564
12565 * syntax.c (Fforward_word): Add ^ interactive spec.
12566
12567 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
12568 (Fscroll_right): Add ^ interactive spec.
12569
125702008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
12571
12572 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
12573
12574 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
12575
12576 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
12577
125782008-03-31 Juri Linkov <juri@jurta.org>
12579
12580 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
12581
125822008-03-30 Jan Djärv <jan.h.d@swipnet.se>
12583
12584 * gtkutil.c (xg_set_geometry): Fix indentation.
12585 (xg_resize_outer_widget): Remove.
12586 (x_wm_size_hint_off): Fix indentation.
12587 (xg_frame_set_char_size): Call flush_and_sync after
12588 gtk_window_resize.
12589 (x_wm_set_size_hint): Pass NULL as geometry window to
12590 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
12591 Add menu bar and tool bar height to base height.
12592 (xg_update_frame_menubar, free_frame_menubar)
12593 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
12594 (update_frame_tool_bar, free_frame_tool_bar):
12595 Change xg_resize_outer_widget to xg_frame_set_char_size.
12596
125972008-03-30 Michael Albinus <michael.albinus@gmx.de>
12598
12599 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
12600 (Fdbus_call_method): New parameter TIMEOUT.
12601 (dbus-send-signal): Optimize UNGCPRO call.
12602
126032008-03-29 Juri Linkov <juri@jurta.org>
12604
12605 * window.c (Fdisplay_buffer): Move call to
12606 Vsplit_window_preferred_function out of conditions that check
12607 if window is eligible for vertical splitting.
12608 When Vsplit_window_preferred_function is non-nil, call it and use
12609 its non-nil return value as window. Otherwise, continue doing
12610 vertical splitting using Fsplit_window with arg horflag=nil.
12611 (syms_of_window) <Vsplit_window_preferred_function>: Change the
12612 default value from `split-window' to nil.
12613
126142008-03-29 Juri Linkov <juri@jurta.org>
12615
12616 * callint.c (Fcall_interactively): Revert 2008-03-16 change
12617 for interactive code letters 'b' and 'B'.
12618
126192008-03-29 Eli Zaretskii <eliz@gnu.org>
12620
12621 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
12622 multibyte string.
12623
126242008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
12625
12626 * keyboard.c (pending_funcalls): New var.
12627 (timer_check): Run it.
12628 (syms_of_keyboard): Initialize it.
12629 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
12630 (Vdelete_terminal_functions): New vars.
12631 (syms_of_terminal): Initialize them.
12632 (Fdelete_terminal): Run delete-terminal-functions.
12633 * xdisp.c (safe_eval): Rewrite.
12634 (safe_call2): New fun.
12635 * frame.c (Qdelete_frame_functions): New var.
12636 (syms_of_frame): Initialize it.
12637 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
12638 * lisp.h (safe_call2, pending_funcalls): Declare.
12639
126402008-03-28 Andreas Schwab <schwab@suse.de>
12641
12642 * indent.c (Fmove_to_column): Move declaration before statements.
12643
126442008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
12645
12646 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
12647 (struct frame): Use bit fields for boolean vars.
12648
12649 * process.c (server_accept_connection): Simplify naming.
12650 (emacs_get_tty_pgrp): Use SDATA.
12651
12652 * coding.c (decode_coding_object): Fix last change.
12653
126542008-03-27 Jason Rumney <jasonr@gnu.org>
12655
12656 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
12657
126582008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
12659
12660 * charset.c (Fdefine_charset_internal): Change the way of
12661 registering charsets in Vcharset_order_list.
12662 (syms_of_charset): Make the charset `eight-bit' supplementary.
12663
126642008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
12665
12666 * regex.c (EXTEND_BUFFER): Change order of pointer addition
12667 operations, to avoid having the difference between pointers
12668 overflow.
12669
126702008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
12671
12672 * indent.c (check_display_width): New fun.
12673 (scan_for_column): Use it.
12674
12675 * data.c (syms_of_data): Mark most-positive-fixnum and
12676 most-negative-fixnum as constants.
12677
12678 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
12679
12680 * indent.c (scan_for_column): Extract from current_column_1.
12681 Merge with the same code from Fmove_to_column.
12682 (current_column_1, Fmove_to_column): Use it.
12683
126842008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
12685
12686 * keymap.c (map_keymap_internal): New fun.
12687 (map_keymap): Use it.
12688 (Fmap_keymap_internal): New fun.
12689 (Fmap_keymap): Remove left-out test from before make_save_value.
12690
12691 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
12692
12693 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
12694 Use XCAR/XCDR.
12695
12696 * process.h (struct Lisp_Process): Remove filter_multibyte.
12697 * process.c (QCfilter_multibyte): Remove.
12698 (setup_process_coding_systems): Don't use filter_multibyte.
12699 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
12700 (read_process_output): Don't adjust multibyteness to filter_multibyte.
12701 (Fset_process_filter_multibyte): Change the coding-system to
12702 approximate the previous behavior.
12703 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
12704 coding-system.
12705
12706 * coding.c (decode_coding_object): When not decoding into a buffer,
12707 obey the coding system's preference of (uni|multi)byte.
12708
127092008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
12710
12711 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
12712 every char is changed and has a different byte-length.
12713 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
12714 Fix int -> EMACS_INT.
12715
127162008-03-23 David Hansen <david.hansen@gmx.net>
12717
12718 * dbusbind.c (xd_read_message): Remove extra copying of message
12719 strings. Check for NULL `interface' or `member'.
12720
127212008-03-22 Eli Zaretskii <eliz@gnu.org>
12722
12723 * w32.c (readdir): If FindFirstFile/FindNextFile return in
12724 cFileName a file name that includes `?' characters, use the 8+3
12725 alias in cAlternateFileName instead.
12726
127272008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12728
12729 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
12730
127312008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12732
12733 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
12734 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
12735 work on current_buffer only instead (that was already the case
12736 for some of the code anyway).
12737 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
12738 (temp_set_point, temp_set_point_both): Use EMACS_INT.
12739 (SET_PT, SET_PT_BOTH): Adjust.
12740 * intervals.h (set_point, temp_set_point, set_point_both)
12741 (temp_set_point_both): Remove redundant declarations.
12742
127432008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12744
12745 * fileio.c (Finsert_file_contents):
12746 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
12747 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
12748 when buffer != current_buffer anyway.
12749
127502008-03-20 Andreas Schwab <schwab@suse.de>
12751
12752 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
12753 as default.
12754
127552008-03-19 Jason Rumney <jasonr@gnu.org>
12756
12757 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
12758 (syms_of_w32fns): Initialize them.
12759 (HOURGLASS_ID): New constant.
12760 (x_window_to_frame): Don't check hourglass_window.
12761 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
12762 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
12763 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
12764 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
12765 Only change the cursor if hourglass is not active.
12766 (Fx_create_frame): Initialize frame's current_cursor.
12767 (hourglass_atimer): Remove.
12768 (hourglass_started): New function.
12769 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
12770 (show_hourglass): Adapt to w32, changing argument to frame.
12771
12772 * w32term.h (struct w32_output): Remove hourglass_window.
12773 Add current_cursor.
12774
12775 * eval.c (call_debugger, Fsignal):
12776 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
12777 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
12778 (Fexecute_extended_command, cancel_hourglass_unwind):
12779 * minibuf.c (read_minibuf):
12780 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
12781
127822008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
12783
12784 * window.c (run_funs): New fun.
12785 (run_window_configuration_change_hook): Use it to run the buffer-local
12786 and the global part of the hook.
12787
12788 * xdisp.c (format_mode_line_unwind_data): Add window argument.
12789 (unwind_format_mode_line): Restore selected window.
12790 (x_consider_frame_title, Fformat_mode_line): Set selected window.
12791
127922008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
12793
12794 * editfns.c (Fchar_equal): Check they are valid characters.
12795
12796 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
12797
127982008-03-17 Andreas Schwab <schwab@suse.de>
12799
12800 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
12801 against a charset.
12802
12803 * lisp.h (Fbuffer_list): Declare.
12804
128052008-03-17 Jan Djärv <jan.h.d@swipnet.se>
d6c952f8 12806
aac0c6e3
MR
12807 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
12808 handlebox_widget is != 0.
12809
128102008-03-16 Juri Linkov <juri@jurta.org>
12811
12812 * callint.c (Fcall_interactively): For interactive code letters
12813 'b' and 'B' put the buffer list into the list of default "future"
12814 values of the minibuffer.
12815
128162008-03-16 Andreas Schwab <schwab@suse.de>
12817
12818 * keyboard.c (read_key_sequence): Fix downcasing of letters with
12819 modifiers.
12820
12821 * regex.c (re_match_2_internal): Correct matching of a charset
12822 against latin-1 characters.
12823
128242008-03-16 Kenichi Handa <handa@m17n.org>
12825
12826 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
12827 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
12828 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
12829 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
12830 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
12831 CHAR_STRING_ADVANCE.
12832 (produce_chars): Fix for the case that the source and the
12833 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
12834 instead of CHAR_STRING_ADVANCE.
12835 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
12836 STRING_CHAR_ADVANCE.
12837
128382008-03-15 Andreas Schwab <schwab@suse.de>
12839
12840 * regex.c (re_match_2_internal): Correct matching of eight bit
12841 characters in unibyte strings.
12842
128432008-03-15 Martin Rudalics <rudalics@gmx.at>
12844
12845 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
12846 at end of range when it coincides with the end of the buffer.
12847
128482008-03-14 Eli Zaretskii <eliz@gnu.org>
12849
12850 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
12851
12852 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
12853
128542008-03-14 Jason Rumney <jasonr@gnu.org>
12855
12856 * editfns.c (initial_tz): New variable.
12857 (syms_of_editfns): Initialize it.
12858 (Fset_time_zone_rule): Set it when first called.
12859 Use it when TZSTRING is nil.
12860
12861 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
12862 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
12863 (monitor_from_point_fn, get_monitor_info_fn): New globals.
12864 (globals_of_w32fns): Initialize them.
12865 (compute_tip_xy): Use them to position tooltips.
12866
128672008-03-14 Glenn Morris <rgm@gnu.org>
12868
12869 * emacs.c (main): Revert previous change.
12870 (standard_args): Revert -internal-script back to -scriptload,
12871 and remove the long-option form.
12872
128732008-03-13 Glenn Morris <rgm@gnu.org>
12874
12875 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
12876 Remove option -enable-font-backend.
12877
128782008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12879
12880 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
12881
128822008-03-11 Jan Djärv <jan.h.d@swipnet.se>
12883
12884 * xterm.c (x_connection_closed): For GTK: If this is the last
12885 terminal just exit without closing the display.
12886
128872008-03-11 Jason Rumney <jasonr@gnu.org>
12888
12889 * w32font.c (w32font_full_name): Use floor to round.
12890
f0131492 128912008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
aac0c6e3
MR
12892
12893 * sound.c (alsa_configure): Declare vol at beginning of block.
12894
12895 * fontset.c (Ffontset_info): Remove extra semicolon.
12896
128972008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
12898
12899 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
12900 size of resulting string.
12901
129022008-03-10 Jason Rumney <jasonr@gnu.org>
12903
12904 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
12905
129062008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12907
12908 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
12909 Don't pretend as if characters with display property haven't been
12910 consumed for string-replacing-string case.
12911
129122008-03-08 Kim F. Storm <storm@cua.dk>
12913
12914 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
12915 (get_next_display_element, next_element_from_string)
12916 (next_element_from_ellipsis, next_element_from_buffer): Use it.
12917
129182008-03-08 Andreas Schwab <schwab@suse.de>
12919
12920 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
12921
129222008-03-06 Jason Rumney <jasonr@gnu.org>
12923
12924 * w32font.c (w32_registry): Take font_type argument. Use ANSI
12925 when charset not specified. Only translate ANSI to unicode when
12926 font_type is truetype.
12927 (w32font_coverage_ok): New function.
12928 (add_font_entity_to_list): Use it to filter unsuitable fonts.
12929
129302008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
12931
12932 * lread.c (Fread_char): Resolve modifiers.
12933 (Fread_char_exclusive): Likewise.
12934
12935 * character.c (char_resolve_modifier_mask): New function.
12936 (char_string): Use char_resolve_modifier_mask.
12937 (Fchar_resolve_modifiers): New function.
12938 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
12939 function.
12940
129412008-03-04 Jason Rumney <jasonr@gnu.org>
12942
12943 * makefile.w32-in: Always include w32font.c in the build.
12944 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
12945
129462008-03-04 Andreas Schwab <schwab@suse.de>
12947
12948 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
12949 (versionclean): Likewise.
12950
129512008-03-04 Juanma Barranquero <lekktu@gmail.com>
12952
12953 * .cvsignore: Add oo.
12954
129552008-03-03 Andreas Schwab <schwab@suse.de>
12956
12957 * coding.c (decode_coding_object): Inhibit gap shrinking while
12958 decoding in place.
12959
129602008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
12961
12962 * w32term.c: Remove unused include "gnu.h".
12963 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
12964
12965 * gnu.h: Rename to ...
12966 * emacs-icon.h: ... this.
12967 * xterm.c: Use emacs-icon.h instead of gnu.h.
12968 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
12969
129702008-03-03 Juanma Barranquero <lekktu@gmail.com>
12971
12972 * w32font.c: Include math.h.
12973
129742008-03-03 Jason Rumney <jasonr@gnu.org>
12975
12976 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
12977 Compute options separately.
12978 (w32font_open_internal): Set glyph_idx before caching metrics.
12979
12980 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
12981 Define if system headers don't.
12982 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
12983 (w32font_encode_char): Don't declare here.
12984
12985 * w32font.c (Quniscribe, QCformat): New symbols.
12986 (syms_of_w32font): Define them.
12987 (w32font_has_char): Indicate uncertainty.
12988 (w32font_encode_char): Encode as glyph point. Make static.
12989 (recompute_cached_metrics): New function.
12990 (w32font_open_internal): Use it. Set font to use glyph points
12991 initially. Set format based on type of font.
12992 (w32font_text_extents, w32font_draw): Optionally use glyph points.
12993 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
12994 on it. Set format based on information available here.
12995 (add_font_entity_to_list): Identify backend based on opentype_only.
12996
129972008-03-02 Andreas Schwab <schwab@suse.de>
12998
12999 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
13000
13001 * coding.c (decode_coding_big5, produce_chars):
13002 Fix typos in last change.
13003
130042008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
13005
13006 * gnu.h: New icon.
13007
130082008-03-02 Kenichi Handa <handa@m17n.org>
13009
13010 * coding.c (decode_coding_utf_8): When eol-type of CODING is
13011 `dos', don't decode '\r' if that is the last in the source.
13012 (decode_coding_utf_16, decode_coding_emacs_mule)
13013 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
13014 (decode_coding_raw_text, decode_coding_charset): Likewise.
13015 (produce_chars): Don't decode EOL here. Use EMACS_INT.
13016
130172008-03-01 Jason Rumney <jasonr@gnu.org>
13018
13019 * w32font.c (w32font_full_name): Report point size for scalable fonts.
13020
130212008-03-01 Kim F. Storm <storm@cua.dk>
13022
13023 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
13024
130252008-03-01 Jason Rumney <jasonr@gnu.org>
13026
13027 * w32font.c (w32font_full_name): New function.
13028 (w32font_open_internal): Use it.
13029
130302008-03-01 Kim F. Storm <storm@cua.dk>
13031
13032 * dispnew.c (line_draw_cost): Fix invalid glyph check.
13033
130342008-03-01 Jason Rumney <jasonr@gnu.org>
13035
13036 * font.c (font_unparse_fcname): Increase len when style is a symbol.
13037
130382008-03-01 Jan Djärv <jan.h.d@swipnet.se>
13039
13040 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
13041 xg_frame_resized when the event is for the edit widget.
13042
13043 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
13044
13045 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
13046 set_char_size.
13047 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
13048 operations on widgets here. Just set frame size if needed.
13049 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
13050 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
13051 (x_wm_set_size_hint): Set size hints on the edit widget only, not
13052 the whole frame.
13053 (xg_create_tool_bar): Move attachment of the tool bar to
13054 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
13055 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
13056
130572008-03-01 Jason Rumney <jasonr@gnu.org>
13058
13059 * w32fns.c (w32_msg_pump): Disable debug code.
13060
130612008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13062
13063 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
13064
130652008-02-29 Chong Yidong <cyd@stupidchicken.com>
13066
13067 * xdisp.c (next_overlay_string): Don't set
13068 overlay_strings_at_end_processed_p if we're currently reading from
13069 a display string.
13070
130712008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
13072
13073 * xdisp.c (get_overlay_strings_1): Fix typo.
13074
130752008-02-29 Chong Yidong <cyd@stupidchicken.com>
13076
13077 * xdisp.c (get_overlay_strings_1): Add missing argument type.
13078
130792008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
13080
13081 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
13082
13083 * xdisp.c (display_mode_element): Cancel the previous change.
13084 (decode_mode_spec): Likewise.
13085 (handle_auto_composed_prop): Don't make composition if it->string
13086 is a string.
13087
130882008-02-27 Kim F. Storm <storm@cua.dk>
13089
13090 * lisp.h (GLYPH): Change type from int to struct with separate char
13091 and face_id members.
13092 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
13093 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
13094 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
13095 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
13096 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
13097 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
13098 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
13099 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
13100 handle new Lisp glyph code encoding, either an integer or a cons.
13101
13102 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
13103 (GLYPH_ALIAS): Delete.
13104 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
13105 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
13106 (GLYPH_FROM_CHAR): Replace macro by ...
13107 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
13108
13109 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
13110 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
13111 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
13112 (GLYPH_INVALID_P): New macro.
13113 (spec_glyph_lookup_face): Update prototype.
13114
13115 * dispnew.c (line_draw_cost): Adapt to new glyph type.
13116 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
13117 new glyph code encoding.
13118 (spec_glyph_lookup_face): No return value; update passed glyph instead.
13119 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
13120
13121 * xdisp.c (get_next_display_element, next_element_from_display_vector):
13122 Adapt to new glyph type and new glyph code encoding.
13123
13124 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
13125
13126 * indent.c (current_column, current_column_1, Fmove_to_column)
13127 (compute_motion): Adapt to new glyph code encoding.
13128
13129 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
13130
131312008-02-27 Chong Yidong <cyd@stupidchicken.com>
13132
13133 * process.c (wait_reading_process_output): Check for window
13134 changes caused by timers.
13135 Suggested by Johan Bockgård.
13136
131372008-02-27 Glenn Morris <rgm@gnu.org>
13138
13139 * emacs.c (USAGE1): Add `--disable-font-backend'.
13140
131412008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
13142
13143 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
13144 is made to the buffer.
13145
131462008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
13147
13148 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
13149 (face_at_string_position):
13150 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
13151 (face_at_string_position):
13152 * xdisp.c (display_string, next_overlay_change):
13153 * buffer.h (overlays_at):
13154 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
13155 Update callers.
13156
131572008-02-26 Chong Yidong <cyd@stupidchicken.com>
13158
13159 * editfns.c (Fformat): Doc fix.
13160
131612008-02-26 Juanma Barranquero <lekktu@gmail.com>
13162
13163 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
13164 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
13165 (Ffont_otf_alternates, Fquery_font): Doc fixes.
13166
131672008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
13168
13169 * buffer.c (Fbuffer_swap_text): New function.
13170 (syms_of_buffer): Defsubr it.
13171
131722008-02-25 Chong Yidong <cyd@stupidchicken.com>
13173
13174 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
13175
131762008-02-25 Jason Rumney <jasonr@gnu.org>
13177
13178 * w32font.c (w32font_draw): Draw one character at a time when padding.
13179
131802008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
13181
13182 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
13183 Handle a nil arg. Use run_window_configuration_change_hook.
13184 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
13185 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
13186 Use run_window_configuration_change_hook.
13187
131882008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
13189
13190 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
13191 1-pixel width.
13192
131932008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
13194
13195 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
13196 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
13197 if the glyph in the font is zero pixel with.
13198
13199 * dispextern.h (struct glyph_string): New member padding_p.
13200
13201 * w32font.c (w32font_draw): Pay attention to s->padding_p.
13202
13203 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
13204
13205 * xfont.c (xfont_draw): Pay attention to s->padding_p.
13206
13207 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
13208
13209 * font.c: If the font driver doesn't have `shape' function, return Qnil.
13210
132112008-02-25 Jason Rumney <jasonr@gnu.org>
13212
13213 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
13214
132152008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
13216
13217 Allow fine-grained image-cache flushing.
13218 * dispextern.h (struct image): Add `dependencies' field.
13219 (clear_image_caches): Change arg to Lisp_Object.
13220 * image.c (make_image): Initialize `dependencies' field.
13221 (clear_image_cache): Change arg to allow fine-grained flushing.
13222 Perform the flush even if image-cache-eviction-delay is nil.
13223 (clear_image_caches): Change arg to Lisp_Object.
13224 (Fclear_image_cache): Expand meaning of the argument.
13225 (mark_image): Mark `dependencies' field.
13226 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
13227 (lface_hash): Use XHASH rather than XFASTINT.
13228 (face_at_buffer_position): Fix int -> EMACS_INT position.
13229 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
13230 (select_frame_for_redisplay): Remove code duplication.
13231 (redisplay_internal): Adapt arg to call to clear_image_caches.
13232
132332008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
13234
13235 * s/vms4-0.h:
13236 * s/vms4-2.h:
13237 * s/vms4-4.h:
13238 * s/vms5-5.h: Remove, unused.
13239
13240 * s/irix5-2.h:
13241 * s/irix6-0.h:
13242 * s/riscos5.h:
13243 * s/mach-bsd4-3.h:
13244 * m/mips4.h: Remove files for obsolete systems.
13245
13246 * Makefile.in:
13247 * filelock.c:
13248 * unexmips.c:
13249 * m/hp9000s300.h:
13250 * m/iris4d.h:
13251 * s/aix3-1.h:
13252 * s/hpux.h:
13253 * s/msdos.h:
13254 * s/usg5-0.h:
13255 * s/usg5-2-2.h:
13256 * s/usg5-2.h:
13257 * s/usg5-3.h: Remove references to obsolete variables.
13258
13259 * s/irix5-0.h: Remove, move all the contents ...
13260 * s/irix6-5.h: ... here. Simplify.
13261 * config.in: Regenerate.
13262
132632008-02-24 Jason Rumney <jasonr@gnu.org>
13264
13265 * w32term.c (x_draw_glyph_string_background): Clear the background
13266 manually when cleartype is in use.
13267 (x_draw_glyph_string_foreground): Draw text transparently when
13268 cleartype is in use.
13269
13270 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
13271 a font into it unless we have to.
13272
132732008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
13274
13275 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
13276 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
d6c952f8 13277
aac0c6e3
MR
132782008-02-18 Jason Rumney <jasonr@gnu.org>
13279
13280 * w32fns.c (Fw32_shell_execute): Encode parameters.
13281
132822008-02-09 Eli Zaretskii <eliz@gnu.org>
13283
13284 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
13285
132862008-02-05 Juanma Barranquero <lekktu@gmail.com>
13287
13288 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
13289
132902008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
13291
13292 * xterm.c (x_set_offset): Don't change the gravity if
13293 CHANGE_GRAVITY is -1.
13294
132952008-02-23 Chong Yidong <cyd@stupidchicken.com>
13296
13297 * fileio.c (auto_save_error_occurred): New var.
13298 (auto_save_error): Set it.
13299 (Fdo_auto_save): Don't overwrite the error message if an auto-save
13300 error occurred.
13301
133022008-02-23 Eli Zaretskii <eliz@gnu.org>
13303
13304 * w32.c (globals_of_w32): Add initializations for
13305 g_b_init_get_sid_sub_authority and
13306 g_b_init_get_sid_sub_authority_count.
13307
133082008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
13309
13310 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
13311 (font_parse_xlfd): Use them for sanity check.
13312 (Finternal_set_font_style_table): Make sure the table is bijective.
13313
13314 Consolidate the image_cache to the terminal struct.
13315 * termhooks.h (P_): Remove redundant def.
13316 (struct terminal): New field `image_cache'.
13317 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
13318 of FRAME_X_IMAGE_CACHE.
13319 * xterm.h (struct x_display_info): Remove image_cache field.
13320 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
13321 * w32term.h (struct w32_display_info): Remove image_cache field.
13322 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
13323 * macterm.h (struct mac_display_info): Remove image_cache field.
13324 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
13325 * xterm.c (x_term_init):
13326 * w32term.c (w32_term_init):
13327 * macterm.c (mac_term_init): Set the image_cache in the terminal.
13328 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
13329 Remove declarations.
13330 (clear_image_caches, mark_image_cache): New declarations.
13331 * xfaces.c (clear_face_cache):
13332 * xdisp.c (redisplay_internal): Use clear_image_caches.
13333 * image.c (clear_image_cache): Don't check that a frame is on
13334 a window-system before checking if it shares the same cache.
13335 (clear_image_caches): New function.
13336 (Fclear_image_cache): Use it.
13337 (mark_image): Move from allo.c.
13338 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
13339 * alloc.c (mark_image, mark_image_cache): Move to image.c.
13340 (mark_object): Don't call mark_image_cache for frames.
13341 (mark_terminals): Call mark_image_cache.
13342
13343 * lisp.h (Fdelete_terminal): Declare.
13344
13345 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
13346 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
13347 wrong_type_argument.
13348
133492008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
13350
13351 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
13352 malayalam.el, and tamil.el. Add sinhala.el.
13353
133542008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
13355
13356 * xterm.c (x_connection_closed): Consolidate identical tests.
13357 (x_delete_terminal): Don't crash if called via x_connection_closed.
13358
133592008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
13360
13361 * xdisp.c (decode_mode_spec): New arg string.
13362 (display_mode_element): Adjust for the above change.
13363
133642008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
13365
13366 * callint.c (Fcall_interactively): Use AREF.
13367
133682008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
13369
13370 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
13371
133722008-02-18 Jan Djärv <jan.h.d@swipnet.se>
13373
13374 * xfns.c (Fx_show_tip): Set string to " " if empty.
13375
133762008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
13377
13378 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
13379 with Qt.
13380
133812008-02-17 Kenichi Handa <handa@m17n.org>
13382
13383 * ftfont.c (ftfont_shape): Return Lispy number.
13384
13385 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
13386 for GCs.
13387 (Finternal_set_font_selection_order): Call font_update_sort_order
13388 only when enable_font_backend is set.
13389 (realize_x_face): Set face->font_info to that of default face only
13390 when enable_font_backend is set.
13391
13392 * xdisp.c (handle_composition_prop): Set it->c to the fist
13393 character of the composed region.
13394 (fill_composite_glyph_string): Set base_face->font_info to
13395 s->font_info. Get a face for ascii from base_face->ascii_face.
13396 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
13397 with a face already decided.
13398 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
13399 non-negative.
13400 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
13401 call font_prepare_composition unconditionally.
13402
13403 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
13404
13405 * xterm.h (struct x_display_info): New member font.
13406
13407 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
13408 (x_set_mouse_face_gc, x_new_font): Likewise.
13409 (x_term_init): Setup display_info->font.
13410 (x_delete_terminal): Free display_info->font.
13411
13412 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
13413
13414 * ftxfont.c (ftxfont_default_fid): Delete it.
13415 (ftxfont_open): Set xfont->fid to 0.
13416 (ftxfont_end_for_frame): Clear data specific to the frame and the
13417 font-driver.
13418
13419 * xftfont.c (xftfont_default_fid): Delete it.
13420 (xftfont_open): Set xfont->fid to 0.
13421
13422 * fontset.c (FONTSET_OBJLIST): New macro.
13423 (fontset_find_font): Update font-object list of the fontset.
13424 (free_realized_fontset): New function.
13425 (free_face_fontset): Call free_realized_fontset.
13426 (Ffont_info): Call font_close_object only when enable_font_backend
13427 is set.
13428
13429 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
13430 [HAVE_NTGUI]: Include w32term.h.
13431 [MAC_OS]: Include macterm.ch.
13432 (font_otf_ValueRecord): Use make_number.
13433 (font_finish_cache): Fix handling of reference count.
13434 (font_clear_cache): Update num_fonts.
13435 (font_open_entity): Update smallest_char_width and
13436 smallest_font_height of the frame.
13437 (font_close_object): Update num_fonts.
13438 (Fclear_font_cache): Fix finding the target cache data.
13439
134402008-02-16 Glenn Morris <rgm@gnu.org>
13441
13442 * fontset.c (Finternal_char_font): Fix compilation warning.
13443
134442008-02-16 Eli Zaretskii <eliz@gnu.org>
13445
13446 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
13447 instead of char arrays. Enlarge the size of array passed to
13448 get_token_information.
13449
13450 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
13451 warnings.
13452
134532008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
13454
13455 * .gdbinit: Don't set `args', it breaks gdb --args.
13456
134572008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
13458
13459 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
13460 within a narrowed buffer.
13461
134622008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
13463
13464 * coding.c (decode_coding_object, encode_coding_object):
13465 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
13466
134672008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
13468
13469 * coding.c (coding_set_destination): Use BEG_BYTE rather than
13470 hardcoding 1.
13471 (detect_coding_system):
13472 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
13473 (string_char_to_byte, string_byte_to_char, insert_from_gap):
13474 * insdel.c (insert_from_gap):
13475 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
13476 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
13477 (string_to_multibyte):
13478 * character.c (chars_in_text, multibyte_chars_in_text):
13479 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
13480
13481 * character.h (FETCH_STRING_CHAR_ADVANCE)
13482 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
13483 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
13484 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
13485
13486 * casefiddle.c (casify_region): Only call after-change and composition
13487 functions on the part of the region that was changed.
13488
13489 * keyboard.c (read_avail_input):
13490 * frame.c (Fdelete_frame): Call Fdelete_terminal.
13491
134922008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13493
13494 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
13495 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
13496
134972008-02-11 Juanma Barranquero <lekktu@gmail.com>
13498
13499 * w32menu.c (push_submenu_start, push_submenu_end)
13500 (push_left_right_boundary, push_menu_pane, push_menu_item):
13501 * keyboard.c (read_key_sequence): Don't pass args with side effects
13502 to AREF, it fails when compiling with -DENABLE_CHECKING.
13503
135042008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
13505
13506 * Makefile.in (${lispsource}international/charprop.el):
13507 Delete this target.
13508
13509 * search.c (boyer_moore): Fix incorrect synching of the trunk and
13510 emacs-unicode-2.
13511
135122008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13513
13514 * terminal.c (Fdelete_terminal): Clean up the `force' path.
13515
135162008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
13517
13518 * frame.c (Qnoelisp): New symbol.
13519 (syms_of_frame): Initialize it.
13520 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
13521 harmless Elisp code, from a strong `force' from x_connection_closed.
13522 * frame.h (Qnoelisp): Declare.
13523 * xterm.c (x_connection_closed): Pass `noelisp'.
13524
13525 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
13526 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
13527 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
13528 rather than `int' for the type of `type'.
13529
135302008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
13531
13532 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
13533
13534 * Makefile.in (GNUC): Remove support for gcc-1.x.
13535
135362008-02-10 Richard Stallman <rms@gnu.org>
13537
13538 * lisp.h (ASET): Use AREF, not ASLOT.
13539
135402008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
13541
13542 * lisp.h (ASET): Check bounds.
13543
135442008-02-10 Glenn Morris <rgm@gnu.org>
13545
13546 * buffer.c (mode-name): Doc fix.
13547
135482008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
13549
13550 * Makefile.in:
13551 * emacs.c:
13552 * gmalloc.c:
13553 * keyboard.c:
13554 * lisp.h:
13555 * m/ibm370aix.h:
13556 * process.c:
13557 * regex.c:
13558 * s/hpux.h:
13559 * sysdep.c:
13560 * sysselect.h:
13561 * systty.h:
13562 * unexec.c:
13563 * w32term.c:
13564 * xsmfns.c:
13565 * xterm.c: Remove code that deals with obsolete variables.
13566
13567 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
13568
13569 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
13570 nothing else needs it anymore.
13571
135722008-02-09 Eli Zaretskii <eliz@gnu.org>
13573
13574 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
13575 instead of unibyte_char_to_multibyte.
13576
135772008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
13578
13579 * s/gnu-linux.h: Remove commented out code.
13580
13581 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
13582
13583 * Makefile.in: Update what RMS says about using autoconf.
13584 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
13585 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
13586 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
13587 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
13588
135892008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
13590
13591 * keymap.c (Fkey_description): Move side effect outside of macro call.
13592
13593 * xfaces.c (Finternal_make_lisp_face):
13594 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
13595
13596 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
13597 (syms_of_fontset): Use ASET.
13598
13599 * fns.c (concat): Move side effect outside of macro call.
13600 (hash_clear): Use ASET.
13601
136022008-02-08 Richard Stallman <rms@gnu.org>
13603
13604 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
13605 If FORCE, and frame has a surrogate minibuffer for another frame,
13606 delete the other frame first.
13607
136082008-02-07 Timo Savola <timo.savola@iki.fi>
13609
13610 * xterm.c (x_detect_focus_change): Handle embed client message.
13611 (handle_one_xevent): Ditto.
13612 (handle_one_xevent): If embedded and we get a button press/release,
13613 request focus.
13614 (xembed_set_info, xembed_send_message): New functions.
13615 (x_make_frame_visible): Call xembed_set_info if embedded.
13616 (x_make_frame_invisible): Call xembed_set_info if embedded.
13617 (x_term_init): Initialize Xatom_XEMBED.
13618 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
13619 (x_iconify_frame): Ditto.
13620
13621 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
13622 (enum xembed_info, enum xembed_message, enum xembed_focus)
13623 (enum xembed_modifier, enum xembed_accelerator): New.
13624 (xembed_set_info, xembed_send_message): Declare.
13625 (FRAME_X_EMBEDDED_P): New.
13626
13627 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
13628 gtk_plug_new.
13629
13630 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
13631 window ID of a frame.
13632 (x_window): Reparent frame if embedded.
13633 (Fx_create_frame): Don't set border width if embedded.
13634
13635 * emacs.c (USAGE3): Add --parent-id.
13636 (standard_args): Ditto.
13637
136382008-02-07 Jan Djärv <jan.h.d@swipnet.se>
13639
13640 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
13641
136422008-02-07 Jim Meyering <meyering@redhat.com>
13643
13644 Use "do...while (0)", not "if (1)...else" in macro definitions.
13645 The latter provokes a warning from gcc about the empty else, when
13646 followed by ";". Also, without that trailing semicolon, it would
13647 silently swallow up any following statement.
13648 * syntax.h (SETUP_SYNTAX_TABLE)
13649 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
13650 * buffer.h (DECODE_POSITION): Likewise.
13651 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
13652 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
13653 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
13654 (FETCH_CHAR_ADVANCE): Likewise.
13655 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
13656
136572008-02-07 Jim Meyering <meyering@redhat.com>
13658
13659 * lread.c [lint]: Don't include <sys/inode.h>.
13660
136612008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
13662
13663 * xselect.c (x_handle_dnd_message):
13664 * xmenu.c (digest_single_submenu, xmenu_show):
13665 * xdisp.c (with_echo_area_buffer_unwind_data)
13666 (format_mode_line_unwind_data, unwind_format_mode_line)
13667 (display_menu_bar):
13668 * eval.c (Ffetch_bytecode):
13669 * doc.c (store_function_docstring):
13670 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
13671 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
13672 * buffer.c (add_overlay_mod_hooklist): Use ASET.
13673
136742008-02-07 Kenichi Handa <handa@m17n.org>
13675
13676 * ftxfont.c (ftxfont_open): Don't set
13677 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
13678
13679 * ftfont.c (ftfont_open): Fix previous change.
13680
136812008-02-06 Jason Rumney <jasonr@gnu.org>
13682
13683 * w32font.c (w32font_text_extents): Fill in lbearing metric.
13684 Use cached metrics for ASCII characters.
13685 (w32font_open_internal): Don't set font's owning_frame.
13686 Cache metrics for ASCII characters.
13687
13688 * w32font.h (struct w32font_info): Add ascii_metrics.
13689 Remove owning_frame.
13690
136912008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
13692
13693 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
13694 to negative value.
13695
13696 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
13697
13698 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
13699
13700 * charset.c (syms_of_charset): Set QCtest and Qeq.
13701
137022008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
13703
13704 * process.c (Fstart_process):
13705 * callproc.c (Fcall_process): Handle the case where
13706 Funhandled_file_name_directory returns nil.
13707
13708 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
13709 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
13710 * font.c (check_gstring): Use them and AREF to access the vector before
13711 we know it's really a gstring.
13712 (Ffont_shape_text): Fix typo.
46e722a9 13713 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
aac0c6e3
MR
13714
13715 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
13716 Declare.
13717
13718 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
13719
137202008-02-05 Jason Rumney <jasonr@gnu.org>
13721
13722 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
13723 Set smallest_font_height and smallest_char_width in display info.
13724
137252008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
13726
13727 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
13728
137292008-02-05 Miles Bader <miles@gnu.org>
13730
13731 * xfaces.c (get_lface_attributes, merge_named_face)
13732 (lookup_named_face, lookup_derived_face, realize_named_face):
13733 Revert 2008-02-01 change by cyd@stupidchicken.com.
13734
137352008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
13736
13737 * fontset.c (Ffontset_info): Handle the case of inhibitting the
13738 fallback fonts.
13739 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
13740
137412008-02-04 Jason Rumney <jasonr@gnu.org>
13742
13743 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
13744 set full_name.
13745 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
13746
137472008-02-03 Jason Rumney <jasonr@gnu.org>
13748
13749 * makefile.w32-in (OBJ1): Include font.o here.
13750 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
13751
137522008-02-02 Jason Rumney <jasonr@gnu.org>
13753
13754 * makefile.w32-in (temacs): Bump EMHEAP to 21.
13755
137562008-02-01 Jason Rumney <jasonr@gnu.org>
13757
13758 * s/cygwin.h: Define VIRT_ADDR_VARIES.
13759
13760 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
13761
137622008-02-01 Andreas Schwab <schwab@suse.de>
13763
13764 * Makefile.in (shortlisp, lisp): Update for rename of
13765 ../lisp/language/myanmar.el.
13766
137672008-02-01 Chong Yidong <cyd@stupidchicken.com>
13768
13769 * xfaces.c (get_lface_attributes): Delete function.
13770 (merge_named_face, lookup_named_face, lookup_derived_face)
13771 (realize_named_face): Call lface_from_face_name directly, and use
13772 the fact that merge_face_vectors does not alter its FROM argument.
13773
137742008-02-01 Jason Rumney <jasonr@gnu.org>
13775
13776 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
13777 input in the default locale. Handle non-Unicode multibyte input.
13778
137792008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13780
13781 * fontset.c (reorder_font_vector): Exclude nil elements from the
13782 font group. Don't try multiple fonts.
13783 (fontset_font): Adjust for the above change.
13784 (Finternal_char_font): Return nil if the found font doesn't
13785 contain the character ch.
13786
13787 * Makefile.in (lisp, shortlisp): Add cham.el.
13788
137892008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13790
13791 * font.h (FONTP): Make it return 1 also for a font-object.
13792
13793 * .gdbinit (xfontset): New function.
13794
13795 * font.c (font_find_for_lface): Check if the character C is
13796 supported or not only for the first font.
13797
13798 * fontset.c (reorder_font_vector): Fix typo.
13799 (fontset_find_font): Don't add a font-spec specifying a script.
13800 Use 0 (not Qt) for the indication of empty font-group. Change the
13801 format of RFONT-DEF. Return Qt if no font in the font-group
13802 support the character.
13803 (fontset_font): Adjust for the above change. If no font was
13804 found the character, remember that.
13805 (face_for_char): Adjust for the change of RFONT-DEF.
13806 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
13807 no font for the target.
13808 (Finternal_char_font): Adjust for the change of RFONT-DEF.
13809
138102008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13811
13812 * font.c (font_load_for_face): Handle the case that the font in
13813 face->lface is a string.
13814
138152008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13816
13817 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
13818
138192008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13820
13821 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
13822 Fix previous change. If the frame is not on a window system,
13823 signal an error.
13824
138252008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13826
13827 * coding.c (decode_coding_object, encode_coding_object): Adjust
13828 marker positions after conversion.
13829
13830 * lisp.h (struct Lisp_Marker): New member need_adjustment.
13831
138322008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13833
13834 * font.c (font_find_for_lface): Fix the handling of the return
13835 value of font_has_char.
13836 (Ffont_shape_text): Fix previous change.
13837
13838 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
13839 (fontset_ref_and_range): Delete it.
13840 (fontset_find_font): Call char_table_ref_and_range instead of
13841 FONTSET_REF_AND_RANGE.
13842 (make_fontset): Don't setup font groups of Latin here.
13843 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
13844 (new_fontset_from_font): Make the specified font the default for
13845 all Latin characters.
13846
138472008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13848
13849 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
13850 is on a window system before accessing the fontset of the frame.
13851
138522008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13853
13854 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
13855
13856 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
13857 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
13858
13859 * font.c (Ffont_shape_text): If the font driver doesn't have a
13860 shaper function, make zero-width glyphs to have at least one-pixel
13861 width. Fix setting of `to' field of glyphs.
13862
138632008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13864
13865 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
13866 glyphs.
13867
13868 * font.h (struct font_driver): Improve docstring of member `shape'.
13869
138702008-02-01 Kenichi Handa <handa@m17n.org>
13871
13872 * composite.c (syms_of_composite): Fix docstring of
13873 auto-composition-function.
13874
13875 * font.h (LGLYPH_SIZE): New macro.
13876
13877 * font.c (Ffont_fill_gstring): Stop filling when a character not
13878 supported by the font is found.
13879 (Ffont_shape_text): When a shape callback function returns nil,
13880 try at most two more times with larger gstring.
13881 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
13882
13883 * xdisp.c (handle_auto_composed_prop): Change the argument to
13884 auto-composition-function.
13885
13886 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
13887 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
13888 Lispy glyph and store it in the lgstring.
13889
13890 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
13891
13892 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
13893
138942008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13895
13896 * font.c (Ffont_shape_text): Avoid unnecessary composition.
13897
13898 * fontset.c (Vfont_encoding_charset_alist): New variable.
13899 (syms_of_fontset): DEFVAR it.
13900 (reorder_font_vector, fontset_find_font): Optimize for the case of
13901 no need of reordering.
13902 (face_for_char): Map the charset property by
13903 Vfont_encoding_charset_alist.
13904
139052008-02-01 Jason Rumney <jasonr@gnu.org>
13906
13907 * w32font.c (logfonts_match): Don't check adstyle here.
13908 (font_matches_spec): Check here against physical font instead.
13909 (add_font_entity_to_list): Avoid some substitutions.
13910
13911 * font.c (font_parse_fcname): Default weight and slant to normal.
13912 (font_score): Prefer normal fonts if weight or slant unspecified.
13913 (font_score) [WINDOWSNT]: Scale weight difference down to closer
13914 match freetype scores.
13915
139162008-02-01 Jason Rumney <jasonr@gnu.org>
13917
13918 * w32font.c (w32font_text_extents): Don't use the frame stored in the
13919 font, as it may have been deleted.
13920 (w32_enumfont_pattern_entity): Map generic family to adstyle using
13921 most common hyphenless variation.
13922 (logfonts_match): Check generic family.
13923 (font_matches_spec): Don't check generic family here.
13924 (fill_in_logfont): Set generic family based on adstyle.
13925
13926 * w32font.h (w32font_get_cache): Update declaration.
13927
139282008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13929
13930 * ftfont.c (ftfont_get_cache): Adjust the argument type.
13931
13932 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
13933 If none of the new drivers are available, call font_update_drivers
13934 with the old drivers.
13935
13936 * w32font.c (w32font_get_cache): Adjust the argument type.
13937
13938 * xfont.c (xfont_get_cache): Adjust the argument type.
13939
13940 * font.h (struct font_driver): Change argument type of get_cache.
13941
13942 * xftfont.c (xftfont_start_for_frame): Delete prototype.
13943
13944 * font.c (Ffont_get): Fix arguments to Fassoc.
13945 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
13946 (font_clear_cache): New function.
13947 (font_list_entities, font_matching_entity): Use font_get_cache.
13948 (font_update_drivers): Call font_clear_cache when finishing a driver.
13949
13950 * fontset.c (fontset_find_font): Fix previous change.
13951
139522008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13953
13954 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
13955 dpyinfo->font_table.
13956 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
13957 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
13958
13959 * font.c (font_at): Handle the case that the arg C is negative.
13960 Handle the unibyte case.
13961 (Ffont_at): Call font_at with the arg C -1.
13962
13963 * xdisp.c (handle_auto_composed_prop): Don't get a character at
13964 the position here, and call font_at with the arg C -1.
13965 Don't check the range of the existing composition at the point.
13966
139672008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13968
13969 * fontset.c (fontset_add): New args charset_id and family.
13970 Change caller.
13971 (load_font_get_repertory, fontset_find_font): Assume that
13972 font_spec is always a font-spec object.
13973 (Fset_fontset_font): Always store a font-spec object in a fontset.
13974
13975 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
13976 instead of get_property_and_range.
13977
139782008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13979
13980 * xftfont.c (struct xftfont_info): Delete the member ft_face.
13981 (xftfont_open): Don't keep locking face.
13982 (xftfont_close): Don't unlock face.
13983 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
13984
13985 * fontset.c (fontset_find_font): Don't prefer a font of
13986 supplementary charset.
13987
139882008-02-01 Kenichi Handa <handa@m17n.org>
13989
13990 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
13991 script, langsys_tag to langsys, new member script.
13992 (OTF_TAG_STR): Terminate by '\0'.
867d4bb3 13993 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
aac0c6e3
MR
13994 listing to the script specified in that property. Fix arg to
13995 OTF_check_features.
13996
139972008-02-01 Jason Rumney <jasonr@gnu.org>
13998
13999 * w32font.h: New file.
14000
14001 * w32font.c: Include it.
14002 (struct w32font_info): Add owning_frame field. Move to w32font.h.
14003 (w32font_open): Set owning_frame.
14004 (w32font_text_extents): Use owning_frame.
14005 (struct font_callback_data): Add opentype_only field.
14006 (add_font_entity_to_list): Use it to filter fonts.
14007 Don't check against full name.
14008 (w32font_list_internal): New function.
14009 (w32font_list): Use it.
14010 (w32font_match_internal): New function.
14011 (w32font_match): Use it.
14012 (w32font_open_internal): New function.
14013 (w32font_open): Use it.
14014 (w32font_get_cache, w32font_close, w32font_has_char)
14015 (w32font_encode_char, w32font_text_extents, w32font_draw):
14016 Make non-static.
14017
14018 * makefile.w32-in (w32font.o): Depend on w32font.h.
14019
140202008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14021
14022 * charset.c (Fdefine_charset_internal): Record a supplementary
14023 charset at the tail of Vcharset_order_list.
14024
14025 * font.c (Ffont_shape_text): Fix the return value.
14026
14027 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
14028
14029 * xdisp.c (handle_auto_composed_prop): Fix previous change.
14030
140312008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14032
14033 * ftfont.c (struct OpenTypeSpec): New struct.
14034 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
14035 (ftfont_get_open_type_spec): New function.
14036 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
14037
14038 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
14039
140402008-02-01 Jason Rumney <jasonr@gnu.org>
14041
14042 * w32font.c (add_font_entity_to_list): Compare only the beginning
14043 of full name.
14044
140452008-02-01 Kenichi Handa <handa@m17n.org>
14046
14047 * xdisp.c (handle_auto_composed_prop): Simplify the code.
14048 Never return HANDLED_RECOMPUTE_PROPS.
14049
140502008-02-01 Kenichi Handa <handa@m17n.org>
14051
14052 * font.c (font_gstring_produce): Delete it.
14053
14054 * composite.h (COMPOSITION_METHOD):
14055 Handle COMPOSITION_WITH_GLYPH_STRING.
14056
140572008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14058
14059 * xfont.c (Qx): Delete.
14060 (syms_of_xfont): Don't initialize Qx.
14061
14062 * composite.h (enum composition_method):
14063 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
14064
140652008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14066
14067 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
14068 (choose_face_font): Accept new form of font-spec.
14069
14070 * frame.h (font_driver_list): Declare it unconditionally.
14071 (struct frame): Define members font_driver_list and font_data_list
14072 unconditionally.
14073
14074 * fontset.c: Include "font.h" unconditionally.
14075 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
14076 (Fset_fontset_font): Accept a font-spec object.
14077
14078 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
14079 PIXEL_SIZE part a wild card.
14080
14081 * dispextern.h (struct glyph_string): Define members clip and
14082 num_clips unconditionally.
14083 (struct face): Define members font_info and extra unconditionally.
14084
14085 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
14086 ftfont_info only when HAVE_LIBOTF is defined.
14087
140882008-02-01 Andreas Schwab <schwab@suse.de>
14089
14090 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
14091 and end.
14092
140932008-02-01 Jason Rumney <jasonr@gnu.org>
14094
14095 * w32font.c (w32font_driver): Add new fields.
14096
140972008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14098
14099 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
14100 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
14101 (LIBES): Add @M17N_FLT_CFLAGS@.
14102
14103 * composite.c (compose_text): Don't treat the new style
14104 composition specially.
14105
14106 * emacs.c (main): Call syms_of_font unconditionally.
14107
14108 * font.h (FONT_ENTITY_NOT_LOADABLE)
14109 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
14110 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
14111 (struct font_driver): New member shape.
14112 (font_registry_charsets): Extern it.
14113 (font_find_for_lface, font_prepare_composition): Adjust prototype.
14114 (font_otf_capability, font_drive_otf): Delete their externs.
14115
14116 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
14117 (font_charset_alist, font_registry_charsets): Move from xfont.c
14118 and rename.
14119 (font_prop_validate_otf): New function.
14120 (font_property_table): Register it for QCotf.
14121 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
14122 (font_drive_otf): Delete.
14123 (font_prepare_composition): New arg F. Adjust for the change of
14124 lispy gstring.
14125 (font_find_for_lface): New arg C.
14126 (font_load_for_face): Adjust for the change of font_find_for_lface.
14127 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
14128 lispy gstring.
14129 (Ffont_shape_text): New function.
14130 (Fopen_font): If the font size is not given, use 12-pixel.
14131 (Ffont_at): New arg STRING.
14132 (syms_of_font): Initalize font_charset_alist.
14133 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
14134 conditionally.
14135
14136 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
14137 fonts of the same font-spec. Change the format of RFONT-DEF.
14138 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
14139 Adjust for the change of RFONT-DEF.
14140 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
14141
14142 * ftfont.h: New file.
14143
14144 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
14145 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
14146 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
14147 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
14148 font_otf_capability and font_drive_otf, set ftfont_shape.
14149 (ftfont_list): Adjust for the change of :otf property value.
14150 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
14151 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
14152 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
14153 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
14154 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
14155 (otf_gstring, gstring, m17n_flt_initialized): New variables.
14156
14157 * w32term.c (x_draw_composite_glyph_string_foreground):
14158 Adjust for the change of lispy gstring.
14159
14160 * xdisp.c (handle_composition_prop): Adjust for the change of
14161 lispy gstring. Call a function for auto-composition with the
14162 third arg it->window.
14163 (fill_composite_glyph_string): Adjust for the change of lispy string.
14164 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
14165
14166 * xfaces.c (set_font_frame_param): Adjust for the change of
14167 font_find_for_lface.
14168
14169 * xfont.c (x_font_charset_alist): Move to font.c and rename.
14170 (xfont_registry_charsets): Likewise. Change caller.
14171 (syms_of_xfont): Don't handle x_font_charset_alist.
14172
14173 * xftfont.c: Include "ftfont.h".
14174 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
14175 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
14176 (xftfont_close) [HAVE_LIBOTF]: Close otf.
14177 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
14178 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
14179 Set xftfont_driver.shape to xftfont_shape.
14180
14181 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
14182 the change of lispy gstring.
14183
141842008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14185
14186 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
14187
141882008-02-01 Jason Rumney <jasonr@gnu.org>
14189
14190 * w32font.c (w32font_draw): Fill background manually.
14191
141922008-02-01 Jason Rumney <jasonr@gnu.org>
14193
14194 * font.c (Qfontp): Remove unused symbol.
14195 (QCantialias): New symbol.
14196 (syms_of_font): Define it.
14197 (font_property_table): Set a validator for QCantialias.
14198
14199 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
14200 Define if not already.
14201 (QCfamily): Share with xfaces.c.
14202 (Qstandard, Qsubpixel, Qnatural): New symbols.
14203 (syms_of_w32font): Define them. Don't define QCfamily here.
14204 (w32_antialias_type, lispy_antialias_type): New functions.
14205 (w32_enumfont_pattern_entity): New arg requested_font.
14206 Set antialias parameter if non-default was requested.
14207 (fill_in_logfont): Fill in lfQuality if :antialias specified.
14208
142092008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14210
14211 * lread.c (read1): Undo the previous change.
14212
142132008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
14214
14215 * frame.c (Fdelete_frame): Call font_update_drivers only when
14216 USE_FONT_BACKEND is defined.
14217
142182008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14219
14220 * font.h (struct font_bitmap): New member bits_per_pixel.
14221 (struct font_driver): New members start_for_frame and end_for_frame.
14222 (struct font_data_list): New struct.
14223 (font_put_frame_data, font_get_frame_data): Extern them.
14224
14225 * frame.h (struct frame): New member font_data_list.
14226
14227 * font.c (font_update_drivers): Call driver->start_for_frame and
14228 driver->end_for_frame at proper timings.
14229 (font_put_frame_data, font_get_frame_data): New functions.
14230 (Ffont_spec): Add usage in the docstring.
14231
14232 * frame.c (make_frame): Initialize f->font_data_list to NULL.
14233 (Fdelete_frame): Call font_update_drivers.
14234
14235 * xftfont.c (struct xftface_info): Delete the member xft_draw.
14236 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
14237 (xftfont_get_xft_draw): New function.
14238 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
14239 (xftfont_end_for_frame): New function.
14240 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
14241
14242 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
14243 Change argument. Cache GCs in the per-frame data.
14244 (struct ftxfont_frame_data): New struct.
14245 (ftxfont_draw_bitmap): New arg gc_fore and flush.
14246 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
14247 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
14248 (ftxfont_end_for_frame): New function.
14249 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
14250
14251 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
14252
142532008-02-01 Kenichi Handa <handa@m17n.org>
14254
14255 * xselect.c (Vselection_coding_system)
14256 (Vnext_selection_coding_system): Delete them.
14257 (syms_of_xselect): Don't declare selection-coding-system and
14258 next-selection-coding-system. They are declared in select.el.
14259
142602008-02-01 Jason Rumney <jasonr@gnu.org>
14261
14262 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
14263
14264 * w32fns.c: Include imm.h.
14265 (get_composition_string_fn, get_ime_context_fn): New optional
14266 system functions.
14267 (globals_of_w32fns): Load them from imm32.dll.
14268 (ignore_ime_char): New flag.
14269 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
14270 WM_IME_ENDCOMPOSITION messages.
14271
14272 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
14273 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
14274
142752008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14276
14277 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
14278 (READCHAR_REPORT_MULTIBYTE): New macro.
14279 (readchar): New 2nd arg MULTIBYTE.
14280 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
14281 Make symbol's name multibyte according to the multibyteness of the
14282 source.
14283
142842008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14285
14286 * xfaces.c (face_for_overlay_string): Call lookup_face with
14287 correct arguments (fix of synching with the trunk).
14288
142892008-02-01 Kenichi Handa <handa@m17n.org>
14290
14291 * font.c (font_prop_validate_symbol, font_prop_validate_style)
14292 (font_prop_validate_non_neg, font_prop_validate_spacing):
14293 Delete argument prop_index.
14294 (font_property_table): Change arguments to validater. Change Callers.
14295 (font_lispy_object): Delete.
14296 (font_at): Use font_find_object instead fo font_lispy_object.
14297
142982008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14299
14300 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
14301 and file names.
14302
143032008-02-01 Jason Rumney <jasonr@gnu.org>
14304
14305 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
14306 (font_matches_spec): Remove debug output.
14307 (add_font_entity_to_list): Avoid using substituted fonts.
14308
143092008-02-01 Jason Rumney <jasonr@gnu.org>
14310
14311 * doc.c (Fsnarf_documentation):
14312 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
14313
143142008-02-01 Miles Bader <miles@gnu.org>
14315
14316 * dispextern.h (struct glyph_row): Only define "clip" field if
14317 HAVE_WINDOW_SYSTEM is defined.
14318
143192008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
14320
14321 Fix up multi-tty merge.
14322
14323 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
14324 and indentation.
14325
14326 * xfaces.c (free_realized_face, clear_face_gcs):
14327 Include font_done_for_face in the input_blocked section, just in case.
14328
14329 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
14330 (get_char_face_and_encoding): Undo last change and remove the *other*
14331 duplicate definition (i.e. keep the one that's better scoped and that
14332 includes code for the font-backend).
14333
14334 * terminal.c (create_terminal): Default keyboard_coding to
14335 `no-conversion' and terminal_coding to `undecided'.
14336
14337 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
14338
14339 * fontset.c (free_realized_fontsets): Check that the table entry does
14340 contain a fontset before trying to compare it to `base'.
14341
14342 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
14343 syms_of_charset, and syms_of_coding earlier because init_window_once
14344 now needs Vcoding_system_hash_table to be setup.
14345
14346 * coding.h (default_buffer_file_coding): Remove.
14347
14348 * coding.c (default_buffer_file_coding): Remove.
14349 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
14350 than ->symbol, and use the terminal-local coding system.
14351 (syms_of_coding): Don't setup the coding-systems that are not
14352 terminal-local.
14353 (Fdefine_coding_system_internal): Use XCAR/XCDR.
14354
14355 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
14356 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
14357
14358 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
14359 in chartab.c and were re-added here by mistake.
14360 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
14361
14362 * doc.c (Fsnarf_documentation):
14363 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
14364 src to etc.
14365
14366 * ChangeLog.10: Add mistakenly removed entry.
14367
143682008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
14369
14370 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
14371
143722008-02-01 Miles Bader <miles@gnu.org>
14373
14374 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
14375 Add extra args to FACE_FOR_CHAR.
14376
143772008-02-01 Kenichi Handa <handa@m17n.org>
14378
14379 * keymap.c (where_is_internal_1): If key is a cons, store the copy
14380 in sequence.
14381
14382 * chartab.c (map_sub_char_table, map_char_table): If the range
14383 contains just one character, call the function with that character
14384 even if the depth is not 3.
14385
143862008-02-01 Jason Rumney <jasonr@gnu.org>
14387
14388 * w32font.c (w32font_text_extents): Calculate metrics for the
14389 whole string.
14390
143912008-02-01 Jason Rumney <jasonr@gnu.org>
14392
14393 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
14394
143952008-02-01 Jason Rumney <jasonr@gnu.org>
14396
14397 * w32term.c (x_set_glyph_string_clipping): Use
14398 get_glyph_string_clip_rects.
14399 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
14400 Adjust for the change of struct glyph_string.
14401
14402 * w32font.c (w32font_draw): Do clipping here.
14403
144042008-02-01 Kenichi Handa <handa@m17n.org>
14405
14406 * xftfont.c (xftfont_draw): Adjust for the change of struct
14407 glyph_string.
14408
14409 * xterm.c (x_set_glyph_string_clipping): Use
14410 get_glyph_string_clip_rects.
14411 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
14412 Adjust for the change of struct glyph_string.
14413
14414 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
14415 the resulting clip(s}.
14416 (expose_overlaps): Add arg r. Change callers. Set it to
14417 row->clip temporarily.
14418 (expose_window): Redraw rows overlapping the exposed area.
14419
14420 * dispextern.h (struct glyph_row): New member clip.
14421 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
14422 clip_height, new member clip, and num_clips.
14423
144242008-02-01 Kenichi Handa <handa@m17n.org>
14425
14426 * data.c (Fchar_or_string_p): Fix docstring.
14427
144282008-02-01 Kenichi Handa <handa@m17n.org>
14429
14430 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
14431 create a temporary XftDraw object.
14432
144332008-02-01 Kenichi Handa <handa@m17n.org>
14434
14435 * font.c (Ffontp): Fix docstring.
14436
14437 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
14438 strong evidence of ISO-2022.
14439
144402008-02-01 Kenichi Handa <handa@m17n.org>
14441
14442 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
14443 SYNTAX_ENTRY_FOLLOW_PARENT.
14444
144452008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
14446
14447 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
14448 its type.
14449 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
14450 Update to the new type of weak_hash_tables and next_weak.
14451
14452 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
14453 a plain C pointer to Lisp_Hash_Table.
14454
14455 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
14456 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
14457 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
14458 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
14459 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
14460 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
14461 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
14462 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
14463 (GC_EQ): Remove since they've been identical to their non-GC_
14464 alter-egos ever since the markbit was eradicated.
14465
14466 * alloc.c:
14467 * buffer.c:
14468 * buffer.h:
14469 * data.c:
14470 * fileio.c:
14471 * filelock.c:
14472 * fns.c:
14473 * frame.h:
14474 * lisp.h:
14475 * macterm.c:
14476 * print.c:
14477 * process.c:
14478 * w32fns.c:
14479 * w32menu.c:
14480 * w32term.c:
14481 * xfns.c:
14482 * xmenu.c:
14483 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
14484
144852008-02-01 Kenichi Handa <handa@m17n.org>
14486
14487 * chartab.c (map_sub_char_table): Make it work for the top-level
14488 char-table. Fix handling of parent char-table.
14489 (map_char_table): Adjust for the above change.
14490
144912008-02-01 Jason Rumney <jasonr@gnu.org>
14492
14493 * w32font.c (Qgdi): Rename from Qw32.
14494
144952008-02-01 Jason Rumney <jasonr@gnu.org>
14496
14497 * w32bdf.c (get_quoted_string): Make function static.
14498
144992008-02-01 Kenichi Handa <handa@m17n.org>
14500
14501 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
14502 bigger ascent and descent than those of the font, use them as
14503 font's ascent and descent.
14504
145052008-02-01 Kenichi Handa <handa@m17n.org>
14506
14507 * Makefile.in (${lispsource}international/charprop.el): Move this
14508 target within "#ifdef HAVE_UNIDATA" and "#endif".
14509
145102008-02-01 Kenichi Handa <handa@m17n.org>
14511
14512 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
14513 (shortlisp): Add ../lisp/language/tai-viet.el.
14514
145152008-02-01 Ulrich Mueller <ulm@gentoo.org>
14516
14517 * Makefile.in (${lispsource}international/charprop.el): Depend on
14518 temacs${EXEEXT}.
14519
145202008-02-01 Jason Rumney <jasonr@gnu.org>
14521
14522 * w32font.c (w32font_close): Delete the GDI font object.
14523
14524 * w32menu.c: Include character.h.
14525
14526 * w32proc.c: Likewise.
14527
14528 * w32select.c: Likewise.
14529
14530 * makefile.w32-in (w32proc.o): Depend on character.h.
14531
145322008-02-01 Jason Rumney <jasonr@gnu.org>
14533
14534 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
14535
14536 * w32menu.c (syms_of_w32menu): Likewise.
14537
14538 * w32proc.c (syms_of_ntproc): Likewise.
14539
14540 * w32select.c (syms_of_w32select): Likewise.
14541
14542 * w32term.c (syms_of_w32term): Likewise.
14543
145442008-02-01 Jason Rumney <jasonr@gnu.org>
14545
14546 * w32font.c (w32font_draw): Delete brush after using it.
14547
145482008-02-01 Jason Rumney <jasonr@gnu.org>
14549
14550 * w32font.c (w32font_open): Don't set font_idx.
14551 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
14552 to font settings.
14553 (w32font_draw): Fill background explicitly.
14554
145552008-02-01 Jason Rumney <jasonr@gnu.org>
14556
14557 * w32term.c (w32_initialize): Don't call w32font_initialize.
14558
14559 * w32font.c (w32font_info): Remove subranges.
14560 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
14561 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
14562 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
14563 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
14564 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
14565 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
14566 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
14567 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
14568 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
14569 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
14570 New symbols.
14571 (font_callback_data): New struct.
14572 (w32font_list, w32font_match): Use it.
14573 (w32font_open): Don't populate subranges.
14574 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
14575 (w32font_encode_char): Always return unicode code-point as-is.
14576 (w32font_text_extents): Supply a transformation matrix to
14577 GetGlyphOutline. Never look up by glyph index. Avoid looping
14578 twice. Use unicode version of GetTexExtentPoint32 instead of
14579 glyph index version.
14580 (set_fonts_frame): Remove.
14581 (w32_enumfont_pattern_entity): Add frame parameter, use it to
14582 set frame parameter. Use backward compatible fake foundries.
14583 Save generic family in extra slot under QCfamily. Make width slot
14584 constant. Save QCspacing value. Save list of scripts instead of
14585 binary subranges.
14586 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
14587 (add_font_entity_to_list): Use font_callback_data struct. Filter
14588 unwanted fonts.
14589 (add_one_font_entity_to_list): Use font_callback_data struct.
14590 (w32_registry): Default to iso10646_1.
14591 (fill_in_logfont): Use dpi from extra slot. Don't bother with
14592 string font registries. Don't fill in font name if it is a generic
14593 family name, fill family instead. Use spacing, family and script
14594 extra info to fill pitch, family and charset fields.
14595 (list_all_matching_fonts): Use font_callback_data struct.
14596 (unicode_range_for_char): Remove.
14597 (font_supported_scripts): New function.
14598 (w32font_initialize): Remove.
14599 (syms_of_w32font): Update which symbols are defined.
14600
146012008-02-01 Jason Rumney <jasonr@gnu.org>
14602
14603 * font.c (font_pixel_size): Reverse assq_no_quit args.
14604
14605 * w32term.h (FONT_WIDTH): Report max width, not average.
14606 (FONT_MAX_WIDTH): Remove.
14607 (FONT_AVG_WIDTH): New macro.
14608
14609 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
14610 redefinition of FONT_WIDTH.
14611
14612 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
14613 (w32_cache_char_metrics): Use FONT_WIDTH.
14614
14615 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
14616
146172008-02-01 Jason Rumney <jasonr@gnu.org>
14618
14619 * w32font.c (w32font_open): Make lfHeight negative.
14620
14621 * w32fns.c (x_default_font_parameter): Use new style font name.
14622 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
14623
146242008-02-01 Jason Rumney <jasonr@gnu.org>
14625
14626 * w32font.c (QCsubranges): New symbol.
14627 (w32font_open, w32font_has_char): Get subranges from subproperty
14628 of extra.
14629 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
14630 (syms_of_w32font): Define :subranges symbol.
14631
14632 * font.c (font_put_extra): Expose externally.
14633
14634 * font.h (font_put_extra): Move declaration from font.c.
14635
14636 * font.c (Ffont_get): Use font driver to determine otf capability.
14637 (adjust_anchor): Check if driver defines anchor_point before using.
14638
14639 * w32font.c (w32font_open): Handle size, height and pixel_size better.
14640 (w32font_draw): Use options.
14641 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
14642 Fix detection of truetype fonts.
14643 (registry_to_w32_charset): Handle charsets other than iso8859-1
14644 expressed as lisp symbols.
14645 (w32_registry): Express charset as lisp symbol.
14646 (fill_in_logfont): Reverse pixel and point height logic.
14647 Don't set width here. Set quality to default.
14648
14649 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
14650 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
14651
14652 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
14653 Remove redundant loop and allocation.
14654
14655 * makefile.w32-in (font.o, w32font.o): New objects.
14656 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
14657 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
14658
14659 * xdisp.c (fill_composite_glyph_string): Make the first arg to
14660 STORE_XCHARB a valid l-value.
14661
14662 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
14663 calculations for non-Truetype fonts.
14664 (x_draw_glyph_string): Sync with xterm.c.
14665 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
14666 Remove redundant code.
14667 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
14668
14669 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
14670 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
14671
14672 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
14673 (x_to_w32_charset, w32_to_x_charset): Expose externally.
14674
14675 * w32font.c: New file for w32 font backend.
14676
146772008-02-01 Kenichi Handa <handa@m17n.org>
14678
14679 * term.c: Don't include "buffer.h" twice.
14680
146812008-02-01 Kenichi Handa <handa@m17n.org>
14682
14683 * character.c (Funibyte_string): New function.
14684 (syms_of_character): Defsubr it.
14685
146862008-02-01 Jason Rumney <jasonr@gnu.org>
14687
14688 * w32term.c [USE_FONT_BACKEND]:
14689 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
14690 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
14691 (x_draw_glyph_string, x_draw_glyph_string_foreground)
14692 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
14693 (x_free_frame_resources): Sync with xterm.c.
14694
146952008-02-01 Andreas Schwab <schwab@suse.de>
14696
14697 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
14698 char-table size.
14699
147002008-02-01 Kenichi Handa <handa@m17n.org>
14701
14702 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
14703
147042008-02-01 Kenichi Handa <handa@m17n.org>
14705
14706 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
14707 font_otf_gpos, add font_drive_otf.
14708
14709 * fontset.c (fontset_find_font): Pay attention to font size
14710 specified for a font.
14711 (reorder_font_vector): Check contents of font_def.
14712
14713 * font.c (struct otf_list): Delete it.
14714 (otf_list): Make it a lisp variable.
14715 (otf_open): Use lispy otf_list.
14716 (generate_otf_features): Rename from parse_gsub_gpos_spec.
14717 (check_otf_features): New function.
14718 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
14719 New functions.
14720 (font_drive_otf): New function merging font_otf_gsub and
14721 font_otf_gpos.
14722 (font_open_for_lface): New arg spec. Change argument order.
14723 (font_load_for_face): Adjust for the change of font_open_for_lface.
14724 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
14725 Ffont_otf_gpos.
14726 (syms_of_font): Staticpro otf_list. Delete defsubr of
14727 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
14728
14729 * xfaces.c (set_font_frame_param): Adjust for the change of
14730 font_open_for_lface.
14731
14732 * font.h (font_open_for_lface): Adjust prototype.
14733 (struct font_driver): Delete members otf_gsub and otf_gpos, add
14734 member otf_drive.
14735 (font_otf_gsub, font_otf_gpos): Delete externs.
14736 (font_drive_otf): Extern it.
14737
147382008-02-01 Kenichi Handa <handa@m17n.org>
14739
14740 * font.c (font_at): If the window W is not on a window system,
14741 return Qnil.
14742
14743 * coding.c (produce_chars, encode_coding): Don't call
14744 insert_from_gap if no characters to produce.
14745
147462008-02-01 Kenichi Handa <handa@m17n.org>
14747
14748 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
14749 Fclear_face_cache.
14750
14751 * xfaces.c (face_for_font): Check also face->font==font->font.font.
14752
147532008-02-01 Miles Bader <miles@gnu.org>
14754
14755 * emacs.c (main): Change default value of `enable_font_backend' to 1.
14756 Parse "--disable-font-backend" option.
14757 (standard_args): Add "--disable-font-backend" option.
14758
147592008-02-01 Kenichi Handa <handa@m17n.org>
14760
14761 * fontset.c (fontset_find_font): New function.
14762 (fontset_font): Use fontset_find_font.
14763 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
14764 Register the specified font for all Latin characters.
14765 (new_fontset_from_font): Register the specified font for all Latin
14766 characters.
14767 (dump_fontset): For a realized fontset, include the base fontset
14768 name in the returned vector.
14769
147702008-02-01 Kenichi Handa <handa@m17n.org>
14771
14772 * character.h (CHAR_STRING): Cast C to unsigned on calling
14773 char_string.
14774
14775 * character.c (char_string): Type of arg C changed to unsigned.
14776 Signal an error if C is an invalid character code.
14777
14778 * editfns.c (general_insert_function, Fchar_to_string):
14779 Use CHARACTERP, not INTEGERP.
14780
147812008-02-01 Kenichi Handa <handa@m17n.org>
14782
14783 * character.h (MIN_MULTIBYTE_LEADING_CODE)
14784 (MAX_MULTIBYTE_LEADING_CODE): New macros.
14785
14786 * regex.c (analyse_first): Fix for multibyte characters in "case
14787 charset:" and "case categoryspec:".
14788
147892008-02-01 Andreas Schwab <schwab@suse.de>
14790
14791 * Makefile.in (LIBES): Move standard libraries to the end.
14792
147932008-02-01 Kenichi Handa <handa@m17n.org>
14794
14795 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
14796 nonzero, don't shrink the buffer nextb.
14797
14798 * buffer.h (struct buffer_text): New member inhibit_shrinking.
14799
14800 * coding.c (coding_alloc_by_making_gap): New arg offset.
14801 (alloc_destination): Call coding_alloc_by_making_gap with the arg
14802 offset.
14803 (decode_coding_iso_2022): Update coding->safe_charsets.
14804 (decode_coding_gap): Temporarily set
14805 current_buffer->text->inhibit_shrinking to 1.
14806
148072008-02-01 Kenichi Handa <handa@m17n.org>
14808
14809 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
14810 indexing into elements of s->cmp and s->char2b.
14811
148122008-02-01 Juanma Barranquero <lekktu@gmail.com>
14813
14814 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
14815
148162008-02-01 Kenichi Handa <handa@m17n.org>
14817
14818 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
14819 target_multibyte instead of multibyte.
14820 (re_match_2_internal): Call bcmp_translate with target_multibyte.
14821 (bcmp_translate): Change the argument name from multibyte to
14822 target_multibyte.
14823
148242008-02-01 Kenichi Handa <handa@m17n.org>
14825
14826 These changes are to compile a regexp into a pattern that can be
14827 used both for multibyte and unibyte targets.
14828
14829 * Makefile.in (search.o): Depend on charset.h.
14830
14831 * character.c (multibyte_char_to_unibyte_safe): New function.
14832
14833 * search.c: Include "charset.h".
14834 (compile_pattern_1): Delete argument multibyte. Don't set
14835 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
14836 (compile_pattern): Don't compare cp->buf.target_multibyte.
14837 Compare cp->buf.charset_unibyte.
14838 (compile_pattern): Set cp->buf.target_multibyte.
14839
14840 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
14841
14842 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
14843
14844 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
14845 multibyte. Change callers.
14846 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
14847 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
14848 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
14849 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
14850 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
14851 (regex_compile): Make the compiled pattern usable both for
14852 multibyte and unibyte targets.
14853 (analyse_first): Make the fastmap usable both for multibyte and
14854 unibyte targets.
14855 (TRANSLATE_VIA_MULTIBYTE): Delete.
14856 (re_match_2_internal): Pay attention to the case that the
14857 multibyteness of bufp and target may be different.
14858
148592008-02-01 Kenichi Handa <handa@m17n.org>
14860
14861 * xdisp.c (x_produce_glyphs): When a font is not found, make the
14862 empty box occupy at least one column width.
14863
148642008-02-01 Miles Bader <miles@gnu.org>
14865
14866 * Makefile.in: Remove redundant HAVE_XFT clause.
14867
148682008-02-01 Kenichi Handa <handa@m17n.org>
14869
14870 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
14871
148722008-02-01 Kenichi Handa <handa@m17n.org>
14873
14874 * fontset.c (Finternal_char_font): Fix for the case of POSITION
14875 being nil.
14876
148772008-02-01 Kenichi Handa <handa@m17n.org>
14878
14879 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
14880
148812008-02-01 Kenichi Handa <handa@m17n.org>
14882
14883 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
14884
148852008-02-01 Kenichi Handa <handa@m17n.org>
14886
14887 * search.c (simple_search): Fix previous change.
14888
148892008-02-01 Kenichi Handa <handa@m17n.org>
14890
14891 * xftfont.c (ftfont_font_format): Extern declaration.
14892
14893 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
14894
14895 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
14896 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
14897
14898 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
14899 (ftfont_font_format): Fix previous change.
14900
14901 * font.h (Ffont_xlfd_name): EXFUN it.
14902
14903 * font.c (font_parse_xlfd): Fix the array size of `f'.
14904 (register_font_driver): Use EQ to compare driver->type.
14905
14906 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
14907 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
14908 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
14909
149102008-02-01 Kenichi Handa <handa@m17n.org>
14911
14912 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
14913 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
14914
149152008-02-01 Kenichi Handa <handa@m17n.org>
14916
14917 * xfont.c (xfont_open): Set font->format.
14918
14919 * xftfont.c (xftfont_open): Set font->format.
14920
14921 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
14922 (ftfont_list): Include FC_FONTFORMAT in FcObject.
14923 (ftfont_open): Set font->format.
14924 (ftfont_font_format): New function.
14925
14926 * font.h (struct font): New member format.
14927
14928 * font.c (Qopentype): New variable.
14929 (syms_of_font): Defsym it.
14930 (Fquery_font): Change the format of the last element of the return
14931 value.
14932
149332008-02-01 Kenichi Handa <handa@m17n.org>
14934
14935 * xfns.c (xic_create_xfontset): Try the default fontset name as a
14936 last resort.
14937
149382008-02-01 Kenichi Handa <handa@m17n.org>
14939
14940 * coding.c (detect_coding_charset): Fix detection of multi-byte
14941 charset.
14942
149432008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
14944
14945 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
14946
149472008-02-01 Kenichi Handa <handa@m17n.org>
14948
14949 * xdisp.c (get_next_display_element): Set it->face_id for the
14950 first component of a composition.
14951 (x_produce_glyphs): Check if the font is changed or not for composition.
14952
149532008-02-01 Kenichi Handa <handa@m17n.org>
14954
14955 * fontset.c (Qlatin): New variable.
14956 (syms_of_fontset): Define it as a lisp symbol.
14957 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
14958
149592008-02-01 Kenichi Handa <handa@m17n.org>
14960
14961 * font.c (font_unparse_fcname): Pay attention to the case that
14962 some of font property is a null string.
14963
149642008-02-01 Kenichi Handa <handa@m17n.org>
14965
14966 * term.c: Include "composite.h".
14967 (encode_terminal_code): Output all components of composition.
14968 Check the size of encode_terminal_src.
14969 (produce_glyphs): For composition, call produce_composite_glyph.
14970 (append_composite_glyph, produce_composite_glyph): New functions.
14971
14972 * xdisp.c (x_produce_glyphs): In handling composition, if a font
14973 is not found, get font_info from the current ascii face.
14974
149752008-02-01 Kenichi Handa <handa@m17n.org>
14976
14977 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
14978 buffer-file-name to Qnil before calling insert_from_buffer.
14979
14980 * font.c (font_unparse_fcname): Pay attention to the case that
14981 foundry is a null string.
14982
149832008-02-01 Kenichi Handa <handa@m17n.org>
14984
14985 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
14986
14987 * font.c (Qunicode_sip): New variable.
14988 (syms_of_font): Declare it as a Lisp symbol.
14989
14990 * font.h (Qunicode_sip): Extern it.
14991
149922008-02-01 Kenichi Handa <handa@m17n.org>
14993
14994 * composite.c (get_composition_id): Pay attention to TAB component.
14995
14996 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
14997 TAB. Adjust for the change of s->char2b which always points to
14998 the first element of allocated memory.
14999
15000 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
15001
15002 * xdisp.c (handle_composition_prop): Set it->c to the first
15003 non-TAB component.
15004 (fill_composite_glyph_string): Change argument.
15005 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
15006 (x_produce_glyphs): Fix handling of left/right padding.
15007
150082008-02-01 Kenichi Handa <handa@m17n.org>
15009
15010 * coding.c (detect_coding_system): Fix for handling off
15011 inhibit_iso_escape_detection. Fix for the case that no coding
15012 system is defined for a specific coding category.
15013
150142008-02-01 Kenichi Handa <handa@m17n.org>
15015
15016 * font.c (font_matching_entity): Delete unused local var.
15017
15018 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
15019 opening a font.
15020
15021 * fileio.c (Finsert_file_contents): On recovering a file, assume
15022 Unix-like eol.
15023 (choose_write_coding_system): On auto-saving a file, force
15024 Unix-like eol.
15025
15026 * coding.c (setup_coding_system): Fix setting of
15027 coding->common_flags based on eol_type.
15028 (coding_inherit_eol_type): If PARENT is not nil, be sure to
15029 inherit from it.
15030
150312008-02-01 Kenichi Handa <handa@m17n.org>
15032
15033 * alloc.c (NSTATICS): Increas to 0x600.
15034
150352008-02-01 Kenichi Handa <handa@m17n.org>
15036
15037 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
15038 (ftfont_list): Don't check :name property.
15039 (ftfont_match): New function.
15040 (ftfont_pattern_entity): If the pattern doesn't contain
15041 FC_SPACING, don't assume FC_MONO.
15042
15043 * font.h (struct font_driver): New member `match'.
15044 (font_update_drivers): Adjust prototype.
15045
15046 * font.c (font_parse_fcname, font_parse_name): Don't change :name
15047 property of FONT.
15048 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
15049 them unconditionally.
15050 (font_matching_entity): New function.
15051 (font_open_by_name): Try font_matching_entity if exact match is
15052 not found.
15053 (font_update_drivers): Delete the arg FONT. Return a list of
15054 actually used backends. Don't free faces, font caches here.
15055 Don't store data in frame parameters. Don't call x_set_font.
15056 (Ffont_spec): Store :name property as is.
15057 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
15058 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
15059 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
15060 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
15061 Call font->driver->otf_gsub instead of font_otf_gsub.
15062
15063 * frame.c (x_set_font_backend): Do more works that were done in
15064 font_update_drivers before.
15065
15066 * xfont.c (xfont_match): New function.
15067 (xfont_driver): Set xfont_driver.match to xfont_match.
15068 (xfont_draw): Set font in GC if necessary.
15069
15070 * ftxfont.c (ftxfont_match): New function.
15071 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
15072
15073 * xftfont.c (xftfont_match): New function.
15074 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
15075
150762008-02-01 Kenichi Handa <handa@m17n.org>
15077
15078 * font.h (struct font): New member scalable.
15079 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
15080 (font_otf_gsub): Adjust prototype.
15081
15082 * font.c (font_otf_capability): Fix handling of the default langsys.
15083 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
15084 Check the contents of SPEC.
15085 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
15086 (check_gstring): New function.
15087 (REPLACEMENT_CHARACTER): New macro.
15088 (font_otf_gsub): New arg alternate_subst. Be sure to set all
15089 glyph codes of GSTRING.
15090 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
15091 (font_prepare_composition): Set cmp->glyph_len.
15092 (font_open_entity): Set font->scalable.
15093 (Ffont_get): Handle :otf property.
15094 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
15095 functions.
15096 (Fquery_font): Use font->font.full_name.
15097 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
15098 Sfont_otf_alternates.
15099
15100 * ftfont.c (ftfont_open): Set font->font.full_name and
15101 font->font.name properly. Fix calculation of font->font.height
15102 and font->min_width.
15103
15104 * ftxfont.c (ftxfont_create_gcs): New function.
15105 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
15106 (ftxfont_draw_backgrond): Fix filling region.
15107 (ftxfont_default_fid): New function.
15108 (ftxfont_open): Set xfont->fid to the return value of
15109 ftxfont_default_fid.
15110 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
15111 (ftxfont_done_face): Free only GCs that are created by
15112 ftxfont_create_gcs.
15113 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
15114
15115 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
15116 Clip to src->width, etc (not src->clip_XXX).
15117
15118 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
15119 FontBackend frame parameter.
15120
151212008-02-01 Kenichi Handa <handa@m17n.org>
15122
15123 * font.h (struct font_driver_list): New member `on'.
15124 (Fclear_font_cache): EXFUN it.
15125 (font_update_drivers): Extern it.
15126
15127 * font.c (font_unparse_fcname): Fix typo (swidth->width).
15128 (font_list_entities): Check driver_list->on.
15129 (register_font_driver): Initalize `on' member to 0.
15130 (font_update_drivers): New function.
15131 (Fclear_font_cache): Check driver_list->on.
15132
15133 * frame.h (Qfont_backend): Extern it.
15134 (x_set_font_backend): Extern it.
15135
15136 * frame.c (Qfont_backend): New variable.
15137 (frame_parms): New element for font-backend.
15138 (x_set_font_backend): New function.
15139
15140 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
15141 FontBackend frame parameter.
15142 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
15143 x_set_font_backend.
15144
15145 * xfont.c (xfont_list): Don't try listing by :name property if the
15146 name is not for XLFD.
15147
151482008-02-01 Kenichi Handa <handa@m17n.org>
15149
15150 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
15151 (LGLYPH_SET_TO): New macros.
15152 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
15153 element of G is vector or not.
15154 (font_at): Extern it.
15155
15156 * font.c: Include window.h.
15157 (font_lispy_object): New function.
15158 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
15159 end of valid glyph.
15160 (font_close_object): Fix getting (struct font *).
15161 (font_at): New function.
15162 (Ffont_get): If FONT is a font-object, get entity from it.
15163 (Ffont_make_gstring): Initialize elements of glyphs with nil.
15164 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
15165 range check.
15166 (Ffont_at): New function.
15167 (syms_of_font): Defsubr Sfont_at.
15168
15169 * xdisp.c (it_props): Move the entry for Qauto_composed to just
15170 before the entry for Qcomposition.
15171 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
15172 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
15173 the font in gstring.
15174 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
15175 LGLYPH_FORM (g) to detect the end of valid glyph.
15176 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
15177 we are composing with gstring.
15178
15179 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
15180 Check if adjustment is vector or not.
15181
15182 * Makefile.in (font.o): Make it depends on window.h.
15183
151842008-02-01 Kenichi Handa <handa@m17n.org>
15185
15186 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
15187 adjustment is vector or not.
15188
151892008-02-01 Miles Bader <miles@gnu.org>
15190
15191 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
15192
151932008-02-01 Kenichi Handa <handa@m17n.org>
15194
15195 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
15196 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
15197 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
15198
15199 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
15200 (DEVICE_DELTA): Fix typo.
15201 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
15202 LGLYPH format.
15203
15204 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
15205 the change of LGLYPH format.
15206
152072008-02-01 Kenichi Handa <handa@m17n.org>
15208
15209 * ftfont.c (ftfont_list): Fix typo.
15210 (ftfont_build_basic_charsets): Don't include letters with diacritics.
15211
152122008-02-01 Jan Djärv <jan.h.d@swipnet.se>
15213
15214 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
15215
15216 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
15217 xftface_info is non-NULL.
15218
152192008-02-01 Jan Djärv <jan.h.d@swipnet.se>
15220
15221 * ftfont.c (ftfont_list): Move misplaced #endif.
15222
152232008-02-01 Kenichi Handa <handa@m17n.org>
15224
15225 * ftfont.c (ftfont_list): Pay attention to the case that
15226 FC_CAPABILITY is not defined.
15227
152282008-02-01 Kenichi Handa <handa@m17n.org>
15229
15230 * xftfont.c (xftfont_open): Set charset related members to -1.
15231
15232 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
15233 QCname.
15234 (ftfont_open): Set charset related members to -1.
15235
15236 * fontset.c (Votf_script_alist): New variable.
15237 (syms_of_fontset): Initialize it.
15238 (fontset_font): Delete unused variable.
15239
15240 * fontset.h (Votf_script_alist): Extern it.
15241
15242 * font.c (font_find_for_lface): Optimize code.
15243
15244 * font.h (font_close_object, font_merge_old_spec): Extern them.
15245
152462008-02-01 Kenichi Handa <handa@m17n.org>
15247
15248 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
15249 (syms_of_font): Initialize them.
15250 (font_pixel_size): Allow float value in dpi.
15251 (font_prop_validate_type): Delete.
15252 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
15253 Change caller.
15254 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
15255 (font_prop_validate_extra): Delete.
15256 (font_prop_validate_spacing): New function.
15257 (font_property_table): Add elements for all known properties.
15258 (get_font_prop_index): Rename from check_font_prop_name. New
15259 argument FROM. Change caller.
15260 (font_prop_validate): Validate all known properties.
15261 (font_put_extra): Delete argument force. Change caller.
15262 (font_expand_wildcards): Make it static. Fix the way of shrinking
15263 the possible range.
15264 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
15265 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
15266 Change caller.
15267 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
15268 (font_parse_fcname): Delete argument merge. Fix parsing of point
15269 size. Don't validate properties values here. Change caller.
15270 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
15271 (font_open_by_name): Delete unused variable.
15272 (Ffont_spec): Likewise. Validate property values.
15273 (Ffont_match_p): New function.
15274
15275 * font.h (QCscalable): Extern it.
15276 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
15277
15278 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
15279
15280 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
15281 (xfont_list_pattern): New function.
15282 (xfont_list): Use xfont_list_pattern.
15283
152842008-02-01 Kenichi Handa <handa@m17n.org>
15285
15286 * font.h (Flist_fonts): EXFUN it.
15287
152882008-02-01 Jason Rumney <jasonr@gnu.org>
15289
15290 * w32term.c (w32_initialize): Add back smoothing_type and
15291 smoothing_enabled definitions.
15292
152932008-02-01 Kenichi Handa <handa@m17n.org>
15294
15295 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
15296 s->face->font on determining underline position.
15297
152982008-02-01 Kenichi Handa <handa@m17n.org>
15299
15300 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
15301 (font_has_char): Accept font-object too.
15302 (font_find_for_lface): Try at first with a size specified in face.
15303
153042008-02-01 Kenichi Handa <handa@m17n.org>
15305
15306 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
15307 font_open_by_name.
15308
153092008-02-01 Kenichi Handa <handa@m17n.org>
15310
15311 * font.h (QCspacing, QCdpi): Extern them.
15312 (enum font_spacing): New enum.
15313 (FONT_PIXEL_SIZE_QUANTUM): New macro.
15314
15315 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
15316 (QCspacing, QCdpi): New variables.
15317 (syms_of_font): Initialize them.
15318 (font_pixel_size): New function.
15319 (font_put_extra): New function.
15320 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
15321 in FONT_EXTRA.
15322 (font_parse_fcname): Handle enumerated values (e.g. bold).
15323 Fix handling font size. Add QCname property that contains only
15324 unknown properties.
15325 (font_score): Change argument. Change caller. Pay attention to
15326 FONT_PIXEL_SIZE_QUANTUM.
15327 (font_sort_entites, font_list_entities, font_find_for_lface)
15328 (font_open_for_lface, font_open_by_name): Fix handling of font size.
15329 (Ffont_spec): Add QCname property that contains only unknown properties.
15330
15331 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
15332 include weight in listing pattern, instead check weight of each
15333 listed font. Don't include scalable in pattern. Pay attention to
15334 FONT_PIXEL_SIZE_QUANTUM.
15335
153362008-02-01 Kenichi Handa <handa@m17n.org>
15337
15338 * font.c (font_parse_fcname): Fix parsing of point-size.
15339 (font_unparse_fcname): Produce symbolic names for style properties.
15340 (font_list_entities): Handle float size correctly.
15341 (font_open_by_name): Prefer `normal' property values if the name
15342 doesn't specify them.
15343
15344 * fontset.c (Finternal_char_font): Use font_get_name, not
15345 Ffont_xlfd_name.
15346
15347 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
15348 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
15349 pattern. Don't force scalable.
15350
15351 * xftfont.c (xftfont_open): For generating a name, start from
15352 96-byte buffer.
15353
153542008-02-01 Jan Djärv <jan.h.d@swipnet.se>
15355
15356 * frame.h (x_new_fontset2): Fix prototype.
15357
153582008-02-01 Kenichi Handa <handa@m17n.org>
15359
15360 * font.h (struct font_driver): Delete member parse_name.
15361 (font_match_p, font_get_spec, font_parse_fcname)
15362 (font_unparse_fcname): Extern them.
15363 (font_get_name): Adjust prototype.
15364
15365 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
15366 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
15367 (font_expand_wildcards): Fix handling ENCODING field. Avoid
15368 unnecessary checks for weight, slant, and swidth.
15369 (font_parse_fcname): New function.
15370 (font_unparse_fcname): New function.
15371 (font_parse_name): New function.
15372 (font_match_p): New function.
15373 (font_get_name): Change return value to Lisp string.
15374 (font_get_spec): New function.
15375 (Qunspecified, Qignore_defface): Don't extern them.
15376 (font_find_for_lface): Assume that LFACE is fully specified.
15377 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
15378 object, use it for FACE.
15379 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
15380 driver->parse_name.
15381 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
15382
15383 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
15384 prototype.
15385
15386 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
15387 argument F. Don't call Fnew_fontset. Instead, directly call
15388 make_fontset.
15389
15390 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
15391
15392 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
15393 of x_new_fontset2.
15394
15395 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
15396 (Qsans__serif): New variables.
15397 (ftfont_generic_family_list): New variable.
15398 (syms_of_ftfont): Initialize the above variables.
15399 (ftfont_pattern_entity): Delete argument NAME.
15400 (ftfont_list_generic_family): New function.
15401 (ftfont_parse_name): Delete this function.
15402 (ftfont_list): Try generic family only when FcFontList found no font.
15403 (ftfont_list_family): Fix args to FcObjectSetBuild.
15404
15405 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
15406 object in attrs[LFACE_FONT_INDEX].
15407 (set_lface_from_font_name): Cancel all changes for font-backend.
15408 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
15409 function.
15410 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
15411 font object in QCfont attribute.
15412 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
15413 (realize_default_face) [USE_FONT_BACKEND]: Call
15414 set_lface_from_font_and_fontset.
15415
15416 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
15417 "fixed", and signal error here if no suitable font was found.
15418
15419 * xfont.c (xfont_parse_name): Delete this function.
15420
15421 * xftfont.c (xftfont_open): Change coding style of error
15422 handling. Generate fontconfig's fontname pattern.
15423
15424 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
15425 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
15426
15427 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
15428 Both args FONTSET and FONT_OBJECT must be existing ones.
15429
154302008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15431
15432 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
15433
154342008-02-01 Kenichi Handa <handa@m17n.org>
15435
15436 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
15437
15438 * font.h (struct font): Fix typo.
15439
15440 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
15441 XLFD_XXX_INDEX.
15442 (enum xlfd_field_mask): New enum.
15443 (intern_font_field): Changed argument. Change caller. If digits
15444 are followed by non-digits, return a symbol.
15445 (font_expand_wildcards): New function.
15446 (font_parse_xlfd): Fix wildcard handling.
15447 (Ffont_spec): If :name is specified, reflect the info in the other
15448 properties.
15449
15450 * ftfont.c (ftfont_pattern_entity): Fix typo.
15451 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
15452 locale.
15453
154542008-02-01 Kenichi Handa <handa@m17n.org>
15455
15456 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
15457
15458 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
15459 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
15460 registry doesn't specify encoding part.
15461 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
15462 (font_open_by_name): At first try parsing the name.
15463 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
15464 as Lisp symbols.
15465
15466 * fontset.c (reorder_font_vector): Pay attention to the case that
15467 the 3rd element of font_def is nil.
15468 (fontset_font): For the default fontset, append one more fontset
15469 elements for a script-based font specification. Don't add script
15470 attribute on finding a font.
15471 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
15472 font name.
15473 (fontset_ascii_font): If a font can't be opened, return nil.
15474
15475 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
15476 (ftfont_pattern_entity): New function.
15477 (ftfont_get_cache): Assume that freetype_font_cache is already
15478 initialized.
15479 (ftfont_list): Handle the case that a file is specified in font
15480 name. Use ftfont_pattern_entity to generate entities.
15481 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
15482 (syms_of_ftfont): Initialize freetype_font_cache.
15483
15484 * xftfont.c (xftfont_open): Make the font name fontconfig's
15485 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
15486 (xftfont_close): Free font->font.name if not NULL.
15487
15488 * xfont.c (xfont_list): If script is specified for a font, return
15489 null_vector.
15490 (xfont_list_family): Declare argument type.
15491
15492 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
15493 name, set LFACE_FONT (lface) to nil.
15494
15495 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
15496 return Qnil.
15497
154982008-02-01 Kenichi Handa <handa@m17n.org>
15499
15500 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
15501 (standard_args): Add "-enable-font-backend".
15502
155032008-02-01 Kenichi Handa <handa@m17n.org>
15504
15505 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
15506 (struct xftdraw_list, xftdraw_list): Delete them.
15507 (register_xftdraw, check_xftdraw): Delete them.
15508 (xftfont_prepare_face): Don't call register_xftdraw.
15509 (xftfont_done_face): Don't call check_xftdraw.
15510 (xftfont_draw): Get background color only when with_background is
15511 nonzero.
15512
15513 * xfont.c (xfont_encode_char): Fix calculation of char2b.
15514
155152008-02-01 Kenichi Handa <handa@m17n.org>
15516
15517 These changes are for the new font handling codes.
15518
15519 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
15520 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
15521 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
15522 (FONTSRC, FONTOBJ): New variables.
15523 (obj): Add $(FONTOBJ).
15524 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
15525 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
15526 @LIBOTF_LIBS@.
15527 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
15528 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
15529
15530 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
15531
15532 * character.h (Vscript_representative_chars): Extern it.
15533
15534 * character.c (Vscript_representative_chars): New variable.
15535 (syms_of_character): Declare it as a Lisp variable.
15536
15537 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
15538 enable_font_backend is nonzero, accept the composition method
15539 COMPOSITION_WITH_GLYPH_STRING.
15540
15541 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
15542 enumeration COMPOSITION_WITH_GLYPH_STRING.
15543
15544 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
15545 members clip_x, clip_y, clip_width, and clip_height.
15546 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
15547
15548 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
15549 --enable-font-backend. Call syms_of_font.
15550
15551 * fns.c (assoc_no_quit): New function.
15552
15553 * fontset.h (FONT_INFO_FROM_FACE): New macro.
15554 (face_for_font, new_fontset_from_font)
15555 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
15556
15557 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
15558 (fontset_font, fontset_ascii, face_for_char)
15559 (make_fontset_for_ascii_face, Ffont_info)
15560 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
15561 is nonzero, use font-backend mechanism.
15562 (find_font_encoding): Make it non-static.
15563 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
15564 New functions.
15565
15566 * frame.h (struct frame): New members resx and resy.
15567 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
15568 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
15569
15570 * frame.c [USE_FONT_BACKEND]: Include "font.h".
15571 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
15572
15573 * lisp.h (assoc_no_quit): Extern it.
15574
15575 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
15576 Through out the file, use FONT_INFO_FROM_FACE instead of
15577 FONT_INFO_FROM_ID, use get_per_char_metric instead of
15578 rif->per_char_metric.
15579 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
15580 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
15581 (get_glyph_face_and_encoding, fill_composite_glyph_string)
15582 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
15583 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
15584 nonzero, use font-backend mechanism.
15585 (get_per_char_metric): New function.
15586
15587 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
15588 (set_lface_from_font_name)
15589 (set_font_frame_param, free_realized_face)
15590 (prepare_face_for_display, clear_face_gcs)
15591 (Finternal_set_font_selection_order, realize_x_face)
15592 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
15593 font-backend mechanism.
15594 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
15595 (load_face_font) [USE_FONT_BACKEND]: Abort.
15596 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
15597 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
15598
15599 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
15600 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
15601 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
15602 nonzero, register all available font drivers. Call
15603 x_default_font_parameter for deciding a font.
15604 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
15605
15606 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
15607 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
15608 (x_set_glyph_string_clipping_exactly)
15609 (x_compute_glyph_string_overhangs)
15610 (x_draw_glyph_string_foreground)
15611 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
15612 (x_free_frame_resources) [USE_FONT_BACKEND]: If
15613 enable_font_backend is nonzero, use font-backend mechanism.
15614 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
15615
156162008-02-01 Kenichi Handa <handa@m17n.org>
15617
15618 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
15619 system_eol_type.
15620 (syms_of_coding): Initialize system_eol_type.
15621
15622 * process.c (Fset_process_coding_system): Inherit system's eol
15623 format if necessary.
15624
156252008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15626
15627 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
15628
156292008-02-01 Kenichi Handa <handa@m17n.org>
15630
15631 * coding.c (decode_eol): Pay attention to buffer relocation in
15632 del_range_2.
15633 (decode_coding): Call decode_eol before restoring undo_list.
15634
156352008-02-01 Kenichi Handa <handa@m17n.org>
15636
15637 * charset.c (Fdefine_charset_internal): Fix setting of
15638 emacs_mule_bytes.
15639
156402008-02-01 Kenichi Handa <handa@m17n.org>
15641
15642 * keyboard.c (read_char): Check if C is a character or not before
15643 looking up Vkeyboard_translate_table.
15644
156452008-02-01 Kenichi Handa <handa@m17n.org>
15646
15647 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
15648 condition to terminate the loop.
15649
156502008-02-01 Kenichi Handa <handa@m17n.org>
15651
15652 * coding.c (produce_composition): Compare charbuf[i] instead of
15653 args[i] against 0.
15654 (Fterminal_coding_system): Use EQ to compare Lisp objects.
15655
156562008-02-01 Kenichi Handa <handa@m17n.org>
15657
15658 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
15659 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
15660 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
15661 detect_coding.
15662 (emacs_mule_char): Handle old style (Emacs 20) component character
15663 of a composition.
15664 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
15665 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
15666 composition rule.
15667 (decode_coding_emacs_mule): Handle invalid bytes correctly.
15668
156692008-02-01 Kenichi Handa <handa@m17n.org>
15670
15671 * coding.c (encode_coding_ccl): Allocate destination dynamically
15672 when necessary.
15673
156742008-02-01 Kenichi Handa <handa@m17n.org>
15675
15676 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
15677 the loop. When quitted, show a proper error message.
15678
156792008-02-01 Kenichi Handa <handa@m17n.org>
15680
15681 * xterm.c (x_set_glyph_string_clipping_exactly): Set
15682 src->clip_head and src->clip_tail temporarily instead of src->hl.
15683
15684 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
15685 character sequence.
15686 (Fccl_execute_on_string): Use ASET, not XSET.
15687
156882008-02-01 Kenichi Handa <handa@m17n.org>
15689
15690 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
15691
156922008-02-01 Kenichi Handa <handa@m17n.org>
15693
15694 * coding.c (decode_coding): Fix the condition of terminating the
15695 decoding loop.
15696
156972008-02-01 Kenichi Handa <handa@m17n.org>
15698
15699 * data.c (Faset): On setting a character bigger than 255 in a
15700 unibyte string, signal an error instead of make the string multibyte.
15701
157022008-02-01 Kenichi Handa <handa@m17n.org>
15703
15704 * charset.c (map_charset_chars): Fix for ascii-compatible charset
15705 made by a mapping table.
15706
157072008-02-01 Kenichi Handa <handa@m17n.org>
15708
15709 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
15710 not.
15711 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
15712 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
15713
15714 * xterm.c (x_draw_composite_glyph_string_foreground): Check
15715 s->face is NULL or not.
15716
157172008-02-01 Kenichi Handa <handa@m17n.org>
15718
15719 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
15720 (x_draw_glyph_string): Fix drawing of right_overhang and
15721 left_overhang around/on cursor.
15722
15723 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
15724
157252008-02-01 Kenichi Handa <handa@m17n.org>
15726
15727 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
15728
157292008-02-01 Kenichi Handa <handa@m17n.org>
15730
15731 * coding.c (Fdefine_coding_system_internal)
15732 (Fdefine_coding_system_alias): Avoid a duplicated element in
15733 Vcoding_system_alist.
15734
157352008-02-01 Kenichi Handa <handa@m17n.org>
15736
15737 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
15738
15739 * coding.c (Qcoding_system_define_form): New variable.
15740 (syms_of_coding): Intern and staticpro it.
15741 (Fcoding_system_p): Check Qcoding_system_define_form.
15742 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
15743
15744 * coding.h (CODING_SYSTEM_P): If ID is not available, call
15745 Fcoding_system_p.
15746 (CHECK_CODING_SYSTEM): If ID is not available, call
15747 Fcheck_coding_system.
15748 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
15749 Try also Fcheck_coding_system.
15750
157512008-02-01 Kenichi Handa <handa@m17n.org>
15752
15753 * coding.c (code_conversion_restore): GCPRO arg.
15754
157552008-02-01 Kenichi Handa <handa@m17n.org>
15756
15757 * character.c (lisp_string_width): Check multibyteness of STRING.
15758
157592008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15760
15761 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
15762 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
15763 (decode_mac_font_name): Use decode_coding_c_string instead of
15764 decode_coding.
15765 (x_load_font): Initialize fontp->fontset to -1. Set
15766 fontp->encoding_type.
15767
157682008-02-01 Kenichi Handa <handa@m17n.org>
15769
15770 * search.c (search_buffer): Give up BM search on case-fold-search
15771 if one of a target character has a case-equivalence of different
15772 byte length even if that target charcter is an ASCII.
15773 (simple_search): Fix calculation of byte length of matched text.
15774 (boyer_moore): Fix handling of case-equivalent multibyte characters.
15775
157762008-02-01 Kenichi Handa <handa@m17n.org>
15777
15778 * coding.c (decode_coding): Fix handling of invalid bytes.
15779
157802008-02-01 Kenichi Handa <handa@m17n.org>
15781
15782 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
15783 Unicode characters.
15784
157852008-02-01 Kenichi Handa <handa@m17n.org>
15786
15787 * coding.c (encode_coding_object): If a pre-write-conversion
15788 function makes a new buffer, kill it.
15789
157902008-02-01 Kenichi Handa <handa@m17n.org>
15791
15792 * coding.c (QCascii_compatible_p): New variable.
15793 (syms_of_coding): Initialize it.
15794 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
15795 calling string_char.
15796 (record_conversion_result): Add `default:' case.
15797 (coding_charset_list): Delete unused variable `coding_type'.
15798 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
15799 property in the plist of the coding system.
15800 (Fcoding_system_put): Check QCascii_compatible_p.
15801
158022008-02-01 Miles Bader <miles@gnu.org>
15803
15804 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
15805 removed calculation of frame `f', as it's now used.
15806
158072008-02-01 Kenichi Handa <handa@m17n.org>
15808
15809 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
15810 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
15811 (UNIDATA): New variable.
15812 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
15813 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
15814 $(RUN_TEMACS) unconditionally.
15815
158162008-02-01 Kenichi Handa <handa@m17n.org>
15817
15818 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
15819 (admindir): New variable.
15820 ($(lispsource)international/charprop.el): New target.
15821
158222008-02-01 Miles Bader <miles@gnu.org>
15823
15824 * character.c (chars-in-region): Remove obsolete function.
15825 (syms_of_character): Remove its initialization.
15826
158272008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
15828
15829 * w32select.c (validate_coding_system)
15830 (setup_windows_coding_system): New functions.
15831 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
15832 setup_windows_coding_system.
15833 (setup_config, Fw32_get_clipboard_data): Use
15834 validate_coding_system.
15835 (Fx_selection_exists): Move call to setup_config to a place
15836 where signals are allowed.
15837
15838 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
15839 (Fcheck_coding_system): Add declarations.
15840
158412008-02-01 Kenichi Handa <handa@m17n.org>
15842
15843 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
15844
158452008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15846
15847 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
15848 string as the second argument for x_new_fontset.
15849
158502008-02-01 Kenichi Handa <handa@m17n.org>
15851
15852 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
15853 (encode_coding_object): Use safe_call instead of call2.
15854
158552008-02-01 Kenichi Handa <handa@m17n.org>
15856
15857 * fontset.c (Fset_fontset_font): Check family element of a given vector.
15858
15859 * Makefile.in (lisp): Include charprop.el.
15860
158612008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15862
15863 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
15864 Not sure if it's unnecessary.
15865
158662008-02-01 Steven Tamm <steventamm@mac.com>
15867
15868 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
15869 some possibly unnecessary fontset checking code that crashed
15870 when creating a new frame.
15871
158722008-02-01 Kenichi Handa <handa@m17n.org>
15873
15874 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
15875 lookup_face.
15876
15877 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
15878
15879 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
15880
158812008-02-01 Kenichi Handa <handa@m17n.org>
15882
15883 * coding.c: Cancel the change done in HEAD on 2008-02-01.
15884 (coding_charset_list): New function.
15885
15886 * coding.h (coding_charset_list): Extern it.
15887
158882008-02-01 Kenichi Handa <handa@m17n.org>
15889
15890 * fontset.c (Fset_fontset_font): Call find_font_encoding with
15891 concatenation of family and registry.
15892
158932008-02-01 Kenichi Handa <handa@m17n.org>
15894
15895 * character.h (BYTE8_STRING): Fix typo.
15896
15897 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
15898 string to multibyte (sync to HEAD).
15899
15900 * casefiddle.c (casify_region): Handle changes in byte-length
15901 using replace_range_2 (sync to HEAD).
15902
159032008-02-01 Andreas Schwab <schwab@suse.de>
15904
15905 * chartab.c (map_char_table): GCPRO table and arg.
15906
159072008-02-01 Kenichi Handa <handa@m17n.org>
15908
15909 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
15910 already at limit.
15911
159122008-02-01 Kenichi Handa <handa@m17n.org>
15913
15914 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
15915 instead of fast_c_string_match_ignore_case.
15916 (find_font_encoding): Change argument to Lisp_Object. Use
15917 fast_string_match_ignore_case instead of
15918 fast_c_string_match_ignore_case. Change caller.
15919
159202008-02-01 Kenichi Handa <handa@m17n.org>
15921
15922 * xdisp.c (get_next_display_element): In unibyte case, decide to
15923 display in octal form by checking a character by
15924 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
15925
15926 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
15927
15928 * character.c (unibyte_has_multibyte_table): New variable.
15929
15930 * character.h (unibyte_has_multibyte_table): Extern it.
15931 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
15932
159332008-02-01 Kenichi Handa <handa@m17n.org>
15934
15935 * coding.c (encode_coding_iso_2022): Fix handling of charset
15936 annotation.
15937
159382008-02-01 Kenichi Handa <handa@m17n.org>
15939
15940 * coding.c (setup_coding_system): If coding_system is nil, use
15941 Qundecided.
15942 (Fterminal_coding_system): Return nil if terminal coding system is
15943 `undecided'.
15944 (syms_of_coding): Define coding-system `undecided' here. Setup
15945 terminal_coding as `undecided'.
15946
159472008-02-01 Kenichi Handa <handa@m17n.org>
15948
15949 * xdisp.c (message_dolog, set_message_1): Call
15950 unibyte_char_to_multibyte with arg type int.
15951
15952 * lread.c (read1): Fix reading of a char-table.
15953
15954 * print.c (print_object): Include sub char-table in circularities
15955 detection.
15956
159572008-02-01 Kenichi Handa <handa@m17n.org>
15958
15959 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
15960 Append the found sequences in car of ARGS instead of prepending.
15961
159622008-02-01 Kenichi Handa <handa@m17n.org>
15963
15964 * fileio.c (report_file_error): Make a unibyte string from
15965 strerror (errorno).
15966 (Fsubstitute_in_file_name): Fix the arg to
15967 unibyte_char_to_multibyte. It is evaluated twice.
15968
159692008-02-01 Kenichi Handa <handa@m17n.org>
15970
15971 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
15972
159732008-02-01 Kenichi Handa <handa@m17n.org>
15974
15975 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
15976 BOM is not found.
15977 (detect_coding, detect_coding_system): Optimization for ISO-2022
15978 when no 8-bit data is found.
15979
159802008-02-01 Jason Rumney <jasonr@gnu.org>
15981
15982 * w32fns.c (x_to_w32_font): Update to use new coding struct.
15983
159842008-02-01 Kenichi Handa <handa@m17n.org>
15985
15986 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
15987 CHARS.
15988
159892008-02-01 Steven Tamm <steventamm@mac.com>
15990
15991 * macterm.c (mac_encode_char): Add charset argument and update
15992 to use encoding_type.
15993 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
15994 switch to pure fontset.
15995 (decode_mac_font_name): Temporarily remove decoding.
15996 (x_font_name_to_mac_font_name): Temporarily remove encoding.
15997 (x_load_font): Temporarily remove encoding.
15998
159992008-02-01 Kenichi Handa <handa@m17n.org>
16000
16001 * xfaces.c (Fface_font): If frame is not on a window system,
16002 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
16003 refer to face->font.
16004 (split_font_name_into_vector, build_font_name_from_vector)
16005 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
16006 when HAVE_WINDOW_SYSTEM is defined.
16007
160082008-02-01 Kenichi Handa <handa@m17n.org>
16009
16010 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
16011 (x_produce_glyphs): Fix setting of members of cmp in case
16012 cmp->glyph_len is zero.
16013
16014 * fontset.c (Fset_fontset_font): Fix docstring.
16015 (Ffontset_info): Make it backward compatible. New arg ALL.
16016
160172008-02-01 Kim F. Storm <storm@cua.dk>
16018
16019 * process.c (read_process_output): Grow decoding_buf when needed;
16020 this could cause a crash in allocate_string and compact_small_strings.
16021
160222008-02-01 Kenichi Handa <handa@m17n.org>
16023
16024 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
16025
160262008-02-01 Kenichi Handa <handa@m17n.org>
16027
16028 * coding.c (setup_coding_system): Set coding->common_flags
16029 correctly for raw-text.
16030 (consume_chars): On encoding unibyte text by raw-text, don't check
16031 multibyte form.
16032 (encode_coding): On encoding by raw-text, never use translation tables.
16033
16034 * fileio.c (e_write): Short cut for the case of no encoding.
16035
160362008-02-01 Kenichi Handa <handa@m17n.org>
16037
16038 * coding.c (detect_coding, detect_coding_system): Delete unused
16039 variables.
16040
160412008-02-01 Kenichi Handa <handa@m17n.org>
16042
16043 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
16044 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
16045
160462008-02-01 Kenichi Handa <handa@m17n.org>
16047
16048 * coding.c (Ffind_coding_systems_region_internal): Include
16049 raw-text and no-conversion in the result.
16050
160512008-02-01 Kenichi Handa <handa@m17n.org>
16052
16053 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
16054 (load_font_get_repertory): Delete unnecessary check of ENCODING of
16055 FONT_DEF.
16056 (font_def_arg, add_arg, from_arg, to_arg): New args.
16057 (set_fontset_font): Change argument.
16058 (Fset_fontset_font): Fix for the case that TARGET is a script
16059 name and charset name.
16060 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
16061
160622008-02-01 Kenichi Handa <handa@m17n.org>
16063
16064 * fontset.c (fontset_font): Rename from fontset_face. Change return
16065 value.
16066 (face_suitable_for_char_p, face_for_char): Adjust for the change
16067 of fontset_font.
16068 (make_fontset_for_ascii_face): Fix setting of the fontset element
16069 for ASCII.
16070 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
16071 to get a font name.
16072 (Ffontset_info): Adjust for the change of fontset_font.
16073
16074 * coding.c (emacs_mule_char): Check invalid code more rigidly.
16075
16076 * character.h (LEADING_CODE_LATIN_1_MIN)
16077 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
16078
160792008-02-01 Kenichi Handa <handa@m17n.org>
16080
16081 * editfns.c (check_translation): New function.
16082 (Ftranslate_region_internal): Handle M:N mapping.
16083
160842008-02-01 Kenichi Handa <handa@m17n.org>
16085
16086 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
16087
160882008-02-01 Kenichi Handa <handa@m17n.org>
16089
16090 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
16091 goto invalid_code.
16092 (decode_coding_iso_2022): Fix handling of invalid designation.
16093
16094 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
16095 after calling code_conversion_save.
16096
160972008-02-01 Kenichi Handa <handa@m17n.org>
16098
16099 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
16100
16101 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
16102
16103 * fontset.c: Include "intervals.h".
16104 (fontset_face): Fix comparing of Lisp_Objects.
16105 (free_face_fontset, new_fontset_from_font_name): Fix
16106 Lisp_Object/int mixup.
16107
16108 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
16109
16110 * coding.c: Add many prototypes for static functions.
16111 (get_translation_table): Allow max_lookup to be NULL.
16112 (decode_coding, Ffind_coding_systems_region_internal)
16113 (Funencodable_char_position, Fcheck_coding_systems_region): Call
16114 get_translation_table with max_lookup NULL.
16115
161162008-02-01 Kenichi Handa <handa@m17n.org>
16117
16118 * coding.c (get_translation_table): Declare it as Lisp_Object.
16119 (LOOKUP_TRANSLATION_TABLE): New macro.
16120 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
16121 instead of CHAR_TABLE_REF.
16122
161232008-02-01 Kenichi Handa <handa@m17n.org>
16124
16125 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
16126 annotation data format.
16127 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
16128 Change arguments FROM and TO to single argument NCHARS. Change caller.
16129 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
16130 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
16131 (decode_coding_ccl, decode_coding_charset): Pay attention to
16132 coding->charbuf_used.
16133 (get_translation): New function.
16134 (produce_chars): New arguments translation_table and last_block.
16135 Translate characters here. Return number of carryover chars.
16136 Change caller.
16137 (produce_composition): New argument pos. Change caller.
16138 Adjust for the change of annotation data format.
16139 (produce_charset, produce_annotation): Likewise.
16140 (decode_coding, encode_coding): Don't call translate_chars.
16141 (consume_chars): New arg translation_table. Change caller.
16142 (translate_chars): Delete.
16143 (syms_of_coding): Make translation-table's number of extra slots 2.
16144
161452008-02-01 Kenichi Handa <handa@m17n.org>
16146
16147 * search.c (simple_search): Fix setting this_pos_byte in backward
16148 search.
16149
16150 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
16151 byte sequence.
16152 (detect_coding_ccl): Fix setting of the variable valids.
16153
161542008-02-01 Kenichi Handa <handa@m17n.org>
16155
16156 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
16157
16158 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
16159
16160 * editfns.c (Ftranslate_region_internal): Rename from
16161 Ftranslate_region. Accept a char-table in TABLE.
16162 (syms_of_editfns): Defsubr Stranslate_region_internal.
16163
16164 * xfaces.c (set_lface_from_font_name): If a font is specified for
16165 a frame, generate a fontset from the font.
16166 (build_scalable_font_name): If the scalable font is requested for
16167 a specific size, don't change that size.
16168 (try_font_list): Try a scalable font also in the case that a
16169 pattern string is specified.
16170
161712008-02-01 Kenichi Handa <handa@m17n.org>
16172
16173 * xfaces.c (Fface_font): New optional arg CHARACTER.
16174
161752008-02-01 Kenichi Handa <handa@m17n.org>
16176
16177 * charset.h (CHARSET_OFFSET): New macro.
16178
161792008-02-01 Kenichi Handa <handa@m17n.org>
16180
16181 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
16182
16183 * fontset.c (fontset_face): Handle the case that repertory is a
16184 char-table.
16185 (find_font_encoding): Return nil for unknown encoding.
16186 (Fset_fontset_font): Ignore a font of unknown encoding.
16187
161882008-02-01 Kenichi Handa <handa@m17n.org>
16189
16190 * keymap.c (describe_vector): Handle default value of a char table.
16191
16192 * fontset.c (fontset_face): Handle fallback fonts correctly.
16193 (Ffontset_info): Return infomation about fallback fonts.
16194
161952008-02-01 Kenichi Handa <handa@m17n.org>
16196
16197 * fontset.c (FONTSET_DEFAULT): New macro.
16198 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
16199 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
16200 the case that it is nil.
16201 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
16202 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
16203
16204 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
16205 subset or superset.
16206
162072008-02-01 Kenichi Handa <handa@m17n.org>
16208
16209 * emacs.c (main): Call init_charset after syms_of_XXX.
16210
16211 * charset.c (Vcharset_map_directory): Delete.
16212 (Vcharset_map_path): New variable.
16213 (load_charset_map_from_file): Use Vcharset_map_path instead.
16214 (init_charset): Initialize Vcharset_map_path.
16215 (syms_of_charset): Delete declaration of "charset-map-directory",
16216 add declaration of "charset-map-path".
16217
162182008-02-01 Kenichi Handa <handa@m17n.org>
16219
16220 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
16221 ASCII only string.
16222
16223 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
16224
16225 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
16226 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
16227
162282008-02-01 Kenichi Handa <handa@m17n.org>
16229
16230 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
16231
16232 * coding.c (QCmnemonic, QCdefalut_char)
16233 (QCdecode_translation_table, QCencode_translation_table)
16234 (QCpost_read_conversion, QCpre_write_conversion): New variables.
16235 (get_translation_table): Return a list of translation tables if
16236 necessary.
16237 (decode_coding): Call get_translation_table with ENCODEP 0.
16238 (char_encodable_p): If translation_table is non-nil, always call
16239 translate_char.
16240 (Fdefine_coding_system_internal): Accept list of translation
16241 tables as :encode-translation-table and :decode-translation-table.
16242 (Fcoding_system_put): New function.
16243 (syms_of_coding): Declare new symbols. Defsubr
16244 Scoding_system_put.
16245 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
16246 typically JISX0212.
16247
16248 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
16249 when the charset is superset type.
16250
16251 * character.c (translate_char): Accept list of translation tables.
16252
162532008-02-01 Kenichi Handa <handa@m17n.org>
16254
16255 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
16256 (CODING_ATTR_TRANS_TBL): New macro.
16257
16258 * coding.c (get_translation_table): New function.
16259 (translate_chars): Fix the bug of skipping annotation data.
16260 (decode_coding, encode_coding): Utilize get_translation_table.
16261 (char_encodable_p, Funencodable_char_position): Translate char if
16262 necessary.
16263 (Ffind_coding_systems_region_internal)
16264 (Fcheck_coding_systems_region): Setup translation table for encode
16265 in a coding system attribute vector in advance.
16266 (Fdefine_coding_system_internal): Allow a symbol as translation
16267 table. For shift-jis type coding system, allow 4th charset.
16268
162692008-02-01 Kenichi Handa <handa@m17n.org>
16270
16271 * coding.c (decode_coding_sjis): Check the first byte rigidly.
16272
16273 * xdisp.c (get_next_display_element): Pass -1 as POS to
16274 FACE_FOR_CHAR if displaying a C-string.
16275
162762008-02-01 Kenichi Handa <handa@m17n.org>
16277
16278 * composite.c (get_composition_id): Handle xoff and yoff in a
16279 composition rule.
16280
16281 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
16282 (struct composition): New member lbearing and rbearing.
16283
16284 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
16285 (x_get_glyph_overhangs): Handle a composition glyph.
16286 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
16287
16288 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
16289 composition glyph.
16290
162912008-02-01 Kenichi Handa <handa@m17n.org>
16292
16293 * print.c: Include charset.h.
16294 (Vprint_charset_text_property): New variable.
16295 (Qdefault): Extern it.
16296 (PRINT_STRING_NON_CHARSET_FOUND)
16297 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
16298 (print_check_string_result): New variable.
16299 (print_check_string_charset_prop): New function.
16300 (print_prune_charset_plist): New variable.
16301 (print_prune_string_charset): New function.
16302 (print_object): Call print_prune_string_charset if
16303 Vprint_charset_text_property is not t.
16304 (print_interval): Print nothing if interval->plist is nil.
16305 (syms_of_print): Declare Vprint_charset_text_property as a lisp
16306 variable. Init and staticpro print_prune_charset_plist.
16307
163082008-02-01 Kenichi Handa <handa@m17n.org>
16309
16310 * fontset.c (new_fontset_from_font_name): Use the specified font
16311 for all characters in the new fontset.
16312
16313 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
16314 OBJECT args.
16315
16316 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
16317 OBJECT args for composition too.
16318
16319 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
16320 OBJECT args.
16321
163222008-02-01 Kenichi Handa <handa@m17n.org>
16323
16324 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
16325
16326 * fontset.c (reorder_font_vector): Adjust for the change of
16327 FONT_DEF format.
16328 (fontset_face): New arg id. Change caller.
16329 (face_for_char): New args pos and object.
16330 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
16331 (fs_query_fontset): Check NAME by Fassoc too.
16332 (Fset_fontset_font): Allow non-XLFD font name.
16333 (Ffontset_info): Adjust for the change of FONT_DEF format.
16334
16335 * fontset.h (face_for_char): Adjust prototype.
16336
16337 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
16338 (append_space, extend_face_to_end_of_line)
16339 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
16340 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
16341
16342 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
16343 POS and OBJECT args.
16344
16345 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
16346 POS and OBJECT args.
16347
163482008-02-01 Jason Rumney <jasonr@gnu.org>
16349
16350 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
16351 of GlobalAlloc'ed memory.
16352
163532008-02-01 Kenichi Handa <handa@m17n.org>
16354
16355 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
16356
16357 * charset.h (charset_table_used): Delete extern.
16358
16359 * charset.c (charset_table_used): Make it static.
16360 (map_charset_chars): Fix args to c_function with.
16361
16362 * chartab.c (map_sub_char_table_for_charset): Fix args to
16363 c_function with.
16364
16365 * coding.h (enum coding_result_code): Delete
16366 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
16367
16368 * coding.c (Qinsufficient_source, Qinconsistent_eol)
16369 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
16370 (Vlast_code_conversion_error): New variables.
16371 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
16372 (ONE_MORE_BYTE): Record error if any instead of signaling an
16373 error. If non-ASCII multibyte char is found, return the negative
16374 value of the code. All callers changed to check it.
16375 (ONE_MORE_BYTE_NO_CHECK): Likewise.
16376 (record_conversion_result): New function. Change all codes setting
16377 coding->result to call this function.
16378 (detect_coding_utf_8, decode_coding_utf_8)
16379 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
16380 Don't use the local variable incomplete.
16381 (emacs_mule_char): Change the second arg to `const'.
16382 (decode_coding): Fix of flushing out unprocessed data.
16383 (make_conversion_work_buffer): Fix making of a work buffer.
16384 (decode_coding_object): Return coding->dst_object.
16385
16386 * fontset.c (set_fontset_font): Fix args.
16387
16388 * lisp.h (CHARACTERBITS): Define as 22.
16389
16390 * process.c (send_process): Be sure to set coding->src_multibyte.
16391
16392 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
16393
163942008-02-01 Kenichi Handa <handa@m17n.org>
16395
16396 * xdisp.c (handle_auto_composed_prop): Give limit to
16397 Fnext_single_char_property_change.
16398
163992008-02-01 Kenichi Handa <handa@m17n.org>
16400
16401 * composite.c (syms_of_composite): Don't make the composition hash
16402 table weak.
16403
16404 * fontset.c (Fset_fontset_font): Fix docstring.
16405
16406 * lisp.h (detect_coding_system): Adjust prototype.
16407
16408 * fileio.c (kill_workbuf_unwind): Delete this function.
16409 (Finsert_file_contents): Adjust the call of detect_coding_system.
16410 Get conversion_buffer by code_conversion_save. Use the macro
16411 CODING_MAY_REQUIRE_DECODING. After decoding, update
16412 coding_system.
16413
16414 * coding.h (make_conversion_work_buffer): Delete extern.
16415 (code_conversion_save): Extern it.
16416
16417 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
16418 (CODING_GET_INFO): Delete argument eol_type. Change callers.
16419 (decode_coding_utf_8): Don't do eol converion.
16420 (detect_coding_utf_16): Check coding->src_chars, not
16421 coding->src_bytes. Add heuristics for those that have no signature.
16422 (decode_coding_emacs_mule, decode_coding_iso_2022)
16423 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
16424 Don't do eol converion.
16425 (adjust_coding_eol_type): Return a new coding system.
16426 (detect_coding): Don't detect eol. Fix for utf-16 detection.
16427 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
16428 each change.
16429 (decode_coding): Pay attention to undo_list. Do eol conversion for
16430 all types of coding-systems (if necessary).
16431 (Vcode_conversion_work_buf_list): Delete it.
16432 (Vcode_conversion_reused_workbuf): Rename from
16433 Vcode_conversion_reused_work_buf.
16434 (Vcode_conversion_workbuf_name): New variable.
16435 (reused_workbuf_in_use): New variable.
16436 (make_conversion_work_buffer): Delete the arg DEPTH.
16437 (code_conversion_restore): Change argument to cons.
16438 (code_conversion_save): Delete the argument BUFFER. Change callers.
16439 (detect_coding_system): New argument src_chars. Change callers.
16440 Fix for utf-16 detection.
16441 (init_coding_once): Don't use ISO_carriage_return.
16442 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
16443 reused_workbuf_in_use.
16444
164452008-02-01 Kenichi Handa <handa@m17n.org>
16446
16447 * keymap.c (store_in_keymap): Pay attention to the case that idx
16448 is a cons specifying a character range.
16449
164502008-02-01 Kenichi Handa <handa@m17n.org>
16451
16452 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
16453 HANDLED_RECOMPUTE_PROPS.
16454
16455 * coding.c (Fdefine_coding_system_internal): Fix checking of
16456 ascii compatibility.
16457
164582008-02-01 Kenichi Handa <handa@m17n.org>
16459
16460 * charset.c (find_charsets_in_text): Delete unused locale variable.
16461 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
16462
16463 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
16464 Resync charset_list to Vemacs_mule_charset_list.
16465
16466 * keymap.c (store_in_keymap): Pay attention to the case that idx
16467 is a cons specifying a character range.
16468
164692008-02-01 Kenichi Handa <handa@m17n.org>
16470
16471 * composite.c (update_compositions): Bind inhibit-read-only, etc
16472 to t before calling remove-list-of-text-properties.
16473
16474 * print.c (print_object): Always print ASCII chars as is.
16475
164762008-02-01 Kenichi Handa <handa@m17n.org>
16477
16478 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
16479
16480 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
16481 is a char table.
16482
164832008-02-01 Kenichi Handa <handa@m17n.org>
16484
16485 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
16486
164872008-02-01 Kenichi Handa <handa@m17n.org>
16488
16489 * xfaces.c (set_lface_from_font_name): Fix for the case that
16490 FONTNAME is not fontset name.
16491
164922008-02-01 Kenichi Handa <handa@m17n.org>
16493
16494 * fns.c (base64_encode_1): Fix previous change.
16495
164962008-02-01 Kenichi Handa <handa@m17n.org>
16497
16498 * fontset.c (set_fontset_font): New function.
16499 (Fset_fontset_font): If a font is specified for a charset, use
16500 map_charset_chars to store the font spec in a fontset.
16501
165022008-02-01 Kenichi Handa <handa@m17n.org>
16503
16504 * fontset.c (fontset_face): Create a fallback fontset on demand.
16505 (make_fontset): Don't create a fallback fontset here.
16506 (free_face_fontset): Free a fallback fontset (if any) too.
16507 (n_auto_fontsets): Delete this variable.
16508 (auto_fontset_alist): New variable.
16509 (new_fontset_from_font_name): Check auto_fontset_alist.
16510 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
16511 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
16512 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
16513 Defsubr Sfontset_list_all.
16514
165152008-02-01 Kenichi Handa <handa@m17n.org>
16516
16517 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
16518
165192008-02-01 Kenichi Handa <handa@m17n.org>
16520
16521 * fontset.c (Fnew_fontset): Check NAME more rigidly.
16522
165232008-02-01 Kenichi Handa <handa@m17n.org>
16524
16525 * editfns.c (Fgoto_char): Fix docstring.
16526
165272008-02-01 Kenichi Handa <handa@m17n.org>
16528
16529 * insdel.c (insert_from_gap): Adjust intervals correctly.
16530
165312008-02-01 Jason Rumney <jasonr@gnu.org>
16532
16533 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
16534 (pfnGetFontUnicodeRanges): New dynamically loaded function.
16535 (w32_initialize): Try to load it.
16536 (x_get_font_repertory): Use it if available.
16537 (w32_encode_char): Add shortcut for unicode output.
16538
16539 * w32fns.c (w32_load_system_font): Default charset to -1.
16540 (x_to_w32_charset): Match all fonts for unicode.
16541 (w32_to_x_charset): New parameter matching. Don't return partial
16542 or wildcard charsets.
16543 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
16544 (w32_codepage_for_font): Return CP_UNICODE for unicode.
16545 (w32_to_x_font): Match charset to real charset.
16546 (enum_font_cb2): Always list unicode versions.
16547
16548 * makefile.w32-in (temacs): Increase EMHEAP.
16549
165502008-02-01 Jason Rumney <jasonr@gnu.org>
16551
16552 * w32term.c (w32_encode_char): New charset parameter.
16553 font_info.encoding becomes encoding_type.
16554 (x_get_font_repertory): New function. Warning: stub only!
16555 (x_new_font): Return quickly if font already set.
16556 (x_new_fontset): fontsetname parameter is Lisp_Object.
16557 Use new fs_query_fontset. Try new_fontset_from_font_name.
16558 Use fontset_name for return value.
16559
16560 * w32term.h: Declare x_get_font_repertory.
16561
16562 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
16563 place of find_charset_in_text. Use encode_coding_object in place
16564 of encode_coding.
16565 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
16566 decode_coding.
16567
16568 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
16569 of x_new_fontset.
16570 (w32_load_system_font): Initialize charset as unicode.
16571 font_info.encoding becomes encoding_type.
16572 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
16573 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
16574 (syms_of_w32fns): Set get_font_repertory_func.
16575
16576 * w32console.c: Include character.h. Use terminal_encode_buffer
16577 from term.c.
16578 (write_glyphs): Use new version of encode_terminal_code. Use
16579 encode_coding_object in place of encode_coding.
16580
16581 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
16582 encoding becomes encoding_type.
16583
16584 * term.c (terminal_encode_buffer): Make externally visible.
16585
16586 * makefile.w32-in: Add character.h dependancies.
16587 (character.o, chartab.o): New targets.
16588
165892008-02-01 Kenichi Handa <handa@m17n.org>
16590
16591 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
16592 CODING_ID_EOL_TYPE.
16593
165942008-02-01 Andreas Schwab <schwab@suse.de>
16595
16596 * coding.c (produce_chars): Revert last change.
16597
165982008-02-01 Kenichi Handa <handa@m17n.org>
16599
16600 * charset.h (charset_unicode): Extern it.
16601
16602 * charset.c (string_xstring_p): Check by (C >= 0x100).
16603 (find_charsets_in_text): Change format of the arc CHARSETS. New
16604 arg MULTIBYTE.
16605 (Ffind_charset_region, Ffind_charset_string): Adjust for the
16606 change of find_charsets_in_text.
16607 (Fsplit_char): Fix doc. Never return unknown.
16608
16609 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
16610
16611 * coding.c (Fdefine_coding_system_alias): Update
16612 Vcoding_system_list.
16613
16614 * fontset.c (load_font_get_repertory): Pay attention to the case
16615 that ENCODING of a font is specified by a char-table.
16616
16617 * xterm.c (x_get_font_repertory): Handle the case that the
16618 encoding of font is other than Unicode.
16619
166202008-02-01 Kenichi Handa <handa@m17n.org>
16621
16622 * term.c (encode_terminal_code): Don't handle glyph-table. Check
16623 if a character is encodable by the terminal coding system. If
16624 not, produces proper number of `?'s. Update
16625 terminal_encode_buffer and terminal_encode_buf_size if necessary.
16626 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
16627
166282008-02-01 Kenichi Handa <handa@m17n.org>
16629
16630 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
16631 variables.
16632 (encode_terminal_code): Change argument. Encode multiple
16633 characters at once. Store the result of encoding in
16634 terminal_encode_buffer.
16635 (write_glyphs, insert_glyphs): Adjust for the change of
16636 encode_terminal_code.
16637 (term_init): Initialize terminal_encode_buffer and
16638 terminal_encode_buf_size.
16639
16640 * coding.c (consume_chars): If coding->src_object is nil, don't
16641 check annotation.
16642
166432008-02-01 Kenichi Handa <handa@m17n.org>
16644
16645 * character.c (char_string): Use ASCII_CHAR_P instead of
16646 SINGLE_BYTE_CHAR_P.
16647
166482008-02-01 Kenichi Handa <handa@m17n.org>
16649
16650 * xdisp.c (handle_auto_composed_prop): Check if the last
16651 characters of auto-composed region is newly composed with the
16652 following characters.
16653 (handle_composition_prop): Fix checking of point being inside
16654 composition.
16655
166562008-02-01 Kenichi Handa <handa@m17n.org>
16657
16658 * fns.c (concat): Don't change multibyteness of the result by
16659 concatenating an 8-bit character.
16660
16661 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
16662 multibyteness of the result when newelt is an 8-bit character.
16663
166642008-02-01 Dave Love <fx@gnu.org>
16665
16666 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
16667 EMACS_INT.
16668
16669 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
16670
16671 * xfaces.c (face_numeric_value): Declare dim size_t.
16672 (Finternal_lisp_face_equal_p): Remove unused f.
16673
16674 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
16675 (MATRIX_ROW): Remove unused vars.
16676 (draw_glyphs, x_insert_glyphs, fast_find_position)
16677 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
16678 byte/char counts.
16679
16680 * regex.c (regex_compile): Remove unused var.
16681
16682 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
16683
16684 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
16685 (Faccessible_keymaps, where_is_internal): Remove unused vars.
16686
16687 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
16688
16689 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
16690
16691 * fileio.c (Fwrite_region): Remove unused var.
16692
16693 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
16694 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
16695
16696 * composite.c (Fremove_list_of_text_properties): Declare.
16697
16698 * coding.c (inhibit_pre_post_conversion): Remove (unused).
16699 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
16700 (coding_inherit_eol_type): Remove unused attrs.
16701 (detect_coding): Cast arg of detect_eol.
16702
16703 * charset.c (syms_of_charset): Remove unused var p.
16704 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
16705 byte/char counts.
16706
16707 * casetab.c (set_case_table): Remove unused var.
16708
16709 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
16710 unused vars.
16711
167122008-02-01 Dave Love <fx@gnu.org>
16713
16714 * xterm.c (x_bitmap_mask): Declare.
16715
167162008-02-01 Dave Love <fx@gnu.org>
16717
16718 * xterm.c (x_term_init): Fix type error.
16719
16720 * lisp.h: Add Funibyte_char_to_multibyte.
16721
16722 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
16723 (Fset_coding_system_priority): Doc fix.
16724
16725 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
16726
16727 * indent.c (check_composition): Make start and end EMACS_INT.
16728
16729 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
16730
16731 * xdisp.c (handle_composition_prop, check_point_in_composition):
16732 Make buffer positions EMACS_INT.
16733
16734 * composite.c (find_composition, run_composition_function)
16735 (update_compositions, Ffind_composition_internal): Make buffer
16736 positions EMACS_INT.
16737
16738 * composite.h (find_composition, update_compositions): Make
16739 position args EMACS_INT.
16740
16741 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
16742
16743 * intervals.c (get_property_and_range):
16744 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
16745
16746 * unexalpha.c: Don't include varargs.h.
16747
167482008-02-01 Dave Love <fx@gnu.org>
16749
16750 * coding.h (ENCODE_UTF_8): New.
16751
16752 * Makefile.in (gtkutil.o): Depend on coding.h.
16753
16754 * coding.c (Fset_coding_system_priority): Doc fix.
16755
167562008-02-01 Kenichi Handa <handa@m17n.org>
16757
16758 * fileio.c (Finsert_file_contents): Call setup_coding_system in
16759 the case of auto saving.
16760
167612008-02-01 Andreas Schwab <schwab@suse.de>
16762
16763 * chartab.c (map_char_table, map_char_table_for_charset): Protect
16764 `range' from GC.
16765
167662008-02-01 Kenichi Handa <handa@m17n.org>
16767
16768 * coding.c (decode_coding_sjis): Check bytes more rigidly.
16769
167702008-02-01 Kenichi Handa <handa@m17n.org>
16771
16772 * fileio.c (choose_write_coding_system): Return a decided coding system.
16773 (Fwrite_region): Set Vlast_coding_system_used to the return value
16774 of choose_write_coding_system.
16775
167762008-02-01 Kenichi Handa <handa@m17n.org>
16777
16778 * charset.c (Fset_charset_priority): Pay attention to duplicated
16779 arguments.
16780
16781 * coding.c (QCcategory): New variable.
16782 (syms_of_coding): Defsym it. Set all elements of
16783 Vcoding_category_table and their symbol values.
16784 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
16785 coding-category-XXX, and coding-category-list.
16786 (Fdefine_coding_system_internal): Add category in the plist.
16787
167882008-02-01 Kenichi Handa <handa@m17n.org>
16789
16790 * callproc.c (Fcall_process): Handle carryover correctly.
16791
16792 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
16793 (raw_text_coding_system): Check NILP (coding_system).
16794 (coding_inherit_eol_type): Check NILP (coding_system) and
16795 NILP (parent).
16796 (consume_chars): Fix for the case of raw-text.
16797
16798 * process.c (read_process_output): Handle carryover correctly.
16799
168002008-02-01 Dave Love <fx@gnu.org>
16801
16802 * regex.c (re_search_2): Fix last change.
16803
168042008-02-01 Kenichi Handa <handa@m17n.org>
16805
16806 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
16807 target_multibyte. Even in a unibyte case, return a converted
16808 multibyte char.
16809 (GET_CHAR_AFTER): New macro.
16810 (PATFETCH): Translate via multibyte char.
16811 (HANDLE_UNIBYTE_RANGE): Delete this macro.
16812 (SETUP_MULTIBYTE_RANGE): New macro.
16813 (regex_compile): Setup compiled code so that its multibyteness
16814 matches that of a target. Fix the handling of "[X-YZ]" using
16815 SETUP_MULTIBYTE_RANGE.
16816 (analyse_first) <charset>: For filling fastmap for all multibyte
16817 characters, don't check by BASE_LEADING_CODE_P.
16818 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
16819 the same as RE_MULTIBYTE_P (bufp) now.
16820 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
16821 (TARGET_CHAR_AND_LENGTH): Delete this macro.
16822 (TRANSLATE_VIA_MULTIBYTE): New macro.
16823 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
16824 It is the same as RE_MULTIBYTE_P (bufp) now.
16825 <exactn>: Translate via multibyte.
16826 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
16827 translate it.
16828 <charset, charset_not>: Fetch a character by
16829 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
16830 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
16831 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
16832 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
16833 by GET_CHAR_AFTER.
16834 (bcmp_translate): Likewise.
16835
16836 * search.c (compile_pattern): Check the member target_multibyte,
16837 not the member multibyte of buf.
16838
16839 * lread.c (read1): While reading a string, set force_singlebyte
16840 and force_multibyte correctly.
16841
16842 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
16843 up of unibyte_to_multibyte_table.
16844
168452008-02-01 Kenichi Handa <handa@m17n.org>
16846
16847 * coding.c (setup_coding_system): If coding has
16848 post-read-conversion or pre-write-conversion, set
16849 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
16850 respectively.
16851 (decode_coding_gap): Run post-read-conversion if any.
16852
16853 * fileio.c (Finsert_file_contents): Even if we read into a
16854 unibyte buffer, check if we must decode the result or not.
16855
168562008-02-01 Kenichi Handa <handa@m17n.org>
16857
16858 * coding.c (make_conversion_work_buffer): Change the work buffer
16859 name to the same one as that of Emacs 21.
16860
168612008-02-01 Kenichi Handa <handa@m17n.org>
16862
16863 * coding.h (make_conversion_work_buffer): Adjust prototype.
16864 (code_conversion_restore): Don't extern it.
16865
16866 * coding.c (detected_mask): Delete unused variable.
16867 (decode_coding_iso_2022): Pay attention to the byte sequence of
16868 CTEXT extended segment, and retain those bytes as is.
16869 (decode_coding_ccl): Delete unused variable `valids'.
16870 (setup_coding_system): Delete unused variable `category'.
16871 (consume_chars): Delete unused variable `category'. Make it work
16872 for non-multibyte case.
16873 (make_conversion_work_buffer): Change argument.
16874 (saved_coding): Delete unused variable.
16875 (code_conversion_restore): Don't check saved_coding->destination.
16876 (code_conversion_save): New function.
16877 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
16878 instead of record_unwind_protect.
16879 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
16880 (detect_coding_system): Delete unused variable `mask'.
16881 (Fdefine_coding_system_internal): Delete unused variable id.
16882
16883 * fileio.c (kill_workbuf_unwind): New function.
16884 (Finsert_file_contents): On replacing, call
16885 make_conversion_work_buffer with correct args, and call
16886 record_unwind_protect with the first arg kill_workbuf_unwind.
16887
16888 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
16889
168902008-02-01 Kenichi Handa <handa@m17n.org>
16891
16892 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
16893 (fontset_add): Fix for the case that TO is less than TO1.
16894 (Ffontset_info): Don't use fallback fontset on checking the
16895 default fontset.
16896 (dump_fontset): New function for debugging.
16897
16898 * coding.c (Fdefine_coding_system_internal): Fix for the case that
16899 coding_type is Qcharset.
16900
169012008-02-01 Kenichi Handa <handa@m17n.org>
16902
16903 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
16904 (map_char_table): Don't inherit the value from the parent on
16905 initializing VAL. Adjust for the above change.
16906
169072008-02-01 Kenichi Handa <handa@m17n.org>
16908
16909 * coding.c (Qsignature, Qendian): Delete these variables.
16910 (syms_of_coding): Don't initialize them.
16911 (CATEGORY_MASK_UTF_16_AUTO): New macro.
16912 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
16913 detect_info->found.
16914 (decode_coding_utf_16): Don't detect BOM here.
16915 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
16916 is NOT utf_16_without_bom.
16917 (setup_coding_system): For a coding system of type utf-16, check
16918 if the attribute :endian is Qbig or not (not nil or not), and set
16919 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
16920 (detect_coding): If coding type is utf-16 and BOM detection is
16921 required, detect it.
16922 (Fdefine_coding_system_internal): For a coding system of type
16923 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
16924
169252008-02-01 Kenichi Handa <handa@m17n.org>
16926
16927 * coding.c (coding_set_source): Fix for the case that the current
16928 buffer is different from coding->src_object.
16929 (decode_coding_object): Don't use the conversion work buffer if
16930 DST_OBJECT is a buffer.
16931
169322008-02-01 Dave Love <fx@gnu.org>
16933
16934 * lread.c (read_emacs_mule_char) [len==2]: Index
16935 emacs_mule_charset correctly.
16936
169372008-02-01 Dave Love <fx@gnu.org>
16938
16939 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
16940 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
16941 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
16942 treated specially.)
16943 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
16944 (detected_mask): Remove Big5 bits.
16945
169462008-02-01 Kenichi Handa <handa@m17n.org>
16947
16948 The following changes are to make the font rescaling facility
16949 compatible with Emacs 21.
16950
16951 * xfaces.c (Vface_font_rescale_alist): Rename from
16952 Vface_resizing_fonts.
16953 (struct font_name): Rename member resizing_ratio to rescale_ratio.
16954 (font_rescale_ratio): Rename from font_resizing_ratio.
16955 (split_font_name): Set font->rescale_ratio.
16956 (better_font_p): Pay attention to font->rescale_ratio.
16957 (build_scalable_font_name): Likewise. Change RESX, and RESY
16958 fields.
16959 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
16960
169612008-02-01 Kenichi Handa <handa@m17n.org>
16962
16963 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
16964 (Qutf_16_le): Remove these variables.
16965 (syms_of_coding): Don't DEFSYM them.
16966 (decode_coding_utf_16): Fix handling of BOM.
16967 (encode_coding_utf_16): Fix handling of BOM.
16968
169692008-02-01 Kenichi Handa <handa@m17n.org>
16970
16971 * fileio.c (Finsert_file_contents): On replacing, before decoding
16972 the file into the work buffer, set point of the work buffer to the end.
16973
169742008-02-01 Dave Love <fx@gnu.org>
16975
16976 * coding.c (Fcheck_coding_systems_region): Fix type errors.
16977
169782008-02-01 Dave Love <fx@gnu.org>
16979
16980 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
16981 and fix C types.
16982
169832008-02-01 Kenichi Handa <handa@m17n.org>
16984
16985 * xdisp.c (SKIP_GLYPHS): New macro.
16986 (set_cursor_from_row): Pay attention to string display properties.
16987
16988 * category.c (copy_category_entry): Fix for the case that RANGE
16989 is an integer.
16990
16991 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
16992
16993 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
16994
169952008-02-01 Kenichi Handa <handa@m17n.org>
16996
16997 * charset.c (Fcharset_id_internal): New function.
16998 (syms_of_charset): Defsubr it.
16999
17000 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
17001 with the last arg charset_list acquired from coding.
17002 (Fdefine_coding_system_internal): For ccl-based coding system, fix
17003 the attribute coding_attr_ccl_valids.
17004
17005 * coding.h (enum define_coding_ccl_arg_index): Set the first
17006 member coding_arg_ccl_decoder to coding_arg_max.
17007
17008 * ccl.h (ccl_driver): Adjust prototype.
17009
17010 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
17011 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
60612c8f 17012 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
aac0c6e3
MR
17013 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
17014 last arg Qnil.
17015
170162008-02-01 Kenichi Handa <handa@m17n.org>
17017
17018 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
17019 call encode_char.
17020
17021 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
17022
170232008-02-01 Dave Love <fx@gnu.org>
17024
17025 * composite.c (syms_of_composite): Make composition_hash_table weak.
17026
170272008-02-01 Kenichi Handa <handa@m17n.org>
17028
17029 * dispextern.h (check_face_attributes, generate_ascii_font_name)
17030 (font_name_registry): Don't extern them.
17031 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
17032
17033 * fontset.h (Qfontset): Don't extern it.
17034 (new_fontset_from_font_name): Extern it.
17035
17036 * fontset.c: Give 8 extra slots to fontset objects.
17037 (Qfontset_info): New variable.
17038 (syms_of_fontset): Defsym it.
17039 (FONTSET_FALLBACK): New macro.
17040 (fontset_face): Try also the default fontset.
17041 (make_fontset): Realize a fallback fontset from the default fontset.
17042 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
17043 using split_font_name_into_vector and build_font_name_from_vector.
17044 (Fset_fontset_font): Access the elements of font_spec by enum
17045 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
17046 name by using split_font_name_into_vector.
17047 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
17048 generate a proper font name from the fontset name. Update
17049 Vfontset_alias_alist.
17050 (n_auto_fontsets): New variable.
17051 (new_fontset_from_font_name): New function.
17052 (Ffont_info): Store the information about fonts generated from the
17053 default fontset in the first extra slot of the returned char-table.
17054
17055 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
17056 (font_name_registry): Delete function.
17057 (split_font_name_into_vector): New function.
17058 (build_font_name_from_vector): New function.
17059 (font_list): The argument REGISTRY is now a list of registry names.
17060 (choose_face_font): If we are choosing an ASCII font, and ATTRS
17061 specifies an explicit font name, return the name as is. Make a
17062 list of registy names.
17063
17064 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
17065 of x_new_fontset.
17066 (Fx_create_frame): Don't call x_new_fontset here. Just use
17067 x_list_fonts to check the existence of fonts.
17068
17069 * xterm.h (x_new_fontset): Adjust prototype.
17070
17071 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
17072 string. Use new_fontset_from_font_name to create a fontset from a
17073 font name.
17074
170752008-02-01 Kenichi Handa <handa@m17n.org>
17076
17077 * syntax.c (Vfind_word_boundary_function_table): New name for
17078 Vnext_word_boundary_function_table.
17079 (find-word-boundary-function-table): New name for
17080 next-word-boundary-function-table.
17081
170822008-02-01 Dave Love <fx@gnu.org>
17083
17084 * Makefile.in: Fix some dependencies.
17085
17086 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
17087 set it to nil before returning.
17088
17089 * composite.c (update_compositions): Fix type error.
17090
17091 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
17092
170932008-02-01 Kenichi Handa <handa@m17n.org>
17094
17095 * xterm.c (x_new_font): Optimize for the case that the font is
17096 already set for the frame.
17097
170982008-02-01 Kenichi Handa <handa@m17n.org>
17099
17100 * chartab.c (char_table_ascii): Check if the char table contents
17101 is sub-char-table or not.
17102 (char_table_set, char_table_set_range): Fix argument to
17103 char_table_ascii.
17104
17105 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
17106 (detect_coding_utf_8, detect_coding_utf_16)
17107 (detect_coding_emacs_mule, detect_coding_iso_2022)
17108 (detect_coding_sjis, detect_coding_big5)
17109 (detect_coding_ccl, detect_coding_charset): Change argument MASK
17110 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
17111 sequence is valid in this coding system. Change callers.
17112 (MAX_ANNOTATION_LENGTH): New macro.
17113 (ADD_ANNOTATION_DATA): New macro.
17114 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
17115 ADD_ANNOTATION_DATA. Change the format of annotation data.
17116 (ADD_CHARSET_DATA): New macro.
17117 (emacs_mule_char): New argument ID. Change callers.
17118 (decode_coding_emacs_mule, decode_coding_iso_2022)
17119 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
17120 Produce charset annotation data in coding->charbuf.
17121 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
17122 to charset annotation data in coding->charbuf.
17123 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
17124 coding->common_flags if the coding system is iso-2022 based and
17125 uses designation.
17126 (produce_composition): Adjust for the new annotation data format.
17127 (produce_charset): New function.
17128 (produce_annotation): Handle charset annotation.
17129 (handle_composition_annotation, handle_charset_annotation): New
17130 functions.
17131 (consume_chars): Handle charset annotation. Utilize the above two
17132 functions.
17133 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
17134 buffer, get the deleted text as a string and set
17135 coding->src_object to that string.
17136 (detect_coding, detect_coding_system): Use the new struct
17137 coding_detection_info.
17138
17139 * coding.h (struct coding_detection_info): New structure.
17140 (struct coding_system): Adjust prototype of the member `detector'.
17141 (CODING_ANNOTATE_CHARSET_MASK): New macro.
17142
171432008-02-01 Kenichi Handa <handa@m17n.org>
17144
17145 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
17146
171472008-02-01 Dave Love <fx@gnu.org>
17148
17149 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
17150 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
17151 to new local and nullify apropos_accumulate before returning.
17152 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
17153
171542008-02-01 Kenichi Handa <handa@m17n.org>
17155
17156 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
17157 correctly.
e3eea1fc 17158
aac0c6e3
MR
171592008-02-01 Dave Love <fx@gnu.org>
17160
17161 * fns.c (Flanginfo): Call synchronize_system_time_locale.
17162
171632008-02-01 Kenichi Handa <handa@m17n.org>
17164
17165 The following changes are to make character composition happen
17166 automatically on displaying.
17167
17168 * Makefile.in (lisp, shortlisp): Add composite.elc.
17169
17170 * composite.h (Qauto_composed, Vauto_composition_function)
17171 (Qauto_composition_function): Extern them.
17172
17173 * composite.c (Vcomposition_function_table)
17174 (Qcomposition_function_table): Delete variables.
17175 (Qauto_composed, Vauto_composition_function)
17176 (Qauto_composition_function): New variables.
17177 (run_composition_function): Don't call
17178 compose-chars-after-function.
17179 (update_compositions): Clear `auto-composed' text property.
17180 (compose_chars_in_text): Delete this function.
17181 (syms_of_composite): Staticpro Qauto_composed and
17182 Qauto_composition_function. Declare Vauto_composition_function as
17183 a Lisp variable.
17184
17185 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
17186
17187 * xdisp.c (it_props): Add an entry for Qauto_composed.
17188 (handle_auto_composed_prop): New function.
17189
17190 * xselect.c (selection_data_to_lisp_data): Don't call
17191 compose_chars_in_text.
17192
171932008-02-01 Dave Love <fx@gnu.org>
17194
17195 * keyboard.c (read_char): Modify checking around use of
17196 Vkeyboard_translate_table.
17197
17198 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
17199 and fix C types.
17200
172012008-02-01 Kenichi Handa <handa@m17n.org>
17202
17203 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
17204 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
17205 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
17206 the case that the last byte is '\r' correctly.
17207 (decode_coding): Flush out the unprocessed data correctly.
17208 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
17209
172102008-02-01 Dave Love <fx@gnu.org>
17211
17212 * xterm.c (XTread_socket): Fix changes for defined keysyms.
17213 Add XK_ISO... case.
17214 (xaw_scroll_callback): Revert last change.
17215
172162008-02-01 Kenichi Handa <handa@m17n.org>
17217
17218 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
17219
172202008-02-01 Kenichi Handa <handa@m17n.org>
17221
17222 * xfaces.c (Vface_resizing_fonts): New variable.
17223 (struct font_name): New member `resizing_ratio'.
17224 (font_resizing_ratio): New function.
17225 (split_font_name): Set font->resizing_ratio.
17226 (better_font_p): Pay attention to font->resizing_ratio.
17227 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
17228 RESX, and RESY fields.
17229 (try_alternative_families): Try scalable fonts if
17230 Vscalable_fonts_allowed is not Qt.
17231 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
17232
172332008-02-01 Dave Love <fx@gnu.org>
17234
17235 * xterm.c (xaw_scroll_callback): Cast correctly.
17236
172372008-02-01 Dave Love <fx@gnu.org>
17238
17239 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
17240 (lispy_kana_keys): Comment out.
17241 (make_lispy_event) [XK_kana_A]: Comment out.
17242
17243 * xterm.c (xaw_scroll_callback): Cast call_data.
17244 (XTread_socket): Deal with ASCII keysyms.
17245 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
17246
172472008-02-01 Dave Love <fx@gnu.org>
17248
17249 * xterm.c (Vx_keysym_table): New.
17250 (syms_of_xterm): Initialize it.
17251 (XTread_socket): Use it.
17252 From head: Eliminate incorrect optimization that tried to avoid
17253 decoding the output of X*LookupString.
17254 (x_get_font_repertory): Delete charset declaration.
17255
172562008-02-01 Kenichi Handa <handa@m17n.org>
17257
17258 * coding.c (detect_coding_charset): If only ASCII bytes are found,
17259 return 0.
17260 (Fdefine_coding_system_internal): Setup
17261 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
17262
172632008-02-01 Dave Love <fx@gnu.org>
17264
17265 * coding.c (Fcheck_coding_system): Doc fix.
17266
17267 * editfns.c (Finsert_byte): Return a proper value.
17268
172692008-02-01 Kenichi Handa <handa@m17n.org>
17270
17271 * coding.c (decode_coding): Fix args to translate_chars. Pay
17272 attention to Vstandard_translation_table_for_decode.
17273 (encode_coding): Fix args to translate_chars. Pay attention to
17274 Vstandard_translation_table_for_encode.
17275
17276 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
17277 SINGLE_BYTE_CHAR_P.
17278
17279 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
17280 not by SINGLE_BYTE_CHAR_P.
17281
17282 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
17283 SINGLE_BYTE_CHAR_P.
17284
17285 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
17286 SINGLE_BYTE_CHAR_P.
17287
17288 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
17289 by SINGLE_BYTE_CHAR_P.
17290
17291 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
17292 SINGLE_BYTE_CHAR_P.
17293
172942008-02-01 Dave Love <fx@gnu.org>
17295
17296 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
17297
172982008-02-01 Dave Love <fx@gnu.org>
17299
17300 * fns.c (Flanginfo): Fix typo.
17301
17302 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
17303
173042008-02-01 Kenichi Handa <handa@m17n.org>
17305
17306 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
17307 (detect_coding_emacs_mule, detect_coding_iso_2022)
17308 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
17309 incomplete byte sequence. Don't update *mask when correctly detected.
17310 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
17311 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
17312 (detect_coding, detect_coding_system): Adjust for the changes above.
17313
173142008-02-01 Kenichi Handa <handa@m17n.org>
17315
17316 * character.c (char_string): Rename from
17317 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
17318 (string_char): Rename from string_char.
17319
17320 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
17321 if C is greater than MAX_3_BYTE_CHAR.
17322 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
17323 string_char instead of string_char_with_unification.
17324
173252008-02-01 Dave Love <fx@gnu.org>
17326
17327 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
17328
173292008-02-01 Kenichi Handa <handa@m17n.org>
17330
17331 * keymap.c (push_key_description): Pay attention to force_multibyte.
17332
17333 * regex.c (re_search_2): Fix for the case of unibyte buffer.
17334
173352008-02-01 Dave Love <fx@gnu.org>
17336
17337 * charset.c (define_charset_internal): Rename `supprementary'.
17338
17339 * Makefile.in (lisp, shortlisp): Remove latin-N.
17340
173412008-02-01 Dave Love <fx@gnu.org>
17342
17343 * xfns.c (x_window, x_window): Use use_xim.
17344
17345 * xterm.c (use_xim): Initialize.
17346 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
17347 (x_term_init): Maybe set use_xim.
17348
17349 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
17350
173512008-02-01 Kenichi Handa <handa@m17n.org>
17352
17353 * search.c (search_buffer): Fix case-fold-search of multibyte
17354 characters.
17355 (boyer_moore): Rename the last argument to char_high_bits.
17356
173572008-02-01 Kenichi Handa <handa@m17n.org>
17358
17359 * xdisp.c (display_string): Fix for the case of zero width glyph.
17360
17361 * xfns.c (x_set_font): Change the error message of the case that
17362 x_new_fontset returns Qt.
17363
17364 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
17365 (Finternal_set_lisp_face_attribute): Use signal_error for the
17366 error of invalid fontset.
17367
17368 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
17369 fontset, return Qt.
17370
173712008-02-01 Dave Love <fx@gnu.org>
17372
17373 * unexelf.c (unexec): Make .got handling not SGI-specific.
17374
17375 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
17376
17377 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
17378
17379 * keyboard.c (read_key_sequence): Fix type error.
17380
17381 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
17382 type error.
17383
17384 * fontset.c (fontset_add): Return Lisp_Object.
17385
173862008-02-01 Dave Love <fx@gnu.org>
17387
17388 * charset.h (charset_ordered_list_tick): Declare extern.
17389
173902008-02-01 Kenichi Handa <handa@m17n.org>
17391
17392 The following changes (and some of 2008-02-01 changes of mine) are
17393 for handling syntax, category, and case conversion for unibyte
17394 characters by converting them to multibyte on the fly. With these
17395 changes, we don't have to setup syntax and case tables for unibyte
17396 characters in each language environment.
17397
17398 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
17399 multibyte if necessary.
17400
17401 * bytecode.c (Fbyte_code): Likewise.
17402
17403 * character.h (LEADING_CODE_LATIN_1_MIN)
17404 (LEADING_CODE_LATIN_1_MAX): New macros.
17405 (unibyte_to_multibyte_table): Extern it.
17406 (unibyte_char_to_multibyte): New macro.
17407 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
17408 (CHAR_LEADING_CODE): New macro.
17409 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
17410
17411 * character.c (unibyte_to_multibyte_table): New variable.
17412 (unibyte_char_to_multibyte): Move to character.h and define as macro.
17413 (multibyte_char_to_unibyte): If C is an eight-bit character,
17414 convert it to the corresponding byte value.
17415
17416 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
17417 not 1, signals an error. Update the elements of
17418 unibyte_to_multibyte_table.
17419 (init_charset_once): Initialize unibyte_to_multibyte_table.
17420 (syms_of_charset): Define the charset `iso-8859-1'.
17421
17422 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
17423 as is without converting it to unibyte. In a unibyte buffer,
17424 convert C to multibyte before checking the syntax.
17425
17426 * lisp.h (unibyte_char_to_multibyte): Delete extern.
17427
17428 * minibuf.c (Fminibuffer_complete_word): Use the macro
17429 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
17430
17431 * regex.h (struct re_pattern_buffer): New member target_multibyte.
17432
17433 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
17434 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
17435 that is zero, convert an eight-bit char to multibyte.
17436 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
17437 non-emacs case.
17438 (PATFETCH): Convert an eight-bit char to multibyte.
17439 (HANDLE_UNIBYTE_RANGE): New macro.
17440 (regex_compile): Setup the compiled pattern for multibyte chars
17441 even if the given regex string is unibyte. Use PATFETCH_RAW
17442 instead of PATFETCH in many places. To handle `charset'
17443 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
17444 only for ASCII chars.
17445 (analyse_first) <exactn>: Simplify because the compiled pattern
17446 is multibyte.
17447 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
17448 <charset>: Use CHAR_LEADING_CODE to get leading codes.
17449 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
17450 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
17451 multibyte always 1.
17452 (re_search_2): In emacs, set the locale variable multibyte to 1,
17453 otherwise to 0. New local variable target_multibyte. Check it
17454 to decide the multibyteness of STR1 and STR2. If
17455 target_multibyte is zero, convert unibyte chars to multibyte
17456 before translating and checking fastmap.
17457 (TARGET_CHAR_AND_LENGTH): New macro.
17458 (re_match_2_internal): In emacs, set the locale variable multibyte
17459 to 1, otherwise to 0. New local variable target_multibyte. Check
17460 it to decide the multibyteness of STR1 and STR2. Use
17461 TARGET_CHAR_AND_LENGTH to fetch a character from D.
17462 <charset, charset_not>: If multibyte is nonzero, check fastmap
17463 only for ASCII chars. Call bcmp_translate with
17464 target_multibyte, not with multibyte.
17465 <begline>: Declare the local variable C as `unsigned'.
17466 (bcmp_translate): Change the last arg name to target_multibyte.
17467
17468 * search.c (compile_pattern_1): Don't adjust the multibyteness of
17469 the regexp pattern and the matching target. Set cp->buf.multibyte
17470 to the multibyteness of the regexp pattern. Set
17471 cp->but.target_multibyte to the multibyteness of the matching target.
17472 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
17473 FETCH_STRING_CHAR_ADVANCE.
17474 (Freplace_match): Convert unibyte chars to multibyte.
17475
17476 * syntax.c (char_quoted, back_comment, scan_words)
17477 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
17478 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
17479 unibyte chars to multibyte.
17480 (skip_chars): Delete the arg syntaxp, and move the code for
17481 handling syntaxes to skip_syntaxes. Change callers.
17482 Fix the case that the multibyteness of STRING and the current
17483 buffer doesn't match.
17484 (skip_syntaxes): New function.
17485 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
17486 SINGLE_BYTE_CHAR_P.
17487
174882008-02-01 Kenichi Handa <handa@m17n.org>
17489
17490 * xfaces.c (QCfontset): New variable.
17491 (LFACE_FONTSET): New macro.
17492 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
17493 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
17494 (Finternal_set_lisp_face_attribute)
17495 (Finternal_get_lisp_face_attribute): Handle QCfontset.
17496 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
17497 check also LFACE_FONTSET_INDEX.
17498 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
17499 attrs[LFACE_FONT_INDEX].
17500 (syms_of_xfaces): Intern and staticpro QCfontset.
17501
17502 * dispextern.h (enum lface_attribute_index): New member
17503 LFACE_FONTSET_INDEX.
17504
17505 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
17506
175072008-02-01 Kenichi Handa <handa@m17n.org>
17508
17509 * coding.c (coding_set_destination): Fix coding->destination for
17510 the case converting a region.
17511 (encode_coding_utf_8): Encode eight-bit chars as single byte.
17512 (encode_coding_object): Fix coding->dst_pos and
17513 coding->dst_pos_byte for the case converting a region.
17514
17515 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
17516
17517 * character.h (BYTE8_STRING): New macro.
17518
17519 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
17520
175212008-02-01 Kenichi Handa <handa@m17n.org>
17522
17523 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
17524 characters by octal form.
17525
17526 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
17527
17528 * buffer.h (_fetch_multibyte_char_len): Delete extern.
17529 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
17530 _fetch_multibyte_char_len.
17531 (FETCH_CHAR_AS_MULTIBYTE): New macro.
17532
17533 * casetab.c (set_canon, set_identity, shuffle): Simplify.
17534
17535 * casefiddle.c (casify_object): Simplify. Handle the case that
17536 the case conversion change the byte length.
17537 (casify_region): Likewise.
17538
17539 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
17540
17541 * character.c (_fetch_multibyte_char_len): Delete this variable.
17542 (syms_of_character): Setup Vprintable_chars.
17543
17544 * editfns.c (Fchar_equal): Fix for the unibyte case.
17545 (Finsert_byte): New function.
17546 (syms_of_editfns): Defsubr it.
17547
17548 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
17549 of direct code 0x3ffff.
17550
17551 * search.c (Freplace_match): Fix for the unibyte case.
17552
175532008-02-01 Kenichi Handa <handa@m17n.org>
17554
17555 * lread.c (safe_to_load_p): Fix the logic.
17556
17557 * syntax.c (scan_words): Don't treat characters belonging to
17558 different scripts as constituting a word.
17559
17560 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
17561
17562 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
17563
17564 * emacs.c (main): In the case of --unibyte, instead of aborting on
17565 finding non-empty buffer, make it unibyte.
17566
175672008-02-01 Kenichi Handa <handa@m17n.org>
17568
17569 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
17570 to create a fontset.
17571
175722008-02-01 Dave Love <fx@gnu.org>
17573
17574 * character.c (Funibyte_char_to_multibyte): Doc fix.
17575
17576 * xfns.c [HAVE_STDLIB_H]: Fix last change.
17577
175782008-02-01 Kenichi Handa <handa@m17n.org>
17579
17580 * fontset.c (fontset_add): Make the type `int'.
17581 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
17582
17583 * character.c (unibyte_char_to_multibyte)
17584 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
17585 charset_unibyte, not charset_primary.
17586
17587 * charset.h (charset_unibyte): Extern it instead of charset_primary.
17588
17589 * charset.c (charset_unibyte): Rename from charset_primary.
17590 (Funibyte_charset): Rename from Fprimary_charset.
17591 (Fset_unibyte_charset): Rename from Fset_primary_charset.
17592 (syms_of_charset): Adjust for the above changes.
17593
17594 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
17595 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
17596 it->multibyte_p is zero.
17597
17598 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
17599 Delete extern.
17600
176012008-02-01 Kenichi Handa <handa@m17n.org>
17602
17603 * coding.c (Fdefine_coding_system_internal): Fix category setting
17604 for a coding system of type iso-2022.
17605
176062008-02-01 Kenichi Handa <handa@m17n.org>
17607
17608 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
17609
176102008-02-01 Kenichi Handa <handa@m17n.org>
17611
17612 * syntax.c (Vnext_word_boundary_function_table): New variable.
17613 (next-word-boundary-function-table): Declare it as a Lisp variable
17614 in syms_of_syntax.
17615 (scan_words): Call functions in Vnext_word_boundary_function_table
17616 if any.
17617
17618 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
17619
17620 * fontset.c (fs_load_font): If fontp->charset is not negative,
17621 return fontp without setting its members.
17622
176232008-02-01 Dave Love <fx@gnu.org>
17624
17625 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
17626
17627 * m/sparc.h (HAVE_ALLOCA): Delete.
17628
17629 * s/irix6-5.h: Don't include strings.h.
17630 (bcopy, bzero, bcmp): Don't undef.
17631
17632 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
17633
17634 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
17635 (TIOCSIGSEND): Don't test IRIX6.
17636 (bcopy, bzero, bcmp): Define conditionally.
17637
176382008-02-01 Kenichi Handa <handa@m17n.org>
17639
17640 * buffer.c (Qas, Qmake, Qto): New variables.
17641 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
17642 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
17643
17644 * callproc.c (Fcall_process): Don't call insert_1_both directly if
17645 we are inserting a process output into a multibyte buffer.
17646
17647 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
17648 multibyte_char_to_unibyte.
17649
17650 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
17651 by the primary charset, make it eight-bit char.
17652 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
17653
17654 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
17655 (charset_8_bit__control, charset_8_bit_graphic)
17656 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
17657 (define_charset_internal): New function.
17658 (syms_of_charset): Call define_charset_internal for pre-defined
17659 charsets.
17660
17661 * charset.h (charset_8_bit): Extern it.
17662
17663 * coding.c (make_conversion_work_buffer): Adjust for the change
17664 of Fset_buffer_multibyte.
17665 (encode_coding_raw_text): Increment p0 in the loop.
17666
17667 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
17668
17669 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
17670 for the change of Fset_buffer_multibyte.
17671
17672 * fns.c (Fstring_to_multibyte): New function.
17673 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
17674
176752008-02-01 Dave Love <fx@gnu.org>
17676
17677 * xfns.c (x_put_x_image): Declare args.
17678
17679 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
17680 (try_font_list): Declare an arg.
17681
17682 * xdisp.c (message2_nolog, set_message): Declare an arg.
17683
17684 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
17685
17686 * syntax.c (scan_sexps_forward): Declare an arg.
17687
17688 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
17689 Declare an arg.
17690
17691 * lisp.h (Fnew_fontset): Declare.
17692
17693 * keymap.c (push_key_description): Call CHARACTERP correctly.
17694
17695 * fontset.c (fontset_add): Declare args. Call make_number correctly.
17696 (face_for_char): Delete unused vars.
17697 (Fset_fontset_font): Doc fix. Delete unused vars.
17698
17699 * doc.c (Fsubstitute_command_keys): Delete unused vars.
17700
17701 * composite.c (update_compositions): Declare arg.
17702
17703 * cm.c (calccost, cmgoto): Declare args.
17704
17705 * charset.c: Remove `emacs' conditional. Doc fixes.
17706 (map_char_table_for_charset): Declare.
17707
17708 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
17709
17710 * ccl.c: Remove `emacs' conditional.
17711
177122008-02-01 Kenichi Handa <handa@m17n.org>
17713
17714 The following changes are to allow specifying multiple font
17715 patterns for a character range (specified by script or charset).
17716
17717 * Makefile.in (abbrev.o): Depend on syntax.h.
17718 (xfaces.o): Depend on charset.h.
17719
17720 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
17721 SINGLE_BYTE_CHAR_P.
17722
17723 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
17724
17725 * character.h (Vchar_script_table): Extern it.
17726
17727 * character.c (Vscript_alist): Delete.
17728 (Vchar_script_table, Qchar_script_table): New variable.
17729 (syms_of_character): Declare Vchar_script_table as a lisp variable
17730 and initialize it.
17731
17732 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
17733 have property char-table-extra-slots, make no extra slot.
17734
17735 * dispextern.h (struct face): Delete member `charset'.
17736 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
17737 SINGLE_BYTE_CHAR_P.
17738 (choose_face_font, lookup_non_ascii_face, font_name_registry):
17739 Add prototypes.
17740 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
17741 (generate_ascii_font_name): Rename from generate_ascii_font.
17742
17743 * fontset.h (get_font_repertory_func): New prototype.
17744 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
17745 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
17746
17747 * fontset.c (Qprepend, Qappend): New variables.
17748 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
17749 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
17750 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
17751 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
17752 (fontset_ref_and_range, fontset_add, reorder_font_vector)
17753 (load_font_get_repertory): New functions.
17754 (fontset_set): Delete.
17755 (fontset_face): New arg FACE. Return face ID, not face.
17756 Complete re-write to handle new fontset structure. Change caller.
17757 (free_face_fontset): Use ASET istead of AREF (X) = Y.
17758 (face_for_char): Don't call lookup_face.
17759 (make_fontset_for_ascii_face): New arg FACE.
17760 (fs_load_font): New arg CHARSET_ID. Don't check
17761 Vfont_encoding_alist here.
17762 (find_font_encoding): New function.
17763 (list_fontsets): Use STRINGP, not ! NILP.
17764 (accumulate_script_ranges): New function.
17765 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
17766 re-written to handle new fontset structure.
17767 (Ffontset_font): Return a copy of element.
17768 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
17769 docstring of font-encoding-alist.
17770
17771 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
17772 (Fset_fotset_font): Fix arguments to 5.
17773
17774 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
17775
17776 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
17777 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
17778 (highlight_trailing_whitespace): Adjust for the change of
17779 lookup_named_face.
17780
17781 * xfaces.c: Include charset.h.
17782 (load_face_font): Delete argument C. Change caller.
17783 (generate_ascii_font_name): Rename from generate_ascii_font.
17784 (font_name_registry): New function.
17785 (cache_face): Store ascii faces before non-ascii faces in buckets.
17786 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
17787 Lookup only ascii faces.
17788 (lookup_non_ascii_face): New function.
17789 (lookup_named_face): Delete argument C. Change caller.
17790 (lookup_derived_face): Delete argument C. Change caller.
17791 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
17792 a string, just call font_list with it.
17793 (choose_face_font): Delete arguments FACE and C. New arg
17794 FONT_SPEC. Change caller.
17795 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
17796 Change caller.
17797 (realize_non_ascii_face): New function.
17798 (realize_x_face): Call load_face_font here.
17799 (realize_tty_face): Delete argument C. Change caller.
17800 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
17801 get a face ID.
17802 (dump_realized_face): Don't print charset of FACE.
17803
17804 * xfns.c (x_set_font): Always call x_new_fontset and
17805 store_frame_parameter.
17806 (Fx_create_frame): Call x_new_fontset, not x_new_font.
17807 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
17808
17809 * xterm.h (x_get_font_repertory): Extern it.
17810
17811 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
17812 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
17813 it->multibyte_p is zero.
17814 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
17815 (x_new_fontset): If FONTSETNAME doesn't match any existing
17816 fontsets, create a new one.
17817 (x_get_font_repertory): New function.
17818
178192008-02-01 Kenichi Handa <handa@m17n.org>
17820
17821 * coding.c (Ffind_coding_systems_region_internal): Detect an
17822 ASCII only string correctly.
17823
17824 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
17825 version is 0.
17826
178272008-02-01 Kenichi Handa <handa@m17n.org>
17828
17829 * lread.c: Include "coding.h".
17830 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
17831 (load_each_byte, unread_char): New variables.
17832 (readchar_backlog): Delete.
17833 (readchar): Return a character unless load_each_byte is nonzero.
17834 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
17835 cons. If unread_char is not -1, simply return it.
17836 (unreadchar): Handle the case that readcharfun is
17837 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
17838 (read_multibyte): Delete.
17839 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
17840 (read_emacs_mule_char): New functions.
17841 (Fload): Even if the file doesn't have the extension ".elc", if
17842 safe_to_load_p returns a positive version number, assume that the
17843 file contains bytecompiled code. If the version is less than 22,
17844 load the file while decoding multibyte sequences by emacs-mule.
17845 (readevalloop): Don't use readchar_backlog.
17846 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
17847 (Fread_from_string): Pay attention to the case that STREAM is a cons.
17848 (read_escape): Delete the arg BYTEREP.
17849 (read1): Set load_each_byte to 1 temporarily while handling
17850 #@NUMBER. Don't call read_multibyte.
17851 (read_vector): Call Fread with a cons. If readcharfun is
17852 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
17853 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
17854 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
17855 and Qload_force_doc_strings.
17856
178572008-02-01 Kenichi Handa <handa@m17n.org>
17858
17859 * xdisp.c (face_before_or_after_it_pos): Call
17860 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
17861
178622008-02-01 Kenichi Handa <handa@m17n.org>
17863
17864 * character.h (TRAILING_CODE_P): New macro.
17865 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
17866 (string_char_with_unification): Fix prototype.
17867 (Vscript_alist): Extern it.
17868
17869 * character.c (Vscript_alist): New variable.
17870 (string_char_with_unification, str_as_unibyte)
17871 (string_escape_byte8): Add `const' to local variables.
17872 (syms_of_character): Declare script-alist as a Lisp variable.
17873
17874 * charset.h (Vcharset_ordered_list): Extern it.
17875 (charset_ordered_list_tick): Extern it.
17876 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
17877 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
17878 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
17879 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
17880 (Funify_charset): Adjust for the change of Funify_charset.
17881
17882 * charset.c (charset_ordered_list_tick): New variable.
17883 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
17884 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
17885 deunify intead of unify a charset.
17886 (string_xstring_p): Add `const' to local variables.
17887 (find_charsets_in_text): Add `const' to arguments and local variables.
17888 (encode_char): Adjust for the change of Funify_charset. Fix
17889 detecting of invalid code.
17890 (Fset_charset_priority): Increment charset_ordered_list_tick.
17891 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
17892 and TO_CODE.
17893
17894 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
17895 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
17896 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
17897 (decode_coding_ccl, consume_chars)
17898 (Ffind_coding_systems_region_internal)
17899 (Fcheck_coding_systems_region): Add `const' to local variables.
17900
17901 * print.c (print_object): Use octal form for printing the
17902 contents of a bool vector.
17903
179042008-02-01 Dave Love <fx@gnu.org>
17905
17906 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
17907 <version == 20>: Refuse to load.
17908
179092008-02-01 Dave Love <fx@gnu.org>
17910
17911 * fns.c: Move coding.h.
17912 (Qcodeset, Qdays, Qmonths): New.
17913 (concat): Use CHARACTERP instead of INTEGERP.
17914 (Flocale_codeset): Delete.
17915 (Flanginfo): New function.
17916 (syms_of_fns): Change accordingly.
17917
17918 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
17919
179202008-02-01 Dave Love <fx@gnu.org>
17921
17922 * casetab.c (init_casetab_once, init_casetab_once): Fix
17923 CHAR_TABLE_SET call.
17924
17925 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
17926
17927 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
17928
17929 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
17930 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
17931 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
17932
17933 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
17934
17935 * coding.c (ENCODE_DESIGNATION, decode_eol)
17936 (make_conversion_work_buffer, code_conversion_restore)
17937 (Fdefine_coding_system_internal): Convert Lisp types.
17938 (code_conversion_restore): Use EQ, not ==.
17939 (Fencode_coding_string): Fix code_convert_string call.
17940
17941 * coding.h (code_convert_region): Fix prototype.
17942
17943 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
17944
17945 * fontset.c (fontset_ref, fontset_set, fs_load_font)
17946 (Ffontset_info): Convert Lisp types.
17947
17948 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
17949
17950 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
17951
17952 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
17953
17954 * chartab.c: Include "...h", not <...h> in some cases.
17955
17956 * callproc.c (Fcall_process): Remove unused variables.
17957
179582008-02-01 Dave Love <fx@gnu.org>
17959
17960 * coding.c (Fset_coding_system_priority): Allow null arg list.
17961
179622008-02-01 Dave Love <fx@gnu.org>
17963
17964 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
17965 (Fself_insert_and_exit): Use CHARACTERP.
17966
17967 * callproc.c (Fcall_process): Remove unused vars.
17968
17969 * xterm.c (XTread_socket): Add extra dead keysyms.
17970
17971 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
17972
17973 * dispextern.h: Remove prototypes for redraw_frame,
17974 redraw_garbaged_frames.
17975
17976 * cmds.c (Fself_insert_command): Use CHARACTERP.
17977
17978 * chartab.c (make_sub_char_table): Remove unused var.
17979 (Fset_char_table_default, Fmap_char_table): Doc fix.
17980
17981 * keymap.c (access_keymap): Remove generic char code.
17982 (push_key_description): Use CHARACTERP.
17983
179842008-02-01 Dave Love <fx@gnu.org>
17985
17986 * charset.c: Doc fixes.
17987 (Funify_charset): Extra checking.
17988
179892008-02-01 Dave Love <fx@gnu.org>
17990
17991 * lread.c: Remove some unused variables.
17992 (safe_to_load_p): If safe, return the magic number version byte.
17993 (Fload): Maybe use load-with-code-conversion.
17994
179952008-02-01 Kenichi Handa <handa@m17n.org>
17996
17997 * category.c (Fmodify_category_entry): Don't modify the contents
17998 of category_set for characters out of the range. Avoid
17999 unnecessary modification.
18000
18001 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
18002 Vchar_unify_table. The default value of the table is now nil.
18003
18004 * character.c (syms_of_character): Setup Vchar_width_table for
18005 eight-bit-control and raw-byte chars.
18006
18007 * charset.h (enum define_charset_arg_index): Delete
18008 charset_arg_parents and add charset_arg_subset and
18009 charset_arg_superset.
18010 (enum charset_attr_index): Delete charset_parents and add
18011 charset_subset and charset_superset.
18012 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
18013 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
18014 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
18015 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
18016 (CHARSET_SUPERSET): New macros.
18017 (charset_work): Extern it.
18018 (ENCODE_CHAR): Use charset_work.
18019 (CHAR_CHARSET_P): Adjust for the change of encoder format.
18020 (map_charset_chars): Extern it.
18021
18022 * charset.c (load_charset_map): Set the default value of encoder
18023 and deunifier char-tables to nil.
18024 (map_charset_chars): Change argument. Change callers. Use
18025 map_char_table_for_charset instead of map_char_table.
18026 (Fmap_charset_chars): New optional args from_code and to_code.
18027 (Fdefine_charset_internal): Adjust for the change of
18028 `define-charset' (:parents -> :subset or :superset).
18029 (charset_work): New variable.
18030 (encode_char, syms_of_charset): Adjust for the change of
18031 Fdefine_charset_internal.
18032 (Ffind_charset_string): Setup the vector `charsets' correctly.
18033
18034 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
18035 the previous change.
18036 (char_table_ref_and_range): Adjust for the above change.
18037 (map_sub_char_table_for_charset): New function.
18038 (map_char_table_for_charset): New function.
18039
18040 * keymap.c (describe_vector): Handle a char-table directly here.
18041 (describe_char_table): Delete.
18042
18043 * lisp.h (map_charset_chars): Delete.
18044
180452008-02-01 Dave Love <fx@gnu.org>
18046
18047 * fns.c (count_combining): Comment out (unused).
18048 (Flocale_codeset): New.
18049 (syms_of_fns): Defsubr it.
18050
18051 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
18052 (size_t): Remove.
18053
180542008-02-01 Dave Love <fx@gnu.org>
18055
18056 * Makefile.in (chartab.o): Depend on charset.h.
18057
180582008-02-01 Kenichi Handa <handa@m17n.org>
18059
18060 * character.c (syms_of_character): Set the default value of
18061 Vprintable_chars to Qnil.
18062
180632008-02-01 Dave Love <fx@gnu.org>
18064
18065 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
18066
180672008-02-01 Kenichi Handa <handa@m17n.org>
18068
18069 * charset.c (load_charset_map): Handle the case that from < to
18070 correctly.
18071
18072 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
18073 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
18074 Pay attention to raw-8-bit chars.
18075
180762008-02-01 Kenichi Handa <handa@m17n.org>
18077
18078 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
18079 It is not bytecompiled now.
18080
18081 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
18082 (charset_jisx0208): New variables.
18083 (Fdefine_charset_internal): Setup them if appropriate.
18084 (init_charset_once): Initialize them to -1.
18085
18086 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
18087 (charset_jisx0208): Extern them.
18088
18089 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
18090 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
18091 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
18092 (setup_iso_safe_charsets): Fix arguments to Fassq.
18093 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
18094 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
18095 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
18096 (encode_coding_iso_2022): Change the 1st arg to
18097 ENCODE_ISO_CHARACTER to a variable.
18098
180992008-02-01 Kenichi Handa <handa@m17n.org>
18100
18101 * charset.h (enum define_charset_arg_index): New enums
18102 charset_arg_min_code and charset_arg_max_code.
18103 (struct charset): New member char_index_offset.
18104
18105 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
18106 Take charset->char_index_offset into account.
18107 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
18108 args[charset_arg_max_code]. Setup charset.char_index_offset.
18109 (syms_of_charset): Fix args to Fdefine_charset_internal.
18110
181112008-02-01 Dave Love <fx@gnu.org>
18112
18113 * coding.c (decode_coding_utf_8): Reject overlong sequences.
18114
181152008-02-01 Dave Love <fx@gnu.org>
18116
18117 * coding.c: Doc fixes.
18118 (Fcoding_system_aliases): Fix return value.
18119 (Qmac): Remove (duplicated) definition.
18120
181212008-02-01 Dave Love <fx@gnu.org>
18122
362654a6
JB
18123 * charset.c (Fcharset_priority_list, Fset_charset_priority):
18124 New functions.
aac0c6e3
MR
18125
18126 * character.c (Fstring): Doc fix.
18127
18128 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
18129
362654a6 18130 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
aac0c6e3
MR
18131 (font-encoding-alist): Doc fix.
18132
181332008-02-01 Dave Love <fx@gnu.org>
18134
18135 * term.c (costs_set): Declare static, non-initialized for pcc.
18136 (encode_terminal_code): Remove unused var.
18137
18138 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
18139 for K&R.
18140
18141 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
18142
18143 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
18144 (suffixes): Move out of make_subsidiaries for K&R.
18145
18146 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
18147
18148 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
18149
181502008-02-01 Dave Love <fx@gnu.org>
18151
18152 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
18153
18154 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
18155
181562008-02-01 Yong Lu <lyongu@asia-infonet.com>
18157
18158 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
18159
18160 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
18161
181622008-02-01 Kenichi Handa <handa@m17n.org>
18163
18164 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
18165 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
18166
181672008-02-01 Kenichi Handa <handa@m17n.org>
18168
18169 * coding.c (decode_coding_charset): Adjust for the change of
18170 Fdefine_coding_system_internal.
18171 (Fdefine_coding_system_internal): For a coding system of
18172 `charset' type, store a list of charset IDs in
18173 `charset_attr_charset_valids' element of coding attributes.
18174
181752008-02-01 Kenichi Handa <handa@m17n.org>
18176
18177 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
18178 (emacs_mule_char): New arg src. Delete arg `composition'. Change
18179 caller. Handle 2-byte and 3-byte charsets correctly.
18180 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
18181 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
18182 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
18183 (DECODE_EMACS_MULE_21_COMPOSITION): Call
18184 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
18185 sequence.
18186 (decode_coding_emacs_mule): Handle composition correctly. Rewind
18187 `src' and `consumed_chars' correctly before calling emacs_mule_char.
18188 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
18189 and alt&rule composition.
18190 (decode_coding_iso_2022): Handle composition correctly.
18191 (init_coding_once): Setup emacs_mule_bytes for private charsets.
18192
18193 * charset.c (Fdefine_charset_internal): Fix bug for the case of
18194 re-defining a charset. If the charset has :emacs-mule-id, setup
18195 emacs_mule_bytes.
18196 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
18197
181982008-02-01 Kenichi Handa <handa@m17n.org>
18199
18200 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
18201 (encode_coding_big5, encode_coding_charset): If coding requires safe
18202 encoding, produce a character specified by
18203 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
18204
182052008-02-01 Dave Love <fx@gnu.org>
18206
18207 * xterm.c (XSetIMValues): Declare.
18208
18209 * process.c: Conditionally include sys/wait.h, pty.h.
18210
18211 * print.c (print_object): Fix print format for 64-bit systems.
18212
18213 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
18214
18215 * buffer.c (emacs_strerror): Declare.
18216
18217 * fontset.c (Fclear_face_cache): Declare.
18218 (accumulate_font_info): Comment-out (unused).
18219 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
18220 variables.
18221
18222 * character.h (string_escape_byte8): Declare.
18223
18224 * charset.c (load_charset_map, load_charset_map_from_file): Remove
18225 unused vars.
18226 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
18227 (Fmap_charset_chars): Doc fix.
18228
18229 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
18230 (Fset_coding_system_priority, Fset_coding_system_priority)
18231 (Fdefine_coding_system_internal): Doc fix.
18232
182332008-02-01 Dave Love <fx@gnu.org>
18234
18235 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
18236
182372008-02-01 Kenichi Handa <handa@m17n.org>
18238
18239 * character.c (string_escape_byte8): Make multibyte string with
18240 correct size.
18241
18242 * charset.c (Fmake_char): Delete unnecessary code.
18243
182442008-02-01 Kenichi Handa <handa@m17n.org>
18245
18246 * xfns.c (x_encode_text): Allocate coding.destination here, and
18247 call encode_coding_object with dst_object Qnil.
18248
18249 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
18250 multibyte form correctly.
18251
18252 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
18253 against Vfont_encoding_alist.
18254
18255 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
18256 handling of charset list.
18257 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
18258 (decode_coding_object): Move point to coding->dst_pos before
18259 calling post-read-conversion function.
18260 (encode_coding_object): Give correct arguments to
18261 pre-write-conversion. Ignore the return value of
18262 pre-write-conversion function. Pay attention to the case that
18263 pre-write-conversion changes the current buffer. If dst_object is
18264 Qt, even if coding->src_bytes is zero, allocate at least one byte
18265 to coding->destination.
18266
18267 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
18268
18269 * charset.c (Fmake_char): Make it more backward compatible.
18270 (Fmap_charset_chars): Fix docstring.
18271
182722008-02-01 Dave Love <fx@gnu.org>
18273
18274 * coding.c: Doc fixes.
18275 (Fdefine_coding_system_alias): Use names, not symbols, in
18276 coding-system-alist.
18277
182782008-02-01 Kenichi Handa <handa@m17n.org>
18279
18280 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
18281 of calling free_realized_face.
18282
182832008-02-01 Yong Lu <lyongu@asia-infonet.com>
18284
18285 * charset.c (read_hex): Don't treat SPC as a comment starter.
18286 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
18287 (Fdecode_char): Fix typo.
18288
182892008-02-01 Kenichi Handa <handa@m17n.org>
18290
18291 * charset.h (struct charset): New member `code_space_mask'.
18292
18293 * coding.c (coding_set_source): Delete the local variable beg_byte.
18294 (encode_coding_charset, Fdefine_coding_system_internal):
18295 Delete the local variable charset.
18296 (Fdefine_coding_system_internal): Setup
18297 attrs[coding_attr_charset_valids] correctly.
18298
18299 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
18300 member to check if CODE is valid or not.
18301 (Fdefine_charset_internal): Initialize `code_space_mask' member.
18302 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
18303 is within the range of charset->min_code and carset->max_code.
18304
183052008-02-01 Dave Love <fx@gnu.org>
18306
18307 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
18308
18309 * dispextern.h (generate_ascii_font): Fix return type.
18310
18311 * xfaces.c (generate_ascii_font): Fix arg declaration.
18312
18313 * coding.c (coding_inherit_eol_type)
18314 (Fset_terminal_coding_system_internal)
18315 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
18316
183172008-02-01 Kenichi Handa <handa@m17n.org>
18318
18319 * coding.c (decode_coding_charset, encode_coding_charset): Handle
18320 multiple charsets correctly.
18321
183222008-02-01 Kenichi Handa <handa@m17n.org>
18323
18324 * search.c (boyer_moore): Fix handling of multibyte character
18325 translation.
18326
18327 * xdisp.c (display_mode_element): When the variable `elt' is
18328 changed, update `this' and `lisp_string'.
18329
183302008-02-01 Kenichi Handa <handa@m17n.org>
18331
18332 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
18333
18334 * callproc.c (Fcall_process): Be sure to give the current buffer
18335 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
18336
18337 * charset.c (struct charset_map_entries): New struct.
18338 (load_charset_map): Rename from parse_charset_map. New args
18339 entries and n_entries. Change caller.
18340 (load_charset_map_from_file): Rename from load_charset_map.
18341 Change caller. New arg control_flag. Call load_charset_map at
18342 the tail.
18343 (load_charset_map_from_vector): New function.
18344 (Fdefine_charset_internal): Setup charset.compact_codes_p.
18345 (encode_char): If the charset is compact, change a character index
18346 to a code point.
18347
18348 * coding.c (coding_alloc_by_making_gap): Check the case that the
18349 source and destination are the same correctly.
18350 (decode_coding_raw_text): Set coding->consumed_char and
18351 coding->consumed to 0.
18352 (produce_chars): If coding->chars_at_source is nonzero, update
18353 coding->consumed_char and coding->consumed before calling
18354 alloc_destination.
18355 (Fdefine_coding_system_alias): Register ALIAS in
18356 Vcoding_system_alist.
18357 (syms_of_coding): Define `no-conversion' coding system at the tail.
18358
18359 * fileio.c (Finsert_file_contents): Set coding_system instead of
18360 val. If the current buffer is multibyte, always call
18361 decode_coding_gap.
18362
18363 * xfaces.c (try_font_list): Give higher priority to fontset's
18364 family than face's family.
18365
183662008-02-01 Kenichi Handa <handa@m17n.org>
18367
18368 * callproc.c (Fcall_process): Be sure to give the current buffer
18369 to decode_coding_c_string.
18370
18371 * xfaces.c (try_font_list): Give a family specified in a fontset
18372 higher priority than a family specified in a face.
18373
183742008-02-01 Kenichi Handa <handa@m17n.org>
18375
18376 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
18377 Fix arguments to insert_from_buffer.
18378
18379 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
18380
183812008-02-01 Kenichi Handa <handa@m17n.org>
18382
18383 * coding.c (produce_chars): Set the variable `multibytep' correctly.
18384 (decode_coding_gap): Set coding->dst_multibyte correctly.
18385
183862008-02-01 Kenichi Handa <handa@m17n.org>
18387
18388 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
18389 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
18390 (encode_coding_utf_16): Substitute coding->default_char for
18391 non-Unicode characters.
18392 (decode_coding): Don't call record_insert here.
18393 (setup_coding_system): Initialize `surrogate' of
18394 coding->spec.utf_16 to 0.
18395 (EMIT_ONE_BYTE): Fix for multibyte case.
18396
18397 * insdel.c (insert_from_gap): Call record_insert.
18398
183992008-02-01 Kenichi Handa <handa@m17n.org>
18400
18401 * casefiddle.c (casify_region): Fix multibyte case.
18402
18403 * character.c (c_string_width): Add return type `int'.
18404 (char_string_with_unification): Delete arg ADVANCED.
18405
18406 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
18407 (CHAR_STRING): Adjust for the change of char_string_with_unification.
18408 (CHAR_STRING_ADVANCE): Make it do-while statement.
18409
18410 * chartab.c (sub_char_table_set_range): Optimize for the case
18411 DEPTH == 3. Add workaround code for a GCC optimization bug.
18412
18413 * charset.c (parse_charset_map): Remove an unused variable.
18414
18415 * coding.c: Delete unused variables.
18416
18417 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
18418 earlier. If inserted is zero and the coding system doesn't
18419 require flushing, don't call decode_coding_gap.
18420
18421 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
18422
184232008-02-01 Kenichi Handa <handa@m17n.org>
18424
18425 The following changes are for using Unicode as an internal
18426 character model, and use UTF-8 format for buffer/string
18427 representation.
18428
18429 * .gdbinit (xchartable): Adjust for the change of char table structure.
18430 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
18431
18432 * Makefile.in (obj): Add character.o and chartab.o.
18433 (lisp, shortlisp): Remove utf-8.elc.
18434 (*.o): For many files, change dependency on charset.h to
18435 character.h, and add dependency on character.h.
18436 (character.o, chartab.o): New targets.
18437
18438 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
18439 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
18440 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
18441 of "charset.h".
18442
18443 * dired.c, filelock.c: Include "character.h".
18444
18445 * alloc.c: Include "character.h" instead of "charset.h".
18446 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
18447 (syms_of_alloc): Remove defsubr for Smake_char_table.
18448
18449 * buffer.c: Include "character.h" instead of "charset.h", don't
18450 include "coding.h".
18451 (Fset_buffer_multibyte): Adjust for UTF-8.
18452
18453 * buffer.h: EXFUN Fbuffer_live_p.
18454
18455 * callproc.c: Include "character.h" instead of "charset.h".
18456 (Fcall_process): Big change for the new code-conversion APIs.
18457
18458 * casetab.c: Include "character.h" instead of "charset.h".
18459 (set_canon, set_identity, shuffle): Adjust for the new
18460 map_char_table spec.
18461 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
18462 accessing the char table structure.
18463
18464 * chartab.c: New file that implements char table.
18465
18466 * category.c: Include "character.h".
18467 (copy_category_entry): New function.
18468 (copy_category_table): Call map_char_table and copy_category_entry.
18469 (Fmake_category_table): Initialize all top-level slots.
18470 (char_category_set): New function.
18471 (modify_lower_category_set): Delete.
18472 (Fmodify_category_entry): Call char_table_ref_and_range.
18473
18474 * category.h (CATEGORY_SET): Just call char_category_set.
18475
18476 * ccl.c: Include "character.h".
18477 (Qccl, Qcclp): New variables.
18478 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
18479 it's less than 256.
18480 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
18481 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
18482 and DST type.
18483 (ccl_driver): Change types of argument, adjust code accordingly.
18484 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
18485 ccl_driver.
18486 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
18487
18488 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
18489 New members src_multibyte, dst_multibyte, consumed, and produced.
18490 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
18491 (CODING_SPEC_CCL_PROGRAM): New macro.
18492 (ccl_driver): Update prototype.
18493 (Qccl, Qcclp, Fccl_program_p): Extern them.
18494 (CHECK_CCL_PROGRAM): New macro.
18495
18496 * character.c, character.h, chartab.c: New files.
18497
18498 * charset.c: Mostly re-written. Move character and multibyte sequence
18499 handling codes to character.c.
18500
18501 * charset.h: Mostly re-written. Move character and multibyte sequence
18502 handling codes to character.h.
18503
18504 * coding.c, coding.h: Mostly re-written.
18505
18506 * composite.c: Include "character.h" instead of "charset.h".
18507 (CHAR_WIDTH): Move to character.h.
18508 (HASH_KEY, HASH_VALUE): Delete.
18509
18510 * composite.h (enum composition_method): Change order of enumeration
18511 symbols.
18512
18513 * data.c: Include "character.h" instead of "charset.h".
18514 (Faref): Call CHAR_TABLE_REF for a char table.
18515 (Faset): Call CHAR_TABLE_SET for a char table.
18516
18517 * dispextern.h (free_realized_face, check_face_attribytes)
18518 (generate_ascii_font): Extern them.
18519 (free_realized_multibyte_face): Delete extern.
18520
18521 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
18522 table structure.
18523
18524 * editfns.c: Include "character.h" instead of "charset.h".
18525 (Fchar_to_string): Always call CHAR_STRING.
18526
18527 * emacs.c (main): Call init_charset_once, init_charset,
18528 syms_of_chartab, and syms_of_character.
18529
18530 * fileio.c: Include "character.h" instead of "charset.h".
18531 (Finsert_file_contents): Big change for the new code-conversion API.
18532 (choose_write_coding_system, Fwrite_region): Likewise.
18533 (build_annotations_2): Delete.
18534 (e_write): Big change for the new code-conversion API.
18535
18536 * fns.c: Include "character.h" instead of "charset.h".
18537 (copy_sub_char_table): Move to chartab.c.
18538 (Fcopy_sequence): Call copy_char_table for a char table.
18539 (concat): Delete codes calling count_multibyte.
18540 (string_char_to_byte, string_byte_to_char): Adjust for the new
18541 multibyte form.
18542 (internal_equal): Adjust for the change of char table structure.
18543 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
18544 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
18545 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
18546 (char_table_translate, optimize_sub_char_table)
18547 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
18548 chartab.c.
18549 (char_table_ref_and_index): Delete.
18550 (HASH_KEY, HASH_VALUE): Move to lisp.h.
18551 (Fmd5): Call preferred_coding_system instead of accessing
18552 Vcoding_category_list. Adjust for the new code-conversion API.
18553 (syms_of_fns): Move defsubr for char table related functions to
18554 chartab.c.
18555
18556 * fontset.c: Mostly re-written.
18557
18558 * fontset.h (struct font_info): Change type of the member encoding_type.
18559 (enum FONT_SPEC_INDEX): New enum.
18560 (fontset_font_pattern, fs_load_font): Update prototype.
18561 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
18562
18563 * indent.c: Include "character.h" instead of "charset.h".
18564 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
18565
18566 * insdel.c: Include "character.h" instead of "charset.h".
18567 (copy_text): Don't refer to Vnonascii_translation_table.
18568 (insert_from_gap): New function.
18569
18570 * keyboard.c: Include "character.h" instead of "charset.h".
18571 (command_loop_1): Never call direct_output_forward_char before
18572 a non-ASCII character.
18573 (read_char): If Vkeyboard_translate_table is a char table, always
18574 translate a character.
18575
18576 * keymap.c: Include "character.h".
18577 (store_in_keymap): Handle the case that IDX is a cons.
18578 (Fdefine_key): Handle the case that KEY is a cons and the car part
18579 is also a cons (range).
18580 (push_key_description): Adjust for the new character code.
18581 (describe_vector): Call describe_char_table for a char table.
18582 (describe_char_table): New function.
18583
18584 * keymap.h (describe_char_table): Extern it.
18585
18586 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
18587 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
18588 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
18589 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
18590 Delete.
18591 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
18592 structure.
18593 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
18594 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
18595 (CHARTAB_SIZE_BITS_3): New macros.
18596 (chartab_size): Extern it.
18597 (struct Lisp_Char_Table): Re-design.
18598 (struct Lisp_Sub_Char_Table): New structure.
18599 (HASH_KEY, HASH_VALUE): Move from fns.c.
18600 (CHARACTERBITS): Define as 22.
18601 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
18602 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
18603 (GC_SUB_CHAR_TABLE_P): New macro.
18604 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
18605 (code_convert_string_norecord): Deleted extern.
18606 (init_character_once, syms_of_character, init_charset)
18607 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
18608
18609 * lread.c: Include "character.h".
18610 (read_multibyte): New arg NBYTES.
18611 (read_escape): Change the meaning of returned *BYTEREP.
18612 (to_multibyte): Delete.
18613 (read1): Adjust the handling of char table and string.
18614
18615 * print.c: Include "character.h" instead of "charset.h".
18616 (print_string): Convert 8-bit raw bytes to octal form by
18617 string_escape_byte8.
18618 (print_object): Adjust for the new multibyte form. Print 8-bit
18619 raw bytes always in octal form. Handle sub char table correctly.
18620
18621 * process.c: Include "character.h" instead of "charset.h".
18622 (read_process_output, send_process): Adjust for the new
18623 code-conversion API.
18624
18625 * puresize.h (BASE_PURESIZE): Increase.
18626
18627 * regex.c: Include "character.h" instead of "charset.h".
18628 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
18629 (regex_compile): Accept a range whose starting and ending
18630 character have different leading bytes.
18631 (analyse_first): Adjust for the above change.
18632
18633 * search.c: Include "character.h" instead of "charset.h".
18634 (search_buffer, boyer_moore): Adjust for the new multibyte form.
18635 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
18636
18637 * syntax.c: Include "character.h" instead of "charset.h".
18638 (syntax_parent_lookup): Delete.
18639 (Fmodify_syntax_entry): Accept a cons as CHAR.
18640 (skip_chars): Adjust for the new multibyte form.
18641 (init_syntax_once): Call char_table_set_range instead of directly
18642 accessing the structure of a char table.
18643
18644 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
18645 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
18646 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
18647 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
18648
18649 * term.c: Include "buffer.h" and "character.h".
18650 (encode_terminal_code, write_glyphs): Adjust for the new
18651 code-conversion API.
18652 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
18653
18654 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
18655
18656 * xdisp.c: Include "character.h".
18657 (get_next_display_element): Adjust for the new multibyte form.
18658 (disp_char_vector): Adjust for the new char table structure.
18659 (decode_mode_spec_coding): Adjust for the new structure of
18660 coding system.
18661 (decode_mode_spec): Adjust for the new code-conversion API.
18662
18663 * xfaces.c: Include "character.h" instead of "charset.h".
18664 (load_face_font): Adjust for the change of choose_face_font and
18665 FS_LOAD_FONT.
18666 (generate_ascii_font): New function.
18667 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
18668 (set_font_frame_param): Adjust for the change of choose_face_font.
18669 (free_realized_face): Make it public.
18670 (free_realized_faces_for_fontset): Rename from
18671 free_realized_multibyte_face. Free also faces realized for ASCII.
18672 (choose_face_font): Change arguments. Adjust for the change of
18673 fontset_font_pattern and FS_LOAD_FONT.
18674
18675 * xfns.c: Include "character.h".
18676 (x_encode_text): Adjust for the new code-conversion API.
18677
18678 * xselect.c: Don't include "charset.h".
18679 (selection_data_to_lisp_data): Adjust for the new code conversion API.
18680
18681 * xterm.c: Include "character.h".
18682 (x_encode_char): New argument CHARSET. Change caller.
18683 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
18684 Call ENCODE_CHAR instead of SPLIT_CHAR.
18685 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
18686 CHAR_WIDTH instead of CHARSET_WIDTH.
18687 (XTread_socket): Adjust for the new code-conversion API.
18688 (x_new_font): Adjust for the change of FS_LOAD_FONT.
18689 (x_load_font): Adjust for the change of struct font.
18690
186912008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
18692
18693 * xfaces.c (face_at_buffer_position): Remove unused vars.
18694
186952008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18696
18697 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
18698 Fix overflow checking.
18699
187002008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18701
18702 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
18703 Cancel previous change.
18704
187052008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
18706
18707 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
18708 ccl->eight_bit_control. Fix check for buffer overflow.
18709 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
18710 (ccl_driver): Initialize extra_bytes to 0.
18711
187122008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
18713
18714 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
18715 return it ORed with ctrl_modifier.
18716
187172008-01-29 Miles Bader <miles@gnu.org>
18718
18719 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
18720
187212008-01-28 Jason Rumney <jasonr@gnu.org>
18722
18723 * w32.c (stat): Don't double check for networked drive.
18724
187252008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
18726
18727 * window.c (run_window_configuration_change_hook): New function.
18728 Code extracted from set_window_buffer. Set the selected frame.
18729 (set_window_buffer): Use it.
18730 * window.h (run_window_configuration_change_hook): Declare.
18731 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
18732
18733 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
18734
187352008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
18736
18737 * Makefile.in: Remove references to unused macros.
18738
187392008-01-26 Eli Zaretskii <eliz@gnu.org>
18740
18741 * w32.c (g_b_init_get_sid_sub_authority)
18742 (g_b_init_get_sid_sub_authority_count): New static variables.
18743 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
18744 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
18745 (init_user_info): Use them to retrieve uid and gid.
18746 Use 500/513, the Windows defaults, as Administrator's uid/gid.
18747 (fstat): Use pw_uid and pw_gid from the_passwd structure for
18748 st_uid and st_gid of the file.
18749
187502008-01-26 Jason Rumney <jasonr@gnu.org>
18751
18752 * w32.c (logon_network_drive): New function.
18753 (stat): Use it.
18754
187552008-01-26 Chong Yidong <cyd@stupidchicken.com>
18756
18757 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
18758 invisible text covered with an ellipsis.
18759
187602008-01-25 Richard Stallman <rms@gnu.org>
18761
18762 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
18763 jump back to beginning. Move some other initializations after that.
18764 (Qwindow_text_change_functions, Vwindow_text_change_functions):
18765 New variables.
18766 (syms_of_xdisp): Init them.
18767
18768 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
18769
18770 * buffer.c (reset_buffer_local_variables):
18771 Implement `permanent-local-hook'.
18772 (Qpermanent_local_hook): New variable.
18773 (syms_of_buffer): Init and staticpro it.
18774
187752008-01-25 Michael Albinus <michael.albinus@gmx.de>
18776
18777 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
18778
187792008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
18780
18781 * fns.c (Fclrhash): Return TABLE.
18782
187832008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18784
18785 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
18786 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
18787 is set even without positional changes.
18788 (x_scroll_bar_clear): Set bar->redraw_needed_p.
18789
18790 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
18791
187922008-01-23 Jason Rumney <jasonr@gnu.org>
18793
18794 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
18795
18796 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
18797 the unicode range available in MULE by locale-coding-system.
18798 Improve dbcs lead byte detection. Set event timestamp and modifiers
18799 earlier.
18800
188012008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18802
18803 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
18804 [MAC_OSX] (init_mac_osx_environment): Initialize it.
18805 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
18806 when used on child processes.
18807
188082008-01-21 Michael Albinus <michael.albinus@gmx.de>
18809
18810 * dbusbind.c (Fdbus_method_return_internal): Rename from
18811 Fdbus_method_return.
18812 (Fdbus_unregister_object): Move to dbus.el.
18813 (Fdbus_call_method, Fdbus_method_return_internal)
18814 (Fdbus_send_signal): Improve debug messages.
18815
188162008-01-20 Martin Rudalics <rudalics@gmx.at>
18817
18818 * undo.c (undo_inhibit_record_point): New variable.
18819 (syms_of_undo): Initialize it.
18820 (record_point): Don't record point when undo_inhibit_record_point
18821 is set.
18822
188232008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
18824
18825 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
18826
18827 * xdisp.c (Qauto_hscroll_mode): New var.
18828 (syms_of_xdisp): Initialize it.
18829 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
18830 window's buffer.
18831 (hscroll_windows): Don't check automatic_hscrolling_p here.
18832
18833 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
18834 vscroll if we're setting window-buffer to the value it already has.
18835
188362008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
18837
18838 * m/intel386.h: Remove references to XENIX.
18839
188402008-01-17 Andreas Schwab <schwab@suse.de>
18841
18842 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
18843 instead of HAVE_X86_64_LIB64_DIR.
18844 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
18845
188462008-01-17 Glenn Morris <rgm@gnu.org>
18847
18848 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
18849 to HAVE_X86_64_LIB64_DIR.
18850
188512008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
18852
18853 * s/irix3-3.h:
18854 * s/irix4-0.h:
18855 * s/386-ix.h:
18856 * s/domain.h:
18857 * s/hpux9-x11r4.h:
18858 * s/hpux9shxr4.h: Remove files for systems no longer supported.
18859
18860 * sysdep.c: Remove code containing references to symbols defined
18861 by unsupported systems.
18862
188632008-01-16 Glenn Morris <rgm@gnu.org>
18864
18865 * coding.c (select-safe-coding-system-function): Doc fix.
18866
188672008-01-15 Glenn Morris <rgm@gnu.org>
18868
18869 * config.in: Revert 2008-01-13 change: this is a generated file.
18870
188712008-01-13 Tom Tromey <tromey@redhat.com>
18872
18873 * lisp.h: Fix typo.
18874
188752008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
18876
18877 * m/sequent-ptx.h:
18878 * m/sequent.h:
18879 * s/ptx.h:
18880 * s/ptx4-2.h:
18881 * s/ptx4.h: Remove files for systems no longer supported.
18882
18883 * callproc.c (Fcall_process): Fix previous change.
18884
188852008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
18886
18887 * unexsunos4.c: Remove file, system not supported anymore.
18888
18889 * m/mips.h:
18890 * m/intel386.h:
18891 * callproc.c:
18892 * config.in:
18893 * ecrt0.c:
18894 * emacs.c:
18895 * fileio.c:
18896 * frame.c:
18897 * getpagesize.h:
18898 * keyboard.c:
18899 * lread.c:
18900 * process.c:
18901 * puresize.h:
18902 * sysdep.c:
18903 * systty.h:
18904 * syswait.h:
18905 * unexec.c:
18906 * xdisp.c:
18907 * alloc.c: Remove code containing references to symbols defined by
18908 unsupported systems.
18909
189102008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
18911
18912 * coding.c (detect_coding_mask): Fix previous change.
18913
189142008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
18915
18916 * coding.c (detect_coding_iso2022): New arg
18917 latin_extra_code_state. Allow Latin extra codes only
18918 when *latin_extra_code_state is nonzero.
18919 (detect_coding_mask): If there is a NULL byte, detect the encoding
18920 as UTF-16 or binary. If Latin extra codes exist, detect the
18921 encoding as ISO-2022 only when there's no other proper encoding is
18922 found.
18923
189242008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18925
18926 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
18927 #ifdef MAC_OS.
18928
189292008-01-08 Richard Stallman <rms@gnu.org>
18930
18931 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
18932
189332008-01-06 Nick Roberts <nickrob@snap.net.nz>
18934
18935 * keyboard.c (parse_menu_item): Don't enclose key bindings on
18936 menu bar in parentheses.
18937
189382008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
18939
18940 * m/7300.h:
18941 * m/acorn.h:
18942 * m/alliant-2800.h:
18943 * m/alliant.h:
18944 * m/alliant1.h:
18945 * m/alliant4.h:
18946 * m/altos.h:
18947 * m/amdahl.h:
18948 * m/apollo.h:
18949 * m/att3b.h:
18950 * m/aviion-intel.h:
18951 * m/aviion.h:
18952 * m/celerity.h:
18953 * m/clipper.h:
18954 * m/cnvrgnt.h:
18955 * m/convex.h:
18956 * m/cydra5.h:
18957 * m/delta88k.h:
18958 * m/dpx2.h:
18959 * m/dual.h:
18960 * m/elxsi.h:
18961 * m/f301.h:
18962 * m/gould-np1.h:
18963 * m/gould.h:
18964 * m/i860.h:
18965 * m/ibmps2-aix.h:
18966 * m/ibmrt-aix.h:
18967 * m/ibmrt.h:
18968 * m/irist.h:
18969 * m/is386.h:
18970 * m/isi-ov.h:
18971 * m/mega68.h:
18972 * m/mg1.h:
18973 * m/news-r6.h:
18974 * m/news-risc.h:
18975 * m/news.h:
18976 * m/nh3000.h:
18977 * m/nh4000.h:
18978 * m/ns16000.h:
18979 * m/ns32000.h:
18980 * m/nu.h:
18981 * m/orion.h:
18982 * m/orion105.h:
18983 * m/paragon.h:
18984 * m/pfa50.h:
18985 * m/plexus.h:
18986 * m/pyramid.h:
18987 * m/pyrmips.h:
18988 * m/sh3el.h:
18989 * m/sps7.h:
18990 * m/sr2k.h:
18991 * m/stride.h:
18992 * m/sun1.h:
18993 * m/sun2.h:
18994 * m/sun3-68881.h:
18995 * m/sun3-fpa.h:
18996 * m/sun3-soft.h:
18997 * m/sun3.h:
18998 * m/sun386.h:
18999 * m/symmetry.h:
19000 * m/tad68k.h:
19001 * m/tahoe.h:
19002 * m/targon31.h:
19003 * m/tek4300.h:
19004 * m/tekxd88.h:
19005 * m/tower32.h:
19006 * m/tower32v3.h:
19007 * m/ustation.h:
19008 * m/wicat.h:
19009 * m/xps100.h:
19010 * s/cxux.h:
19011 * s/cxux7.h:
19012 * s/dgux.h:
19013 * s/dgux4.h:
19014 * s/dgux5-4-3.h:
19015 * s/dgux5-4r2.h:
19016 * s/esix.h:
19017 * s/esix5r4.h:
19018 * s/hiuxmpp.h:
19019 * s/hiuxwe2.h:
19020 * s/iris3-5.h:
19021 * s/iris3-6.h:
19022 * s/isc2-2.h:
19023 * s/isc3-0.h:
19024 * s/isc4-0.h:
19025 * s/isc4-1.h:
19026 * s/newsos5.h:
19027 * s/newsos6.h:
19028 * s/osf1.h:
19029 * s/osf5-0.h:
19030 * s/riscix1-1.h:
19031 * s/riscix12.h:
19032 * s/sco4.h:
19033 * s/sco5.h:
19034 * s/sunos4-0.h:
19035 * s/sunos4-1.h:
19036 * s/sunos413.h:
19037 * s/sunos4shr.h:
19038 * s/umax.h:
19039 * s/unipl5-2.h:
19040 * s/xenix.h:
19041 * cxux-crt0.s:
19042 * unexapollo.c:
19043 * unexconvex.c:
19044 * unexenix.c:
19045 * unexsni.c: Remove files for systems no longer supported.
19046
19047 * m/intel386.h: Remove references to unsupported systems.
19048
19049 * w32.c (get_emacs_configuration): Remove reference to i860.
19050
19051 * sysdep.c: Remove dead code.
19052
190532008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
19054
19055 * s/rtu.h:
19056 * m/masscomp.h: Remove files. Platform is obsolete.
19057
190582008-01-04 Michael Albinus <michael.albinus@gmx.de>
19059
19060 * dbusbind.c (Fdbus_method_return): New function.
19061 (xd_read_message): Add the serial number to the event.
19062 (Fdbus_register_method): Activate the function.
19063
190642008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
19065
19066 * keyboard.c (read_key_sequence): Fix typo.
19067
190682008-01-03 Michael Albinus <michael.albinus@gmx.de>
19069
19070 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
19071 (xd_signature, xd_append_arg): Handle element type detection for
19072 empty arrays.
19073 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
19074 SDATA () calls; this must be solved more general.
19075 (Fdbus_register_signal): Use SBYTES instead of strlen.
19076
190772008-01-03 Magnus Henoch <magnus@zemdatav>
19078
19079 * dbusbind.c (xd_append_arg): Use unsigned char instead of
19080 unsigned int for byte values (necessary for big-endian platform).
19081 (Fdbus_call_method): Handle the case of no returned arguments.
19082
190832007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
19084
19085 * dbusbind.c (xd_read_message): Use non-static input_event struct.
19086
190872007-12-31 Magnus Henoch <mange@freemail.hu>
19088
19089 * dbusbind.c (xd_signature): Signature of variant is just "v".
19090
190912007-12-30 Michael Albinus <michael.albinus@gmx.de>
19092
19093 * dbusbind.c: Fix several errors and compiler warnings.
19094 Reported by Tom Tromey <tromey@redhat.com>.
19095 (XD_ERROR, XD_DEBUG_MESSAGE)
19096 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
19097 (xd_append_arg): Part for basic D-Bus types rewritten.
19098 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
19099 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
19100 appropriate.
19101 (xd_read_message): Return Qnil. Don't signal an error; it is not
19102 useful during event reading.
19103 (Fdbus_register_signal): Signal an error if the check for
19104 FUNCTIONP fails.
19105 (Fdbus_register_method): New function. The implementation is not
19106 complete, the call of the function signals an error therefore.
19107 (Fdbus_unregister_object): New function, renamed from
19108 Fdbus_unregister_signal. The initial check signals an error, if
19109 the object is not well formed.
19110
191112007-12-30 Richard Stallman <rms@gnu.org>
19112
19113 * textprop.c (get_char_property_and_overlay):
19114 Signal error if POSITION is out of range in a buffer.
19115
191162007-12-29 Martin Rudalics <rudalics@gmx.at>
19117
19118 * w32fns.c (Fx_create_frame): Make copy of frame parameters
19119 because the original parameters are in pure storage now.
19120
191212007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19122
19123 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
19124
191252007-12-22 Eli Zaretskii <eliz@gnu.org>
19126
19127 * callint.c (syms_of_callint) <command-history>: Add reference to
19128 history-length in the doc string.
19129
191302007-12-17 Jason Rumney <jasonr@gnu.org>
19131
19132 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
19133 before passing as wParam.
19134
191352007-12-22 Michael Albinus <michael.albinus@gmx.de>
19136
19137 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
19138 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
19139 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
19140 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
19141 as number.
19142 (Fdbus_call_method): Fix docstring.
19143
191442007-12-21 Michael Albinus <michael.albinus@gmx.de>
19145
19146 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
19147 New macros.
19148 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
19149 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
19150 Simplify.
19151 (xd_signature): New function.
19152 (xd_append_arg): Compute also signatures. Major rewrite.
19153 (xd_retrieve_arg): Make debug messages friendly.
19154 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
19155 Check for signatures of arguments.
19156
191572007-12-19 Michael Albinus <michael.albinus@gmx.de>
19158
19159 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
19160 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
19161 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
19162 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
19163 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
19164 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
19165 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
19166 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
19167 (xd_retrieve_value): Remove. Functionality included in ...
19168 (xd_append_arg): New function.
19169 (Fdbus_call_method, Fdbus_send_signal): Apply it.
19170
191712007-12-16 Michael Albinus <michael.albinus@gmx.de>
19172
19173 * dbusbind.c (top): Include <stdio.h>.
19174 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
19175 dbus_message_new_method_call and dbus_message_new_signal.
19176 (Fdbus_register_signal): Rename unique_name to uname.
19177 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
19178 non-existing unique name. Fix typos in matching rule. Return an
19179 object which is useful in Fdbus_unregister_signal.
19180 (Fdbus_unregister_signal): Reimplementation, in order to remove
19181 only the corresponding entry.
19182 (Vdbus_registered_functions_table): Change the order of entries.
19183 Apply these changes in xd_read_message and Fdbus_register_signal.
19184
191852007-12-16 Andreas Schwab <schwab@suse.de>
19186
19187 * fileio.c (Finsert_file_contents): Fix overflow check to not
19188 depend on undefined integer overflow.
19189
191902007-12-14 Jason Rumney <jasonr@gnu.org>
19191
19192 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
19193 for characters above 127.
19194
191952007-12-13 Jason Rumney <jasonr@gnu.org>
19196
19197 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
19198 before dereferencing array.
19199 (lookup_vk_code): Remove zero comparison.
19200
192012007-12-14 Michael Albinus <michael.albinus@gmx.de>
19202
19203 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
19204 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
19205 Use `unsigned int' instead of `uint'.
19206 (xd_read_message, Fdbus_register_signal): Split expressions into
19207 multiple lines before operators "&&" and "||", according to the
19208 GNU Coding Standards.
19209
192102007-12-14 Eli Zaretskii <eliz@gnu.org>
19211
19212 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
19213
192142007-12-12 Juri Linkov <juri@jurta.org>
19215
19216 * buffer.c (Frename_buffer): In interactive spec replace
19217 `read-buffer' with `read-string' that uses `buffer-name-history'
19218 as history, and the current buffer's name as default.
19219
192202007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
19221
19222 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
19223 manipulating the backtrace manually.
19224 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
19225 (struct backtrace, backtrace_list): Remove.
19226 (command_loop_1): Remove dead var `no_direct'.
19227
19228 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
19229 preserve non-built-in buffer-local variables.
19230 (Fkill_all_local_variables): Don't re-create&re-set permanent
19231 buffer-local variables.
19232
192332007-12-09 Juri Linkov <juri@jurta.org>
19234
19235 * buffer.c (Frename_buffer): Change interactive spec from "s" to
19236 Lisp code that uses `read-buffer' with current buffer as default.
19237
192382007-12-08 Michael Albinus <michael.albinus@gmx.de>
19239
19240 * dbusbind.c (xd_read_message): Generate an event for every
19241 registered handler. There might be several handlers registered
19242 for the same signal.
19243 (Fdbus_register_signal): Don't overwrite a registration for the
19244 same signal. Add a new registration if handlers are different.
19245 (Vdbus_registered_functions_table): Rework doc string.
19246
192472007-12-07 Michael Albinus <michael.albinus@gmx.de>
19248
19249 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
19250 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
19251 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
19252 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
19253 Unify argument lists.
19254 (xd_read_message, Fdbus_register_signal): Reorder and extend event
19255 arguments and hash table keys. Use unique name for service.
19256 (Fdbus_unregister_signal): Remove checks.
19257 (Vdbus_registered_functions_table): Fix doc string.
19258
192592007-12-05 Magnus Henoch <mange@freemail.hu>
19260
19261 * process.c (make_process): Initialize pty_flag to 0.
19262
192632007-12-05 Jason Rumney <jasonr@gnu.org>
19264
19265 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
19266 specified XBMs.
19267
192682007-12-05 Richard Stallman <rms@gnu.org>
19269
19270 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
19271
192722007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19273
19274 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
19275 New variable.
19276 (mac_try_close_socket) [MAC_OSX]: New function.
19277 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
19278 Update cfsockets_for_select. Replace invalid CFRunLoop source.
19279
19280 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
19281 Use mac_try_close_socket.
19282
192832007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19284
19285 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
19286 reloc_base.
19287 (copy_dysymtab): Compute relocation base here.
19288 (rebase_reloc_address) [__ppc64__]: New function.
19289 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
19290 changed.
19291
192922007-12-05 Jason Rumney <jasonr@gnu.org>
19293
19294 * w32proc.c (sys_spawnve): Quote args with wildcards.
19295
192962007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19297
19298 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
19299 __objc_* sections.
19300 (unrelocate) [_LP64]: Set relocation base to address of data segment.
19301
193022007-12-05 Michael Albinus <michael.albinus@gmx.de>
19303
19304 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
19305 Move check for Vdbus_registered_functions_table to
19306 xd_read_queued_messages.
19307 (xd_read_queued_messages): Protect xd_read_message calls by
19308 internal_condition_case_1.
19309
193102007-12-04 Michael Albinus <michael.albinus@gmx.de>
19311
19312 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
19313 Qdbus_system_bus and Qdbus_session_bus, respectively.
19314 (Vdbus_intern_symbols): Remove.
19315 (Vdbus_registered_functions_table): New hash table.
19316 (XD_SYMBOL_INTERN_SYMBOL): Remove.
19317 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
19318 Rewrite in order to manage registered functions by hash table
19319 Vdbus_registered_functions_table.
19320
193212007-12-03 Jan Djärv <jan.h.d@swipnet.se>
19322
19323 * xterm.c: Update URL to Window Manager Specification in comment.
19324
193252007-12-02 Michael Albinus <michael.albinus@gmx.de>
19326
19327 * config.in (HAVE_DBUS): Add.
19328
19329 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
19330 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
19331 (obj): Add $(DBUS_OBJ).
19332 (LIBES): Add $(DBUS_LIBS).
19333 (dbusbind.o): New target.
19334
19335 * dbusbind.c: New file.
19336
19337 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
19338
19339 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
19340 (Qdbus_event): New Lisp symbol.
19341 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
19342 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
b97439ce 19343 (keys_of_keyboard): Define dbus-event.
aac0c6e3
MR
19344
19345 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
19346
193472007-12-01 Richard Stallman <rms@gnu.org>
19348
19349 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
19350
193512007-11-30 Jason Rumney <jasonr@gnu.org>
19352
19353 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
19354 (w32con_reset_terminal_modes): Clear screen buffer.
19355 (w32_face_attributes): Don't use color indexes that are out of range.
19356 Only reverse the default colors.
19357
19358 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
19359 WINDOWSNT.
19360
19361 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
19362
193632007-11-29 Jason Rumney <jasonr@gnu.org>
19364
19365 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
19366 (w32_face_attributes): Use Vtty_defined_color_alist to determine
19367 if the terminal colors are initialized.
19368 (unspecified_fg, unspecified_bg): Remove unused declarations.
19369
193702007-11-29 Andreas Schwab <schwab@suse.de>
19371
19372 * keyboard.c (apply_modifiers): Fix typo.
19373
193742007-11-29 Richard Stallman <rms@gnu.org>
19375
19376 * keymap.c (Fcurrent_local_map): Doc fix.
19377
193782007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
19379
19380 * s/gnu-kfreebsd.h: New file.
19381
193822007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
19383
19384 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
19385 Don't cast redundantly.
19386
19387 * keyboard.c (KEY_TO_CHAR): New macro.
19388 (parse_modifiers, apply_modifiers): Accept integer arguments.
19389 (read_key_sequence): Use them to unify the "shift->unshift" mapping
19390 for chars and symbol keys.
19391 After doing such remapping, apply function-key-map again.
19392
193932007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
19394
19395 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
19396 compiled anymore.
19397
193982007-11-26 Andreas Schwab <schwab@suse.de>
19399
19400 * process.c (list_processes_1): Fix indentation level of the
19401 command column.
19402
194032007-11-23 Andreas Schwab <schwab@suse.de>
19404
19405 * editfns.c (Fformat): Handle %c specially since it requires the
19406 argument to be of type int.
19407
194082007-11-23 Markus Triska <markus.triska@gmx.at>
19409
19410 * emacs.c (main): Call init_editfns before init_process, since
19411 init_process sets Vprocess_connection_type depending on OS release.
19412
194132007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
19414
19415 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
19416 (find_symbol_value): Use do_symval_forwarding.
19417
19418 * data.c (set_internal): Set the value in the `cons-cell' (for
19419 Buffer_Local_values) not only for frame-local variables.
19420
194212007-11-22 Andreas Schwab <schwab@suse.de>
19422
19423 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
19424 values to sprintf.
19425 * keymap.c (Fsingle_key_description): Likewise.
19426 * print.c (print_object): Likewise.
19427
194282007-11-22 Jan Djärv <jan.h.d@swipnet.se>
19429
19430 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
19431 file for image is nil.
19432
194332007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
19434
19435 * term.c: Include stdarg.h.
19436 (fatal): Implement using varargs.
19437 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
19438
194392007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
19440
19441 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
19442 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
19443 Update call to buffer_slot_type_mismatch.
19444 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
19445 (buffer_slot_type_mismatch): Update.
19446 * buffer.c (buffer_local_types): Remove.
19447 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
19448 (defvar_per_buffer): Set the type in the buffer_objfwd.
19449
194502007-11-21 Jason Rumney <jasonr@gnu.org>
19451
19452 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
19453 CreateFileMapping returns NULL on failure.
19454
194552007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
19456
19457 * search.c (Fset_match_data): Remove the `evaporate' feature.
19458 (unwind_set_match_data): Don't use the `evaporate' feature.
19459
194602007-11-21 Jason Rumney <jasonr@gnu.org>
19461
19462 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
19463
19464 * w32console.c (w32con_write_glyphs): Remove unused variables.
19465
194662007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
19467
19468 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
19469
19470 * s/darwin.h (MULTI_KBOARD): Remove.
19471
19472 * macfns.c (x_create_tip_frame, Fx_create_frame)
19473 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
19474
194752007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
19476
19477 * buffer.c (Fbuffer_local_value): Remove redundant test.
19478 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
19479 than in `current-buffer' to match the comment.
19480 Do the swap using swap_in_global_binding.
19481
19482 * data.c (store_symval_forwarding, set_internal):
19483 * eval.c (specbind): Remove dead code.
19484
19485 * coding.c (detect_coding, Fupdate_coding_systems_internal):
19486 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
19487 Since we do not want to see internal Lisp_*fwd objects here.
19488
194892007-11-18 Jan Djärv <jan.h.d@swipnet.se>
19490
19491 * sysdep.c (init_system_name): Use getaddrinfo if available.
19492
19493 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
19494 (x_scroll_bar_note_movement): start, end, with, height in struct
19495 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
19496
194972007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
19498
19499 * puresize.h (BASE_PURESIZE): Increase to 1190000.
19500
195012007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
19502
19503 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
19504 This undoes Richard's change of 14-Oct-2002.
19505
19506 * alloc.c (allocate_other_vector):
19507 * lisp.h (allocate_other_vector): Remove.
19508
19509 * window.c (struct save_window_data): Move non-lisp data to the end
19510 and make it `int' rather than Lisp_Object.
19511 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
19512 Done wrap/unwrap integer values.
19513 (Fset_window_configuration, compare_window_configurations):
19514 Update use of fields to their new types.
19515
19516 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
19517 Turn integer fields into `int'. Merge x_window_low and x_window_high.
19518 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
19519 (SET_SCROLL_BAR_X_WINDOW): Remove.
19520 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
19521 Access the new x_window field directly.
19522 * xterm.c (x_scroll_bar_create): Use a pseudovector.
19523 Don't wrap/unwrap integers into Lisp_Objects.
19524 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
19525 (x_scroll_bar_report_motion):
19526 Don't wrap/unwrap integers into Lisp_Objects.
19527 (x_term_init): Use SDATA.
19528 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
19529 (x_scroll_bar_set_handle, x_scroll_bar_remove)
19530 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
19531 (x_scroll_bar_report_motion, x_scroll_bar_clear):
19532 * xfns.c (x_set_background_color):
19533 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
19534 Access the new x_window field directly.
19535
19536 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
19537 (allocate_pseudovector): Make non-static.
19538
19539 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
19540 (allocate_pseudovector): Declare.
19541 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
19542
195432007-11-15 Andreas Schwab <schwab@suse.de>
19544
19545 * editfns.c (Fformat): Correctly format EMACS_INT values.
19546 Also take precision into account when formatting an integer.
19547
19548 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
19549
195502007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
19551
19552 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
19553 (syms_of_keyboard): Defsubr it.
19554
19555 * data.c (swap_in_global_binding): Fix longstanding bug where
19556 store_symval_forwarding was not called with the right second argument,
19557 thus causing objfwd-ing from being dropped.
19558
195592007-11-14 Juanma Barranquero <lekktu@gmail.com>
19560
19561 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
19562 (Fx_display_pixel_height, Fx_display_planes)
19563 (Fx_display_color_cells, Fx_server_max_request_size)
19564 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
19565 (Fx_display_visual_class, Fx_display_save_under):
19566 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
19567 (Fx_display_pixel_height, Fx_display_planes)
19568 (Fx_display_color_cells, Fx_server_max_request_size)
19569 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
19570 (Fx_display_mm_height, Fx_display_mm_width)
19571 (Fx_display_backing_store, Fx_display_visual_class)
19572 (Fw32_select_font, Fx_display_save_under):
19573 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
19574 (Fx_display_pixel_height, Fx_display_planes)
19575 (Fx_display_color_cells, Fx_server_max_request_size)
19576 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
19577 (Fx_display_save_under): Fix typos in docstrings.
19578
195792007-11-14 Juanma Barranquero <lekktu@gmail.com>
19580
19581 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
19582 corresponding to deleted entries; they are an implementation detail.
19583 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
19584 Remove variables.
19585 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
19586 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
19587 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
19588 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
19589 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
19590 (Fw32_define_rgb_color, Fw32_load_color_file)
19591 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
19592 Fix typos in docstrings.
19593 (Fx_server_version): Reflow docstring.
19594 (Fw32_shell_execute): Doc fixes.
19595
195962007-11-13 Juanma Barranquero <lekktu@gmail.com>
19597
19598 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
19599 if w32_parse_hot_key returned nil.
19600
196012007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
19602
19603 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
19604
196052007-11-09 Jason Rumney <jasonr@gnu.org>
d6c952f8 19606
aac0c6e3
MR
19607 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
19608
19609 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
19610
19611 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
19612 Remove W32_SCROLL_BAR_CLICK_EVENT.
19613
19614 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
19615 Add MULTIMEDIA_KEY_EVENT.
19616
19617 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
19618 (lispy_multimedia_keys) [WINDOWSNT]: New array.
19619 (make_lispy_event) [WINDOWSNT]: Use it to translate
19620 MULTIMEDIA_KEY_EVENT.
19621
19622 * w32term.h (WM_APPCOMMAND): Define if not already.
19623 (GET_APPCOMMAND_LPARAM): Likewise.
19624
19625 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
19626 WM_APPCOMMAND.
19627
19628 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
19629 (syms_of_w32fns): Export and initialize it.
19630 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
19631
196322007-11-09 Chong Yidong <cyd@stupidchicken.com>
19633
19634 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
19635 twice.
19636
19637 * xdisp.c (handle_face_prop): Fix last change.
19638
196392007-11-09 Richard Stallman <rms@gnu.org>
19640
19641 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
19642 not just for after-strings and before-strings.
19643 Call face_for_overlay_string and pass the overlay to it.
19644 (handle_display_prop): Determine whether property came from an overlay.
19645 Pass OVERLAY arg to handle_single_display_spec.
19646 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
19647 (load_overlay_strings): Fill in it->string_overlays.
19648 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
19649
19650 * xfaces.c (face_for_overlay_string): Function renamed from
19651 face_at_buffer_position_no_overlays, and add arg OVERLAY.
19652
19653 * dispextern.h (struct it): New elt string_overlays.
19654 New elt from_overlay, also in stack.
19655 Rearrange a few elements.
19656 (face_for_overlay_string): Decl renamed from
19657 face_at_buffer_position_no_overlays, and add argument.
19658
196592007-11-09 Richard Stallman <rms@gnu.org>
19660
19661 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
19662 to get the base face for an overlay string.
19663
19664 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
19665
19666 * xfaces.c (face_at_buffer_position_no_overlays): New function.
19667
19668 * xdisp.c (handle_stop): Move some code out of loop.
19669
196702007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19671
19672 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
19673 Fix conversion from Lisp object to ATSUFontID.
19674
196752007-11-09 Jason Rumney <jasonr@gnu.org>
19676
19677 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
19678
196792007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19680
19681 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
19682 Don't assume regions are aligned to page boundary.
19683 (print_load_command_name): Add LC_UUID if defined.
19684
196852007-11-09 Richard Stallman <rms@gnu.org>
19686
19687 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
19688
196892007-11-07 Jason Rumney <jasonr@gnu.org>
19690
19691 * s/windows95.h: Remove.
19692
196932007-11-06 Jan Djärv <jan.h.d@swipnet.se>
19694
19695 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
19696 abort with a message on unhandled store_type values.
19697
196982007-11-01 Jan Djärv <jan.h.d@swipnet.se>
19699
19700 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
19701 Remove HAVE_X11R5 and HAVE_X11R4.
19702
197032007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
19704
19705 * Makefile.in: Remove references to sunfns.c and sunfns.o.
19706
197072007-11-01 Johan Bockgård <bojohan@gnu.org>
19708
19709 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
19710 Don't set s->stippled_p here, since it has already been set by
19711 x_set_glyph_string_gc from x_draw_glyph_string.
19712
197132007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
19714
19715 * sunfns.c: Remove file.
19716
19717 * m/sun386.h:
19718 * m/sun2.h:
19719 * m/sparc.h: Remove Sun windows code.
19720
197212007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
19722
19723 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
19724 (init_keyboard): Set current_kboard's window-system to nil.
19725 (tty_read_avail_input): Typo.
19726 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
19727
197282007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
19729
19730 * s/usg5-4.h:
19731 * s/usg5-3.h:
19732 * s/ptx.h:
19733 * m/is386.h:
19734 * m/ibmps2-aix.h:
19735 * Makefile.in: Remove all mentions of X10.
19736
19737 * dispnew.c (syms_of_display): Don't mention version 10.
19738
197392007-10-28 Juanma Barranquero <lekktu@gmail.com>
19740
19741 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
19742 ($(BLD)/abbrev.$(O)): Remove.
19743
197442007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
19745
19746 Rewrite abbrev.c in Elisp.
19747 * image.c (Qcount): Don't declare as extern.
19748 (syms_of_image): Initialize and staticpro `Qcount'.
19749 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
19750 * emacs.c (main): Don't call syms_of_abbrev.
19751 * Makefile.in (obj): Remove abbrev.o.
19752 (abbrev.o): Remove.
19753 * abbrev.c: Remove.
19754
197552007-10-26 Martin Rudalics <rudalics@gmx.at>
19756
19757 * window.c (window_min_size_2): Don't count header-line.
19758
197592007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
19760
19761 * frame.h (struct frame): Move all bit fields after the first bit
19762 field to take advantage of the available space. Group all the
19763 chars together to reduce wasted space due to padding.
19764
197652007-10-26 Juanma Barranquero <lekktu@gmail.com>
19766
19767 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
19768
19769 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
19770 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
19771 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
19772 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
19773 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
19774 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
19775 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
19776 (last_marked, mark_object_loop_halt): Make static.
19777
19778 * frame.c (syms_of_frame) <delete-frame-functions>:
19779 Fix typo in docstring.
19780
197812007-10-25 Juanma Barranquero <lekktu@gmail.com>
19782
19783 * w32.c (init_environment): Fix tiny memory leak.
19784 (w32_get_resource): Remove unused variable `ok'.
19785
197862007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
19787
19788 Make `window-system' into a keyboard-local variable (rather than
19789 frame-local as done originally by multi-tty).
19790
19791 * keyboard.h (struct kboard): Add Vwindow_system.
19792 * keyboard.c (init_kboard): Set a default for Vwindow_system.
19793 (mark_kboards): Mark Vwindow_system.
19794
19795 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
19796 (init_display): Don't set the obsolete `window-system' frame-param.
19797
19798 * xterm.c (x_term_init):
19799 * w32term.c (w32_create_terminal):
19800 * term.c (init_tty): Set Vwindow_system.
19801 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
19802 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
19803
19804 * xfns.c (Fx_create_frame, x_create_tip_frame):
19805 * w32fns.c (Fx_create_frame, x_create_tip_frame):
19806 * macfns.c (Fx_create_frame):
19807 Don't set the obsolete `window-system' frame-param.
19808
19809 * frame.h (Qwindow_system): Remove.
19810 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
19811 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
19812
198132007-10-24 Richard Stallman <rms@gnu.org>
19814
19815 * frame.c (x_figure_window_size): For fullscreen case,
19816 set USPosition | PPosition without clobbering rest of window_prompting.
19817
19818 * keyboard.c (Fcurrent_idle_time): Doc fix.
19819
19820 * print.c (Fwith_output_to_temp_buffer): Doc fix.
19821
198222007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
19823
19824 * process.c (unwind_request_sigio): Only define if __ultrix__.
19825
19826 * callproc.c (child_setup): Remove spurious *.
19827
19828 * lisp.h (Fget_text_property): Declare.
19829 (have_menus_p): Declare it here rather than in sys-dep header files.
19830 * macterm.h (have_menus_p):
19831 * msdos.h (have_menus_p):
19832 * xterm.h (have_menus_p): Remove.
19833
19834 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
19835 (Fmake_variable_frame_local): Just check the variable's const-ness
19836 rather than checking nil or t.
19837
198382007-10-22 Jason Rumney <jasonr@gnu.org>
19839
19840 * w32fns.c: Include math.h.
19841 (w32_abort): Declaration moved to nt/config.nt.
19842
19843 * s/ms-w32.h (HAVE_STDLIB_H): Define.
19844 (abort): Redefinition moved to nt/config.nt.
19845
19846 * m/windowsnt.h: Remove.
19847
198482007-10-22 Juanma Barranquero <lekktu@gmail.com>
19849
19850 * emacs.c (Fdump_emacs): Fix typo in message.
19851 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
19852 <installation-directory>: Reflow docstring.
19853
198542007-10-22 Juri Linkov <juri@jurta.org>
19855
19856 * minibuf.c: Allow minibuffer default to be a list of default values.
19857 With empty input use the first element of this list as returned default.
19858 (string_to_object)
19859 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
19860 (read_minibuf): If defalt is cons, set histstring to its car.
19861 (Fread_string): If default_value is cons, set val to its car.
19862 (Fread_buffer): If def is cons, use its car.
19863 (Fcompleting_read): If defalt is cons, set val to its car.
19864
198652007-10-21 Michael Albinus <michael.albinus@gmx.de>
19866
19867 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
19868
198692007-10-20 Juanma Barranquero <lekktu@gmail.com>
19870
19871 * doc.c (Fdocumentation): Check for advice in all cases.
19872
198732007-10-19 Chong Yidong <cyd@stupidchicken.com>
19874
19875 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
19876
198772007-10-19 Richard Stallman <rms@gnu.org>
19878
19879 * doc.c (Fdocumentation): Check for and handle an advised function.
19880
198812007-10-19 Juanma Barranquero <lekktu@gmail.com>
19882
19883 * process.c (Fset_process_filter): Doc fix.
19884
198852007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
19886
19887 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
19888 which caused key-translation-map to applied repeatedly (thus breaking
19889 double-mode).
19890
198912007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
19892
19893 * xselect.c (x_own_selection, x_handle_selection_clear)
19894 (x_clear_frame_selections):
19895 * w32menu.c (list_of_panes, list_of_items):
19896 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
19897 * textprop.c (validate_plist, interval_has_all_properties)
19898 (interval_has_some_properties, interval_has_some_properties_list)
19899 (add_properties, text_property_list):
19900 * process.c (Fget_buffer_process, list_processes_1, status_notify):
19901 * minibuf.c (Fassoc_string):
19902 * macselect.c (x_own_selection, x_clear_frame_selections)
19903 (Fx_disown_selection_internal):
19904 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
19905 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
19906
199072007-10-17 Chong Yidong <cyd@stupidchicken.com>
19908
19909 * process.c: Link to libs for calling res_init() if available.
19910 (Fmake_network_process): Call res_init() before getaddrinfo or
19911 gethostbyname, if possible.
19912
199132007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
19914
19915 * lread.c (read1): Set pvectype for char_tables.
19916
19917 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
19918 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
19919 Add type checks.
19920 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
19921
19922 * alloc.c (free_misc): Use XMISCTYPE.
19923 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
19924
199252007-10-17 Glenn Morris <rgm@gnu.org>
19926
19927 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
19928 (syms_of_minibuf): Add Qcompletion_ignore_case.
19929 * dired.c (Qcompletion_ignore_case): Change to external.
19930 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
19931 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
19932 (Fread_file_name): Use it rather than intern'ing.
19933
19934 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
19935 (Fread_coding_system): Ignore case of user input.
19936
199372007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19938
19939 * xdisp.c (handle_display_prop): Ignore display specs after
19940 replacing one when string text is being replaced.
19941 (handle_single_display_spec): Pretend as if characters with display
19942 property haven't been consumed only when buffer text is being replaced.
19943
199442007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
19945
19946 * xfns.c (Fx_create_frame, Fx_display_list):
19947 * window.c (window_fixed_size_p, enlarge_window)
19948 (shrink_window_lowest_first):
19949 * macterm.c (init_font_name_table):
19950 * macfns.c (Fx_create_frame, Fx_display_list):
19951 * lread.c (close_load_descs):
19952 * keyboard.c (read_char_x_menu_prompt):
19953 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
19954 * coding.c (code_convert_region_unwind): Test the type of an object
19955 rather than just !NILP before extracting data from it.
19956
19957 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
19958
19959 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
19960 (XMISCANY): New macro.
19961 (XMISCTYPE): Use it.
19962 (struct Lisp_Misc_Any): New type.
19963 (union Lisp_Misc): Use it.
19964 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
19965 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
19966 (find_symbol_value, set_internal, default_value, Fset_default)
19967 (Fmake_variable_buffer_local, Fmake_local_variable)
19968 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
19969 (Flocal_variable_if_set_p, Fvariable_binding_locus):
19970 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
19971 * alloc.c (allocate_buffer): Set the size and tag.
19972 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
19973 Use XMISCANY.
19974 (die): Follow the GNU convention for error messages.
19975 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
19976 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
19977 tag any more.
19978 (set_buffer_internal_1):
19979 * frame.c (store_frame_param):
19980 * eval.c (specbind):
19981 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
19982
19983 * doc.c (Fsnarf_documentation): Simplify.
19984
199852007-10-14 Juanma Barranquero <lekktu@gmail.com>
19986
19987 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
19988 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
19989
199902007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
19991
19992 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
19993
199942007-10-14 Juanma Barranquero <lekktu@gmail.com>
19995
19996 * eval.c (do_autoload): Don't save autoloads.
19997
19998 * data.c (Ffset): Save autoload of the function being set.
19999
200002007-10-07 John Paul Wallington <jpw@pobox.com>
20001
20002 * xfns.c (x_create_tip_frame): Set the `display-type' frame
20003 parameter before setting up faces.
20004
200052007-10-13 Eli Zaretskii <eliz@gnu.org>
20006
20007 * ccl.c (Fregister_code_conversion_map):
20008 * keyboard.c (append_tool_bar_item): Reformat last change.
20009
20010 * lisp.h (eabs): Rename from `abs'. All callers changed.
20011
200122007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
20013
20014 * buffer.c (add_overlay_mod_hooklist):
20015 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
20016 * fontset.c (make_fontset):
20017 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
20018 (append_tool_bar_item):
20019 * macmenu.c (grow_menu_items):
20020 * w32menu.c (grow_menu_items):
20021 * xmenu.c (grow_menu_items): Use larger_vector.
20022
200232007-10-13 Eli Zaretskii <eliz@gnu.org>
20024
20025 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
20026 selected frame'' on MSDOS).
20027
200282007-10-12 Martin Rudalics <rudalics@gmx.at>
20029
20030 * frame.c (Qexplicit_name): New variable.
20031 (x_report_frame_params): Report it in parameter alist.
20032 (syms_of_frame): Intern and staticpro it.
20033
200342007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
20035
20036 * macfns.c (x_create_tip_frame): Set terminal for frame.
20037
200382007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
20039
20040 * frame.c (Qenvironment): Remove.
20041 (syms_of_frame) <Qenvironment>: Don't initialize.
20042 (Fdelete_frame): Don't treat the `environment' param specially.
20043 * frame.h (Qenvironment): Don't declare.
20044 * callproc.c (set_initial_environment): Don't set unused frame param.
20045
20046 * frame.c (Fframe_with_environment): Remove.
20047 (syms_of_frame) <Sframe_with_environment>: Don't declare.
20048
20049 * lisp.h (Fframe_with_environment): Don't declare.
20050
200512007-10-10 Juanma Barranquero <lekktu@gmail.com>
20052
20053 * indent.c (indent_tabs_mode, last_known_column)
20054 (last_known_column_modified): Make static.
20055 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
20056
200572007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
20058
20059 * puresize.h (BASE_PURESIZE): Increase to 1170000.
20060
200612007-10-09 Jason Rumney <jasonr@gnu.org>
20062
20063 * w32term.c (x_set_window_size): Disable code that attempts to tell
20064 Lisp code about a size change before it actually happens.
20065
200662007-10-09 Richard Stallman <rms@gnu.org>
20067
20068 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
20069 return HANDLED_RETURN.
20070
200712007-10-08 Martin Rudalics <rudalics@gmx.at>
20072
20073 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
20074 when there's an unread command event.
20075
20076 * frame.c (focus_follows_mouse): Move here from frame.el to allow
20077 window autoselection act appropriately when leaving selected frame.
20078 (syms_of_frame): Initialize focus_follows_mouse.
20079 * frame.h (focus_follows_mouse): Extern it.
20080 * macterm.c (XTread_socket): When focus_follows_mouse is nil
20081 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
20082 * msdos.c (dos_rawgetc): Likewise.
20083 * w32term.c (w32_read_socket): Likewise.
20084 * xterm.c (handle_one_xevent): Likewise.
20085 * xdisp.c (syms_of_xdisp): In doc-string of
20086 mouse-autoselect-window mention focus-follows-mouse.
20087
200882007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20089
20090 * macterm.c (mac_load_query_font): Fix missing return value.
20091 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
20092 Add BLOCK_INPUT.
20093
200942007-10-08 Richard Stallman <rms@gnu.org>
20095
20096 * xdisp.c (get_window_cursor_type): Implement documented behavior
20097 for cursor-in-non-selected-windows = t.
20098
200992007-10-08 Jason Rumney <jasonr@gnu.org>
20100
20101 * w32.c (w32_get_resource): Always close registry keys.
20102
201032007-10-08 Jason Rumney <jasonr@gnu.org>
20104
20105 * makefile.w32-in (LIBS): Add COMCTL32.
20106
20107 * w32fns.c (globals_of_w32fns): Init common controls.
20108
201092007-10-08 Richard Stallman <rms@gnu.org>
20110
20111 * image.c (our_memory_buffer): Rename from omfib_buffer.
20112
201132007-10-08 Richard Stallman <rms@gnu.org>
20114
20115 * buffer.c (Foverlays_at): Doc fix.
20116
201172007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
20118
20119 * fns.c (Fplist_put): Preserve uneven tail data.
20120
201212007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
20122
20123 * termhooks.h (enum event_kind): Remove trailing comma.
20124
20125 * frame.h (enum): Remove trailing comma.
20126
201272007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
20128
20129 * w32proc.c (delete_child): Don't terminate threads of zombies.
20130
201312007-10-08 Martin Rudalics <rudalics@gmx.at>
20132
20133 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
20134
20135 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
20136 last-repeatable-command.
20137 (init_kboard): Initialize Vlast_repeatable_command.
20138 (command_loop_1): Set it to real_this_command unless that was
20139 bound to an input event.
20140 (mark_kboards): Mark it.
20141
201422007-10-08 Richard Stallman <rms@gnu.org>
20143
20144 * eval.c (condition-case): Doc fix.
20145
201462007-10-08 Masatake YAMATO <jet@gyve.org>
20147
20148 * xfaces.c (tty_supports_face_attributes_p): Fix code
20149 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
20150 was copied and not edited.
20151
201522007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
20153
20154 Add new `input-decode-map' keymap and use it for terminal
20155 escape sequences.
20156 * keyboard.h (struct kboard): Add Vinput_decode_map.
20157 Remove Vlocal_key_translation_map.
20158 * keyboard.c (read_key_sequence): Add support for input-decode-map.
20159 (init_kboard): Init input-decode-map.
20160 Replace local-key-translation-map back with key-translation-map.
20161 (syms_of_keyboard): Declare input-decode-map.
20162 Remove local-key-translation-map. Update docstrings.
20163 (mark_kboards): Mark Vinput_decode_map.
20164 Don't mark Vlocal_key_translation_map.
20165 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
20166 Replace local-key-translation-map back with key-translation-map.
20167 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
20168 Bind in input-decode-map rather than function-key-map.
20169
20170 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
20171 This was made redundant by the previous introduction of XSETPVECTYPE.
20172
201732007-10-09 Richard Stallman <rms@gnu.org>
20174
20175 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
20176
201772007-09-29 Richard Stallman <rms@gnu.org>
20178
20179 * eval.c (internal_condition_case_2, internal_condition_case_1)
20180 (internal_condition_case): Reenable abort if x_catching_errors ()
20181 to see if that really happens and why.
20182
201832007-10-06 Andreas Schwab <schwab@suse.de>
20184
20185 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
20186
201872007-10-04 Juanma Barranquero <lekktu@gmail.com>
20188
20189 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
20190
201912007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
20192
20193 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
20194
201952007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
20196
20197 * window.h (struct window):
20198 * window.c (struct save_window_data, struct saved_window):
20199 * termhooks.h (struct terminal):
20200 * process.h (struct Lisp_Process):
20201 * frame.h (struct frame):
20202 * buffer.h (struct buffer):
20203 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
20204 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
20205 The size field of (pseudo)vectors is now unsigned.
20206 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
20207
20208 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
20209 Turn `count' into an integer.
20210
20211 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
20212 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
20213 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
20214 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
20215 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
20216
20217 * alloc.c (allocate_pseudovector): New fun.
20218 (ALLOCATE_PSEUDOVECTOR): New macro.
20219 (allocate_window, allocate_terminal, allocate_frame)
20220 (allocate_process): Use it.
20221 (mark_vectorlike): New function.
20222 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
20223 (mark_terminals): Use it.
20224 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
20225 (Fmake_byte_code): Use XSETPVECTYPE.
20226
20227 * frame.c (Fframe_parameters): Minor simplification.
20228
20229 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
20230
20231 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
20232
20233 * buffer.c (Fget_buffer_create, init_buffer_once):
20234 * lread.c (defsubr):
20235 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
20236
20237 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
20238 defined differently in the m/*.h files.
20239 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
20240 (XSETPVECTYPE): New macro.
20241 (XSETPSEUDOVECTOR): Use it.
20242
20243 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
20244 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
20245
20246 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
20247 * lread.c (defvar_per_buffer):
20248 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
20249
20250 * window.c (candidate_window_p): Only consider as visible frames that
20251 are on the same terminal.
20252
20253 * m/ibms390x.h (MARKBIT): Remove unused macro.
20254
202552007-10-01 Juanma Barranquero <lekktu@gmail.com>
20256
20257 * lread.c (Fload): Fix typo in docstring.
20258
202592007-10-01 Michaël Cadilhac <michael@cadilhac.name>
20260
20261 * floatfns.c (Fexpt): Manually check for overflows, so that a power
20262 of a non-zero value can't yield zero.
20263
202642007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
20265
20266 * term.c (term_clear_mouse_face, term_mouse_highlight)
20267 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
20268
20269 * print.c (safe_debug_print): Use XHASH.
20270
20271 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
20272 Lisp elements such as tags.
20273 (XHASH): New macro.
20274 (EQ): Use it.
20275 (SREF, SSET, STRING_COPYIN): Use SDATA.
20276 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
20277
20278 * alloc.c (mark_terminal): Remove left-over declaration.
20279 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
20280 (allocate_vectorlike): Remove type argument. Adjust callers.
20281 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
20282 Only handle the one remaining MEM_TYPE_VECTORLIKE.
20283
20284 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
20285 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
20286 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
20287 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
20288 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
20289 Use them.
20290
20291 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
20292 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
20293 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
20294
202952007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
20296
20297 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
20298 loaded by default.
20299
203002007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
20301
20302 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
20303 on this tty.
20304 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
20305
20306 * term.c (mouse_face_window): Rename from Qmouse_face_window.
20307 Update all users.
20308 (handle_one_term_event): Use Gpm_DrawPointer.
20309 (Fgpm_mouse_start): Rename from Fterm_open_connection.
20310 Signal errors instead of returning nil. Always return nil.
20311 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
20312 Make it a noop if gpm-mouse was not activated.
20313 (syms_of_term): Update names.
20314
203152007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
20316
20317 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
20318 (init_sys_modes): Check that gpm_tty is the current tty.
20319
20320 * alloc.c (allocate_terminal): Set the vector size to only count the
20321 lisp fields. Initialize those to nil.
20322 (mark_object): Don't treat terminals specially.
20323 (mark_terminal): Remove.
20324 (mark_terminals): Use mark_object instead.
20325
20326 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
20327 the GC to the beginning.
20328
20329 * indent.h:
20330 * indent.c: Use EMACS_INT for ints coming from Elisp data.
20331
20332 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
20333
203342007-09-25 Jason Rumney <jasonr@gnu.org>
20335
20336 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
20337
20338 * w32console.c (create_w32cons_output): Remove.
20339
20340 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
20341
20342 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
20343 (reset_sys_modes): Use reset_terminal_modes_hook.
20344
203452007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
20346
20347 * eval.c (do_autoload): Don't output any message.
20348
203492007-09-24 Juri Linkov <juri@jurta.org>
20350
20351 * emacs.c (standard_args): Change priority of "--no-splash"
20352 from 40 to 3. Add "--no-desktop" with the same priority.
20353
203542007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
20355
20356 * alloc.c (gc_sweep): Check cons cell mark bits word by word
20357 and optimize the case where they are all 1.
20358
203592007-09-23 Johannes Weiner <hannes@saeurebad.de>
20360
20361 * lisp.h (abs): Define if not defined.
20362 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
20363 Don't define `abs', since it's defined in lisp.h.
20364
203652007-09-22 Eli Zaretskii <eliz@gnu.org>
20366
20367 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
20368 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
20369 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
20370 (init_tty): Use DEV_TTY instead of "/dev/tty".
20371 [WINDOWSNT]: No need to protect from NAME arg being null.
20372
203732007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
20374
20375 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
20376 up the tty state.
20377
203782007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
20379
20380 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
20381 (gpm_tty): Change its type.
20382 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
20383 (gpm_tty): Change its type and initialize it.
20384 (Fterm_open_connection): Check the frame is indeed a tty.
20385 Use the new gpm_tty.
20386 (Fterm_close_connection): Use the new gpm_tty.
20387 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
20388 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
20389
203902007-09-21 Juanma Barranquero <lekktu@gmail.com>
20391
20392 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
20393 underline_color, to draw strike-through.
20394
203952007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
20396
20397 * lisp.h (allocate_terminal): Declare.
20398
20399 * window.c (candidate_window_p): Consider frames that are being placed
20400 by the user as somewhere between visible and iconified.
20401 (window_loop): Prefer windows on the current frame.
20402 (Fselect_window): Move the use of select-frame to the beginning so we
20403 can just delegate all the work (it'll call us back anyway).
20404
20405 * frame.c (Qdisplay_environment_variable):
20406 * frame.h (Qdisplay_environment_variable): Delete.
20407
20408 * .gdbinit (xbacktrace): Print the arg's address rather than the value
20409 of the first arg, since that value may be a union.
20410
20411 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
20412 parameter rather than Qdisplay_environment_variable. If all else
20413 fails, look for DISPLAY in initial-environment.
20414
204152007-09-21 Glenn Morris <rgm@gnu.org>
20416
20417 * Makefile.in (emacstool): Remove target.
20418 (lisp, shortlisp): Remove termdev.elc.
20419
204202007-09-21 Markus Triska <markus.triska@gmx.at>
20421
20422 * xterm.c (x_delete_display): Compile session management conditionally.
20423
204242007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
20425
20426 * callproc.c (getenv_internal_1): New function.
20427 (getenv_internal): Use it.
20428 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
20429
20430 * terminal.c (get_terminal): Don't accept ints to represent terminals.
20431 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
20432 (Fset_terminal_parameter): Work with dead terminals as well.
20433 (Fmodify_terminal_parameters): Remove.
20434
20435 * terminal.c (get_terminal): Handle terminals.
20436 Make sure the terminal returned is live.
20437 (create_terminal): Use allocate_terminal.
20438 (mark_terminals): Move to alloc.c.
20439 (delete_terminal): Use terminal->name as liveness status.
20440 NULL out fields after freeing their contents.
20441 Don't deallocate the object.
20442 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
20443 rather than an int.
20444 (Fterminal_live_p): Accept non-integer arguments.
20445 (Fterminal_list): Return terminal objects rather than an ints.
20446
20447 * alloc.c (enum mem_type): New member for `terminal' objects.
20448 (allocate_terminal): New function.
20449 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
20450 Handle terminals.
20451 (mark_terminal): New fun.
20452 (mark_terminals): Move from terminal.c.
20453
20454 * term.c (get_tty_terminal): Don't treat output_initial specially.
20455 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
20456 (delete_tty): Use terminal->name as liveness status.
20457
20458 * termhooks.h (struct terminal): Make it into a pseudovector.
20459 Remove `deleted' replaced by checking `name's nullness.
20460
20461 * print.c (print_object): Handle terminals.
20462
20463 * lisp.h (enum pvec_type): New `terminal' pseudovector.
20464 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
20465
20466 * frame.c (make_terminal_frame):
20467 * keyboard.c (tty_read_avail_input):
20468 * w32term.c (x_delete_terminal):
20469 * xfns.c (Fx_create_frame, x_create_tip_frame):
20470 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
20471
204722007-09-20 Glenn Morris <rgm@gnu.org>
20473
20474 * process.c (Fmake_network_process): Doc fix.
20475
204762007-09-19 Jason Rumney <jasonr@gnu.org>
20477
20478 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
20479
204802007-09-19 Michaël Cadilhac <michael@cadilhac.name>
20481
20482 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
20483 Fix a C warning regarding variable constness.
20484
20485 * xterm.c (handle_one_xevent): Fix a C warning.
20486
204872007-09-18 Jason Rumney <jasonr@gnu.org>
20488
20489 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
20490
204912007-09-17 Jan Djärv <jan.h.d@swipnet.se>
20492
20493 * gtkutil.c (gdpy_def): New variable.
20494 (xg_initialize): Initialize gdpy_def.
20495 (xg_display_close): If no other display exists, set gdpy_def to a
20496 new connection.
20497
204982007-09-16 Jan Djärv <jan.h.d@swipnet.se>
20499
20500 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
20501 when we have no file name for the icon.
20502 (xg_tool_bar_expose_callback): Remove.
20503 (xg_create_tool_bar): Don't connect expose signal to
20504 xg_tool_bar_expose_callback.
20505 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
20506
205072007-09-16 Andreas Schwab <schwab@suse.de>
20508
20509 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
20510 values instead of zapping them.
20511
205122007-09-14 Glenn Morris <rgm@gnu.org>
20513
20514 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
20515 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
20516 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
20517 scope and rename to omfib_buffer for clarity.
20518 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
20519
205202007-09-14 Kenichi Handa <handa@m17n.org>
20521
20522 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
20523
205242007-09-13 Jason Rumney <jasonr@gnu.org>
20525
20526 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
20527
20528 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
20529
20530 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
20531 (mac_term_init): Call here instead, passing rif.
20532
205332007-09-13 Glenn Morris <rgm@gnu.org>
20534
20535 * s/hpux.h: No longer define `static' as nothing.
20536
205372007-09-13 Johan Bockgård <bojohan@gnu.org>
20538
20539 * callint.c (Fcall_interactively): Remove unused var `fun'.
20540
205412007-09-12 Romain Francoise <romain@orebokech.com>
20542
20543 * window.c (prefer_window_split_horizontally, display_buffer):
20544 Revert 2007-09-08 change.
20545
205462007-09-12 Glenn Morris <rgm@gnu.org>
20547
20548 * alloca.c: Remove file.
20549 * Makefile.in (alloca): Do not undef.
20550 (allocaobj, alloca.o): Remove.
20551 (otherobj): Remove allocaobj.
20552 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
20553 * regex.c (C_ALLOCA): Remove all references and code that was only
20554 used when this was defined.
20555 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
20556 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
20557 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
20558
20559 * Makefile.in (SOURCES, unlock, relock): Delete.
20560
20561 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
20562 (menu_grab_callback): All uses changed.
20563
20564 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
20565 (x_reply_selection_request): All uses changed.
20566
205672007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20568
20569 * lread.c (load_warn_old_style_backquotes): Change message to look
20570 better when it appears in the middle of byte-compiler messages.
20571
205722007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
20573
20574 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
20575
20576 * xterm.c (x_create_terminal): Add comment.
20577
20578 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
20579
205802007-09-10 Richard Stallman <rms@gnu.org>
20581
20582 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
20583
205842007-09-10 Michaël Cadilhac <michael@cadilhac.name>
20585
20586 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
20587 (DEFUN): Document `intspec', use it instead of `prompt'.
20588
20589 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
20590
20591 * data.c (Finteractive_form): If the interactive specification starts
20592 with a `(', use it as a Lisp form.
20593
20594 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
20595 name and file modes.
20596
20597 * callint.c (Fcall_interactively): Comment fixes.
20598
205992007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
20600
20601 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
20602 and compiled functions.
20603
206042007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
20605
20606 * window.c (prefer_window_split_horizontally): New variable.
20607 (display_buffer): Consider splitting window horizontally depending
20608 on prefer_window_split_horizontally.
20609
206102007-09-08 Eli Zaretskii <eliz@gnu.org>
20611
20612 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
20613
206142007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
20615
20616 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
20617
20618 * frame.c (x_set_frame_parameters): Check number is positive before
20619 using XFASTINT.
20620
20621 * window.c (freeze_window_start): Don't presume selected_window holds
20622 a window object.
20623 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
20624
206252007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
20626
20627 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
20628
206292007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
20630
20631 * window.c (Vsplit_window_preferred_function): New var.
20632 (Fdisplay_buffer): Use it.
20633 (syms_of_window): Export, and initialize it.
20634
206352007-09-06 Pixel <pixel@mandriva.com> (tiny change)
20636
20637 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
20638
206392007-09-06 Glenn Morris <rgm@gnu.org>
20640
20641 * gtkutil.c (menu_grab_callback) <cnt>:
20642 * xselect.c (x_reply_selection_request) <cnt>: Move static
20643 variable to file scope.
20644
206452007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
20646
20647 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
20648 consistent values of selected_frame and selected_window.
20649
206502007-09-04 Jason Rumney <jasonr@gnu.org>
20651
20652 * w32console.c (initialize_w32_display): Zero unused hooks.
20653
206542007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
20655
20656 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
20657 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
20658
206592007-09-04 Jason Rumney <jasonr@gnu.org>
20660
20661 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
20662 in w32console.c. Set up input. Remove XXX comments that have been
20663 confirmed as correct.
20664
20665 * s/ms-w32.h (MULTI_KBOARD): Define.
20666
20667 * w32console.c (one_and_only_w32cons): Remove.
20668 (initialize_w32_display): Take terminal argument.
20669
20670 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
20671 initialize_w32_display.
20672 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
20673
20674 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
20675
20676 * keyboard.c (discard_mouse_events): Discard it.
20677 (make_lispy_event): Translate it to a lisp event.
20678 (lispy_wheel_names): Add wheel-left and right events.
20679 (syms_of_keyboard): Enlarge wheel_syms.
20680
20681 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
20682 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
20683
20684 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
20685
20686 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
20687 from WM_MOUSEHWHEEL.
20688 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
20689
20690 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
20691 terminal.
20692
20693 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
20694 keyboard for the terminal.
20695
206962007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
20697
20698 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
20699 (Vresume_tty_hook): Rename from Vresume_tty_functions.
20700 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
20701 and resume-tty-function to resume-tty-hook.
20702 (Fsuspend_tty, Fresume_tty): Use new names.
20703
207042007-09-02 Jan Djärv <jan.h.d@swipnet.se>
20705
20706 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
20707 if it starts with "n:".
20708
207092007-08-31 Jan Djärv <jan.h.d@swipnet.se>
20710
20711 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
20712
207132007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
20714
20715 * frame.h:
20716 * frame.c (Qterm_environment_variable): Remove.
20717 (syms_of_frame): Don't init and staticpro it.
20718
20719 * callproc.c (getenv_internal): Remove special case for $TERM.
20720
20721 * callproc.c (Vinitial_environment): New variable.
20722 (set_initial_environment): Initialize it.
20723 (syms_of_callproc): Declare it.
20724 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
20725 TERM under which a process runs is never related to the TERM in which
20726 Emacs is running.
20727
207282007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20729
20730 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
20731 * s/darwin.h: ... do it here.
20732
207332007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
20734
20735 * lisp.h (set_initial_environment): Rename from set_global_environment.
20736
20737 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
20738 removed by mistake on the multi-tty branch.
20739
20740 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
20741 (Fmodify_frame_parameters): Return a value.
20742
20743 * image.c (png_load): Comment-out var only used in commented-out code.
20744
20745 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
20746 before passing it to mark_object.
20747
20748 * xfaces.c (internal_resolve_face_name): Return a value.
20749 (internal_resolve_face_name, resolve_face_name_error): Comment out.
20750
20751 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
20752 (x_icon): Comment-out var only used in commented-out code.
20753
207542007-08-29 Romain Francoise <romain@orebokech.com>
20755
20756 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
20757 QUIT hasn't been provided.
20758
207592007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20760
20761 * callproc.c (child_setup, getenv_internal): Use the
20762 display-environment-variable and term-environment-variable frame params.
20763 (set_initial_environment): Initialise Vprocess_environment.
20764
20765 * config.in: Disable multi-keyboard support on a mac.
20766
20767 * frame.c (Qterm_environment_variable)
20768 (Qdisplay_environment_variable): New variables.
20769 (syms_of_frame): Intern and staticpro them.
20770 (Fmake_terminal_frame): Disable output method test.
20771
20772 * frame.h: Declare them here.
20773
20774 * macfns.c (x_set_mouse_color): Get rif from the frame.
20775 (x_set_tool_bar_lines): Don't use updating_frame.
20776 (mac_window): Add 2 new parameters for consistency with other systems.
20777 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
20778 frame parameters following what is done in X11 and w32. Don't use
20779 FRAME_MAC_DISPLAY_INFO.
20780 (Fx_open_connection, start_hourglass): Remove window-system check.
20781 (x_create_tip_frame): Get the keyboard from the terminal.
20782
20783 * macmenu.c: Reorder includes.
20784 (Fx_popup_menu): Use terminal specific mouse_position_hook.
20785
20786 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
20787 terminal parameter.
20788 (x_clear_frame): Add a frame parameter.
20789 (note_mouse_movement): Get rif from the frame.
20790 (mac_term_init): Initialize the terminal.
20791 (mac_initialize): Make static and move terminal initialization ...
20792 (mac_create_terminal): ... to this new function.
20793
20794 * macterm.h (struct mac_display_info): Add terminal.
20795 (mac_initialize): Delete declaration.
20796
20797 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
20798
20799 * sysdep.c: Comment out text after #endif.
20800
20801 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
20802 is defined. Better initialize ttys in windows. Use terminal
20803 specific mouse_position_hook.
20804
20805 * termhooks.h (union display_info): Add mac_display_info.
20806
20807 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
20808 Set the default minibuffer frame, window_system and the rest of the
20809 frame parameters following what is done in X11.
20810
20811 * w32term.c (w32_initialize): Make static.
20812
20813 * xselect.c (x_handle_selection_clear): Only access
20814 terminal->kboard when MULTI_KBOARD is defined.
20815
20816 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
20817 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
20818
208192007-08-29 Jason Rumney <jasonr@gnu.org>
20820
20821 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
20822 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
20823
20824 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
20825 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
20826
20827 * keyboard.c (restore_kboard_configuration): Only define when
20828 MULTI_KBOARD defined.
20829
20830 * makefile.w32-in: Update dependancies from Makefile.in.
20831 (OBJ1): Add terminal.$(O)
20832
20833 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
20834 Don't define function body.
20835 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
20836
20837 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
20838
20839 * w32.c (request_sigio, unrequest_sigio): Remove.
20840
20841 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
20842 (w32con_clear_frame, w32con_clear_end_of_line)
20843 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
20844 (w32con_delete_glyphs, w32con_set_terminal_window)
20845 (scroll_line, w32_sys_ring_bell): Add frame arg.
20846 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
20847 Add terminal arg.
20848 (PICK_FRAME): Remove.
20849 (w32con_write_glyphs): Use frame specific terminal coding.
20850 (one_and_only_w32cons): New global variable.
20851 (initialize_w32_display): Use it for storing hooks.
20852 (create_w32cons_output): New function.
20853
20854 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
20855 arg a frame.
20856
20857 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
20858 Set window_system.
20859 (x_set_tool_bar_lines): Don't use updating_frame.
20860 (Fx_create_frame): Set terminal and ref count.
20861 (Fx_open_connection): Remove window-system check.
20862
20863 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
20864
20865 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
20866 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
20867 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
20868 Add frame arg.
20869 (x_delete_terminal, w32_create_terminal): New functions.
20870 (w32_term_init): Create a terminal.
20871 (w32_initialize): Move terminal specific initialization to
20872 w32_create_terminal.
20873
20874 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
20875 (w32_clear_rect, w32_clear_area): Use background from frame.
20876 (w32_display_info): Add terminal.
20877 (w32_sys_ring_bell, x_delete_display): Declare here.
20878
20879 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
20880
20881 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
20882
208832007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
20884
20885 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
20886 Fix get_named_tty calls for the controlling tty.
20887
208882007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
20889
194d44e7 20890 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
aac0c6e3
MR
20891
208922007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
20893
20894 * term.c (tty_insert_glyphs): Add missing first parameter.
20895
208962007-08-29 Károly Lőrentey <karoly@lorentey.hu>
20897
20898 * buffer.c (Fbuffer_list, Fbury_buffer):
20899 Take frame->buried_buffer_list into account.
20900
20901 * cm.c (current_tty): New variable, for cmputc().
20902 (cmputc): Use it.
20903 (cmcheckmagic): Add tty parameter, look up terminal streams there.
20904 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
20905 (cmgoto): Add tty parameter. Pass it on to calccost().
20906 Use emacs_tputs() instead of tputs().
20907
20908 * cm.h (emacs_tputs): New macro to set current_tty, and then call
20909 tputs().
20910 (current_tty): New variable, for cmputc().
20911 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
20912
20913 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
20914 (internal_condition_case, internal_condition_case_1)
20915 (internal_condition_case_2): Don't abort when x_catching_errors.
20916
20917 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
20918 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
20919 prevent crashes caused by bogus longjmps in read_char.
20920
20921 * keymap.h (Fset_keymap_parent): Add EXFUN.
20922
20923 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
20924 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
20925 Remove redundant definition.
20926
20927 * macfns.c (x_set_mouse_color, x_make_gc):
20928 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20929
20930 * w32term.c (x_free_frame_resources):
20931 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20932 (w32_initialize): Use the accessor macros for terminal characteristics.
20933
20934 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
20935 Use the accessor macros for terminal characteristics.
20936 * msdos.c (internal_terminal_init): Use the accessor macros for
20937 terminal characteristics.
20938 (ScreenVisualBell, internal_terminal_init):
20939 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20940
20941 * termopts.h (no_redraw_on_reenter): Declare.
20942
20943 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
20944 (mark_terminals, mark_ttys): Declare.
20945 (Fgarbage_collect): Call them.
20946 (mark_object): Mark buried_buffer_list.
20947
20948 * prefix-args.c: Include stdlib.h for exit.
20949
20950 * syssignal.h: Add comment.
20951
20952 * indent.c: Include stdio.h.
20953
20954 * window.h (Vinitial_window_system): Declare.
20955 (Vwindow_system): Delete declaration.
20956
20957 * fontset.c (Finternal_char_font): Use FRAME_RIF.
20958
20959 * image.c (lookup_image): Don't initialize `c' until the xasserts
20960 have been run.
20961
20962 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
20963 FRAME_FOREGROUND_PIXEL.
20964
20965 * print.c (print_preprocess): Don't lose print_depth levels while
20966 iterating.
20967
20968 * widget.c (update_from_various_frame_slots):
20969 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20970
20971 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
20972 frames.
20973 (window_internal_height): Remove bogus make_number call.
20974 (init_window_once): Call make_terminal_frame with two zero parameters.
20975
20976 * fileio.c (Fread_file_name): Update comment.
20977
20978 * callint.c (Fcall_interactively):
20979 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
20980 Make sure it is correctly unwound.
20981
20982 * xsmfns.c (x_session_close): New function.
20983
20984 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
20985 Delete declarations.
20986
20987 * xterm.h: Remove declaration for x_fully_uncatch_errors.
20988 (x_output): Remove background_pixel and foreground_pixel fields.
20989 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
20990 (x_delete_device, x_session_close): Declare.
20991
20992 * lread.c: Include setjmp.h. Update declaration of `read_char'.
20993 (read_filtered_event): Call `read_char' with a local
20994 `wrong_kboard_jmpbuf'.
20995
20996 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
20997 Don't call single_kboard_state. Use FRAME_RIF.
20998
20999 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
21000 systems.
21001
21002 * lisp.h (set_process_environment): Rename to `set_global_environment'.
21003 (Fframe_with_environment, Fset_input_meta_mode)
21004 (Fset_quit_char): EXFUN.
21005 (x_create_device, tty_output, terminal, tty_display_info): Declare.
21006 (init_sys_modes, reset_sys_modes): Update prototypes.
21007 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
21008
21009 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
21010 Vlocal_key_translation_map, and Vkeyboard_translate_table.
21011 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
21012 Delete declarations.
21013 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
21014 (temporarily_switch_to_single_kboard, tty_read_avail_input):
21015 New declarations.
21016
21017 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
21018 already does that during init_display(). Call syms_of_keymap
21019 before syms_of_keyboard. Call `syms_of_terminal'.
21020 Call set_initial_environment, not set_process_environment.
21021 (shut_down_emacs): Call reset_all_sys_modes() instead of
21022 reset_sys_modes().
21023
21024 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
21025 (internal_resolve_face_name, resolve_face_name_error): New functions.
21026 (resolve_face_name): Protect against loops and errors thrown by Fget.
21027 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
21028 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
21029
21030 * scroll.c: Replace CURTTY() with local variables throughout the
21031 file (where applicable).
21032 (calculate_scrolling, calculate_direct_scrolling)
21033 (scrolling_1, scroll_cost): Use the accessor macros for terminal
21034 characteristics.
21035
21036 * keymap.c (Vfunction_key_map): Remove.
21037 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
21038 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
21039 (Vkey_translation_map): Remove.
21040 (syms_of_keymap): Remove DEFVAR for key-translation-map.
21041 (Fdescribe_buffer_bindings)
21042 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
21043 Update for terminal-local key-translation-map.
21044
21045 * Makefile.in (callproc.o): Update dependencies.
21046 (lisp, shortlisp): Add termdev.elc.
21047 (obj): Add terminal.o.
21048 (terminal.o): Add dependencies.
21049 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
21050 (data.o, fns.o): Add termhooks.h dependency.
21051 (SOME_MACHINE_LISP): Add dnd.elc.
21052 (minibuf.o): Fix typo.
21053 Update dependencies.
21054
21055 * data.c (do_symval_forwarding, store_symval_forwarding)
21056 (find_symbol_value): Use the selected frame's keyboard, not
21057 current_kboard.
21058
21059 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
21060 Vwindow_system.
21061
21062 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
21063 Fmenu_bar_open.
21064 (syms_of_xmenu): Update defsubr.
21065 (mouse_position_for_popup, Fx_popup_menu)
21066 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
21067 (set_frame_menubar, free_frame_menubar)
b97439ce 21068 (create_and_show_popup_menu, xmenu_show)
aac0c6e3
MR
21069 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
21070 an X frame.
21071
21072 * xselect.c (x_own_selection): Abort if not an X frame.
21073 (some_frame_on_display): Check if it is an X frame.
21074 (x_handle_selection_clear): Deal with MULTI_KBOARD.
21075
21076 * coding.c: Include frame.h and termhooks.h.
21077 (terminal_coding, keyboard_coding): Delete.
21078 (Fset_terminal_coding_system_internal)
21079 (Fset_keyboard_coding_system_internal)
21080 (Fkeyboard_coding_system)
21081 (Fterminal_coding_system): Add a terminal parameter.
21082 Get terminal_coding from the terminal.
21083 (init_coding_once): Don't call setup_coding_system here.
21084
21085 * dispextern.h (set_scroll_region, turn_off_insert)
21086 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
21087 (tty_clear_end_of_line, tty_setup_colors)
21088 (delete_tty, updating_frame)
21089 (produce_special_glyphs, produce_glyphs, write_glyphs)
21090 (insert_glyphs): Remove.
21091 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
21092 (tty_turn_off_highlight, get_tty_size): Add declaration.
21093 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
21094
21095 * frame.h (enum output_method): Add output_initial.
21096 (struct x_output): Delete.
21097 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
21098 Access foreground_pixel and background_pixel directly from the frame.
21099 (tty_display): Delete.
21100 (struct frame): Add buried_buffer_list, foreground_pixel,
21101 background_pixel and terminal. Delete kboard.
21102 (union output_data): Add tty.
21103 (FRAME_KBOARD): Get the kboard from the terminal.
21104 (FRAME_INITIAL_P): New macro.
21105 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
21106 (Qterm_environment_variable, Qdisplay_environment_variable)
21107 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
21108 New declarations.
21109
21110 * termchar.h (tty_output, tty_display_info): New structures.
21111 (tty_list): Declare.
21112 (FRAME_TTY, CURTTY): New macros.
21113 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
21114 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
21115 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
21116 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
21117
21118 * callproc.c: Include frame.h and termhooks.h, for terminal
21119 parameters.
21120 (add_env): New function.
21121 (child_setup): Use it.
21122 (child_setup, getenv_internal): Handle the new Vprocess_environment.
21123 (getenv_internal): Fix get_terminal_param call.
21124 (Fgetenv_internal, egetenv): Update doc.
21125 (syms_of_callproc): Initialize Vprocess_environment to nil.
21126 Register and initialize them. Remove obsolete defvars. Update doc
21127 strings.
21128 (child_setup): Handle Vlocal_environment_variables.
21129 (getenv_internal): Add terminal parameter.
21130 Handle Vlocal_environment_variables.
21131 (Fgetenv_internal): Add terminal parameter.
21132 (child_setup, getenv_internal, Fgetenv_internal): Store the local
21133 environment in a frame (not terminal) parameter. Update doc strings.
21134 (set_initial_environment): Rename from set_global_environment.
21135 Store Emacs environment in initial frame parameter.
21136
21137 * xdisp.c (redisplay_internal): Update references to
21138 `previous_terminal_frame'.
21139 (display_mode_line, Fformat_mode_line): Replace calls to
21140 `push_frame_kboard' with `push_kboard'.
21141 (get_glyph_string_clip_rects): Add extra parentheses and
21142 braces to prevent compiler warnings.
21143 (calc_pixel_width_or_height): Add xassert to check that the
21144 frame is alive. Don't call `lookup_image' on a termcap frame.
21145 (message2_nolog, message3_nolog, redisplay_internal)
21146 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
21147 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
21148 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
21149 (Fx_display_pixel_width, Fx_display_pixel_height)
21150 (Fx_display_planes, Fx_display_color_cells)
21151 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
21152 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
21153 (Fx_display_backing_store, Fx_display_visual_class)
21154 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
21155 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
21156
21157 * xfns.c (x_set_foreground_color x_set_background_color)
21158 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
21159 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21160 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
21161 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
21162 terminal that is being deleted.
21163 (Fx_create_frame): Use `store_frame_param' to set `window-system'
21164 frame parameter, and make sure it overrides any user-supplied setting.
21165 (Fx_close_connection, Fx_synchronize): Unify argument names with
21166 the rest of the DEFUNs.
21167
21168 * dispnew.c (Fsend_string_to_terminal): Update call to
21169 `get_tty_terminal'.
21170 (Fredraw_frame, Fsend_string_to_terminal)
21171 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
21172 FRAME_TERMCAP_P and FRAME_TTY.
21173 (window_change_signal): Don't believe width/height values that are
21174 impossibly small.
21175 (Vinitial_window_system): Rename from Vwindow_system.
21176 (termscript, Wcm, rif): Delete.
21177
21178 * termhooks.h (struct terminal): New struct containing the
21179 previously global text display hooks and new members NAME,
21180 DELETED and PARAM_ALIST.
21181 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
21182 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
21183 (FRAME_RIF): New macros.
21184 (get_terminal_param, get_device): New declarations.
21185 (termscript): Delete declaration.
21186
21187 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
21188 (XTflash, x_free_frame_resources, x_scroll_bar_create)
21189 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
21190 FRAME_FOREGROUND_PIXEL.
21191 (x_fully_uncatch_errors): Disable definition.
21192 (x_scroll_bar_expose): Fix reference to foreground pixel.
21193 (XTread_socket): Disable loop on all X displays.
21194 (x_delete_terminal): Don't set terminal->deleted and let
21195 delete_terminal delete the frames on the terminal.
21196 (x_delete_display): Doc update to reflect changes in
21197 delete_terminal.
21198 (x_display_info) <terminal>: Move member earlier in the struct.
21199 (deleting_tty): Remove old variable.
21200 (Fsuspend_tty): Call clear_tty_hooks.
21201 (Fresume_tty, init_tty): Call set_tty_hooks.
21202 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
21203 errors on X frames.
21204 (x_catch_errors_unwind): Abort if x_error_message is NULL.
21205 (handle_one_xevent): Initialize `f' to NULL.
21206 (x_delete_terminal, x_create_terminal): New functions.
21207 (XTset_terminal_modes, XTreset_terminal_modes)
21208 (XTread_socket, x_connection_closed, x_term_init)
21209 (x_term_init, x_delete_display): Add terminal parameter.
21210 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
21211 X connections.
21212
21213 * frame.c: Include termchar.h.
21214 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
21215 (Qwindow_system, Qenvironment, Qterm_environment_variable)
21216 (Qdisplay_environment_variable): New vars.
21217 (Fframep): Deal with output_initial.
21218 (Fframe-live-p): Doc fix.
21219 (Fwindow-system): New function.
21220 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
21221 (make_terminal_frame): Don't create frames on a terminal that is
21222 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21223 (store_frame_param): Check for found_for_frame before calling XFRAME.
21224 (Fmake_terminal_frame): Handle NULL tty names correctly.
21225 (syms_of_frame): Enhance doc string of `default-frame-alist'.
21226 (Fdelete_frame): Remove unused variable `count'. Don't allow other
21227 frames to refer to a deleted frame in their 'environment parameter.
21228 (Fframe_with_environment): New function.
21229 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
21230 (get_future_frame_param): New function.
21231 (Fmake_terminal_frame): Use it.
21232 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
21233
21234 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
21235 * sysdep.c (reset_sys_modes): Update for renames.
21236
21237 * keyboard.c (tty_read_avail_input): New function.
21238 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
21239 (syms_of_keyboard): Defsubr them.
21240 (Fset_input_meta_mode, Fset_quit_char): New functions.
21241 (Fset_input_mode): Split to above functions.
21242 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
21243 parameter. Use it in call to `read_char'.
21244 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
21245 Set wrong_kboard_jmpbuf correctly in recursive calls.
21246 Use current_kboard to access Vkeyboard_translate_table.
21247 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
21248 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
21249 Update longjmp invocations. Remember the original current_kboard,
21250 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
21251 changes it. Comment out unnecessary calls to
21252 `record_single_kboard_state' and `any_kboard_state'.
21253 Update recursive calls.
21254 (wrong_kboard_jmpbuf): Remove global variable.
21255 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
21256 Handle deleted interrupted_kboards correctly; that is a legal
21257 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
21258 and read_char calls. Abort if interrupted_kboard died in read_char.
21259 (any_kboard_state, single_kboard_state)
21260 (push_frame_kboard): Remove function.
21261 (pop_kboard): Switch out of single_kboard mode if the kboard has
21262 been deleted. Remove unused variable. Help debugging by not
21263 changing current_kboard unnecessarily. Set current_kboard to the
21264 kboard of the selected frame when the stored kboard object has
21265 been deleted before pop_kboard.
21266 (temporarily_switch_to_single_kboard): Change first parameter to a
21267 frame pointer. Throw an error when caller wants to change kboards
21268 while in single_kboard mode. Don't push_kboard if we weren't in
21269 single kboard state. Don't pop_kboard if we popped into any
21270 kboard state.
21271 (restore_kboard_configuration): Abort if pop_kboard changed the
21272 kboard in single_kboard mode. Call pop_kboard only after setting
21273 up single_kboard mode.
21274 (Frecursive_edit): Switch to single_kboard mode only in nested
21275 command loops.
21276 (cmd_error, command_loop, command_loop_1, timer_check):
21277 Comment out unnecessary call to `any_kboard_state' and
21278 `record_single_kboard_state'.
21279 (delete_kboard): Exit single_kboard mode if we have just deleted
21280 that kboard. Use FRAME_KBOARD.
21281 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
21282 `fatal_error_signal'.
21283 (record_single_kboard_state): Don't push_kboard if we weren't in
21284 single kboard state. Don't pop_kboard if we popped into any
21285 kboard state.
21286 (push_frame_kboard): Rename to push_kboard.
21287 (kbd_buffer_get_event): Use FRAME_TERMINAL.
21288 (read_avail_input): Read input from all terminals.
21289 (mark_kboards): Also mark Vkeyboard_translate_table.
21290 (kbd_buffer_store_event_hold): Simplify condition.
21291 (read_key_sequence): Reinitialize fkey and keytran at each replay.
21292 (Vkeyboard_translate_table): Move to struct kboard.
21293 (init_kboard): Initialize Vkeyboard_translate_table.
21294 (syms_of_keyboard): Use DEFVAR_KBOARD to define
21295 Vkeyboard_translate_table. Update doc strings. Update docs of
21296 local-function-key-map and function-key-map.
21297
21298 * terminal.c: New file.
21299
21300 * term.c: Include errno.h.
21301 (Vring_bell_function, device_list, initial_device)
21302 (next_device_id, ring_bell, update_begin, update_end)
21303 (set_terminal_window, cursor_to, raw_cursor_to)
21304 (clear_to_end, clear_frame, clear_end_of_line)
21305 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
21306 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
21307 (syms_of_term): Move their initialization to terminal.c.
21308 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
21309 (Ftty_display_color_cells)
21310 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
21311 (clear_tty_hooks, set_tty_hooks)
21312 (init_tty, maybe_fatal): New functions.
21313 (Ftty_type): Return nil if terminal is not on a tty instead of
21314 throwing an error. Doc update.
21315 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
21316 Doc update. Initialize new subrs and variables.
21317 (delete_tty): Use terminal->deleted.
21318 (tty_set_terminal_modes): Rename from set_terminal_modes.
21319 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
21320 (set_scroll_region): Rename to `tty_set_scroll_region'.
21321 (turn_on_insert): Rename to `tty_turn_on_insert'.
21322 (turn_off_insert): Rename to `tty_turn_off_insert'.
21323 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
21324 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
21325 (toggle_highligh): Rename to `tty_toggle_highlight'.
21326 (background_highlight): Rename to `tty_background_highlight'.
21327 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
21328 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
21329 (tty_set_scroll_region, tty_background_highlight)
21330 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
21331 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
21332 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
21333 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
21334 Add static modifier.
21335 (tty_reset_terminal_modes, tty_set_terminal_window)
21336 (tty_set_scroll_region, tty_background_highlight)
21337 (tty_highlight_if_desired, tty_cursor_to)
21338 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
21339 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
21340 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
21341 renames.
21342
213432007-08-28 Jan Djärv <jan.h.d@swipnet.se>
21344
21345 * keyboard.c: Qrtl is new.
21346 (parse_tool_bar_item): Handle :rtl keyword.
21347 (syms_of_keyboard): Intern :rtl keyword.
21348
21349 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
21350
21351 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
21352 so no Lisp code is executed.
21353 (file_for_image, find_rtl_image): New functions.
21354 (xg_get_image_for_pixmap): Use file_for_image.
21355 (update_frame_tool_bar): If direction is RTL, use RTL image if
21356 defined. Use Gtk stock images if defined.
21357
213582007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21359
21360 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
21361 for nonexistent or zero-width glyph in composition glyph.
21362
213632007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
21364
21365 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
21366
21367 * xdisp.c (Finvisible_p): New function.
21368 (syms_of_xdisp): defsubr it.
21369
213702007-08-24 Juanma Barranquero <lekktu@gmail.com>
21371
21372 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
21373 Doc fixes.
21374
213752007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21376
21377 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
21378
213792007-08-24 Martin Rudalics <rudalics@gmx.at>
21380
21381 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
21382 whether decoding has modified buffer contents.
21383
213842007-08-24 Jason Rumney <jasonr@gnu.org>
21385
21386 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
21387 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
21388 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
21389 (init_svg_functions) [HAVE_NTGUI]: New function.
21390 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
21391 (svg_load_image): Use them.
21392 (svg_load_image) [HAVE_NTGUI]: Implement background.
21393
213942007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21395
21396 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
21397 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
21398 (LIBX): Remove @RSVG_LIBS@.
21399 (LIBES): Add $(RSVG_LIBS).
21400
21401 * image.c (svg_load_image): Blend with specified background if exists.
21402 Use IMAGE_BACKGROUND. Add Mac OS Support.
21403
21404 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
21405 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
21406 Remove macros.
21407 [MAC_OSX] (socket_callback): Do nothing.
21408 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
21409 ReceiveNextEvent.
21410 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
21411 socket_callback.
21412 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
21413
214142007-08-22 Glenn Morris <rgm@gnu.org>
21415
21416 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
21417
214182007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
21419
21420 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
21421
21422 * image.c: Add support for SVG images. Some additional comments
21423 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
21424 (svg_image_p): New function to test for SVG image.
21425 (svg_load): New function to load SVG image.
21426 (svg_load_image): New function, helper for svg_load.
21427 (Qsvg): New Lisp_object.
21428 (svg_keyword_index): New enum.
21429 (svg_format): New static `image_keyword' struct.
21430 (svg_type): New static `image_type' struct.
21431 (librsvg/rsvg.h): Include it.
21432
214332007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
21434
21435 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
21436
214372007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
21438
21439 * lread.c (Qold_style_backquotes): New var.
21440 (syms_of_lread): Init and staticpro it.
21441 (load_warn_old_style_backquotes): New fun.
21442 (Fload): Use them to warn about old style backquotes.
21443 (end_of_file_error, Fload): Remove unused vars.
21444
21445 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
21446
21447 * lread.c (Vold_style_backquotes): New var.
21448 (syms_of_lread): Init and export it to Elisp.
21449 (read1): Set it when we find an old-style (back)quote.
21450
214512007-08-22 Jason Rumney <jasonr@gnu.org>
21452
21453 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
21454
214552007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
21456
21457 * puresize.h (BASE_PURESIZE): Increase to 1140000.
21458
214592007-08-19 Richard Stallman <rms@gnu.org>
21460
21461 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
21462
214632007-08-19 Andreas Schwab <schwab@suse.de>
21464
21465 * alloc.c (pure): Round PURESIZE up.
21466
214672007-08-17 Jan Djärv <jan.h.d@swipnet.se>
21468
21469 * xterm.c (handle_one_xevent): Remove check that mouse click is in
21470 active frame.
21471
214722007-08-16 Richard Stallman <rms@gnu.org>
21473
21474 * eval.c (Fcommandp): Add parens to clarify.
21475
21476 * minibuf.c (Fall_completions): Use enum for type of table.
21477
21478 * emacs.c (USAGE2): Improve text.
21479
214802007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
21481
21482 * term.c (tty_default_color_capabilities): Declare static
21483 variables in file scope, to avoid HPUX compiler problem.
21484
214852007-08-13 Jan Djärv <jan.h.d@swipnet.se>
21486
21487 * gtkutil.c (update_frame_tool_bar): Use -1 as index
21488 to gtk_toolbar_insert.
21489
214902007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
21491
21492 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
21493
21494 * insdel.c (reset_var_on_error): New fun.
21495 (signal_before_change, signal_after_change):
21496 Use it to reset (after|before)-change-functions to nil in case of error.
21497 Bind inhibit-modification-hooks to t.
21498 Don't bind (after|before)-change-functions to nil while they run.
21499
215002007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21501
21502 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
21503 filling pixmap with stippled background.
21504
215052007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21506
21507 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
21508 Don't use invisible frame as parent window for repositioning.
21509
215102007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
21511
21512 * print.c (new_backquote_output): Rename from old_backquote_output.
21513 (print): Inverse its logic (according to its name) so as to match the
21514 behavior of new_backquote_flag in lread.c.
21515
215162007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21517
21518 * gmalloc.c (posix_memalign): New function.
21519
21520 * macterm.c (frame_highlight, frame_unhighlight): Don't call
21521 ActivateControl/DeactivateControl here.
21522 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
21523 frame-notice-user-settings is non-nil.
21524 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
21525 for kEventParamFMFontStyle.
21526 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
21527 mac_pass_command_to_system and mac_pass_control_to_system here.
21528 (XTread_socket): Call ActivateControl/DeactivateControl here.
21529 (XTread_socket) [TARGET_API_MAC_CARBON]:
21530 Check mac_pass_command_to_system and mac_pass_control_to_system here.
21531 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
21532 for window repositioning.
21533
215342007-08-08 Glenn Morris <rgm@gnu.org>
21535
21536 * Replace `iff' in doc-strings and comments.
21537
215382007-08-07 Chong Yidong <cyd@stupidchicken.com>
21539
21540 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
21541
215422007-08-07 Martin Rudalics <rudalics@gmx.at>
21543
21544 * fileio.c (Finsert_file_contents): Run format-decode and
21545 after_insert_file_functions on entire buffer when REPLACE is
21546 non-nil and inhibit modification_hooks and point_motion_hooks.
21547 For consistency, run after_insert_file_functions iff something
21548 got inserted. Move signal_after_change and update_compositions
21549 after code running after_insert_file_functions. Make sure that
21550 undo_list doesn't record intermediate steps of the decoding process.
21551
215522007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21553
21554 * emacs.c (main)
21555 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
21556 Call malloc_enable_thread on interactive startup.
21557
21558 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
21559 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
21560 [USE_PTHREAD]: Conditionalize with it.
21561 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
21562 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
21563 New functions.
21564
215652007-08-06 Chong Yidong <cyd@stupidchicken.com>
21566
21567 * xdisp.c (redisplay_window): When restoring original buffer
21568 position, make sure it is still valid.
21569
21570 * image.c (png_load): Ignore png-supplied background color.
21571
215722007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21573
21574 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
21575 Use kCFAbsoluteTimeIntervalSince1970.
21576
21577 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
21578 New variable.
21579 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
21580 event loop should be quit.
21581 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
21582 Quit dialog event loop if quit_dialog_event_loop is set.
21583
21584 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
21585 (Selection): New typedef. Use instead of ScrapRef.
21586 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
21587 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
21588 (mac_clear_selection): Rename from clear_scrap.
21589 (get_flavor_type_from_symbol): New argument SEL and subsume function of
21590 scrap_has_target_type. All uses changed.
21591 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21592 (mac_selection_has_target_p): New functions.
21593 (mac_put_selection_value): Rename from put_scrap_string.
21594 (mac_get_selection_value): Rename from get_scrap_string.
21595 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
21596 (put_scrap_private_timestamp, scrap_has_target_type)
21597 (get_scrap_private_timestamp): Remove functions.
21598 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
21599 (x_own_selection, x_get_local_selection):
21600 Use mac_valid_selection_value_p.
21601 (x_own_selection): Don't use put_scrap_private_timestamp.
21602 Record OWNERSHIP-INFO into Vselection_alist instead.
21603 (x_get_local_selection): Don't check type if request is local.
21604 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
21605 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
21606
216072007-08-04 Jan Djärv <jan.h.d@swipnet.se>
21608
21609 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
21610 add comment explaining why.
21611
216122007-08-03 Richard Stallman <rms@gnu.org>
21613
21614 * fileio.c (Fvisited_file_modtime): Use make_time.
21615
216162007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
21617
21618 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
21619 build.
21620
216212007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
21622
21623 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
21624
216252007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
21626
21627 * puresize.h (BASE_PURESIZE): Increase to 1130000.
21628
216292007-07-30 Richard Stallman <rms@gnu.org>
21630
21631 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
21632
216332007-07-29 Jan Djärv <jan.h.d@swipnet.se>
21634
21635 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
21636
216372007-07-28 Nick Roberts <nickrob@snap.net.nz>
21638
21639 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
21640 remote default-directory.
21641
21642 * buffer.c (mode-line-format): Update doc string.
21643
216442007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21645
21646 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
21647 scroll bar gap.
21648 (x_scroll_bar_create): Set bar->fringe_extended_p.
21649 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
21650 on frame edge. Check fringe background extension. Don't clear
21651 extended fringe background area.
21652
21653 * w32term.h (struct scroll_bar): New member fringe_extended_p.
21654 (w32_fill_area): Enclose multiple statements with do ... while (0).
21655
21656 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
21657 Extend fringe background to scroll bar gap.
21658 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
21659 Set bar->fringe_extended_p.
21660 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
21661 Put leftmost/rightmost scroll bars on frame edge. Check fringe
21662 background extension. Don't clear extended fringe background area.
21663
21664 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
21665 New member fringe_extended_p.
21666
216672007-07-25 Glenn Morris <rgm@gnu.org>
21668
21669 * Relicense all FSF files to GPLv3 or later.
21670
21671 * COPYING: Switch to GPLv3.
21672
216732007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
21674
21675 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
21676
21677 * data.c (Finteractive_form): Check for the presence of an
21678 `interactive-form' symbol property more thoroughly.
21679
21680 * data.c (Finteractive_form): Use an `interactive-form' property if
21681 present, analogous to the function-documentation property.
21682
216832007-07-24 Jason Rumney <jasonr@gnu.org>
21684
21685 * w32fns.c (x_real_positions): Get real position from OS instead of
21686 calculating it.
21687
216882007-07-23 Jason Rumney <jasonr@gnu.org>
21689
21690 * filelock.c (current_lock_owner): Allow for @ sign in username.
21691
216922007-07-22 Nick Roberts <nickrob@snap.net.nz>
21693
21694 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
21695 remote default-directory.
21696
21697 * buffer.c (mode-line-format): Describe above case in doc string.
21698
216992007-07-20 Eli Zaretskii <eliz@gnu.org>
21700
21701 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
21702 Define if not defined.
21703
217042007-07-18 Jason Rumney <jasonr@gnu.org>
21705
21706 * w32proc.c (w32_executable_type): Handle 64 bit executables.
21707
217082007-07-18 Richard Stallman <rms@gnu.org>
21709
21710 * data.c (Fsetq_default): Doc fix.
21711
21712 * eval.c (Fsetq): Doc fix.
21713
217142007-07-18 Juanma Barranquero <lekktu@gmail.com>
21715
21716 * coding.c (Ffind_operation_coding_system):
21717 * eval.c (For, Fand): Doc fixes.
21718 Reported by Johan Bockgård.
21719
217202007-07-18 Jan Djärv <jan.h.d@swipnet.se>
21721
21722 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
21723
21724 * xterm.h: Declare x_ewmh_activate_frame.
21725
21726 * xterm.c (x_ewmh_activate_frame): New function.
21727 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
21728
217292007-07-17 Martin Rudalics <rudalics@gmx.at>
21730
21731 * window.c (Fdisplay_buffer): If largest or LRU window is the
21732 only window, split it even if it is not eligible for splitting.
21733 This restores the original behavior broken by the 2007-07-15
21734 change.
21735
217362007-07-17 Glenn Morris <rgm@gnu.org>
21737
21738 * abbrev.c (abbrev_check_chars): New function.
21739 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
21740 Call abbrev_check_chars to check abbrev characters are word
21741 constituents. Doc fix.
21742
217432007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
21744
21745 * process.c (Fstart_process, Fmake_network_process)
21746 (read_process_output): Fix up last changes.
21747
217482007-07-16 Eli Zaretskii <eliz@gnu.org>
21749
21750 * makefile.w32-in (clean): Don't delete *~.
21751
217522007-07-16 Andreas Schwab <schwab@suse.de>
21753
21754 * window.c (Fdisplay_buffer): Use NILP.
21755 (Fset_window_scroll_bars): Likewise.
21756
217572007-07-15 Martin Rudalics <rudalics@gmx.at>
21758
21759 * window.c (window_min_size_2): New function.
21760 (window_min_size_1, size_window, Fdisplay_buffer)
21761 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
21762 windows without mode- or header-lines when window-min-height is
21763 too small.
21764 (size_window): Reset nodelete_p after testing it, following an
21765 earlier note by Kim F. Storm.
21766 (display_buffer): Do not set split_height_threshold to twice the
21767 value of window_min_height to avoid changing the value of a
21768 customizable variable. Rather explicitly check whether the
21769 height of the window that shall be splitted is at least as large
21770 as split_height_threshold.
21771 (Fwindow_full_width_p): New defun.
21772 (syms_of_window): Defsubr it.
21773
21774 * window.h: Add EXFUN for Fwindow_full_width_p.
21775
217762007-07-14 Jason Rumney <jasonr@gnu.org>
21777
21778 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
21779
217802007-07-14 Richard Stallman <rms@gnu.org>
21781
21782 * eval.c (maybe_call_debugger): New function.
21783 (find_handler_clause): Use maybe_call_debugger.
21784 Call it when the handler says `debug'.
21785 Eliminate DEBUGGER_VALUE_PTR.
21786 (Fsignal): Eliminate debugger_value.
21787 (Qdebug): New variable.
21788 (syms_of_eval): Initialize it.
21789
217902007-07-14 Juanma Barranquero <lekktu@gmail.com>
21791
21792 * eval.c (Fprogn):
21793 * keyboard.c (Ftrack_mouse):
21794 * print.c (Fwith_output_to_temp_buffer):
21795 * window.c (Fsave_window_excursion): Doc fix.
21796
217972007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
21798
21799 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
21800
218012007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
21802
21803 * process.h (struct Lisp_Process): Turn slots infd, outfd,
21804 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
21805 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
21806 read_output_delay, and read_output_skip from Lisp_Objects to ints.
21807 Remove unused encoding_carryover.
21808 * process.c: Adjust all functions accordingly.
21809
218102007-07-12 Richard Stallman <rms@gnu.org>
21811
21812 * term.c: Include unistd.h only if HAVE_UNISTD_H.
21813
218142007-07-11 Jason Rumney <jasonr@gnu.org>
21815
21816 * makefile.w32-in (LIBS): Include OLE32.
21817
21818 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
21819 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
21820
218212007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
21822
21823 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
21824 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
21825 from a Lisp_Object into a bare pointer.
21826 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
21827 Adjust the code correspondingly.
21828
21829 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
21830
21831 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
21832 (term_show_mouse_face): Remove unused var `j'.
21833 (handle_one_term_event): Remove unused vars `i' and `j'.
21834 Don't cast return value of ttyname since it's not necessary.
21835
218362007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
21837
21838 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
21839 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
21840
21841 * fns.c (map_char_table): Use an array of int for `indices' rather than
21842 an array of Lisp_Objects (which are only ever integers anyway).
21843 (Fmap_char_table): Update caller.
21844 * lisp.h: Update prototype.
21845 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
21846 * fontset.c (Ffontset_info):
21847 * casetab.c (set_case_table): Update callers.
21848
21849 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
21850
21851 * keymap.c (struct accessible_keymaps_data)
21852 (struct where_is_internal_data): New structures.
21853 (accessible_keymaps_1, where_is_internal_1): Use them to change
21854 interface to adhere to the one used by map_keymap.
21855 (Faccessible_keymaps, where_is_internal): Use map_keymap.
21856 (accessible_keymaps_char_table, where_is_internal_2): Remove.
21857
21858 * keymap.h (map_keymap_function_t): More informative prototype.
21859
218602007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
21861
21862 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
21863 (looking_at_1): Don't change search_regs and last_thing_searched
21864 if `inhibit-changing-match-data' is non-nil.
21865 (string_match_1, search_buffer, set_search_regs): Likewise.
21866 (syms_of_search): Add Lisp level definition for
21867 `inhibit-changing-match-data' and set it to nil.
21868 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
21869 start and end of the match, instead of using values in search_regs.
21870
218712007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21872
21873 * minibuf.c (Fcompleting_read): New value `confirm-only'
21874 for `require-match'.
21875
218762007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
21877
21878 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
21879 part of the 2007-06-27 change to syms_of_fileio.
21880
218812007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21882
21883 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
21884 Check WINDOWP before using XWINDOW. Consolidate return statements.
21885
218862007-06-27 Richard Stallman <rms@gnu.org>
21887
21888 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
21889
218902007-06-27 Juanma Barranquero <lekktu@gmail.com>
21891
21892 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
21893
218942007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21895
21896 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
21897 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
21898 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
21899 (_free_internal, memalign): Use them.
21900 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
21901 Initialize to PTHREAD_MUTEX_INITIALIZER.
21902 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
21903 (morecore_nolock): Rename from morecore. All uses changed.
21904 Use only nolock versions of internal allocation functions.
21905 (_malloc_internal_nolock, _realloc_internal_nolock)
21906 (_free_internal_nolock): New functions created from
21907 _malloc_internal, _realloc_internal, and _free_internal.
21908 (_malloc_internal, _realloc_internal, _free_internal): Use them.
21909 Copy hook value to automatic variable before its use.
21910 (memalign): Copy hook value to automatic variable before its use.
21911
219122007-06-26 Kenichi Handa <handa@m17n.org>
21913
21914 * coding.c (Ffind_operation_coding_system): Docstring improved.
21915 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
21916
219172007-06-25 David Kastrup <dak@gnu.org>
21918
21919 * keymap.c (Fcurrent_active_maps): Add `position' argument.
21920 (Fwhere_is_internal): Adjust call to `current-active-maps' to
21921 cater for additional parameter.
21922
21923 * keymap.h: Adjust number of parameters to `current-active-maps'.
21924
21925 * doc.c (Fsubstitute_command_keys): Adjust call of
21926 `current-active-maps'.
21927
219282007-06-25 David Kastrup <dak@gnu.org>
21929
21930 * callint.c (Fcall_interactively): Make the parsing of interactive
21931 specs somewhat more readable.
21932
219332007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21934
21935 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
21936 to scroll bar gap also when bitmap fills fringe. Draw only foreground
21937 if extended background has already been filled.
21938
219392007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21940
21941 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
21942 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
21943
21944 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
21945 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
21946 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
21947 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
21948 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
21949 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
21950 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
21951 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
21952 Run timers during dialog popup.
21953 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
21954
219552007-06-21 Jason Rumney <jasonr@gnu.org>
21956
21957 * image.c (convert_mono_to_color_image): Swap fore and background.
21958
219592007-06-20 Jason Rumney <jasonr@gnu.org>
21960
21961 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
21962 (w32_free_bdf_font): Unmap memory not handle.
21963
219642007-06-20 Sam Steingold <sds@gnu.org>
21965
21966 * gmalloc.c (__morecore): Fix the declaration to comply with the
21967 definition.
21968
219692007-06-20 Juanma Barranquero <lekktu@gmail.com>
21970
21971 * w32term.c (w32_delete_display): Remove leftover declaration.
21972 (w32_define_cursor, w32_initialize): Make static.
21973
21974 * w32.c (_wsa_errlist): Fix typo in error message.
21975 (init_environment): Ignore any environment variable from the
21976 registry having a null value.
21977
219782007-06-20 Glenn Morris <rgm@gnu.org>
21979
21980 * Makefile.in (LIBGIF): Default to -lgif.
21981
219822007-06-17 Jason Rumney <jasonr@gnu.org>
21983
21984 * w32menu.c (add_menu_item): Don't use multibyte string functions on
21985 unicode strings.
21986
219872007-06-16 Juanma Barranquero <lekktu@gmail.com>
21988
21989 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
21990 Fix typo in docstring.
21991
219922007-06-16 Eli Zaretskii <eliz@gnu.org>
21993
21994 * w32menu.c (add_menu_item): Escape `&' characters in menu items
21995 and their keybindings.
21996
219972007-06-15 Chong Yidong <cyd@stupidchicken.com>
21998
21999 * composite.c (update_compositions): Fix last fix.
22000
220012007-06-14 Jason Rumney <jasonr@gnu.org>
22002
22003 * w32.c (get_process_times_fn): New function pointer.
22004 (globals_of_w32): Intialize it if present in kernel32.dll.
22005 (w32_get_internal_run_time): New function.
22006
22007 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
22008
220092007-06-14 Kenichi Handa <handa@etlken.m17n.org>
22010
22011 * composite.c (update_compositions): Check the validness of
22012 compositions.
22013
220142007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22015
22016 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
22017 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
22018
22019 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
22020 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
22021
22022 * macgui.h (USE_MAC_TOOLBAR): New define.
22023
22024 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
22025 Return immediately unless popup is activated.
22026
22027 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
22028 background to scroll bar gap.
22029 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
22030 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
22031 scroll bars on frame edge. Check fringe background extension.
22032 Don't clear extended fringe background area.
22033 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
22034 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
22035 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
22036 [USE_MAC_TOOLBAR]: New macros.
22037 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
22038 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
22039 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
22040 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
22041 [USE_MAC_TOOLBAR]: New functions.
22042 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
22043 manually if previous repositioning has failed.
22044 (mac_handle_keyboard_event): Use precomputed event kind.
22045 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
22046 as tool bar item click. Handle mouse movement over tool bar items.
22047
22048 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
22049 toolbar_win_gravity.
22050 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
22051 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
22052 Add externs.
22053
22054 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
22055 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
22056
220572007-06-14 Chong Yidong <cyd@stupidchicken.com>
22058
22059 * image.c (search_image_cache): Remove unused variable.
22060
220612007-06-13 Chong Yidong <cyd@stupidchicken.com>
22062
22063 * xfns.c, xmenu.c: Link to xaw3d if available.
22064
220652007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22066
22067 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
22068 frame_foreground and frame_background.
22069
22070 * image.c (lookup_image): Save frame foreground and background colors.
22071 (search_image_cache): Check if saved and current frame colors match.
22072
220732007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
22074
22075 * regex.c (regex_compile): Remove the `regnum' counter.
22076 Use bufp->re_nsub instead. Add support for \(?N:RE\).
22077
220782007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
22079
22080 * term.c: Include intervals.h to declare Fget_text_property.
22081
220822007-06-10 Jason Rumney <jasonr@gnu.org>
22083
22084 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
22085
220862007-06-08 Juanma Barranquero <lekktu@gmail.com>
22087
22088 * callint.c (Fcall_interactively):
22089 * editfns.c (Fdelete_and_extract_region):
22090 * fileio.c (Fread_file_name):
22091 * fns.c (Fmapconcat):
22092 * keyboard.c (cmd_error_internal):
22093 * keymap.c (Fkey_description):
22094 * lread.c (openp):
22095 * minibuf.c (read_minibuf):
22096 * search.c (wordify):
22097 * sunfns.c (sel_read):
22098 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
22099 * xfns.c (x_default_scroll_bar_color_parameter):
22100 * xmenu.c (menu_help_callback):
22101 * xselect.c (Fx_get_atom_name):
22102 * xterm.c (x_term_init): Use empty_unibyte_string.
22103
221042007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
22105
22106 * alloc.c (init_strings): Initialize canonical empty strings.
22107 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
22108 canonical empty string when the requested size is 0.
22109
22110 * emacs.c (empty_unibyte_string): Rename from empty_string.
22111 (empty_multibyte_string): New canonical empty string.
22112 (syms_of_emacs): Don't initialize empty_string.
22113
22114 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
22115 string, if appropriate.
22116 (empty_unibyte_string, empty_multibyte_string): New externs.
22117 (empty_string): Remove extern.
22118
22119 * lread.c (syms_of_lread): Use empty_unibyte_string.
22120
221212007-06-07 Jason Rumney <jasonr@gnu.org>
22122
22123 * s/ms-w32.h: Don't define HAVE_TZNAME.
22124
22125 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
22126
221272007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22128
22129 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
22130
22131 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
22132 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
22133
22134 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
22135 Don't call next handler.
22136 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
22137 Remove argument. Install handler to application.
22138 (set_frame_menubar): Don't change deep_p.
22139 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
22140 FRAME_OUTER_TO_INNER_DIFF_Y.
22141 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
22142 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
22143 [HAVE_DIALOGS]: New macros.
22144 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
22145 Use them.
22146 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
22147
22148 * macselect.c [MAC_OSX] (install_service_handler): Rename from
22149 init_service_handler. All callers changed. Return OSStatus value.
22150
22151 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
22152 All callers changed so as not to call SetPortWindowPort.
22153 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
22154 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
22155 mac_draw_string_common.
22156 (mac_draw_image_string_qd): Likewise.
22157 (mac_draw_string_common): Use them. Add INLINE.
22158 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
22159 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
22160 GetGlobalMouse.
22161 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
22162 and FRAME_OUTER_TO_INNER_DIFF_Y.
22163 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
22164 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
22165 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
22166 repositioning window to mac_handle_window_event.
22167 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
22168 saving window location to mac_handle_window_event
22169 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
22170 (install_menu_target_item_handler): Remove argument in extern.
22171 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
22172 Also accept command events.
22173 (do_keystroke): New function created from XTread_socket.
22174 (init_command_handler): Remove functions.
22175 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
22176 and save window location by kEventWindowShowing and kEventWindowHiding
22177 handlers here. Don't call next handler for window state change and
22178 focus events.
22179 (mac_handle_application_event, mac_handle_keyboard_event)
22180 [TARGET_API_MAC_CARBON]: New functions.
22181 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
22182 kEventWindowShowing and kEventWindowHiding events. Move installation
22183 of mouse, font, text input and menu target item handlers to
22184 install_application_handler.
22185 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
22186 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
22187 New function.
22188 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
22189 Register it.
22190 (XTread_socket) [TARGET_API_MAC_CARBON]:
22191 Consolidate SendEventToEventTarget calls.
22192 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
22193 Move application activation handler to mac_handle_application_event.
22194 Move keyboard handler to mac_handle_keyboard_event.
22195 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
22196 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
22197 init_command_handler. Call install_application_handler.
22198
22199 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
22200 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
22201
222022007-06-07 Glenn Morris <rgm@gnu.org>
22203
22204 * emacs.c (main): Use `emacs-copyright' in --version output.
22205
222062007-06-06 Chong Yidong <cyd@stupidchicken.com>
22207
22208 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
22209
222102007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22211
22212 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
22213
22214 * macgui.h: Replace WindowPtr with WindowRef.
22215
22216 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
22217 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
22218 Replace ControlHandle with ControlRef.
22219 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
22220
22221 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
22222 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
22223 Replace ControlHandle with ControlRef.
22224 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
22225 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
22226
22227 * macterm.h (struct scroll_bar): Rename member control_handle_low
22228 and control_handle_high to control_ref_low and control_ref_high.
22229 All uses changed.
22230 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
22231 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
22232 respectively. All uses changed.
22233 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
22234 (install_window_handler, remove_window_handler): Replace WindowPtr
22235 with WindowRef in externs.
22236
222372007-06-05 Juanma Barranquero <lekktu@gmail.com>
22238
22239 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
22240
222412007-06-03 Nick Roberts <nickrob@snap.net.nz>
22242
22243 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
22244
22245 * frame.c (Fmouse_position, Fmouse_pixel_position):
22246 Condition on HAVE_GPM too.
22247
22248 * term.c (term_mouse_highlight): Remove unused variables.
22249 (Fterm_open_connection): Set gpm_zerobased to 1.
22250 (term_mouse_movement, term_mouse_click, handle_one_term_event):
22251 Use zero based co-ordinates.
22252 (handle_one_term_event): Report a drag as mouse movement too.
22253
22254 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
22255
222562007-06-03 Chong Yidong <cyd@stupidchicken.com>
22257
22258 * image.c (search_image_cache): New function. Require background
22259 color match if background color is unspecified in the image spec.
22260 (uncache_image, lookup_image): Use it.
22261
222622007-06-01 Juanma Barranquero <lekktu@gmail.com>
22263
22264 * window.c (Fshrink_window): Reflow docstring.
22265
222662007-06-02 Chong Yidong <cyd@stupidchicken.com>
22267
22268 * Version 22.1 released.
22269
222702007-06-01 Richard Stallman <rms@gnu.org>
22271
22272 * xfns.c (x_encode_text): Add GCPRO.
22273
222742007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22275
22276 * xfns.c (x_set_name_internal): Save encoded name before
22277 x_encode_text in case string data is relocated.
22278
222792007-05-31 Richard Stallman <rms@gnu.org>
22280
22281 * buffer.c (syms_of_buffer): Doc fix.
22282
222832007-05-30 Nick Roberts <nickrob@snap.net.nz>
22284
22285 * sysdep.c (init_sys_modes): Add rather than replace with
22286 O_NONBLOCK.
22287
22288 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
22289 term_mouse_moveto.
22290
22291 * termhooks.h (term_mouse_moveto): New extern.
22292
22293 * term.c (mouse_face_window): Rename...
22294 (Qmouse_face_window): ...to this.
22295 (term_show_mouse_face, term_clear_mouse_face)
22296 (term_mouse_highlight): Use Qmouse_face_window.
22297 (term_mouse_moveto): New function.
22298 (term_mouse_position): Make it work.
22299 (syms_of_term): Uncomment assignment to mouse_position_hook.
22300 Staticpro Qmouse_face_window.
22301
223022007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22303
22304 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
22305 around current_column call.
22306
223072007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
22308
22309 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
22310 * xdisp.c (next_element_from_buffer):
22311 * window.c (delete_window):
22312 * term.c (term_mouse_highlight):
22313 * msdos.c (getdefdir):
22314 * macterm.c (mac_create_bitmap_from_bitmap_data)
22315 (init_font_name_table):
22316 * fns.c (Fsxhash):
22317 * data.c (Fmake_local_variable):
22318 * ccl.c (ccl_driver): Likewise.
22319
223202007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22321
22322 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
22323 Call mac_wakeup_from_rne on window size change.
22324
223252007-05-25 Chong Yidong <cyd@stupidchicken.com>
22326
22327 * image.c (uncache_image): Fix typo.
22328
223292007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
22330
22331 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
22332
223332007-05-22 Richard Stallman <rms@gnu.org>
22334
22335 * xterm.c (x_connection_closed): Remove NO_RETURN.
22336
223372007-05-22 Martin Rudalics <rudalics@gmx.at>
22338
22339 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
22340
223412007-05-21 Chong Yidong <cyd@stupidchicken.com>
22342
22343 * image.c (uncache_image): New function.
22344 (Fimage_refresh): New function.
22345
223462007-05-20 Jan Djärv <jan.h.d@swipnet.se>
22347
22348 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
22349
223502007-05-20 Nick Roberts <nickrob@snap.net.nz>
22351
22352 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
22353 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
22354
223552007-05-20 Nick Roberts <nickrob@snap.net.nz>
22356
22357 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
22358 conditional on [HAVE_GPM_H].
22359
223602007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
22361
22362 * syntax.c (skip_chars): Update syntax-table only after we checked that
22363 the new location is valid.
22364
223652007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22366
22367 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
22368 mac_get_window_bounds.
22369
223702007-05-20 Nick Roberts <nickrob@snap.net.nz>
22371
22372 * Makefile.in (LIBGPM): Allow it to be set from configure.
22373 If set then link Emacs with it.
22374
22375 * config.in: Regenerate.
22376
22377 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
22378 New externs.
22379
22380 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
22381 Include gpm.h.
22382 (handle_one_term_event, term_gpm): New externs.
22383
22384 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
22385 and allow it to be interrupted by SIGIO.
22386
22387 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
22388 (wait_reading_process_output): Wait on gpm_fd too.
22389 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
22390 (add_gpm_wait_descriptor_called_flag): New variable.
22391 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
22392
22393 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
22394 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
22395 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
22396 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
22397 (make_lispy_event): Add case GPM_CLICK_EVENT.
22398 (read_avail_input): Handle mouse input.
22399
22400 * term.c (write_glyphs_with_face): New function.
22401 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
22402 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
22403 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
22404 (mouse_face_face_id, term_gpm, pos_x, pos_y)
22405 (last_mouse_x, last_mouse_y): New variables.
22406 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
22407 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
22408 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
22409 (Fterm_close_connection): New functions.
22410 (term_init): Initialise mouse_face_window.
22411
224122007-05-19 Chong Yidong <cyd@stupidchicken.com>
22413
22414 * xdisp.c (redisplay_window): If first window line is a
22415 continuation line, recompute the new window start instead of
22416 recentering.
22417
224182007-05-18 Glenn Morris <rgm@gnu.org>
22419
22420 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
22421 Suggested by Alfred M. Szmidt <ams@gnu.org>.
22422
224232007-05-17 Glenn Morris <rgm@gnu.org>
22424
22425 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
22426
224272007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22428
22429 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
22430 dead key repeat and up events.
22431
224322007-05-14 Chong Yidong <cyd@stupidchicken.com>
22433
22434 * image.c (pbm_load): Check image size for monochrome pbm.
22435
224362007-05-13 Chong Yidong <cyd@stupidchicken.com>
22437
22438 * xterm.c (XTread_socket): Revert last change.
22439
224402007-05-12 Chong Yidong <cyd@stupidchicken.com>
22441
22442 * image.c (pbm_load): Correctly check image size for greyscale pbm.
22443
22444 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
22445
224462007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
22447
22448 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
22449 mixup (YAILOM).
22450
224512007-05-07 Andreas Schwab <schwab@suse.de>
22452
22453 * keymap.c (Flookup_key): Fix typo in last change.
22454
224552007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
22456
22457 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
22458 mapping for unibyte strings.
22459
224602007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22461
22462 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
22463 (Fx_popup_dialog) [MAC_OSX]: Likewise.
22464
224652007-04-29 Richard Stallman <rms@gnu.org>
22466
22467 * insdel.c (replace_range): For undo, record insertion first.
22468
224692007-04-29 Andreas Schwab <schwab@suse.de>
22470
22471 * lisp.h (VECSIZE): Use OFFSETOF.
22472
224732007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22474
22475 * xdisp.c (try_window_reusing_current_matrix): Fix number of
22476 disabled lines.
22477
224782007-04-28 Richard Stallman <rms@gnu.org>
22479
22480 * lread.c (read_escape): In a string, \s is always space.
22481
224822007-04-27 Jan Djärv <jan.h.d@swipnet.se>
22483
22484 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
22485
22486 * gtkutil.c (xg_update_menubar, create_menus): Create empty
22487 submenu for menu bar items.
22488
22489See ChangeLog.10 for earlier changes.
22490
22491;; Local Variables:
22492;; coding: utf-8
22493;; add-log-time-zone-rule: t
aac0c6e3
MR
22494;; End:
22495
e3eb1dae 22496 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
aac0c6e3
MR
22497
22498 This file is part of GNU Emacs.
22499
22500 GNU Emacs is free software: you can redistribute it and/or modify
22501 it under the terms of the GNU General Public License as published by
22502 the Free Software Foundation, either version 3 of the License, or
22503 (at your option) any later version.
22504
22505 GNU Emacs is distributed in the hope that it will be useful,
22506 but WITHOUT ANY WARRANTY; without even the implied warranty of
22507 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22508 GNU General Public License for more details.
22509
22510 You should have received a copy of the GNU General Public License
22511 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22512
22513;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40