]> code.delx.au - gnu-emacs/blob - src/ChangeLog
(init_user_info): Allocate buf[] with xmalloc using the size needed by
[gnu-emacs] / src / ChangeLog
1 2008-08-30 Eli Zaretskii <eliz@gnu.org>
2
3 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
4 needed by GetTokenInformation.
5 (w32_system_process_attributes): Check return values of all system
6 APIs.
7
8 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
9 only when the state changes.
10 (IT_update_begin, IT_update_end): Add termscript trace.
11
12 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
13 clipboard is unavailable. Set dst to NULL if it doesn't point to
14 malloc'ed data.
15 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
16 passing random values to xfree.
17
18 * dispnew.c (init_display): Set `tty's association in frame's
19 parameters alist to the name of the terminal device, if that is
20 known.
21
22 2008-08-29 Jason Rumney <jasonr@gnu.org>
23
24 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
25
26 2008-08-29 Eli Zaretskii <eliz@gnu.org>
27
28 * composite.c (fill_gstring_body): Avoid compiler warnings.
29
30 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
31 LGLYPH_SET_CODE to avoid compiler warnings.
32
33 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h
34
35 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
36
37 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
38 LGLYPH_SET_CODE.
39
40 2008-08-29 Kenichi Handa <handa@m17n.org>
41
42 * fileio.c (report_file_error): Don't downcase the first character
43 of errstring if it is still unibyte.
44
45 2008-08-29 Kenichi Handa <handa@m17n.org>
46
47 These changes are to re-implement the automatic composition so
48 that it doesn't use text properties.
49
50 * Makefile.in (ftfont.o): Depend on composite.h.
51 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
52
53 * character.h (Vunicode_category_table): Extern it.
54
55 * character.c (Vunicode_category_table): New variable.
56 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
57
58 * chartab.c (optimize_sub_char_table): Perform more greedy
59 optimization.
60
61 * composite.h (enum composition_method): Delete
62 COMPOSITION_WITH_GLYPH_STRING.
63 (COMPOSITION_METHOD): Dont' check COMPOSITION_WITH_GLYPH_STRING.
64 (Vcomposition_function_table): Extern it.
65 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
66 (composition_gstring_put_cache, composition_gstring_from_id)
67 (composition_gstring_p, composition_gstring_width)
68 (composition_compute_stop_pos, composition_reseat_it)
69 (composition_update_it, composition_adjust_point): Extern them.
70 (Fcomposition_get_gstring): EXFUN it.
71
72 * composite.c: Include window.h, frame.h, dispextern.h font.h.
73 (Vcomposition_function_table)
74 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
75 (gstring_hash_table, gstring_work, gstring_work_headers): New
76 variables.
77 (gstring_lookup_cache, composition_gstring_put_cache)
78 (composition_gstring_from_id, composition_gstring_p)
79 (composition_gstring_width, fill_gstring_header)
80 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
81 (composition_reseat_it, composition_update_it)
82 (composition_adjust_point, Fcomposition_get_gstring): New
83 functions.
84 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
85 and gstring_work_headers. DEFVAR_LISP composition-function-table.
86 Defsubr compostion_get_gstring.
87
88 * dispextern.h (struct glyph): New union u.cmp. Delete the member
89 cmp_id.
90 (struct glyph_string): Delete the member gidx. New members
91 cmp_id, cmp_from, and cmp_to.
92 (enum it_method): Delete GET_FROM_COMPOSITION.
93 (struct composition_it): New struct.
94 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
95 Delete c, len, cmp_id, cmp_len in u.comp.
96
97 * font.h (enum lgstring_indices): Delete it.
98 (LGSTRING_XXX, LGLYPH_XXX): These macros moved to composite.h.
99 (enum lglyph_indices): Likewise.
100 (font_range): Extern adjusted.
101 (font_fill_lglyph_metrics): Extern it.
102
103 * font.c (QCf): New variable.
104 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
105 (font_prepare_composition): Delete this function.
106 (font_range): Type and arguments changed.
107 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
108 (font_fill_lglyph_metrics): New function.
109 (Ffont_shape_text): Renamed to Ffont_shape_gstring and arguments
110 changed.
111 (syms_of_font): DEFSYM QCf. Delete defsubr for
112 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text. Defsubr
113 Sfont_shape_gstring.
114
115 * fontset.h (font_for_char): Extern it.
116
117 * fontset.c (font_for_char): New function.
118
119 * ftfont.c: Include composite.h.
120 (ftfont_resolve_generic_family): Add langset "en" to pattern.
121 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not
122 LGSTRING_LENGTH.
123
124 * indent.c: Include composite.h and dispextern.h.
125 (check_composition): Delete this function..
126 (scan_for_column): Handle composition by
127 composition_compute_stop_pos, composition_reseat_it, and
128 composition_update_it.
129 (compute_motion): Likewise.
130 (Fvertical_motion): Fix checking of composition.
131
132 * keyboard.c (adjust_point_for_property): Check composition by
133 composition_adjust_point.
134
135 * nsterm.m (ns_draw_glyph_string): Adjusted for the change of
136 struct glyph_string.
137
138 * term.c (encode_terminal_code): Adjusted for the change of struct
139 glyph.
140 (append_composite_glyph): Adjusted for the change of struct it and
141 struct glyph.
142 (produce_composite_glyph): Likewise.
143
144 * w32term.c (x_draw_composite_glyph_string_foreground): Adjusted
145 for the change of struct glyph_string.
146 (x_draw_glyph_string): Likewise.
147
148 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
149 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
150
151 * xdisp.c: Include font.h.
152 (it_props): Delete the entry for Qauto_composed.
153 (init_iterator): Initialize it->cmp_it.id to -1.
154 (compute_stop_pos): Call composition_compute_stop_pos.
155 (face_before_or_after_it_pos): Adjusted for the change of struct
156 it.
157 (handle_auto_composed_prop): Delete it.
158 (handle_composition_prop): Handle only static composition.
159 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
160 from xassert. Initialize it->cmp_it.stop_pos.
161 (push_it): Adjusted for the change of struct it.
162 (pop_it): Likewise.
163 (get_next_element): Delete next_element_from_composition.
164 (CHAR_COMPOSED_P): New macro.
165 (get_next_display_element): For automatic composition, get a face
166 from the font in the glyph-string.
167 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
168 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION
169 case.
170 (next_element_from_string): Check if the character at the current
171 position is composed by CHAR_COMPOSED_P.
172 (next_element_from_buffer): Likewise.
173 (next_element_from_composition): Adjusted for the change of struct
174 it. Update it->cmp_it.
175 (dump_glyph): Adjusted for the change of struct glyph.
176 (fill_composite_glyph_string): Adjusted for the change of struct
177 it and struct glyph. Don't handle automatic composition here.
178 (fill_gstring_glyph_string): New function.
179 (x_get_glyph_overhangs): Handle automatic composition.
180 (BUILD_COMPOSITE_GLYPH_STRING): Adjusted for the change of struct
181 glyph.
182 (BUILD_GSTRING_GLYPH_STRING): New macro.
183 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
184 automatic composition.
185 (append_composite_glyph): Adjusted for the change of struct it and
186 struct glyph.
187 (x_produce_glyphs): Adjusted for the change of struct it.
188
189 * xterm.c (x_draw_composite_glyph_string_foreground): Adjusted for
190 the change of struct glyph_string.
191 (x_draw_glyph_string): Likewise.
192
193 2008-08-29 Glenn Morris <rgm@gnu.org>
194
195 * buffer.c (word-wrap): Doc fix.
196 * xdisp.c (truncate-partial-width-windows): Doc fix.
197 Increase default to 50.
198
199 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
200
201 * xdisp.c (update_tool_bar_unwind): New function.
202 (update_tool_bar): Temporarily set selected frame before building
203 tool-bar items.
204
205 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
206
207 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
208 snprintf, respectively.
209 (xd_append_arg): Convert strings with Fstring_make_unibyte.
210
211 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
212
213 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
214 LDFLAGS to GNUstep CC invocation.
215
216 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
217
218 * indent.c (Fvertical_motion): Revert last change. Handle the
219 general case where we are moving forward, and PT spans multiple
220 screen lines.
221
222 * eval.c (find_handler_clause): Temporarily increase
223 max-lisp-eval-depth while printing the backtrace buffer, to
224 guarantee that help-mode code can run.
225
226 2008-08-27 Eli Zaretskii <eliz@gnu.org>
227
228 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
229 colors under -rv.
230 (IT_set_frame_parameters): Don't swap foreground and background
231 colors if `(reverse . t)' is present in the frame properties.
232 (internal_terminal_init): Call init_frame_faces only for the
233 initial frame.
234
235 2008-08-27 Andreas Schwab <schwab@suse.de>
236
237 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
238
239 2008-08-27 Andreas Schwab <schwab@suse.de>
240
241 * search.c (search_buffer): Set char_base to zero only at the end.
242
243 2008-08-27 Kenichi Handa <handa@m17n.org>
244
245 * fileio.c (report_file_error): Fix handling of multibyte error
246 string.
247
248 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
249
250 * xterm.c (x_term_init): Temporarily hide the partially
251 initialized terminal while calling vendor-specific-keysyms.
252
253 2008-08-26 Eli Zaretskii <eliz@gnu.org>
254
255 * msdos.c (internal_terminal_init): Most initializations done only
256 once, especially initial_screen_colors[] and termscript open.
257
258 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
259
260 * eval.c (Fcondition_case): Doc fix.
261
262 * widgetprv.h (EmacsFramePart): Change font member to the new font
263 struct.
264
265 * widget.c: Include character.h and font.h for XSETFONT.
266 (setup_frame_gcs): Compute X font id from font struct, just once.
267
268 2008-08-26 Eli Zaretskii <eliz@gnu.org>
269
270 * term.c (get_named_tty): Fix last change.
271
272 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
273
274 * indent.c (Fvertical_motion): If moving forward starting from a
275 multi-line string, move the iterator to the last line of that
276 string.
277
278 2008-08-25 Eli Zaretskii <eliz@gnu.org>
279
280 * frame.c (do_switch_frame): Mark previously displayed frame as
281 obscured for FRAME_MSDOS_P frames as well.
282
283 2008-08-24 Eli Zaretskii <eliz@gnu.org>
284
285 * frame.c (make_terminal_frame): Initialize f->terminal,
286 f->terminal->reference_count, and scroll bars on MS-DOS as well.
287 Set the top frame to newly created frame.
288 (Fmake_terminal_frame): Reuse the_only_display_info.
289
290 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
291 estimating available memory.
292
293 2008-08-23 David Reitter <david.reitter@gmail.com>
294
295 * nsterm.m (ns_draw_window_cursor): Don't call
296 NSDisableScreenUpdates and NSEnableScreenUpdates on
297 non-NS_IMPL_COCOA systems.
298
299 2008-08-23 Andreas Schwab <schwab@suse.de>
300
301 * process.c (procfs_system_process_attributes): Fix use of
302 uninitialized variables.
303
304 2008-08-23 Eli Zaretskii <eliz@gnu.org>
305
306 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
307
308 * dispnew.c (init_display): Remove MS-DOS specific conditions for
309 calling tty-set-up-initial-frame-faces.
310
311 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show): Allow
312 MSDOS frames along with X frames.
313
314 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
315 addition to output_termcap.
316
317 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
318
319 * termchar.h (FRAME_TTY): Support output_msdos_raw.
320 (struct tty_display_info) [MSDOS]: Add fields related to mouse
321 highlight.
322
323 * process.c [!subprocesses]: Define QCname.
324 (syms_of_process): Intern and staticpro it.
325
326 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
327 Adjust for changes in encoding/decoding routines. Use
328 encode_coding_object and decode_coding_object instead of
329 encode_coding and decode_coding.
330
331 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as
332 argument.
333
334 * dosfns.c: Include frame.h before termhooks.h.
335 (dos_cleanup): Use CURTTY ()->termscript instead of a global
336 variable termscript.
337
338 * s/msdos.h (USER_FULL_NAME): Define.
339 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
340
341 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
342 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
343 pw->pw_gecos.
344
345 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
346 SELECTED_FRAME as additional (1st) argument.
347 (tty_read_avail_input): Handle output_msdos_raw in
348 addition to output_termcap.
349
350 * msdos.c: Include frame.h before termhooks.h.
351 (mouse_on, mouse_off, mouse_moveto, mouse_init)
352 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
353 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
354 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
355 (IT_set_terminal_modes, IT_reset_terminal_modes)
356 (IT_set_frame_parameters): Use tty->termscript instead of a global
357 variable termscript.
358 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
359 global variable terminal_coding. Don't refer to
360 Vnonascii_translation_table.
361 (internal_terminal_init): Set Vwindow_system in current_kboard.
362 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
363 Announce date and time of session start, if termscript is open.
364 Don't zero out the_only_display_info (it is done in
365 term.c:init_tty). Open termscript only of not already open. Log
366 "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
367 here instead of dos_ttraw. Don't initialize display if this is an
368 initial tty. Don't set FRAME_FONT.
369 (Vwindow_system_version): Bump to 23.
370 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
371 is available, set up mouse_position_hook.
372 (dos_ttraw, IT_set_terminal_modes): If called with initial
373 terminal, do nothing.
374 (IT_set_frame_parameters): Handle the Qtty_type frame
375 parameter by calling internal_terminal_init.
376 (dos_set_window_size, show_mouse_face)
377 (clear_mouse_face, IT_note_mode_line_highlight)
378 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
379 (dos_rawgetc): Use tty_display_info instead of x_display_info.
380 (initialize_msdos_display): New function.
381 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
382 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
383 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
384 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
385 Accept additional argument: a pointer to a frame. All callers
386 changed.
387 (request_sigio, unrequest_sigio): Don't define, now defined on
388 sysdep.c.
389 (IT_write_glyphs): Rewrite to use encode_terminal_code.
390
391 * term.c [MSDOS]: Include msdos.h.
392 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
393 conditional to DOS_NT. Allow only one call to this function in a
394 session. Don't allocate a new struct tty_display_info; instead,
395 reuse the_only_display_info. Call get_tty_size to get screen
396 dimensions. Call init_baud_rate to set bad_rate.
397 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
398 (Fsuspend_tty) [MSDOS]: Don't close input and output.
399 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use
400 stdin/stdout.
401 (get_tty_terminal, get_named_tty, Ftty_type)
402 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
403 output_termcap.
404 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty): Call
405 add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
406 only when subprocesses are supported
407
408 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
409 f->output_data.x.
410 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
411 terminal devices.
412
413 * msdos.h Remove definition of struct x_display_info and struct
414 x_output.
415 (FRAME_FONT): Use output_data.tty.
416 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
417 (struct x_display_info): Renamed from display_info. All users in
418 msdos.c changed.
419 (struct x_output): Remove background_pixel and foreground_pixel.
420 (the_only_display_info): Renamed from the_only_x_display.
421 (dos_ttraw): Update prototype.
422
423 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
424 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
425
426 2008-08-23 Jason Rumney <jasonr@gnu.org>
427
428 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
429 (fn_TIFFSetDirectory): New library function used.
430 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
431 (tiff_load): Use :index to select among multiple images. Set count
432 property when multiple images exist.
433 (gif_format): Use :index, not :image.
434
435 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
436
437 * xdisp.c (try_scrolling): Check INT_MAX instead of
438 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
439 to obtain INT_MAX.
440
441 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
442
443 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
444
445 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
446
447 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
448 GNUstep library location.
449
450 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
451
452 * xfaces.c (x_update_menu_appearance): Check validity of menu font
453 before using it.
454
455 * puresize.h (BASE_PURESIZE): Increase to 1250000.
456
457 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
458
459 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
460 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
461 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
462 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
463 (EmacsApp-cursor_blink_handler): Remove declaration.
464 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
465 match 01 Feb 2008 changes in xterm.c.
466 (ns_read_socket): Add cast to avoid warning.
467 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
468 GNUstep.
469
470 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
471
472 * xselect.c (x_get_foreign_selection): Return nil if desired
473 selection could not be obtained, instead of signalling an error.
474
475 2008-08-20 David Reitter <david.reitter@gmail.com>
476
477 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
478 * nsterm.m: Remove ns-specific code for cursor blinking.
479 (ns_draw_window_cursor): Clear cursor properly rather than
480 redrawing the area. Respect width of bar cursors.
481 These changes enable the use of generic blink-cursor-mode and
482 generic cursor types in NS and support smooth cursor movements (do
483 not blink off after command).
484 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
485 Nextstep, too.
486
487 2008-08-19 Kenichi Handa <handa@m17n.org>
488
489 * font.c (Vfont_log_deferred): New variable.
490 (font_add_log): Check Vfont_log_deferred.
491 (font_deferred_log): New funciton.
492
493 * font.h (font_deferred_log): Extern it.
494
495 * fontset.c (reorder_font_vector): Use encoding charset of fonts
496 for sorting.
497 (face_for_char): Use deferred log.
498
499 2008-08-18 Kenichi Handa <handa@m17n.org>
500
501 * fontset.c (face_for_char): Add font log.
502
503 * font.c (font_add_log): Add the font properties :script, :lang,
504 and :otf in the log.
505
506 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
507
508 * xdisp.c: Remove dead code.
509 (handle_invisible_prop, next_overlay_string): Defer call to
510 setup_for_ellipsis.
511 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
512
513 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
514
515 * xfaces.c (lookup_derived_face): Properly handle possible zero
516 return value of get_lface_attributes.
517 (merge_faces): Don't tell lookup_derived_face to signal an error
518 if face is not found.
519
520 * dired.c (Fdirectory_files): Doc fix.
521
522 * process.c (make_process): Initialize kill_without_query struct
523 member.
524
525 2008-08-15 Eli Zaretskii <eliz@gnu.org>
526
527 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
528 Alternative calculation of totphys for Visual Studio 6.
529
530 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
531
532 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
533 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
534 All users changed.
535 (stat): Only root directory passed to GetDriveType. Allow RAM
536 disk as well as local fixed disk when w32-get-true-file-attributes
537 is set to `local'.
538 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
539 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
540 (w32_cached_id, w32_add_to_cache): New functions.
541 (get_name_and_id): Look account names in the cache before calling
542 lookup_account_sid.
543 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
544 New initialization flags.
545 (globals_of_w32): Initialize them to zero.
546 (w32_system_process_attributes): Use w32_cached_id and
547 w32_add_to_cache.
548
549 2008-08-14 Lawrence Mitchell <wence@gmx.li>
550
551 * lread.c (Fread_char, Fread_char_exclusive): If no character
552 event is read before timeout is reached, return nil, rather than
553 converting to a number.
554
555 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
556
557 * fns.c (use_dialog_box): Doc fix.
558
559 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
560 on OS X.
561
562 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
563
564 * frame.c (Qns_parse_geometry): New var.
565 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
566
567 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
568
569 * xdisp.c (x_produce_glyphs): Handle the case when font has no
570 space character in calculating tabs.
571
572 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
573
574 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
575
576 2008-08-10 Glenn Morris <rgm@gnu.org>
577
578 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
579 silence gcc "limited range of data type" warnings in some
580 make_fixnum_or_float calls.
581
582 2008-08-09 Eli Zaretskii <eliz@gnu.org>
583
584 * w32.c (w32_system_process_attributes): If the process does not
585 exist, return nil.
586
587 * w32.c: Include thelp32.h, psapi.h and coding.h.
588 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
589 declarations.
590 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
591 (Process32Next_Proc): New typedefs.
592 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
593 (g_b_init_process32_next, g_b_init_open_thread_token)
594 (g_b_init_impersonate_self, g_b_init_revert_to_self)
595 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
596 (g_b_init_get_process_working_set_size)
597 (g_b_init_global_memory_status_ex): New static variables.
598 (globals_of_w32): Initialize them.
599 (create_toolhelp32_snapshot, process32_first, process32_next)
600 (open_thread_token, impersonate_self, revert_to_self)
601 (get_process_memory_info, get_process_working_set_size)
602 (global_memory_status, global_memory_status_ex): New wrapper
603 functions.
604 (w32_list_system_processes, w32_system_process_attributes)
605 (enable_privilege, restore_privilege, ltime, process_times):
606 New functions.
607 (convert_time_raw): New function.
608 (convert_time): Remove conversion of FILETIME into time in 100
609 nsec units, call convert_time_raw instead.
610
611 * process.h (w32_list_system_processes, w32_system_process_attributes):
612 Add prototypes.
613 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
614 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
615 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
616 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
617
618 * process.c (Fsystem_process_attributes): Doc fix.
619
620 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
621
622 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
623 a continued multi-char glyph; if so, advance to the actual glyph.
624
625 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
626
627 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
628
629 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
630 (.m.o): Use it.
631 * config.in: Regenerate.
632
633 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
634
635 * xdisp.c (redisplay_window): Revert last change.
636 (try_window): Check bottom scroll margin too.
637
638 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
639
640 * config.in: Regenerate.
641
642 * Makefile.in (emacs): Remove ndef NS conditional for 'emacs
643 -list-load-path-shadows'.
644 (nsgui.h): Reduce number of things depending on it.
645
646 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
647
648 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
649 instead of window-end which does the wrong thing at eob.
650 (try_cursor_movement): Minor optimization.
651 (redisplay_window): If scroll margin is defined, don't assume
652 window doesn't need scrolling.
653
654 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
655
656 * config.in: Regenerate.
657
658 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
659 (mostlyclean): Don't delete *.d under NS.
660
661 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
662
663 2008-08-06 Kenichi Handa <handa@m17n.org>
664
665 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
666
667 2008-08-06 Andreas Schwab <schwab@suse.de>
668
669 * config.in: Regenerate.
670
671 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
672
673 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
674 forcing a window start.
675
676 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
677 (auto_save_1): Update modtime when auto-save-list-file-name is on.
678
679 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
680
681 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
682 argument.
683
684 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
685
686 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
687 <scroll-down-aggressively, before-change-functions>:
688 <after-change-functions>: Reflow docstrings.
689
690 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
691 Ken Raeburn <raeburn@gnu.org>
692
693 Dock menu customization, based on a patch by Ken Raeburn, plus some
694 other fixes.
695 * nsmenu.m (dockMenu): New variable.
696 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
697
698 * nsterm.h (dockMenu): Declare.
699
700 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
701 (ns_term_init): Initialize dockMenu.
702 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
703 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
704 left.
705
706 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
707
708 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
709
710 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
711
712 * config.in: Regenerate.
713
714 2008-08-04 Seiji Zenitani <zenitani@mac.com>
715
716 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
717
718 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
719
720 * nsterm.h (find_and_call_menu_selection): Fix prototype.
721
722 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
723
724 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
725
726 * keyboard.h: Comment an #endif.
727
728 * lisp.h (have_menus_p): Adjust comment.
729
730 * menu.c (find_and_return_menu_selection): Fix comparison with
731 client_data.
732
733 * nsmenu.m (popup_activated_flag): New variable.
734 (popup_activated): New function.
735 (menu-or-popup-active-p): New exported lisp definition.
736 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
737 when popup done.
738 (ns_popup_dialog): Set popup_activated_flag.
739
740 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
741 version for GNUstep (handled by conditional typedef in nsterm.m).
742 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
743 in rgb.txt).
744
745 * process.c (init_process): Use DARWIN_OS, not DARWIN.
746
747 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
748
749 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
750
751 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
752 shortcircuit if popup_activated like GTK and X toolkit.
753
754 * m/inter386.h: Change DARWIN to DARWIN_OS.
755
756 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
757 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
758 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
759 comment on NO_SOCK_SIGIO.
760
761 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
762
763 * nsterm.m (windowDidResize): Remove stopModal call.
764
765 2008-08-03 Andreas Schwab <schwab@suse.de>
766
767 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
768 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
769
770 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
771
772 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
773 Don't use uninitialized pointer variable when using getrlimit.
774
775 2008-08-02 Jason Rumney <jasonr@gnu.org>
776
777 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
778
779 2008-08-02 Eli Zaretskii <eliz@gnu.org>
780
781 * alloc.c (NSTATICS): Bump to 0x640.
782
783 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
784
785 * lisp.h: Add prototype for directory_files_internal.
786
787 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
788 New functions.
789 (syms_of_process): Defsubr them. Add initializations for various
790 Q* symbols used in procfs_system_process_attributes.
791 (procfs_list_system_processes, procfs_system_process_attributes)
792 [HAVE_PROCFS]: New functions.
793 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
794 (procfs_get_total_memory): New functions.
795
796 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
797
798 * xfaces.c (Fx_load_color_file): Fix previous change;
799 it is #ifdef WINDOWSNT, not WINDOWS_NT.
800
801 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
802
803 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
804
805 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
806
807 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
808
809 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
810
811 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
812
813 * nsterm.m (EmacsApp -application:openFiles:): GNUStep does not
814 define NSApplicationDelegateReplySuccess.
815 (EmacsView -converstationIdentifier): Use long instead of
816 NSInteger for GNUStep, since it doesn't have NSInteger.
817
818 * xmenu.c: Revert last change.
819
820 * keyboard.h: Fix last change.
821
822 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
823
824 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
825 on Windows.
826
827 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
828
829 Warning clearing and clean-up in NS port.
830 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
831 Add prototypes.
832 * nsgui.h (FACE_DEFAULT): Remove, unused.
833 (XGCValues): Change colors to unsigned long.
834 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
835 nsterm.m.
836 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
837 (ns_list_fonts): Remove, unused.
838 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
839 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
840 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
841 (nsfont_draw): Compare face colors to 0, not nil.
842 * nsmenu.m (struct widget_value): Drop unneeded declaration.
843 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
844 (-addSubmenuWithTitle:): Use NSMenuItem class.
845 (ns_popup_menu): Use NO, not NULL, for enabled setting.
846 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
847 (ns_clip_to_row): Make gc arg a BOOL.
848 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
849 ns_clip_to_row() call.
850 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
851 used). Cast FRAME_FONT assignments.
852 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
853 (ns_string_to_lispmod): Change arg to const char.
854 (ns_term_init): Use NSMenuItem class.
855 (EmacsApp -openFile:): Move to different section of file.
856 (EmacsApp -application:openFiles:): Don't return a value, call
857 -replyToOpenOrPrint:.
858 (EmacsView -keyDown:): Fix up cast.
859 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
860 (EmacsView -menuDown:): Cast tag in call to
861 find_and_call_menu_selection().
862 (ns_list_fonts): Remove, unused.
863 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
864 (ns_fontname_to_xlfd): Make static.
865 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
866 Remove prototypes (now in keyboard.h).
867 (next_menubar_widget_id): Remove, unused.
868 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
869 Remove prototypes (now in keyboard.h).
870 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
871
872 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
873
874 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
875 (floatfns.o): Depend on syssignal.h.
876 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
877
878 * systty.h: Fix previous change that removed BSD_TERMIOS.
879 Add comments to #ifdefs.
880
881 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
882
883 * w32fns.c (w32-load-color-file): Remove.
884 (x-open-connection): Use renamed Fx_load_color_file.
885 * xfaces.c (x-load-color-file): Add.
886 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
887 Emacs.clr.
888 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
889
890 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
891
892 * dbusbind.c (Fdbus_call_method_asynchronously)
893 (Fdbus_method_error_internal): New defuns.
894 (xd_read_message): Handle also reply messages.
895 (Vdbus_registered_functions_table): Extend docstring.
896
897 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
898
899 * keyboard.c (gobble_input): Fix previous change.
900
901 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
902
903 * bitmaps/README:
904 * xfns.c:
905 * termcap.c:
906 * term.c:
907 * syswait.h:
908 * systty.h:
909 * systime.h:
910 * syssignal.h:
911 * sysdep.c:
912 * process.h:
913 * process.c:
914 * print.c:
915 * ndir.h:
916 * lread.c:
917 * keyboard.c:
918 * getpagesize.h:
919 * floatfns.c:
920 * fileio.c:
921 * emacs.c:
922 * doc.c:
923 * dispnew.c:
924 * dired.c:
925 * data.c:
926 * callproc.c:
927 * buffer.c:
928 * README:
929 * Makefile.in:
930 * s/template.h:
931 * s/msdos.h:
932 * m/vax.h: Remove VMS support.
933 * s/vms.h:
934 * vlimit.h:
935 * uaf.h:
936 * temacs.opt:
937 * param.h:
938 * ioctl.h: Remove file.
939
940 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
941
942 * s/ms-w32.h (MULTI_KBOARD): Remove.
943 * xterm.c:
944 * xselect.c:
945 * xfns.c:
946 * window.c:
947 * w32term.c:
948 * w32fns.c:
949 * terminal.c:
950 * termhooks.h:
951 * term.c:
952 * sysdep.c:
953 * keyboard.h:
954 * keyboard.c:
955 * frame.h:
956 * frame.c:
957 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
958 * config.in: Regenerate.
959
960 2008-07-30 Jason Rumney <jasonr@gnu.org>
961
962 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
963
964 * w32font.c (w32font_encode_char): Leave as unicode if in range.
965 (w32font_open_internal): Get unicode version of textmetrics.
966 Don't enable or disable glyph indices here.
967 (w32font_open): Disable use of glyph indices.
968
969 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
970
971 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
972
973 * minibuf.c (Vread_buffer_function): Doc fix.
974
975 2008-07-30 John Paul Wallington <jpw@pobox.com>
976
977 * minibuf.c (read_buffer_completion_ignore_case): New var.
978 (Fread_buffer): Use it.
979
980 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
981
982 * systty.h (sensemode): Remove empty #if. Remove reference to
983 BSD_TERMIOS, unused.
984
985 * sysdep.c: Remove reference to DGUX.
986 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
987
988 * config.in: Regenerate.
989
990 2008-07-30 Jason Rumney <jasonr@gnu.org>
991
992 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
993
994 2008-07-29 Jason Rumney <jasonr@gnu.org>
995
996 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
997 is populated.
998 (uniscribe_encode_char): Always use uniscribe.
999 Avoid using context if cache is populated.
1000
1001 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
1002
1003 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
1004 open menu.
1005
1006 * gtkutil.c (menu_nav_ended): Remove.
1007 (create_menus): Remove signal connect for menu_nav_ended.
1008
1009 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
1010
1011 * xdisp.c (redisplay_window): Check return value of
1012 compute_window_start_on_continuation_line before forcing a window
1013 start.
1014
1015 2008-07-28 Jason Rumney <jasonr@gnu.org>
1016
1017 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
1018
1019 * w32term.c (w32_enable_unicode_output, cleartype_active):
1020 Remove obsolete display options.
1021 (x_draw_glyph_string_background): Don't use old cleartype_active
1022 workaround.
1023 (w32_initialize): Remove cleartype_active initialization.
1024 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
1025
1026 2008-07-28 Andreas Schwab <schwab@suse.de>
1027
1028 * lisp.h (init_weak_hash_tables, syms_of_font)
1029 (xd_read_queued_messages, syms_of_dbusbind): Declare.
1030 (remove_hash_entry): Don't declare.
1031 * eval.c (maybe_call_debugger): Make static and move before use.
1032 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
1033 * xdisp.c: Include "gtkutil.h" if USE_GTK.
1034 * xterm.h (x_set_frame_alpha): Declare.
1035
1036 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
1037
1038 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
1039 (create_menus): Connect selection-done to menu_nav_ended.
1040
1041 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
1042
1043 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
1044 Set Vx_resource_name to a fallback. Replace read of 'buffered'
1045 parameter with read of 'alpha' one.
1046 (Qns_frame_parameter): Remove.
1047 * nsselection.m (selection-coding-system)
1048 (next-selection-coding-system, Vselection_coding_system)
1049 (Vnext_selection_coding_system): Drop.
1050
1051 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
1052
1053 * nsfns.m (do-applescript, do_applescript): Rename to
1054 ns-do-applescript, ns_do_applescript, and move within file.
1055
1056 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1057
1058 Remove support for Mac Carbon.
1059 * mactoolbox.c:
1060 * macterm.h:
1061 * macterm.c:
1062 * macselect.c:
1063 * macmenu.c:
1064 * macgui.h:
1065 * macfns.c:
1066 * mac.c: Remove file.
1067 * s/darwin.h:
1068 * m/intel386.h:
1069 * xfaces.c:
1070 * xdisp.c:
1071 * window.c:
1072 * tparam.c:
1073 * termhooks.h:
1074 * termcap.c:
1075 * term.c:
1076 * syssignal.h:
1077 * sysselect.h:
1078 * sysdep.c:
1079 * process.c:
1080 * lread.c:
1081 * lisp.h:
1082 * keyboard.c:
1083 * image.c:
1084 * fringe.c:
1085 * frame.h:
1086 * frame.c:
1087 * fontset.c:
1088 * font.h:
1089 * font.c:
1090 * fns.c:
1091 * fileio.c:
1092 * emacs.c:
1093 * dispnew.c:
1094 * dispextern.h:
1095 * config.in:
1096 * atimer.c:
1097 * Makefile.in: Remove code for Carbon
1098
1099 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1100
1101 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
1102
1103 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1104
1105 * macterm.h (kCGBitmapByteOrder32Host): New define for
1106 non-universal SDKs.
1107
1108 * image.c (mac_create_cg_image_from_image, image_load_image_io)
1109 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
1110
1111 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
1112 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
1113
1114 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
1115
1116 * w32inevt.c: Include dispextern.h.
1117
1118 2008-07-26 Andreas Schwab <schwab@suse.de>
1119
1120 * print.c (print_object): Fix off-by-one in last change.
1121
1122 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
1123
1124 * term.c (syms_of_term): Don't initialize default_orig_pair,
1125 default_set_foreground and default_set_background on Windows.
1126
1127 2008-07-25 Jason Rumney <jasonr@gnu.org>
1128
1129 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
1130 ScriptItemize. Clean up return value checking. Remove unused
1131 variables.
1132 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
1133 shaping engine.
1134
1135 * w32font.c (w32font_has_char): Handle the case where we can't
1136 determine the script for a character.
1137
1138 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
1139
1140 * term.c (syms_of_term): Initialize default_orig_pair,
1141 default_set_foreground, and default_set_background.
1142
1143 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
1144 clash (bug#86).
1145 (getloadavg): Callers changed.
1146
1147 * image.c (svg_load_image): Fix last change.
1148 (svg_load_image): Use rsvg_handle_get_dimensions to check that
1149 image size is valid. Use g_object_unref instead of deprecated
1150 rsvg_handle_free to free rsvg handle.
1151 (x_from_xcolors): Don't initialize pixmap (silence compiler).
1152
1153 2008-07-25 Jason Rumney <jasonr@gnu.org>
1154
1155 * w32font.c (w32font_encode_char): Encode characters outside BMP as
1156 surrogates before looking up glyph index.
1157 (w32font_text_extents): Encode as surrogates if falling back to
1158 functions that need UTF-16 wide chars.
1159
1160 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
1161 BMP as surrogates before looking up glyph index.
1162
1163 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
1164
1165 * image.c (svg_load_image): Check for failure in return value of
1166 rsvg_handle_get_pixbuf. Free rsvg handle when done.
1167
1168 2008-07-25 Jason Rumney <jasonr@gnu.org>
1169
1170 * w32font.c (Fx_select_font): Reverse sense of second arg.
1171
1172 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
1173
1174 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
1175 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
1176
1177 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
1178 (PURESIZE): Use it.
1179
1180 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
1181
1182 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
1183 * m/alpha.h (TEXT_END):
1184 * m/ibmrs6000.h (TEXT_END):
1185 * m/macppc.h (TEXT_END):
1186 * s/darwin.h (TEXT_END):
1187 * s/msdos.h (TEXT_END): Remove, unused.
1188 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
1189 * s/cygwin.h: Remove comment.
1190
1191 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
1192 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
1193 * m/intel386.h (DOT_GLOBAL_START):
1194 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
1195 (USG): Remove, file not used on USG platforms.
1196
1197 * Makefile.in (HAVE_X11): Remove empty #else.
1198
1199 2008-07-24 Andreas Schwab <schwab@suse.de>
1200
1201 * fileio.c (Finsert_file_contents): Properly adjust undo list
1202 after format conversion.
1203
1204 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
1205
1206 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
1207 (menu_nav_ended): Remove.
1208 (create_menus): Remove signal connect for menu_nav_ended.
1209 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
1210 create_menus.
1211 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
1212
1213 2008-07-23 Jason Rumney <jasonr@gnu.org>
1214
1215 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
1216 with opened font.
1217 (w32font_open): Set font type to gdi.
1218
1219 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
1220
1221 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
1222
1223 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
1224 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
1225 defines it.
1226 * unexec.c (ADDR_CORRECT): Define unconditionally.
1227
1228 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
1229
1230 * unexec.c: Remove code depending on !COFF and USG, the file is
1231 not used for such systems.
1232
1233 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
1234 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
1235 (LD_SWITCH_SYSTEM_1): Remove, update users.
1236
1237 * s/darwin.h (DATA_END):
1238 * m/intel386.h (DATA_END):
1239 * m/ibmrs6000.h (DATA_END):
1240 * m/alpha.h (DATA_END): Remove, unused.
1241
1242 * config.in: Regenerate.
1243 * s/ms-w32.h (subprocesses): Define unconditionally.
1244 * s/template.h (subprocesses): Update comment.
1245 * s/vms.h (subprocesses):
1246 * s/usg5-4.h (subprocesses):
1247 * s/hpux10-20.h (subprocesses):
1248 * s/gnu-linux.h (subprocesses):
1249 * s/cygwin.h (subprocesses):
1250 * s/bsd-common.h (subprocesses):
1251 * s/aix4-2.h (subprocesses):
1252 * s/darwin.h (subprocesses): Do not define, defined by default now.
1253
1254 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
1255 Remove all references.
1256 (temacs): Add GNUStep specific ld flags.
1257
1258 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
1259 similarly to what X does.
1260
1261 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1262
1263 * nsfns.m (x-list-fonts): Remove.
1264 (syms_of_nsfns): Drop the x-list-fonts declaration.
1265 * nsterm.m: Get rid of remaining "//" comments.
1266
1267 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
1268
1269 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
1270
1271 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
1272 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
1273 (Fns_own_selection_internal, Fx_disown_selection_internal)
1274 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
1275
1276 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
1277 ... */' style of docstrings. Doc fixes.
1278
1279 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
1280
1281 * terminfo.c (UP, BC, PC): Undo previous change.
1282
1283 * nsfns.m: Rename ns prefixed functions/variables to the
1284 corresponding x versions. Update references.
1285
1286 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
1287
1288 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
1289
1290 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
1291
1292 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
1293 Remove forwarding functions.
1294 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
1295 non-static.
1296 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
1297 non-static.
1298 (ns_frame_parm_handlers): Use the new names.
1299 (syms_of_nsfns): Move to the end of file.
1300
1301 * nsterm.m (syms_of_nsterm): Move to the end of file.
1302
1303 * dispnew.c (init_display): Remove code for X10.
1304
1305 2008-07-22 Jason Rumney <jasonr@gnu.org>
1306
1307 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
1308 bare drive.
1309
1310 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1311
1312 * nsterm.m (syms_of_nsterm): Remove debugging println.
1313
1314 2008-07-22 David Reitter <david.reitter@gmail.com>
1315
1316 * nsfns.m (do_applescript, F_do_applescript): NS version of the
1317 Carbon implementation of the same functionality: execute arbitrary
1318 AppleScript code.
1319
1320 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
1321
1322 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
1323 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
1324 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
1325 (Fx_display_mm_height, Fx_display_mm_width)
1326 (Fx_display_backing_store, Fx_display_visual_class)
1327 (Fx_display_save_under, Fx_open_connection)
1328 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
1329 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
1330 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
1331 (Fx_display_pixel_width, Fx_display_pixel_height)
1332 (Fx_display_usable_bounds, Fx_display_planes)
1333 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
1334 ... */' style of docstrings.
1335
1336 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
1337
1338 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
1339 on this platform.
1340 (mips):
1341 * m/iris4d.h (mips): Do not define.
1342 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
1343
1344 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
1345
1346 * image.c:
1347 * nsfns.m:
1348 * nsselect.m:
1349 * nsterm.h:
1350 * nsterm.m: Rename ns prefixed functions/variables to the
1351 corresponding x versions. Update references.
1352
1353 * m/ibms390x.h (NO_REMAP): Do not undefine.
1354
1355 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
1356
1357 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
1358
1359 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
1360 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
1361 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
1362 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
1363 (Fns_display_mm_height, Fns_display_mm_width)
1364 (Fns_display_backing_store, Fns_display_visual_class)
1365 (Fns_display_save_under, Fns_open_connection)
1366 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
1367 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
1368 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
1369 (Fns_display_pixel_width, Fns_display_pixel_height)
1370 (Fns_display_usable_bounds, Fx_display_planes)
1371 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
1372
1373 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
1374
1375 * print.c (print_object): Check print_depth before searching for
1376 circularities.
1377
1378 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
1379
1380 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
1381 only sprintf.
1382
1383 2008-07-21 Kenichi Handa <handa@m17n.org>
1384
1385 * ftfont.c (adjust_anchor): Check if DetalValue is not NULL.
1386
1387 2008-07-20 Andreas Schwab <schwab@suse.de>
1388
1389 * syntax.c (find_start_pos, find_start_value)
1390 (find_start_value_byte, find_start_begv, find_defun_start)
1391 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
1392
1393 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
1394
1395 * s/sol2-3.h: Insert contents of s/sol2.h.
1396 (LD_SWITCH_SYSTEM): Remove redundant definition.
1397 * s/sol2.h: Remove, unused.
1398
1399 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
1400
1401 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
1402
1403 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
1404
1405 * Makefile.in (ns_appdir): Fix typo in find command.
1406
1407 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
1408
1409 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
1410
1411 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
1412 added not supported anymore.
1413
1414 * s/usg5-4-2.h (LIBS_SYSTEM):
1415 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
1416
1417 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
1418 * s/lynxos.h (GETPGRP_NO_ARG):
1419 * s/hpux10-20.h (NO_SIOCTL_H):
1420 * s/gnu.h (GETPGRP_NO_ARG):
1421 * s/gnu-linux.h (NO_SIOCTL_H):
1422 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
1423 * s/cygwin.h (GETPGRP_NO_ARG):
1424 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
1425 (C_DEBUG_SWITCH): Remove duplicate definition.
1426
1427 * m/ibms390.h: Remove boilerplate comments.
1428
1429 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
1430
1431 * process.c (HAVE_SERIAL): Consolidate ifdefs.
1432 (wait_reading_process_output): Remove code for SunOS, platform not
1433 supported anymore. Use SOLARIS2 instead of sun.
1434
1435 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
1436
1437 * font.c (font_open_by_name): Under NS, default lface height to zero.
1438 (font_open_for_lface): Under NS, set size based on frame fontsize.
1439 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
1440 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
1441
1442 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
1443
1444 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
1445 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
1446 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
1447 YES/NO.
1448 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
1449 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
1450 * Makefile.in (clean): Clear out build destination dir.
1451
1452 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
1453
1454 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
1455 xterm, xselect.
1456 * lisp.h: Remove declaration of hash_remove.
1457 * nsgui.h: Remove redefinitions of hash_remove.
1458 * fns.c (hash_remove): Rename to hash_remove_from_table.
1459
1460 2008-07-19 Seiji Zenitani <zenitani@mac.com>
1461
1462 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
1463 strdup() the family UTF8String before modifying it.
1464
1465 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
1466
1467 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
1468 NS_FACE_BACKGROUND with 0 instead of nil.
1469 * nsfont.m (nsfont_draw): Same.
1470
1471 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
1472
1473 * nsfns.m (ns_set_background_color): Fix crash.
1474
1475 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
1476
1477 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
1478
1479 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
1480
1481 * puresize.h (BASE_PURESIZE): Increase to 1240000.
1482
1483 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1484
1485 * gtkutil.c: Include <config.h> instead of "config.h".
1486
1487 * lisp.h (Foverlay_buffer): Add EXFUN.
1488
1489 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
1490 child process to complete child_setup. Undo 2005-09-21 change.
1491
1492 * s/darwin.h: Mention setsid after vfork.
1493
1494 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1495
1496 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
1497 Depend on macgui.h.
1498
1499 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
1500 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
1501
1502 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
1503 and f19.
1504 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
1505
1506 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
1507 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
1508 Remove enumerators.
1509
1510 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
1511 Check if FACE_FROM_ID returns NULL.
1512
1513 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
1514
1515 * w32inevt.c (change_frame_size): Remove extern declaration.
1516 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
1517 change_frame_size.
1518
1519 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
1520
1521 * getloadavg.c: Revert last change (2008-07-15).
1522
1523 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
1524
1525 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
1526 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc) set
1527 from configure.
1528
1529 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
1530
1531 * s/sol2.h:
1532 * s/sol2-4.h: Reorganize conditionals.
1533
1534 * ecrt0.c: Remove code depending on m68000, not used anymore.
1535
1536 * fns.c (hash_remove): Make static.
1537 * lisp.h (hash_remove): Don't prototype.
1538
1539 * m/ibmrs6000.h:
1540 * m/ibms390x.h:
1541 * m/macppc.h: Remove boilerplate comments.
1542
1543 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
1544 Solaris, which does not need them.
1545
1546 * m/vax.h: Remove comments about unsupported systems.
1547
1548 * s/darwin.h: Reorganize ifdefs.
1549
1550 2008-07-17 Andreas Schwab <schwab@suse.de>
1551
1552 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
1553
1554 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
1555
1556 Use SDATA. Follow coding convention of placing operators at
1557 beginning of next line rather than end of previous line, and placing
1558 spaces around infix operators.
1559
1560 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
1561 in case it was defined already.
1562 USE @GNUSTEP_MAKEFILES@ rather than envvars.
1563 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
1564 ns_default.
1565 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
1566 Lisp_Objects.
1567 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
1568 (ns_defined_color, ns_color_to_lisp): Declare.
1569 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
1570 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
1571 it's accepted even with USE_LISP_UNION_TYPE.
1572 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
1573 (update_frame_tool_bar): Remove apparently obsolete tests for
1574 non-integerness of f->tool_bar_lines.
1575 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
1576 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
1577 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
1578 (nsfont_open): Don't confuse NULL for Qnil.
1579 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
1580 * menu.h (find_and_call_menu_selection):
1581 * menu.c (find_and_call_menu_selection): Use just int for vector size.
1582 (find_and_return_menu_selection): Always return something.
1583 * frame.h: Include dispextern.h for Display_Info.
1584 (display_x_get_resource): Declare.
1585
1586 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
1587
1588 * syntax.c: Remove stdio.h include accidentally introduced in
1589 Emacs.app commit.
1590 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
1591 NS_IMPL_COCOA.
1592 * keyboard.c (handle_async_input, input_available_signal): Remove
1593 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
1594
1595 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
1596
1597 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
1598 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
1599 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
1600 Use SDATA.
1601
1602 * keymap.c: Remove all NS-specific code.
1603 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
1604 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
1605 where_is_preferred_modifier, return a different value depending on how
1606 preferred is the binding.
1607 (where_is_internal): Adjust accordingly.
1608 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
1609 Adjust to new preferred_sequence_p.
1610 (syms_of_keymap): Declare `where-is-preferred-modifier'.
1611 * keyboard.c (parse_solitary_modifier): Not static any more.
1612 * keyboard.h (parse_solitary_modifier): Declare.
1613
1614 2008-07-16 Andreas Schwab <schwab@suse.de>
1615
1616 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
1617 of easymenu.
1618
1619 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
1620
1621 * xdisp.c (move_it_in_display_line): Account for word wrap, so
1622 that we don't move off the line.
1623
1624 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
1625
1626 * keyboard.c (Qsuper): Remove.
1627 (parse_menu_item): Don't call where_is_internal specially for NS.
1628
1629 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
1630
1631 * s/gnu-linux.h: Remove boilerplate comments.
1632
1633 * m/alpha.h (__ELF__): Consolidate conditions.
1634
1635 * m/m68k.h (linux): Use GNU_LINUX instead.
1636 Remove boilerplate comments.
1637
1638 * m/intel386.h: Undo reactoring from previous change.
1639 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
1640 too, remove dead code.
1641 (linux): Use GNU_LINUX instead.
1642
1643 2008-07-16 Jason Rumney <jasonr@gnu.org>
1644
1645 * w32gui.h: Repeat 26 June changes lost by last change.
1646
1647 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
1648
1649 * systty.h: Remove code for Aix on 386, unsupported platform.
1650
1651 * s/ms-w32.h: Remove boilerplate comments.
1652 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
1653
1654 * s/gnu-linux.h (TERM): Remove support.
1655 (HAVE_SYSVIPC): Remove, unused.
1656 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
1657 for this system.
1658
1659 * process.c: Remove support for IRIS, unused.
1660 Remove support for TERM, not relevant anymore.
1661
1662 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
1663 used with the definition.
1664
1665 * s/aix4-2.h (static): Do not undef.
1666
1667 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
1668 only used on Aix.
1669 (HAVE_SYSVIPC): Remove, unused.
1670
1671 * m/hp800.h (CANNOT_DUMP): Do not undef.
1672
1673 * m/alpha.h: Fix comment.
1674
1675 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
1676 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
1677 used by this configuration.
1678 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
1679 * unexec.c: Remove code depending on HPUX and
1680 USG_SHARED_LIBRARIES, not used with this file. Remove code
1681 depending on IRIS, unused. Remove if 0-ed code.
1682
1683 * s/template.h: Remove comments about static.
1684
1685 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
1686 Remove if 0-ed code.
1687 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
1688 were the same as the default.
1689 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
1690 Remove boilerplate comments.
1691 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
1692 (HAVE_SYSVIPC): Remove, unused.
1693 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
1694
1695 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
1696 Remove boilerplate comments.
1697 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
1698 Remove boilerplate comments.
1699 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
1700 Remove boilerplate comments.
1701 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
1702
1703 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
1704 USG systems which do not use DATA_SEG_BITS.
1705 Refactor code. Remove boilerplate comments.
1706
1707 * m/ibms390.h:
1708 * m/m68k.h:
1709 * s/bsd-common.h:
1710 * s/cygwin.h:
1711 * s/darwin.h:
1712 * s/freebsd.h:
1713 * s/gnu.h:
1714 * s/msdos.h: Remove boilerplate comments.
1715
1716 * m/iris4d.h: Remove boilerplate comments and code for systems that
1717 do not use this file.
1718 (IRIS_4D): Remove, unused.
1719
1720 * m/mips.h: Remove boilerplate comments and code for systems that
1721 do not use this file.
1722 (SIGN_EXTEND_CHAR):
1723 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
1724 * unexmips.c: Remove file, unused.
1725
1726 * editfns.c (Fuser_full_name): Replace the only use of
1727 USER_FULL_NAME with its value.
1728 * config.in: Regenerate.
1729
1730 2008-07-16 David Reitter <david.reitter@gmail.com>
1731
1732 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
1733 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
1734
1735 2008-07-16 Glenn Morris <rgm@gnu.org>
1736
1737 * emacs.c (system-type): Doc fix.
1738
1739 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
1740
1741 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
1742 If the cache doesn't work, let's fix it, rather than work around it.
1743
1744 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
1745
1746 * Makefile.in: Correct additions for nsfont.o in last commit.
1747 * nsfont.m: New file (forgot last commit).
1748
1749 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
1750
1751 * callproc.c (set_initial_environment): Initialize
1752 Vprocess_environment under CANNOT_DUMP (fixes crash when
1753 batch-compiling for bootstrap).
1754
1755 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
1756 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1757
1758 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
1759 fix crash due to different init order.
1760
1761 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
1762
1763 Changes and additions for NeXTstep windowing system (Cocoa and
1764 GNUstep) support.
1765
1766 * Makefile.in:
1767 * config.in: Support defines and build commands for NS port.
1768 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
1769 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
1770 * dispextern.h: Include nsgui.h and add needed typedefs under NS
1771 windowing.
1772 (struct face): Add synth_ital field.
1773 * dispnew.c: Include nsterm.h when compiling under NS windowing.
1774 (init_display): Initialize Vinitial_window_system to "ns" when so
1775 compiled.
1776 * emacs.c: Include GSConfig.h when compiling under GNUstep.
1777 (display_arg): Use under NS.
1778 (main): Under NS, allocate autorelease pool and handle command line
1779 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
1780 (standard_args): Add NS-specific args.
1781 (shut_down_emacs): Shut down NS terminal if compiled under NS.
1782 * font.c (DEFAULT_ENCODING): New variable.
1783 (font_find_for_lface): Use it.
1784 (syms_of_font): Load syms_of_nsfont under NS.
1785 * font.h: Declare nsfont_driver when compiled under NS.
1786 * fontset.c: When compiling under NS, include nsterm.h.
1787 (fontset_from_font): Autoconstruct fontset under NS.
1788 * frame.c (various): Under NS, include nsterm.h, add Qns window system
1789 symbol, document and use it.
1790 (do_switch_frame): When for_deletion under Cocoa, add
1791 Fraise_frame(Qnil).
1792 (x_set_frame_parameters): Ensure font attribute changes are picked up.
1793 (x_get_arg): Allow "yes" and "no" as boolean values.
1794 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
1795 Qright under Cocoa.
1796 (focus-follows-mouse): Default to 0 under NS.
1797 * frame.h (enum output_method): Add output_ns.
1798 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
1799 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
1800 (FRAME_WINDOW_P): NS-specific definition.
1801 * fringe.c (max_used_fringe_bitmap): Make public.
1802 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
1803 (getloadavg): Use NeXT code under descendant OS's.
1804 * image.c (includes and header section, x_create_bitmap_from_data)
1805 (x_create_bitmap_from_file, free_bitmap_record, image_background)
1806 (image_background_transparent, x_clear_image_1)
1807 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
1808 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
1809 (x_to_xcolors, x_from_xcolors, x_disable_image)
1810 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
1811 other GUIs, including XPM support using code originally written for
1812 Carbon GUI.
1813 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
1814 using NS API.
1815 (image_ascent): Use font metrics macros instead of direct struct field
1816 access.
1817 * keyboard.c (includes): Add nsterm.h when compiling under NS.
1818 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
1819 Also, handle NS as GTK for menu bar purposes.
1820 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
1821 toolkit where they differ.
1822 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
1823 use cachelist, still needed under NS.
1824 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
1825 (struct widget_value): Define it here for menu.c.
1826 * keymap.c (includes): Include modifier internals.
1827 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
1828 NS.
1829 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
1830 support for preferring sequences using certain modifiers, specified by
1831 the FIRSTONLY argument.
1832 * lisp.h (hash_remove): Rename to avoid name clash when compiling
1833 under NS GNUstep implementation.
1834 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
1835 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
1836 * menu.c: Include nsterm.h under NS.
1837 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
1838 (free_menubar_widget_tree_value, update_submenu_strings)
1839 (find_and_call_menu_selection): Treat NS as X and NT.
1840 (find_and_return_menu_selection): New function, used for popup menus.
1841 * nsgui.h:
1842 * nsterm.h:
1843 * nsfns.m:
1844 * nsimage.m:
1845 * nsmenu.m:
1846 * nsselect.m:
1847 * nsterm.m: New files.
1848 * process.c (wait_reading_process_output): Under NS, call ns_select()
1849 instead of plain select().
1850 * syntax.c (char_quoted): Under NS, avoid a crash when called near
1851 beginning of buffer.
1852 * sysselect.h (init_process): Rename when compiling under Cocoa to
1853 avoid name conflict.
1854 * termhooks.h (display_info): Add ns_display_info to union.
1855 * terminal.c (Fterminal_live_p): Add ns to terminal types.
1856 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
1857 COCOA environment.
1858 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
1859 unexec() signature. (Note, this will dump, but the resulting file
1860 crashes; unexosx is used instead; keeping around for reference and
1861 possible aid in getting dump working under GNUstep.)
1862 * w32gui.h (button_type, widget_value): Remove definitions (now in
1863 keyboard.h).
1864 * window.c: Include nsterm.h when compiling under NS.
1865 * xdisp.c (includes): Include nsterm.h when compiling under NS.
1866 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
1867 other GUI windowing systems.
1868 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
1869 GTK.
1870 (x_consider_frame_title): Under NS, set icon type and frame
1871 modified-state indicator; use ns_set_name_as_filename() when using
1872 formatted title.
1873 (update_window_cursor): Make public when compiling under NS.
1874 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
1875 (hourglass_atimer, Vhourglass_delay
1876 * xfaces.c (header section, init_frame_faces, clear_font_table)
1877 (defined_color, unload_color, x_face_list_fonts)
1878 (prepare_face_for_display): Add NS support parallel to other GUIs.
1879 Emulate GCs like other non-X GUIs.
1880 (split_font_name): Don't lowercase font name under NS.
1881 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
1882 under NS.
1883 * s/darwin.h: Add support for compilation under NS.
1884
1885 2008-07-15 Jason Rumney <jasonr@gnu.org>
1886
1887 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
1888 (w32_show_hourglass): Rename from show_hourglass.
1889 (w32_hide_hourglass): Rename from hide_hourglass.
1890 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
1891 (Vhourglass_delay): Declare extern.
1892 (hourglass_started): Remove.
1893
1894 * xdisp.c (Vhourglass_delay): Remove static.
1895 (hourglass_started, start_hourglass, cancel_hourglass):
1896 Don't include these versions on WINDOWSNT.
1897
1898 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
1899
1900 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
1901 variables (formerly in xfns.c).
1902 (show_hourglass, hide_hourglass): New prototypes (same).
1903 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
1904 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
1905 in xfns.c).
1906 (syms_of_xdisp): Declare/initialize display-hourglass,
1907 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
1908 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
1909 formerly in xfns.c.
1910 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
1911 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
1912 (start_hourglass, cancel_hourglass): Remove.
1913 (show_hourglass, hide_hourglass): Remove prototypes and static
1914 modifiers.
1915 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
1916 hourglass_atimer, hourglass_shown_p declaration/initialization.
1917 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
1918 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
1919 (start_hourglass, cancel_hourglass): Remove.
1920 (show_hourglass, hide_hourglass): Remove prototypes and static
1921 modifiers.
1922 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
1923 hourglass_atimer, hourglass_shown_p declaration/initialization.
1924 * w32fns.c (display_hourglass_p, Vhourglass_delay)
1925 (DEFAULT_HOURGLASS_DELAY): Remove.
1926 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
1927 hourglass_shown_p declaration/initialization.
1928
1929 2008-07-14 Jason Rumney <jasonr@gnu.org>
1930
1931 * w32fns.c (w32_get_arg): Remove wrapper function.
1932 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
1933 directly.
1934 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
1935
1936 2008-07-14 Kenichi Handa <handa@m17n.org>
1937
1938 * xfont.c (xfont_open): Add workaround for X's bug.
1939
1940 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
1941
1942 * fontset.c: Include <stdio.h> unconditionally.
1943
1944 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
1945
1946 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
1947 for filtering.
1948
1949 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
1950
1951 * s/vms.h: Use __GNUC__ instead of _GNUC_.
1952
1953 * m/macppc.h:
1954 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
1955
1956 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
1957 (SPECIAL_EMACS_INT):
1958 * m/ia64.h (SPECIAL_EMACS_INT):
1959 * m/amdx86-64.h (SPECIAL_EMACS_INT):
1960 * s/gnu.h (NLIST_STRUCT):
1961 * s/aix4-2.h (X11R5_INHIBIT_I18N):
1962 * s/gnu-linux.h (LINUX):
1963 * s/msdos.h (HAVE_FACES):
1964 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
1965
1966 * systty.h:
1967 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
1968 anymore.
1969
1970 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
1971
1972 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
1973 always defined as int.
1974
1975 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
1976 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
1977 * s/gnu-linux.h (HAVE_WAIT_HEADER):
1978 * s/freebsd.h (HAVE_WAIT_HEADER):
1979 * s/bsd-common.h (HAVE_UNION_WAIT):
1980 * s/aix4-2.h (HAVE_WAIT_HEADER):
1981 * m/mips.h (HAVE_UNION_WAIT):
1982 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
1983 (COFF, static): Do not define, they are undefined later in the file.
1984
1985 * process.c (update_status): Don't use a union.
1986 (status_convert):
1987 (sigchld_handler): Use int instead of WAITTYPE.
1988
1989 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
1990
1991 * indent.c (Fvertical_motion): Restore hscroll before moving to
1992 goal column.
1993
1994 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
1995
1996 * lisp.h: Remove left over code.
1997
1998 2008-07-11 Andreas Schwab <schwab@suse.de>
1999
2000 * lisp.h: Fix logic in last change.
2001
2002 * menu.h: New file.
2003 * menu.c: Include it.
2004 * xmenu.c: Likewise.
2005 * Makefile.in: Update dependencies.
2006
2007 2008-07-11 Kenichi Handa <handa@m17n.org>
2008
2009 * fontset.c (fontset_from_font): Cancel the previous change.
2010
2011 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
2012
2013 * lisp.h:
2014 * w32heap.c:
2015 * emacs.c:
2016 * alloc.c: Replace all references of NO_UNION_TYPE with
2017 USE_LISP_UNION_TYPE.
2018
2019 * m/xtensa.h (NO_UNION_TYPE):
2020 * m/vax.h (NO_UNION_TYPE):
2021 * m/template.h (NO_UNION_TYPE):
2022 * m/sparc.h (NO_UNION_TYPE):
2023 * m/mips.h (NO_UNION_TYPE):
2024 * m/macppc.h (NO_UNION_TYPE):
2025 * m/m68k.h (NO_UNION_TYPE):
2026 * m/iris4d.h (NO_UNION_TYPE):
2027 * m/intel386.h (NO_UNION_TYPE):
2028 * m/ibms390x.h (NO_UNION_TYPE):
2029 * m/ibms390.h (NO_UNION_TYPE):
2030 * m/ibmrs6000.h (NO_UNION_TYPE):
2031 * m/ia64.h (NO_UNION_TYPE):
2032 * m/hp800.h (NO_UNION_TYPE):
2033 * m/arm.h (NO_UNION_TYPE):
2034 * m/amdx86-64.h (NO_UNION_TYPE):
2035 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
2036 defining it the same.
2037
2038 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
2039
2040 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
2041
2042 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
2043
2044 * fileio.c:
2045 * sysdep.c
2046 * systty.h:
2047 * m/ibmrs6000.h:
2048 * m/iris4d.h:
2049 * s/aix4-2.h:
2050 * s/freebsd.h:
2051 * s/gnu-linux.h:
2052 * s/hpux10-20.h:
2053 * s/hpux11.h:
2054 * s/netbsd.h:
2055 * s/sol2-3.h:
2056 * s/sol2-4.h:
2057 * s/sol2.h:
2058 * s/usg5-4.h:
2059 * s/vms.h: Remove references to unused variables.
2060
2061 2008-07-10 Andreas Schwab <schwab@suse.de>
2062
2063 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
2064 pattern before matching the generic family.
2065
2066 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
2067
2068 * unexec.c:
2069 * s/vms.h:
2070 * s/usg5-4-2.h:
2071 * s/sol2-5.h:
2072 * s/freebsd.h:
2073 * s/darwin.h: Remove dead code.
2074
2075 * m/template.h:
2076 * m/sparc.h:
2077 * m/mips.h:
2078 * m/m68k.h:
2079 * m/iris4d.h:
2080 * m/intel386.h:
2081 * m/ibms390x.h:
2082 * m/ibms390.h:
2083 * m/ia64.h:
2084 * m/hp800.h:
2085 * m/arm.h:
2086 * m/amdx86-64.h: Remove dead code and references to unused
2087 and compiler defined symbols.
2088
2089 * unexmips.c:
2090 * unexelf.c: Remove references to desupported systems.
2091
2092 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
2093
2094 * m/powermac.h: Remove boilerplate comments.
2095 (NO_REMAP): Remove unused definition.
2096
2097 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
2098 define them.
2099
2100 2008-07-10 Kenichi Handa <handa@m17n.org>
2101
2102 * xfont.c (xfont_open): Log the reason of failure.
2103
2104 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
2105
2106 * fontset.c (fontset_get_font_group):
2107 * font.c (font_check_otf): Specify argument types.
2108
2109 2008-07-09 Kenichi Handa <handa@m17n.org>
2110
2111 * coding.c (detect_coding_utf_8): Set detect_info->found only when
2112 non-ASCII char is found.
2113
2114 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
2115 (reorder_font_vector): Change the arg preferred_family to font.
2116 Prefer the spec matching with font.
2117 (fontset_get_font_group): New function.
2118 (fontset_find_font): Change the format of an element of a realized
2119 fontset. Use fontset_get_font_group.
2120 (fontset_font): Try the current fontset, the default fontset, the
2121 fallbacks of the current fonset, and the fallbacks of the default
2122 fontset in this order.
2123 (face_for_char): Delete the shortcut to use the current font.
2124 (fontset_from_font): Don't set fonts for Latin in the fontset.
2125
2126 * font.h (font_make_object, font_match_p): Adjust prototypes.
2127
2128 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
2129
2130 * font.c (font_make_object): New arg entity and pixelsize.
2131 (font_check_otf_features, font_check_otf): New functions.
2132 (font_match_p): Check :lang, :script, and :otf properties.
2133
2134 * xfont.c (xfont_open): Adjust it for the change of
2135 font_make_object.
2136 (xfont_text_extents): Fix initial setting of metrics.
2137
2138 * ftfont.c (struct ftfont_info): New member index, delete member
2139 fc_charset_idx. Make the member order compatible with struct
2140 xftfont_info.
2141 (fc_charset_table): Change charset names to registry names.
2142 (ftfont_pattern_entity): Delete the args registry and
2143 fc_charset_idx. Change the value of :font-entity property
2144 to (FONTNAME . INDEX). Always set :registry property to
2145 `iso10646-1'.
2146 (struct ftfont_cache_data): New struct.
2147 (ftfont_lookup_cache): New arg for_face.
2148 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
2149 (ftfont_driver): Set the member otf_capability.
2150 (ftfont_get_charset): Adjust it for the change of
2151 fc_charset_table.
2152 (OTF_TAG_SYM): New macro.
2153 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
2154 for the change of fc_charset_table.
2155 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
2156 ftfont_pattern_entity. Add FC_INDEX to objset.
2157 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
2158 and ftfont_pattern_entity.
2159 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
2160 font_make_object, struct ftfont_info.
2161 (ftfont_has_char): Use ftfont_get_fc_charset.
2162 (ftfont_otf_features, ftfont_otf_capability): New functions.
2163 (ftfont_shape): Use ftfont_get_otf.
2164 (ftfont_text_extents): Fix initial setting of metrics.
2165
2166 * xftfont.c (struct xftfont_info): New member ft_size. Make the
2167 member order compatible with struct ftfont_info.
2168 (xftfont_open): Add FC_CHARSET to the pattern. Set
2169 xftfont_info->ft_size. Don't unlock the face. Check BDF
2170 properties if appropriate.
2171 (xftfont_close): Unlock the face.
2172 (xftfont_anchor_point, xftfont_shape): Deleted.
2173 (syms_of_xftfont): Don't set members anchor_point and shape of
2174 xftfont_driver.
2175
2176 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
2177 font_make_object.
2178
2179 * w32font.c (w32font_open): Adjust it for the change of
2180 font_make_object.
2181 (w32font_open_internal): Don't set properties of font_object here.
2182
2183 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
2184
2185 * macfns.c (x_create_tip_frame):
2186 * w32fns.c (x_create_tip_frame):
2187 * xfns.c (x_create_tip_frame): Pass parameter argument to
2188 face-set-after-frame-default.
2189
2190 * xfaces.c (Finternal_merge_in_global_face): Save merged
2191 attributes for the default face back into the face vector.
2192
2193 2008-07-08 Andreas Schwab <schwab@suse.de>
2194
2195 * fontset.h: Declare fontset_from_font. Don't declare
2196 new_fontset_from_font and fontset_from_font_name.
2197 * xterm.c: Include "fontset.h".
2198 * Makefile.in (xterm.o): Update dependencies.
2199
2200 2008-07-08 Glenn Morris <rgm@gnu.org>
2201
2202 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
2203 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
2204
2205 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
2206
2207 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
2208 (x_set_frame_parameters): Don't bind it.
2209
2210 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
2211
2212 * w32fns.c (map_w32_filename): Declare extern.
2213
2214 2008-07-07 Jason Rumney <jasonr@gnu.org>
2215
2216 * w32term.c (WS_EX_LAYERED): Define if not already.
2217
2218 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
2219
2220 * xfaces.c (set_font_frame_param): Don't try to set the font
2221 parameter if it is still unspecified in the lface.
2222
2223 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
2224
2225 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
2226 face if it didn't already exist.
2227
2228 * xdisp.c (try_window_id): Give up if word-wrapping is on.
2229
2230 2008-07-05 Andreas Schwab <schwab@suse.de>
2231
2232 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
2233
2234 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
2235
2236 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
2237 word-wrapping.
2238 (IT_DISPLAYING_WHITESPACE): New macro.
2239 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
2240 when word-wrapping. Simplify word-wrapping logic. Use correct
2241 pixel positions when saving copies of the iterator.
2242 (display_line): Use proper wrap point if the last character on a
2243 line was preceded by whitespace.
2244
2245 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2246
2247 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
2248
2249 2008-07-04 Kenichi Handa <handa@m17n.org>
2250
2251 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
2252
2253 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
2254
2255 2008-07-02 Jason Rumney <jasonr@gnu.org>
2256
2257 * xfns.c (syms_of_xfns): Only define x-select-font when both
2258 HAVE_FREETYPE and USE_GTK
2259
2260 * xdisp.c (next_element_from_display_vector): Move assignment out
2261 of if statement.
2262
2263 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
2264
2265 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
2266
2267 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
2268 (syms_of_fileio): Initialize and export them.
2269 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
2270
2271 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
2272 (Fsystem_move_file_to_trash): New function.
2273 (syms_of_w32fns): Export it to lisp.
2274
2275 2008-07-01 Jason Rumney <jasonr@gnu.org>
2276
2277 * w32font.c (w32font_text_extents): Don't count overhang as part
2278 of width.
2279
2280 2008-06-30 Miles Bader <miles@gnu.org>
2281
2282 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
2283 Add `avoid_cursor_p' field.
2284
2285 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
2286 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
2287 (append_glyph, append_composite_glyph, produce_image_glyph)
2288 (append_stretch_glyph): Initialize avoid_cursor_p.
2289 (get_it_property): Rename from `get_line_height_property'.
2290 (x_produce_glyphs): Use get_it_property.
2291 (handle_line_prefix, push_display_prop): New functions.
2292 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
2293 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
2294 New variables.
2295 (syms_of_xdisp): Initialize them.
2296
2297 2008-06-30 Kenichi Handa <handa@m17n.org>
2298
2299 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
2300 XftDefaultSubstitute (they are called in XftFontMatch).
2301 (xftfont_open): Fix args to ftfont_font_format.
2302
2303 * ftfont.c (fc_charset_table): New member lang.
2304 (ftfont_resolve_generic_family): New arg pattern.
2305 (ftfont_spec_pattern): Check fc_cahrset_table[]->lang.
2306 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
2307 (ftfont_open): Fix args to ftfont_font_format.
2308 (ftfont_font_format): New arg filename.
2309
2310 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
2311
2312 * xfaces.c (Finternal_merge_in_global_face): If default face was
2313 modified, realize it again. Update the font face attribute.
2314
2315 2008-06-29 Jason Rumney <jasonr@gnu.org>
2316
2317 * w32term.c (x_set_frame_alpha): Fix logic.
2318
2319 2008-06-29 Kenichi Handa <handa@m17n.org>
2320
2321 * fontset.c (Finternal_char_font): Return font-object instead of
2322 font-name.
2323
2324 * composite.c (get_composition_id): Fix the width calculation for TAB.
2325
2326 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2327
2328 * indent.c (Fvertical_motion): Properly handle float column arg.
2329
2330 2008-06-28 Jason Rumney <jasonr@gnu.org>
2331
2332 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
2333 (pfnSetLayeredWindowAttributes): New function pointer.
2334 (w32_initialize): Initialize it when supported.
2335 (x_set_frame_alpha): New function.
2336
2337 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
2338 (w32_frame_parm_handlers): Set alpha handler.
2339
2340 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
2341
2342 2008-06-27 Jason Rumney <jasonr@gnu.org>
2343
2344 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
2345 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
2346 (w32_to_x_charset, x_to_w32_charset)
2347 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
2348 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
2349 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
2350 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
2351 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
2352 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
2353 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
2354 (Qw32_charset_unicode): Remove.
2355 (syms_of_w32fns): Update for above changes.
2356
2357 * w32font.c (w32_to_x_charset, x_to_w32_charset)
2358 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
2359 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
2360 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
2361 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
2362 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
2363 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
2364 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
2365 (syms_of_w32font): Update for above changes.
2366
2367 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
2368
2369 * s/usg5-4.h: Fix previous change: keep the correct branch of a
2370 removed #if.
2371 (USG_SHARED_LIBRARIES): Remove duplicate definition.
2372
2373 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
2374 Eli Zaretskii <eliz@gnu.org>
2375
2376 * makefile.w32-in (LOCAL_FLAGS):
2377 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
2378
2379 * sysdep.c (_spawnlp, _getpid):
2380 Declare with explicit _cdecl instead of _CRTAPI1.
2381
2382 * editfns.c (Fget_internal_run_time):
2383 Check for WINDOWSNT with #ifdef, not #if.
2384
2385 2008-06-26 Jason Rumney <jasonr@gnu.org>
2386
2387 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
2388
2389 * w32term.c (x_draw_glyph_string_foreground)
2390 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
2391 Use FONT_HANDLE macro.
2392 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
2393
2394 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
2395 (uniscribe_encode_char): Use FONT_HANDLE macro.
2396
2397 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
2398 (w32font_text_extents): Use precast w32_font.
2399 (w32font_close): Free cached metrics.
2400 (w32font_open_internal): Allocate space for name on stack.
2401
2402 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
2403
2404 * xdisp.c (extend_face_to_end_of_line): Fix last change.
2405
2406 2008-06-26 Jason Rumney <jasonr@gnu.org>
2407
2408 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
2409 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
2410
2411 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
2412
2413 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
2414
2415 2008-06-26 Jason Rumney <jasonr@gnu.org>
2416
2417 * w32bdf.c, w32bdf.h: Remove obsolete files.
2418
2419 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
2420
2421 * w32gui.h: Don't include w32bdf.h.
2422 (XCharStruct, enum w32_char_font_type, W32FontStruct):
2423 Remove obsolete font support.
2424
2425 * w32font.h (struct w32font_info): Remove compat_w32_font.
2426 Add hfont member.
2427 (FONT_COMPAT): Remove obsolete macro.
2428
2429 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
2430 (w32font_encode_char, w32font_text_extents): Use new hfont member.
2431 (w32font_open_internal): Remove compat code. Set new hfont member.
2432 (Fx_select_font): Use new hfont member.
2433
2434 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
2435 (uniscribe_encode_char): Use new hfont member.
2436
2437 * w32term.c (x_draw_glyph_string_foreground)
2438 (x_draw_composite_glyph_string_foreground): Use new hfont member.
2439 (x_draw_glyph_string): Use metrics in w32font_info.
2440
2441 2008-06-26 Kenichi Handa <handa@m17n.org>
2442
2443 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
2444
2445 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
2446
2447 * unexnext.c:
2448 * m/ews4800.h:
2449 * m/hp9000s300.h:
2450 * m/ibm370aix.h:
2451 * m/mips-siemens.h:
2452 * m/ncr386.h:
2453 * m/next.h:
2454 * m/pmax.h:
2455 * m/powerpcle.h:
2456 * m/tandem-s2.h:
2457 * s/386bsd.h:
2458 * s/bsd386.h:
2459 * s/bsd4-1.h:
2460 * s/bsd4-2.h:
2461 * s/bsdos2-1.h:
2462 * s/bsdos2.h:
2463 * s/bsdos3.h:
2464 * s/bsdos4.h:
2465 * s/nextstep.h:
2466 * s/ultrix4-3.h:
2467 * s/usg5-0.h:
2468 * s/usg5-2-2.h:
2469 * s/usg5-2.h:
2470 * s/usg5-4-3.h:
2471 * s/ux4800.h:
2472 * s/uxpds.h:
2473 * s/uxpv.h: Remove support for obsolete systems.
2474 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
2475 Remove, insert contents in s/hpux-10.20.h.
2476 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
2477 Remove, insert contents in s/aix4-2.h.
2478 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
2479 * s/bsd4-3.h: Rename to ...
2480 * s/bsd-common.h: ... this.
2481 * data.c:
2482 * doc.c:
2483 * ecrt0.c:
2484 * emacs.c:
2485 * fileio.c:
2486 * floatfns.c:
2487 * keyboard.c:
2488 * mem-limits.h:
2489 * print.c:
2490 * process.c:
2491 * sysdep.c:
2492 * syssignal.h:
2493 * systty.h:
2494 * syswait.h:
2495 * term.c:
2496 * unexec.c:
2497 * unexelf.c:
2498 * unexhp9k800.c:
2499 * m/hp800.h:
2500 * m/ibmrs6000.h:
2501 * m/mips.h:
2502 * m/vax.h:
2503 * s/darwin.h:
2504 * s/freebsd.h:
2505 * s/gnu.h:
2506 * s/ms-w32.h:
2507 * s/msdos.h:
2508 * s/netbsd.h:
2509 * s/template.h: Remove references to obsolete variables.
2510
2511 * Makefile.in: Add dependencies for all unexec files.
2512 (admindir): Remove unused variable.
2513 (UNEXEC_SRC): Remove references.
2514
2515 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
2516
2517 * xfns.c (x_default_font_parameter): If Xft is available, first
2518 try Monospace-12 for the default font.
2519
2520 2008-06-25 Jason Rumney <jasonr@gnu.org>
2521
2522 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
2523
2524 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
2525
2526 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
2527
2528 * buffer.c (syms_of_buffer): Remove default-word-wrap.
2529
2530 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
2531
2532 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
2533 <scroll-conservatively>: Fix typo in docstring.
2534
2535 * xselect.c (Fx_send_client_event): Doc fix.
2536
2537 2008-06-25 Kenichi Handa <handa@m17n.org>
2538
2539 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
2540
2541 * font.c (font_parse_fcname): Remove unused variables.
2542 (font_sort_entites): Delete the arg SPEC. Caller changed.
2543 Fix for the case of ! best_only.
2544 (font_delete_unmatched): Check DPI and AVGWIDTH too.
2545
2546 * lisp.h (Fstring_to_unibyte): EXFUN it.
2547
2548 * character.h (str_to_unibyte): Extern it.
2549
2550 * character.c (str_to_unibyte): New function.
2551
2552 * fns.c (Fstring_to_unibyte): New function.
2553 (syms_of_fns): Defsubr it.
2554
2555 2008-06-24 Kenichi Handa <handa@m17n.org>
2556
2557 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
2558 DPI too.
2559 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
2560
2561 2008-06-24 Andreas Schwab <schwab@suse.de>
2562
2563 * Makefile.in (${lispsource}loaddefs.el): Rename from
2564 ../lisp/loaddefs.el.
2565 (bootstrap-clean): Do what distclean does but don't remove
2566 Makefile.
2567 (distclean): Depend on bootstrap-clean and remove Makefile.
2568
2569 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
2570
2571 * buffer.h (struct buffer): New member word_wrap.
2572
2573 * buffer.c (syms_of_buffer): New variables default-word-wrap and
2574 word-wrap.
2575 (init_buffer_once): Initialize them.
2576
2577 * dispextern.h (struct it): Replace bool truncate_lines_p with a
2578 line_wrap enum possessing three possible values.
2579
2580 * termopts.h: Replace truncate_partial_width_windows with
2581 Vtruncate_partial_width_windows.
2582
2583 * dispnew.c (direct_output_for_insert): Avoid direct output when
2584 inserting a space with word wrap on.
2585
2586 * indent.c (compute_motion): Obey integer values of
2587 truncate-partial-width-windows.
2588
2589 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
2590 replacing truncate_partial_width_windows.
2591 (init_iterator): If Vtruncate_partial_width_windows is an integer,
2592 truncate only if the window width is below that integer.
2593 (start_display, resize_mini_window, produce_stretch_glyph)
2594 (display_string, move_it_in_display_line_to): Use line_wrap.
2595 (back_to_previous_visible_line_start, reseat_1): Reset
2596 string_from_display_prop_p.
2597 (display_line): Extend default face to end of line when wrapping.
2598
2599 2008-06-24 Kim F. Storm <storm@cua.dk>
2600
2601 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
2602 to wrap continued lines at word boundaries.
2603
2604 2008-06-24 Jason Rumney <jasonr@gnu.org>
2605
2606 * font.c (Ffont_face_attributes): Multiply pixel size before point
2607 conversion to avoid multiplying rounding error.
2608
2609 2008-06-23 Jason Rumney <jasonr@gnu.org>
2610
2611 * w32term.c (x_draw_glyph_string_background)
2612 (x_draw_glyph_string): Remove old bdf font code.
2613
2614 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
2615
2616 2008-06-22 Kenichi Handa <handa@m17n.org>
2617
2618 * font.c (font_find_for_lface): Try the adstyle specified in
2619 the property of LFACE_FONT of LFACE (if any).
2620
2621 2008-06-21 Seiji Zenitani <zenitani@mac.com>
2622 Ryo Yoshitake <ryo@shiftmode.net>
2623
2624 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
2625
2626 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
2627
2628 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
2629 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
2630 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
2631 (witness-emacs): Remove.
2632 (lisp, shortlisp): Move loaddefs.el earlier.
2633 (mostlyclean): Forget about witness-emacs.
2634
2635 2008-06-22 Glenn Morris <rgm@gnu.org>
2636
2637 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
2638 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
2639
2640 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
2641
2642 * Makefile.in (PRECOMP): Remove.
2643 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
2644 (witness-emacs): Run `compile-first'.
2645 (.el.elc): Use the new compile-onefile target.
2646
2647 2008-06-21 Kenichi Handa <handa@m17n.org>
2648
2649 * xftfont.c (xftfont_open): Handle QCembolden only when
2650 FC_EMBOLDEN is defined.
2651
2652 2008-06-21 Andreas Schwab <schwab@suse.de>
2653
2654 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
2655 (.el.elc): Likewise.
2656
2657 2008-06-21 Miles Bader <miles@gnu.org>
2658
2659 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
2660 build dir, not the lisp source dir.
2661
2662 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
2663
2664 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
2665 (bootstrapclean): Remove.
2666 (.el.elc): New rule.
2667 (PRECOMP): New var.
2668 (../lisp/subdirs.el): Remove.
2669 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
2670 (witness-emacs): New target.
2671 (mostlyclean): Remove witness-emacs as well.
2672 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
2673 Add witness-emacs dependency.
2674
2675 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
2676
2677 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
2678 defined by the font.
2679
2680 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
2681
2682 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
2683 (bootstrap-clean): New target that keeps TAGS around.
2684 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
2685 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
2686
2687 2008-06-20 Jason Rumney <jasonr@gnu.org>
2688
2689 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
2690 Remove obsolete font code.
2691
2692 * w32font.c (font_matches_spec): Use csb bitfield from font signature
2693 to determine language support.
2694
2695 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
2696
2697 * sysdep.c (cfsetspeed): New fun extracted from the code.
2698 (cfmakeraw): Move before first use.
2699
2700 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
2701
2702 * sysdep.c (cfmakeraw): Provide fallback implementation.
2703 (serial_configure): Provide fallback implementation of cfsetspeed.
2704
2705 2008-06-20 Kenichi Handa <handa@m17n.org>
2706
2707 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
2708 the pattern.
2709
2710 * fontset.c (fontset_from_font): Copy font_spec before changing
2711 the elements.
2712
2713 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
2714
2715 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
2716
2717 * w32fns.c, xfnc.c (x_default_font_parameter): Only set `font-param'
2718 for explicit `font' parameters.
2719
2720 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
2721
2722 2008-06-19 Kenichi Handa <handa@m17n.org>
2723
2724 * frame.c: Include <ctype.h>.
2725 (x_set_font_backend): Allow spacing characters in the X resource
2726 for FontBackend.
2727
2728 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
2729
2730 * w32fns.c, xfns.c (Qfont_param): New var.
2731 (syms_of_w32fns): Initialize it.
2732 (x_default_font_parameter): Record explicit `font' into
2733 `font-parameter'.
2734
2735 2008-06-18 Kenichi Handa <handa@m17n.org>
2736
2737 * font.c (font_parse_xlfd): Fix previous change.
2738 (font_parse_fcname): Don't use :fc-unknown-spec.
2739 (FRAME_X_DISPLAY_INFO): Besure to have at least 1 pixel height.
2740 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
2741 (font_add_log): Prepend the driver name to the resulting fonts.
2742
2743 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
2744 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
2745 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
2746
2747 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
2748 (QCembolden): New variables.
2749 (syms_of_xftfont): DEFSYM them.
2750 (xftfont_open): Call XftFontMatch. Don't trust the result of
2751 XftTextExtents8 if the pixel_size is less than 5.
2752
2753 2008-06-18 Andreas Schwab <schwab@suse.de>
2754
2755 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
2756 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
2757
2758 2008-06-18 Jason Rumney <jasonr@gnu.org>
2759
2760 * w32font.c (w32font_list, w32font_match): Add logging.
2761
2762 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
2763
2764 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
2765
2766 * font.c (font_parse_fcname): Store divider characters for
2767 unknown-spec list. For known key symbols, intern using correct
2768 symbol name.
2769
2770 2008-06-17 Kenichi Handa <handa@m17n.org>
2771
2772 * xfaces.c (realize_default_face): If the frame is not on window
2773 system, set the fontset of face to nil.
2774
2775 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
2776
2777 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
2778
2779 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
2780
2781 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
2782 (build_font_name_from_vector): Delete externs.
2783
2784 * xfaces.c (struct font_name): Don't declare.
2785
2786 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
2787
2788 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
2789
2790 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
2791
2792 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
2793
2794 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
2795
2796 * font.c (Ffont_spec): Fix usage in docstring.
2797 (Ffont_face_attributes): Doc fix.
2798
2799 2008-06-16 Andreas Schwab <schwab@suse.de>
2800
2801 * font.c (Ffont_face_attributes): Fix definition.
2802
2803 2008-06-16 Jason Rumney <jasonr@gnu.org>
2804
2805 * font.h (font_style_symbolic_from_value): Remove.
2806
2807 * font.c (font_style_symbolic_from_value): Remove.
2808 (font_style_symbolic): Revert to pre 2008-06-13 version.
2809
2810 * w32font.c (w32_to_fc_weight): New function.
2811 (w32font_full_name, logfont_to_fcname): Use it.
2812
2813 2008-06-16 Kenichi Handa <handa@m17n.org>
2814
2815 * font.c (font_check_object): Delete it.
2816 (font_clear_cache): Check if a font-object is alive.
2817 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
2818 font-object to nil.
2819 (font_close_object): Don't check FONT_CLOSE_OBJECT.
2820 (font_at): Don't call font_check_object.
2821 (Ffont_get): Return a symbol for :weight, :slant, and :width.
2822
2823 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
2824
2825 * puresize.h (BASE_PURESIZE): Increase to 1230000.
2826
2827 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
2828
2829 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
2830
2831 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
2832
2833 * font.c (font_parse_fcname): Only one decimal point.
2834 (font_unparse_fcname): Handle data in family and foundry indices
2835 as symbols, not strings.
2836 (font_unparse_gtkname, Ffont_face_attributes): New functions.
2837
2838 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
2839
2840 * font.h (font_unparse_gtkname): Add prototype.
2841
2842 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
2843
2844 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
2845
2846 2008-06-15 Andreas Schwab <schwab@suse.de>
2847
2848 * font.c (font_update_drivers): Fix crash when no drivers match.
2849
2850 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
2851
2852 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
2853 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
2854
2855 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
2856
2857 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
2858
2859 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
2860
2861 * process.c (Fserial_process_configure, Fprocess_send_eof):
2862 Use EQ to compare Lisp_Objects.
2863
2864 2008-06-13 Jason Rumney <jasonr@gnu.org>
2865
2866 * w32fns.c (Fw32_select_font): Remove old font API function.
2867
2868 * w32font.c (logfont_to_fcname): New function.
2869 (Fx_select_font): New font dialog function compatible with
2870 GTK/fontconfig version.
2871
2872 * font.c (font_style_symbolic_from_value): New function.
2873 (font_style_symbolic): Use it.
2874
2875 * font.h (font_style_symbolic_from_value): Declare new function.
2876
2877 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
2878
2879 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
2880 <font-width-table>: Fix typos in docstrings.
2881
2882 2008-06-13 Daniel Engeler <engeler@gmail.com>
2883
2884 These changes add serial port access.
2885 * process.c: Add HAVE_SERIAL.
2886 (Fdelete_process, Fprocess_status, Fset_process_buffer)
2887 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
2888 (list_processes_1, select_wrapper, Fstop_process)
2889 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
2890 (status_notify): Modify to handle serial processes.
2891 [HAVE_SERIAL] (Fserial_process_configure)
2892 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
2893 New functions.
2894 * process.h (struct Lisp_Process): Add `type'.
2895 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
2896 New functions.
2897 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
2898 serial ports.
2899 (serial_open, serial_configure) New functions.
2900 * w32.h: Add FILE_SERIAL.
2901 (struct _child_process): Add ovl_read, ovl_write.
2902
2903 2008-06-13 Kenichi Handa <handa@m17n.org>
2904
2905 * dispextern.h (enum lface_attribute_index): New member
2906 LFACE_FOUNDRY_INDEX.
2907
2908 * font.c (font_score): Delete arg alternate_families. Check only
2909 weight, slant, width, and size. Ignore the difference of alias
2910 style symbols.
2911 (font_sort_entites): Adjust for the above change. Reflect the
2912 order of font-driver to scores.
2913 (font_list_entities): Don't check alternate_familes here.
2914 (font_clear_prop): Handle foundry.
2915 (font_update_lface): Don't parse "foundry-family" form here.
2916 Handle FONT_FOUNDRY_INDEX.
2917 (font_find_for_lface): Likewise. Handle alternate families here.
2918 If registry is nil, try iso8859-1 and ascii-0.
2919 (font_open_for_lface): Pay attention to size in ENTITY.
2920 (font_open_by_name): Simplify by calling font_load_for_lface.
2921 (free_font_driver_list): Delete it.
2922 (font_update_drivers): Preserve the order of backends.
2923 (syms_of_font): Setting of sort_shift_bits adjusted for the change
2924 of font_score and font_sort_entites.
2925 (font_update_sort_order): Likewise.
2926
2927 * xfaces.c (LFACE_FOUNDRY): New macro.
2928 (check_lface_attrs): Check foundry.
2929 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
2930 (merge_face_vectors): Check foundry.
2931 (merge_face_ref): Likewise.
2932 (Finternal_set_lisp_face_attribute): Likewise.
2933 (x_update_menu_appearance): Likewise.
2934 (Finternal_get_lisp_face_attribute): Likewise.
2935 (lface_hash): Likewise.
2936 (lface_same_font_attributes_p): Likewise.
2937 (x_supports_face_attributes_p): Likewise.
2938 (tty_supports_face_attributes_p): Likewise.
2939 (Finternal_set_alternative_font_family_alist): Intern strings.
2940 (Finternal_set_alternative_font_registry_alist): Downcase strings.
2941 (realize_default_face): Set LFACE_FOUNDRY (lface).
2942
2943 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
2944 font-driver at first.
2945
2946 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
2947
2948 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
2949
2950 * lread.c (Fload): Use xfree, not free on saved_doc_string.
2951
2952 2008-06-12 Jim Meyering <meyering@redhat.com>
2953
2954 Make unexec_free handle NULL the same way free does.
2955 * unexmacosx.c (unexec_free): Ignore a NULL argument.
2956
2957 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
2958
2959 * character.h (CHAR_TO_BYTE_SAFE): New macro.
2960 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
2961 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
2962 (WEAK_ALIAS): Simplify.
2963 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
2964 when searching a unibyte buffer.
2965
2966 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
2967
2968 * xfns.c (Fx_select_font): Rename from x-font-dialog.
2969
2970 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
2971
2972 * w32font.c: Include ctype.h.
2973
2974 2008-06-11 Jason Rumney <jasonr@gnu.org>
2975
2976 * w32font.c (w32font_encode_char): Detect missing glyphs that are
2977 misreported as space.
2978 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
2979 as aliases for registry iso10646-1.
2980
2981 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2982
2983 * buffer.c (clone_per_buffer_values): Skip `name'.
2984
2985 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
2986
2987 * font.c (font_parse_fcname): Fix last change; accept decimal
2988 points in font size.
2989
2990 2008-06-10 Jason Rumney <jasonr@gnu.org>
2991
2992 * w32uniscribe.c (add_opentype_font_name_to_list):
2993 Skip non unicode fonts.
2994
2995 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
2996
2997 * xfns.c (Fx_font_dialog): New function.
2998
2999 * gtkutil.c (xg_dialog_response_cb): Rename from
3000 xg_file_response_callback.
3001 (pop_down_dialog): Rename from pop_down_file_dialog.
3002 (xg_get_file_name): Callers changed.
3003 (xg_get_font_name): New function.
3004
3005 * gtkutil.h (xg_get_font_name): Insert prototype.
3006
3007 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
3008
3009 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
3010 x_underline_minimum_display_offset.
3011 (syms_of_xdisp): Declare it here rather than in xterm.c.
3012 * dispextern.h (underline_minimum_offset): Declare it.
3013 * w32term.c (x_draw_glyph_string): Use it.
3014 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
3015 (syms_of_xterm): Don't declare it any more.
3016 (x_draw_glyph_string): Adjust to the new name.
3017
3018 2008-06-10 David De La Harpe Golden <david@harpegolden.net> (tiny change)
3019
3020 * xterm.c (x_underline_minimum_display_offset): New var.
3021 (x_draw_glyph_string): Use it.
3022 (syms_of_xterm): Declare it.
3023
3024 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
3025
3026 * font.c (font_parse_fcname): Accept GTK-style font names too.
3027
3028 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
3029
3030 * dired.c (file_name_completion): Don't return t if the match is exact
3031 but with different capitalization.
3032 * minibuf.c (Ftry_completion): Simplify.
3033
3034 * window.c (Vwindow_point_insertion_type): New var.
3035 (set_window_buffer): Use it.
3036 (syms_of_window): Init and export it to Lisp.
3037
3038 2008-06-10 Kenichi Handa <handa@m17n.org>
3039
3040 * font.h (font_intern_prop): Prototype adjusted.
3041
3042 * font.c (font_intern_prop): New arg force_symbol.
3043 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
3044 Adjust for the change of font_intern_prop.
3045
3046 * ftfont.c (ftfont_pattern_entity):
3047 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
3048 (w32_registry):
3049 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
3050 the change of font_intern_prop.
3051
3052 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
3053
3054 * w32menu.c (digest_single_submenu): Declare extern.
3055
3056 2008-06-09 Jason Rumney <jasonr@gnu.org>
3057
3058 * w32term.c (x_make_frame_visible): Use alternate restore flags.
3059
3060 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
3061 (parse_single_submenu): Remove.
3062 (digest_single_submenu): Remove.
3063 (syms_of_w32menu): Don't initialise variables that have moved
3064 to menu.c.
3065 (set_frame_menubar): Sync with version in xmenu.c.
3066 (w32_menu_show): Sync with xmenu_show in xmenu.c.
3067
3068 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
3069 Make static again.
3070
3071 2008-06-09 Jason Rumney <jasonr@gnu.org>
3072
3073 Changes to w32 files related to the move of common menu code
3074 to menu.c on 2008-06-08 by Chong Yidong.
3075
3076 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
3077 defs to w32gui.h.
3078 (single_keymap_panes, push_menu_item, push_menu_pane):
3079 Make globally visible.
3080
3081 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
3082 (local_free, malloc_widget_value, free_widget_value)
3083 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
3084 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
3085 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
3086 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
3087 (menu_items, menu_items_allocated, menu_items_used)
3088 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
3089 (init_menu_items, finish_menu_items, discard_menu_items)
3090 (grow_menu_items, push_submenu_start, push_submenu_end)
3091 (push_left_right_boundary, push_menu_pane, push_menu_item)
3092 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
3093 (free_menubar_widget_tree_value, parse_single_submenu)
3094 (update_submenu_strings): Remove functions.
3095 (xmalloc_widget_value): Remove and declare extern.
3096
3097 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
3098 (OBJ1): Build it.
3099
3100 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
3101 (local_heap, local_alloc, local_free, malloc_widget_value)
3102 (free_widget_value): Define here.
3103
3104 2008-06-09 Kenichi Handa <handa@m17n.org>
3105
3106 * font.h (Qascii_0): Extern it.
3107
3108 * font.c (Qascii_0): New variable.
3109 (syms_of_font): DEFSYM it.
3110 (font_open_by_name): If the registry "iso8859-1" fails, try also
3111 "ascii-0".
3112
3113 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
3114
3115 2008-06-08 Kenichi Handa <handa@m17n.org>
3116
3117 * .gdbinit (xfont): New command.
3118
3119 2008-06-08 Andreas Schwab <schwab@suse.de>
3120
3121 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
3122 * Makefile.in (menu.o): Update dependencies.
3123
3124 * Makefile.in (obj): Always add menu.o.
3125 * emacs.c (main): Always call syms_of_menu.
3126 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
3127
3128 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
3129
3130 * Makefile.in: Compile menu.c.
3131
3132 * lisp.h: Declare syms_of_menu.
3133
3134 * emacs.c (main): Call syms_of_menu.
3135
3136 * keyboard.h: Relocate platform-independent menu definitions from
3137 xmenu.c.
3138
3139 * menu.c: New file. Relocate platform-independent menu
3140 definitions from xmenu.c. Suggested by Adrian Robert.
3141
3142 * xmenu.c: Remove platform-independent menu definitions.
3143 (menu_items menu_items_inuse, menu_items_allocated)
3144 (menu_items_used, menu_items_n_panes)
3145 (menu_items_submenu_depth): Move to keyboard.h.
3146 (init_menu_items, finish_menu_items, unuse_menu_items)
3147 (discard_menu_items, restore_menu_items, save_menu_items)
3148 (grow_menu_items, push_submenu_start, push_submenu_end)
3149 (push_left_right_boundary, push_menu_pane, push_menu_item)
3150 (keymap_panes, single_keymap_panes, single_menu_item)
3151 (list_of_panes, list_of_items, find_and_call_menu_selection)
3152 (xmalloc_widget_value, free_menubar_widget_value_tree)
3153 (parse_single_submenu, digest_single_submenu)
3154 (update_submenu_strings): Move to menu.c.
3155
3156 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3157
3158 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
3159
3160 2008-06-06 Miles Bader <miles@gnu.org>
3161
3162 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
3163 face, not frame default.
3164
3165 2008-06-05 Martin Rudalics <rudalics@gmx.at>
3166
3167 * window.c (pop_up_windows, pop_up_frames)
3168 (display_buffer_reuse_frames, Vpop_up_frame_function)
3169 (Vdisplay_buffer_function, Veven_window_heights)
3170 (Vspecial_display_buffer_names, Vspecial_display_regexps)
3171 (Vspecial_display_function, Vsame_window_buffer_names)
3172 (Vsame_window_regexps, split_height_threshold)
3173 (Vsplit_window_preferred_function): Move those vars to window.el.
3174 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
3175 (Fdisplay_buffer): Move those functions to window.el.
3176 (syms_of_window): Remove corresponding declarations.
3177 (display_buffer): New function.
3178 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
3179 * dispnew.c (Flast_nonminibuf_frame): New function.
3180 * buffer.c (Fpop_to_buffer): Move to window.el.
3181
3182 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
3183
3184 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
3185
3186 2008-06-05 Kenichi Handa <handa@m17n.org>
3187
3188 * coding.c (detect_coding): Fix previous change.
3189 (detect_coding_system): Likewise.
3190
3191 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
3192
3193 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
3194
3195 * keymap.c (Vminibuffer_local_filename_must_match_map):
3196 Rename from Vminibuffer_local_must_match_filename_map.
3197 (syms_of_keymap):
3198 * minibuf.c (Fcompleting_read): Adjust accordingly.
3199 * commands.h: Rename declaration as well.
3200
3201 2008-06-05 Kenichi Handa <handa@m17n.org>
3202
3203 * font.c (Ffont_spec): Don't use font_parse_family_registry for
3204 family name.
3205 (Ffont_put): Likewise.
3206
3207 * fontset.c (fontset_find_font): Call font_open_for_lface with the
3208 current font-spec.
3209
3210 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
3211 is unspecified.
3212
3213 * xfaces.c (realize_x_face): If the font-related face attributes
3214 are the same as those of default face, realize a new fontset from
3215 default->fontset.
3216 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
3217
3218 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
3219
3220 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
3221 (move_it_in_display_line): New wrapper.
3222
3223 * window.c (window_scroll_pixel_based_preserve_x)
3224 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
3225 (window_scroll_pixel_based, window_scroll_line_based):
3226 Use them to preserve column positions.
3227 (syms_of_window): Initialize them.
3228
3229 * indent.c (Fvertical_motion): Extend first arg to allow passing an
3230 (HPOS . VPOS) pair.
3231
3232 * dispextern.h (move_it_in_display_line): Declare.
3233
3234 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
3235
3236 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
3237 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
3238 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
3239
3240 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
3241
3242 * window.c (Fset_window_parameter): Doc fix.
3243 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
3244
3245 2008-06-04 Joakim Verona <joakim@verona.se>
3246
3247 * window.h (struct window): Add new member window_parameters.
3248
3249 * window.c (Fwindow_parameters, Fwindow_parameter)
3250 (Fset_window_parameter): New defuns.
3251 (syms_of_window): Defsubr the new defuns.
3252 (make_window): Initialize window_parameters to nil.
3253
3254 2008-06-04 John Paul Wallington <jpw@pobox.com>
3255
3256 * eval.c (Fdefmacro): Doc fix.
3257
3258 2008-06-04 Kenichi Handa <handa@m17n.org>
3259
3260 * coding.c (detect_coding): Fix handling of coding->head_ascii.
3261 Be sure to call setup_coding_system when we find a proper coding system.
3262 (detect_coding_system): Fix handling of coding->head_ascii.
3263
3264 2008-06-03 Andreas Schwab <schwab@suse.de>
3265
3266 * font.c (font_prop_validate_spacing): Fix last change.
3267
3268 2008-06-03 Kenichi Handa <handa@m17n.org>
3269
3270 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
3271 (font_parse_fcname): Fix handling of unknown key.
3272
3273 * xfont.c (xfont_list): Try an alias.
3274
3275 * charset.c (char_charset): Return NULL if the arg charset_list is
3276 specified and C doesn't belong to any of them.
3277
3278 2008-06-02 Chip Coldwell <coldwell@redhat.com>
3279
3280 * font.c (font_pixel_size): Don't take cdr of an integer.
3281
3282 2008-06-02 Jim Meyering <meyering@redhat.com>
3283
3284 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
3285 * alloc.c (xfree): Return right away for a NULL arg.
3286 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
3287 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
3288 * mac.c (create_apple_event_from_event_ref): Likewise.
3289 (create_apple_event_from_drag_ref, cfstring_create_normalized):
3290 Likewise.
3291 * doprnt.c (doprnt1): Likewise.
3292 * frame.c (frame): Likewise.
3293 * keyboard.c (wipe_kboard): Likewise.
3294 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
3295 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
3296 * term.c (tty_default_color_capabilities, maybe_fatal)
3297 (delete_tty): Likewise.
3298 * w16select.c (string): Likewise.
3299 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
3300 * w32bdf.c (w32_free_bdf_font): Likewise.
3301 * w32fns.c (w32_unload_font): Likewise.
3302 * w32font.c (w32font_close): Likewise.
3303 * window.c (size_window): Likewise.
3304 * xselect.c (receive_incremental_selection): Likewise.
3305 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
3306 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
3307 * w32.c (stat): Likewise.
3308
3309 Remove useless if-before-free tests.
3310 * editfns.c (Fset_time_zone_rule): Likewise.
3311 * lread.c (nosuffix): Likewise.
3312 * ralloc.c (get_bloc): Likewise.
3313 * regex.c (reg_free): Likewise.
3314 * xftfont.c (xftfont_open, xftfont_close): Likewise.
3315 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
3316 * xsmfns.c (smc_save_yourself_CB): Likewise.
3317
3318 2008-06-02 Kenichi Handa <handa@m17n.org>
3319
3320 * font.c (font_find_for_lface): Handle float font size.
3321 (font_open_for_lface): Likewise.
3322
3323 * xfaces.c (x_supports_face_attributes_p): Check face->font before
3324 comparing the properties.
3325
3326 2008-06-01 Jason Rumney <jasonr@gnu.org>
3327
3328 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
3329 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
3330 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
3331 Don't add empty script list.
3332 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
3333
3334 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
3335
3336 * Makefile.in (dot, dotdot): Remove, update users.
3337 ".." has been used elsewhere in the file for a long time.
3338 (LIBXT_STATIC): Remove conditional based on unused variable.
3339
3340 2008-06-01 Miles Bader <miles@gnu.org>
3341
3342 * xfaces.c (Vface_remapping_alist): New variable.
3343 (syms_of_xfaces): Initialize it.
3344 (enum named_merge_point_kind): New type.
3345 (struct named_merge_point): Add `named_merge_point_kind' field.
3346 (push_named_merge_point): Make cycle detection respect different
3347 named-merge-point kinds.
3348 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
3349 Remove face-name alias resolution.
3350 (lface_from_face_name): New definition using
3351 `lface_from_face_name_no_resolve'.
3352 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
3353 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
3354 (get_lface_attributes): New definition that layers face-remapping on
3355 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
3356 (lookup_basic_face): New function.
3357 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
3358 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
3359 `get_lface_attributes'.
3360 (face_at_buffer_position): Use `lookup_basic_face' to lookup
3361 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
3362 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
3363
3364 * xdisp.c (init_iterator): Pass base_face_id through
3365 `lookup_basic_face' when we actually use it as a face-id.
3366 (handle_single_display_prop): Use `lookup_basic_face' to lookup
3367 DEFAULT_FACE_ID.
3368
3369 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
3370 lookup the initial face-id.
3371
3372 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
3373
3374 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
3375
3376 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
3377 (Fremove_text_properties): Fix typos in docstrings.
3378
3379 2008-05-31 Kenichi Handa <handa@m17n.org>
3380
3381 * font.c (font_list_entities): Fix the car part of data to be
3382 stored in the cache.
3383
3384 * ftfont.c (ftfont_font_format): Don't use strcasestr.
3385
3386 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3387
3388 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
3389 Add a `test' argument so another predicate than `equal' can be used.
3390 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
3391 (map_char_table): Remove unused vars `c' and `i'.
3392 * lisp.h (Foptimize_char_table): Adjust declaration.
3393 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
3394
3395 2008-05-30 Kenichi Handa <handa@m17n.org>
3396
3397 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
3398 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
3399 defined.
3400
3401 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3402
3403 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
3404 (Fmake_variable_frame_local): Disallow mixing buffer-local and
3405 frame-local settings for the same variable.
3406
3407 2008-05-30 Kenichi Handa <handa@m17n.org>
3408
3409 * fontset.c (Ffont_info): Move to font.c.
3410 (syms_of_fontset): Delete defsubr of Sfont_info.
3411
3412 * font.c (font_style_to_value, font_score): Delete casting of the
3413 args to xstcasecmp.
3414 (register_font_driver): Increment num_font_drivers only when
3415 registering the driver globally.
3416 (Ffont_info): Move from fontset.c. Handle a font object too.
3417 (syms_of_font): Defsubr Sfont_info.
3418
3419 2008-05-29 Kenichi Handa <handa@m17n.org>
3420
3421 * coding.h (enum define_coding_utf8_arg_index): New enum.
3422 (enum coding_attr_index): Change coding_attr_utf_16_bom to
3423 coding_attr_utf_bom.
3424 (enum utf_bom_type): Rename from utf_16_bom_type.
3425 (struct utf_16_spec): Adjust for the above change.
3426 (struct coding_system): Add utf_8_bom in `spec' union.
3427
3428 * coding.c (CODING_UTF_8_BOM): New macro.
3429 (enum coding_category): Delete coding_category_utf_8, add
3430 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
3431 coding_category_utf_8_sig.
3432 (CATEGORY_MASK_UTF_8): Delete it.
3433 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
3434 (CATEGORY_MASK_UTF_8_SIG): New macros.
3435 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
3436 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
3437 CATEGORY_MASK_UTF_8_SIG.
3438 (CATEGORY_MASK_UTF_8): New macro.
3439 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
3440 (detect_coding_utf_8): Check BOM.
3441 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
3442 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
3443 (encode_coding_utf_16): Likewise.
3444 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
3445 (detect_coding, detect_coding_system): Handle utf-8-auto.
3446 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
3447 (syms_of_coding): Fix setting up of Vcoding_category_table.
3448
3449 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
3450
3451 * process.c (Faccept_process_output): If `millisec' is non-nil,
3452 `seconds' default to 0.
3453 (wait_reading_process_output): Also return non-nil if we read output
3454 from a non-running process.
3455
3456 2008-05-29 Jason Rumney <jasonr@gnu.org>
3457
3458 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
3459 `raster' specified.
3460 (add_font_entity_to_list): Allow non-opentype truetype fonts back
3461 in the uniscribe backend, but disallow any font that has no
3462 unicode subrange support.
3463
3464 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
3465
3466 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
3467 Fix typos in docstrings.
3468
3469 2008-05-29 Kenichi Handa <handa@m17n.org>
3470
3471 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
3472 (Fx_family_fonts): Set frame correctly.
3473
3474 2008-05-28 Jason Rumney <jasonr@gnu.org>
3475
3476 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
3477
3478 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3479
3480 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
3481 calling build_annotations.
3482
3483 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
3484
3485 * coding.c (Fdecode_coding_region, Fencode_coding_region)
3486 (Fencode_coding_string):
3487 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
3488 <latin-extra-code-table>: Fix typos in docstrings.
3489 (syms_of_coding) <coding-system-alist>: Doc fix.
3490 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
3491
3492 2008-05-28 Kenichi Handa <handa@m17n.org>
3493
3494 * fontset.c (Ffont_info): Don't call font_close_object.
3495
3496 * font.c (font_parse_family_registry): Use Ffont_put to validate
3497 foundry and family.
3498 (font_delete_unmatched): Don't check spacing.
3499 (font_list_entities): Add spacing to the spec to list fonts.
3500
3501 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
3502 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
3503
3504 * coding.c (encode_coding_raw_text): Fix previous change.
3505 (encode_coding_object): When the dst_object is a buffer and is
3506 different from src_object, move gap to PT.
3507
3508 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
3509
3510 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
3511
3512 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
3513
3514 * coding.c (encode_coding_raw_text): Set coding->produced_char for
3515 all branches. Compute it differently.
3516
3517 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
3518
3519 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
3520
3521 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
3522 into "else if () ... else ...".
3523
3524 2008-05-27 Jason Rumney <jasonr@gnu.org>
3525
3526 * w32font.c (w32font_open_internal): Determine if glyph indices
3527 are likely to work here.
3528
3529 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
3530
3531 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
3532 draw overlap glyphs with appropriate highlighting.
3533
3534 2008-05-27 Kenichi Handa <handa@m17n.org>
3535
3536 * xfont.c (xfont_open): Fix calculation of font->average_width.
3537
3538 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
3539
3540 * casefiddle.c (casify_object): Try to guess better whether the
3541 argument is a byte or a char.
3542
3543 2008-05-26 Andreas Schwab <schwab@suse.de>
3544
3545 * xselect.c (x_reply_selection_request): Properly handle format == 32.
3546 Always send multiples of format size.
3547
3548 * xterm.c (x_set_frame_alpha): Fix type mismatch.
3549
3550 2008-05-26 Jason Rumney <jasonr@gnu.org>
3551
3552 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
3553 (compute_metrics): Don't set failure if we just cleared the cache.
3554 (w32_weight_table): Remove unused variable.
3555 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
3556 backwards compatibility.
3557
3558 2008-05-25 Kenichi Handa <handa@m17n.org>
3559
3560 * w32term.c (x_draw_glyph_string):
3561 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
3562
3563 * xfaces.c: Delete unused function prototypes.
3564 (xstrlwr, font_frame): Delete them.
3565 (clear_face_cache): Delete unused variable.
3566
3567 * xftfont.c (xftfont_open): Delete unused variable.
3568 If underline_thickness is not 1, adjust underline_position.
3569
3570 * ftxfont.c (ftxfont_open): Delete unused variable.
3571
3572 * fontset.c (face_for_char): Optimize for the case of no charset
3573 property.
3574
3575 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
3576 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
3577 (otf_open, font_otf_capability, generate_otf_features)
3578 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
3579 Comment out by surrounding "#if 0" and "#endif" for the moment.
3580 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
3581 (syms_of_font): Codes for accessing above commented out.
3582
3583 2008-05-24 Eli Zaretskii <eliz@gnu.org>
3584
3585 * w32proc.c: Include dispextern.h.
3586
3587 * w32.c: Include dispextern.h.
3588
3589 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
3590
3591 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
3592 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
3593 Fix typos in docstrings.
3594
3595 2008-05-23 Jason Rumney <jasonr@gnu.org>
3596
3597 * xsmfns.c: Remove includes that are already included by config.h.
3598
3599 2008-05-23 Kenichi Handa <handa@m17n.org>
3600
3601 * charset.c (Qemacs, charset_emacs): New variables.
3602 (char_charset): Fix for non-Unicode characters.
3603 (syms_of_charset): Define charset_emacs.
3604
3605 * w32term.c (x_draw_glyph_string): Be sure to update
3606 s->underline_thickness and s->underline_position. Be sure to draw
3607 underline within the current line area.
3608
3609 * xterm.c (x_draw_glyph_string): Be sure to update
3610 s->underline_thickness and s->underline_position. Be sure to draw
3611 underline within the current line area.
3612
3613 * fontset.c: Delete unused variables and add casting for char *
3614 throughout the file.
3615 (fontset_font): Try the fallback fonts of the current fontset
3616 before consulting the default fontset.
3617
3618 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
3619
3620 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
3621
3622 2008-05-22 Jason Rumney <jasonr@gnu.org>
3623
3624 * font.c: Don't include strings.h.
3625
3626 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
3627
3628 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
3629 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
3630 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
3631 to call xstrcasecmp.
3632
3633 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
3634
3635 * fontset.c (fs_query_fontset): Use xstrcasecmp.
3636
3637 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
3638
3639 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
3640
3641 2008-05-22 Kenichi Handa <handa@m17n.org>
3642
3643 * puresize.h (BASE_PURESIZE): Increase to 1220000.
3644
3645 * font.c (font_prop_validate_style): Adjust for the format
3646 change of font_style_table.
3647
3648 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
3649 two args.
3650
3651 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
3652 two args.
3653
3654 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
3655
3656 * minibuf.c (keys_of_minibuf): Delete.
3657 * lisp.h (keys_of_minibuf): Delete.
3658 * emacs.c (main): Don't call keys_of_minibuf.
3659
3660 2008-05-22 Kenichi Handa <handa@m17n.org>
3661
3662 * ftfont.c (ftfont_resolve_generic_family): Rename from
3663 ftfont_list_generic_family. Return a single family for each
3664 generic family.
3665 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
3666 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
3667 Call font_add_log.
3668 (ftfont_match): Call font_add_log.
3669
3670 * font.h (Ffont_xlfd_name): EXFUN adjusted.
3671 (FONT_DEBUG): Define it.
3672 (font_add_log): Extern it.
3673 (font_assert): Rename from xassert.
3674
3675 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
3676 (xfont_list_family): Call font_add_log.
3677 (xfont_match): Likewise.
3678 (memq_no_quit): Delete.
3679
3680 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
3681 call of Ffont_xlfd_name.
3682
3683 * xfaces.c (struct table_entry, slant_table, weight_table)
3684 (swidth_table): Move to font.c.
3685
3686 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
3687 xassert are changed to font_assert. Delete many unused variables.
3688 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
3689 New variables.
3690 (struct table_entry): Move from xfaces.c and modified.
3691 (weight_table, slant_table, width_table): Move from xfaces.c and
3692 contents adjusted for the change of struct table_entry.
3693 (font_style_to_value, font_style_symbolic): Adjust for the
3694 format change of font_style_table.
3695 (font_parse_family_registry): Don't overwrite existing foundry and
3696 family of font_spec.
3697 (font_score): Fix calculation of diff for sizes.
3698 (font_sort_entites): Call font_add_log.
3699 (font_delete_unmatched): Return a newly created list.
3700 (font_list_entities): Fix previous change. Call font_add_log.
3701 (font_matching_entity, font_open_entity, font_close_entity):
3702 Call font_add_log.
3703 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
3704 (Finternal_set_font_style_table): Delete.
3705 (BUILD_STYLE_TABLE): New macro.
3706 (build_style_table): New function.
3707 (Vfont_log, font_log_env_checked): New variables.
3708 (font_add_log): New function.
3709 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
3710 Declare Lisp variables "font-weight-table", "font-slant-table",
3711 "font-width-table", and "font-log". Initialize font_style_table.
3712
3713 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
3714
3715 * xterm.c (x_set_frame_alpha): Move declarations before statements.
3716
3717 2008-05-21 Seiji Zenitani <zenitani@mac.com>
3718 Ryo Yoshitake <ryo@shiftmode.net>
3719
3720 * frame.c (Qalpha): Add a new frame parameter `alpha'.
3721 (Vframe_alpha_lower_limit): New variable.
3722 (x_set_alpha): New function.
3723
3724 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
3725
3726 * xfns.c (x-create-frame, Qalpha):
3727 Initialize the frame parameter `alpha'.
3728 * xterm.c (OPAQUE, OPACITY): New.
3729 (x_set_frame_alpha): New function.
3730 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
3731
3732 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
3733 * w32fns.c (w32_frame_parm_handlers): Likewise.
3734
3735 2008-05-20 Jason Rumney <jasonr@gnu.org>
3736
3737 * w32font.c (add_font_entity_to_list): Don't add non-opentype
3738 truetype fonts to opentype list.
3739
3740 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
3741
3742 * fontset.c (Ffontset_info): Doc fix.
3743 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
3744 <ignore-relative-composition>: Fix typos in docstrings.
3745
3746 * font.c (syms-of-font) <font-encoding-alist>:
3747 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
3748 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
3749 (Ffont_otf_alternates): Doc fixes.
3750
3751 2008-05-20 Kenichi Handa <handa@m17n.org>
3752
3753 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
3754 font.h through out the file.
3755 (FONT_DRIVERS): Rename from FONTOBJ.
3756 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
3757 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
3758
3759 * emacs.c (main): Call syms_of_font unconditionally.
3760
3761 * font.h (find_font_encoding): Extern it.
3762
3763 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
3764 fontset.c.
3765 (font_pixel_size)[! HAVE_WINDOW_SYSTEM]: Return 1.
3766 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
3767 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
3768 only when HAVE_WINDOW_SYSTEM is defined.
3769 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
3770 when HAVE_WINDOW_SYSTEM is defined.
3771
3772 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
3773 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
3774
3775 * xfaces.c: Include font.h unconditionally.
3776 (merge_face_ref, merge_face_vectors)
3777 (Finternal_set_lisp_face_attribute): Cancel the previous change.
3778
3779 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
3780
3781 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
3782 indirect_variable.
3783 * eval.c (lisp_indirect_variable): New fun.
3784 (Fuser_variable_p): Use it.
3785
3786 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
3787
3788 * lisp.h (indirect_variable):
3789 * data.c (indirect_variable, let_shadows_buffer_binding_p):
3790 Use Lisp_Symbol pointers rather than Lisp_Object.
3791 Adjust callers.
3792 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
3793 To this end, change calling-convention.
3794
3795 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
3796 if some non-hidden buffers are selected by string&pred.
3797
3798 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
3799
3800 * process.c (wait_reading_process_output): Always check status
3801 when in batch mode.
3802
3803 2008-05-19 Kenichi Handa <handa@m17n.org>
3804
3805 * font.c (font_list_entities): Fix handling of cache.
3806 (font_matching_entity): Likewise.
3807
3808 * ftfont.c (cs_iso8859_1): Delete.
3809 (ft_face_cache): New variable.
3810 (struct ftfont_info): New member fc_charset_idx.
3811 (ftfont_build_basic_charsets): Delete.
3812 (fc_charset_table): New variable.
3813 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
3814 . FC_CHARSET_IDX) as :font-entity property in the font entity.
3815 Callers changed.
3816 (ftfont_lookup_cache, ftfont_get_charset): New functions.
3817 (ftfont_spec_pattern): New argument fc_charset_idx.
3818 Check registry more rigidly. Change callers.
3819 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
3820 change of :font-entity property of the font.
3821
3822 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
3823 property of the font.
3824
3825 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
3826
3827 * coding.c (Fcoding_system_p): Rename argument to match docstring.
3828 (Funencodable_char_position, Fcheck_coding_systems_region)
3829 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
3830 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
3831 (Ffind_operation_coding_system, Fset_coding_system_priority)
3832 (Fcoding_system_eol_type): Doc fixes.
3833
3834 2008-05-17 Glenn Morris <rgm@gnu.org>
3835
3836 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
3837
3838 2008-05-16 Eli Zaretskii <eliz@gnu.org>
3839
3840 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
3841 and st_gid.
3842
3843 * frame.c (Fdelete_frame): Don't call font_update_drivers if
3844 HAVE_WINDOW_SYSTEM is not defined.
3845
3846 * xfaces.c (merge_face_ref, merge_face_vectors)
3847 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
3848 HAVE_WINDOW_SYSTEM is defined.
3849 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
3850
3851 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
3852
3853 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
3854
3855 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3856
3857 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
3858
3859 2008-05-15 Kenichi Handa <handa@m17n.org>
3860
3861 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
3862 preference.
3863
3864 2008-05-15 Glenn Morris <rgm@gnu.org>
3865
3866 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
3867
3868 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
3869
3870 * fns.c (init_fns): Don't initialize weak_hash_tables here.
3871 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
3872
3873 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
3874
3875 2008-05-15 Kenichi Handa <handa@m17n.org>
3876
3877 * ftfont.c (ftfont_list): Downcase family name to check generic
3878 families.
3879
3880 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
3881 font-spec for QCfont value.
3882
3883 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
3884 buffer. Check the return value of it.
3885
3886 2008-05-14 Jason Rumney <jasonr@gnu.org>
3887
3888 * w32term.c (w32_get_glyph_overhangs): Remove.
3889 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
3890
3891 2008-05-14 Kenichi Handa <handa@m17n.org>
3892
3893 * font.c (font_prop_validate): Make nil a valid value.
3894 (font_clear_cache): Check if the cached vector of entities is nil
3895 or not.
3896
3897 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3898
3899 * emacs.c (main_thread): Conditionalize on
3900 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
3901 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
3902
3903 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
3904 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
3905 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
3906
3907 2008-05-14 Kenichi Handa <handa@m17n.org>
3908
3909 * coding.c (detect_coding_iso_2022): Ignore a coding category that
3910 has no corresponding coding system.
3911
3912 2008-05-14 Jason Rumney <jasonr@gnu.org>
3913
3914 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
3915
3916 * w32font.h (w32font_open_internal): Update declaration.
3917
3918 * w32font.c (w32font_open_internal): Change last argument from
3919 w32font_info struct to font object. Fill in font object from
3920 font_entity. Get Outline metrics if possible. Use them to
3921 calculate underline position and thickness. Use xlfd name as name
3922 property. Don't set codepage.
3923 (w32font_open): Pass font_object to w32font_open_internal. Don't
3924 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
3925 (w32font_draw): Use s->font.
3926 (clear_cached_metrics): Don't clear non-existent blocks.
3927
3928 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
3929 font was not found.
3930 (x_draw_glyph_string): Use underline position and thickness from font.
3931
3932 * w32uniscribe.c (uniscribe_open): Pass font_object to
3933 w32font_open_internal.
3934
3935 2008-05-14 Kenichi Handa <handa@m17n.org>
3936
3937 These changes are to delete all legacy font-handling codes, and
3938 make Emacs use only font-backends.
3939
3940 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
3941 (frame.o, image.o, print.o): Depend on $(FONTSRC).
3942
3943 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
3944
3945 * charset.h (Vcharset_non_preferred_head)
3946 (Vcurrent_iso639_language): Extern them.
3947
3948 * charset.c (Vcharset_non_preferred_head): New variable.
3949 (Vcurrent_iso639_language): New variable.
3950 (syms_of_charset): Declare it as a Lisp variable.
3951 (char_charset): Don't check non preferred charsets. As a last
3952 resort, return charset_unicode.
3953 (Fset_charset_priority): Update Vcharset_non_preferred_head.
3954
3955 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
3956 conditionals. Don't check enable_font_backend. Delete all codes
3957 used only when USE_FONT_BACKEND is not defined.
3958
3959 * dispextern.h (struct glyph_string): Change type of `font' to
3960 `struct font *'.
3961 (struct glyph_string): New member underline_position and
3962 underline_thickness.
3963 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
3964 (struct face): Change type of `font' to `struct font *'. Remove
3965 members `font_name', `font_info_id'.
3966 (per_char_metric, encode_char): Delete externs.
3967 (calc_pixel_width_or_height): Adjust the prototype.
3968
3969 * emacs.c (enable_font_backend): Delete extern.
3970 (main): Don't set enable_font_backend. Don't check the command
3971 line argument "-disable-font-backend".
3972
3973 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
3974 (enum font_property_index): New members FONT_DPI_INDEX,
3975 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
3976 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
3977 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
3978 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
3979 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
3980 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
3981 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
3982 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
3983 (struct font_spec, struct font_entity): New structs.
3984 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
3985 (struct font): Many members from old "struct font_info" moved to
3986 here. Members font and entity deleted.
3987 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
3988 the new font-related objects.
3989 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
3990 (CHECK_FONT_GET_OBJECT): Likewise.
3991 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
3992 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
3993 (struct font_driver): New members case_sensitive anc check. Type
3994 of the member list and open changed.
3995 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
3996 (font_symbolic_width, font_find_object, font_get_spec)
3997 (font_set_lface_from_name): Delete extern.
3998 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
3999
4000 * font.c: Include <strings.h>.
4001 (enable_font_backend): Delete it.
4002 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
4003 (CHECK_VALIDATE_FONT_SPEC): Delete it.
4004 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
4005 (null_string): Delete it.
4006 (null_vector): Make it static.
4007 (font_family_alist): Delete it.
4008 (Qnormal): Extern it.
4009 (QCextra, QClanguage): Delete it.
4010 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
4011 (font_make_spec, font_make_entity, font_make_object)
4012 (font_intern_prop): Renamed from intern_downcase. Don't downcase
4013 the string. Callers changed.
4014 (font_pixel_size): Adjusted for the format change of font-related
4015 objects.
4016 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
4017 (font_style_to_value, font_style_symbolic): New function.
4018 (build_font_family_alist): Delete it.
4019 (font_registry_charsets): Use Fassoc_string instead of
4020 assq_no_quit.
4021 (font_prop_validate_symbol): Don't return null_string.
4022 (font_prop_validate_style): Adjusted for the change of
4023 style-related values in a font vector.
4024 (font_property_table): Delete entries for QClanguage and
4025 QCantialias, add entries for QCavgwidth.
4026 (get_font_prop_index): Delete the 2nd argument FROM.
4027 (font_prop_validate): Arguments changed.
4028 (font_put_extra): Adjusted for the change of font-related objects.
4029 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
4030 (font_parse_fcname, font_unparse_fcname)
4031 (font_prepare_composition): Likewise.
4032 (font_parse_family_registry): Renamed from font_merge_old_spec.
4033 (otf_open): Delete the 1st arg entity.
4034 (font_otf_capability): Adjusted for the above change.
4035 (font_score): New arg alternate_families. Adjusted for the change
4036 of font-related objects.
4037 (font_sort_entites): New arg best_only.
4038 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
4039 Delete them.
4040 (font_match_p): Check alternate families.
4041 (font_find_object): Delete it.
4042 (font_check_object): New function.
4043 (font_clear_cache): Adjusted for the change of font-related objects.
4044 (font_delete_unmatched): New arg.
4045 (font_list_entities): Call font_driver->list with a spec that
4046 doesn't specify style-related properties.
4047 (font_matching_entity): Arguments changed. Caller changed.
4048 (font_open_entity): Adjusted for the change of font-related objects.
4049 (font_close_object, font_has_char, font_encode_char)
4050 (font_get_name, font_get_spec): Likewise.
4051 (font_spec_from_name, font_clear_prop, font_update_lface):
4052 New functions.
4053 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
4054 (font_prepare_for_face, font_done_for_face, font_open_by_name)
4055 (font_at): Adjusted for the change of font-related objects.
4056 (font_range): New function.
4057 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
4058 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
4059 (Fcopy_font_spec, Fmerge_font_spec): New function.
4060 (Ffont_family_list): Renamed from list-families.
4061 (Finternal_set_font_style_table): Arguments changed.
4062 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
4063 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
4064 change of font-related objects.
4065 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
4066
4067 * fontset.h (struct font_info): Delete it. Most members go to
4068 struct font.
4069 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
4070 (enum FONT_SPEC_INDEX): Delete it.
4071 (font_info, list_fonts_func, load_font_func, query_font_func)
4072 (set_frame_fontset_func, find_ccl_program_func)
4073 (get_font_repertory_func, new_fontset_from_font_name): Delete
4074 externs.
4075 (fontset_from_font_name): Extern it.
4076 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
4077 (FONT_INFO_FROM_FACE): Deleted.
4078 (face_for_font): Adjust prototype.
4079
4080 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
4081 conditionals. Don't check enable_font_backend. Delete all codes
4082 used only when USE_FONT_BACKEND is not defined.
4083 (get_font_info_func, list_font_func, load_font_func)
4084 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
4085 (get_font_repertory_func): Delete them.
4086 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
4087 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
4088 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
4089 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
4090 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
4091 (fontset_compare_rfontdef): New function.
4092 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
4093 ront-defs by qsort. Adjusted for the change of font-group vector.
4094 (load_font_get_repertory): Deleted.
4095 (fontset_find_font): Use new macros to ref/set elements of
4096 font-def and rfont-def.
4097 (fontset_font): Fix the timing of remembering that no font for C.
4098 (free_face_fontset): Do nothing if the face has no fontset.
4099 (face_suitable_for_char_p): Use new macros to ref/set elements of
4100 rfont-def.
4101 (face_for_char): Likewise. Call face_for_char with font_object.
4102 (fs_load_font): Delete. Delete #pragma surrounding it.
4103 (fs_query_fontset): Use strcasecmp instead of strcmp.
4104 (generate_ascii_font_name): Adjusted for the format change of
4105 font-spec.
4106 (Fset_fontset_font): Likewise. Use new macros to set elements of
4107 font-def.
4108 (Fnew_fontset): Use font_unparse_xlfd to generate
4109 FONTSET_ASCII (fontset).
4110 (new_fontset_from_font_name): Deleted.
4111 (fontset_from_font): Renamed from new_fontset_from_font. Check if
4112 a fontset is already created for the font. FIx updating of
4113 Vfontset_alias_alist.
4114 (fontset_ascii_font): Deleted.
4115 (Ffont_info): Adjusted for the format change of font-spec.
4116 (Finternal_char_font): Likewise.
4117 (Ffontset_info): Likewise.
4118 (syms_of_fontset): Don't check load_font_func.
4119
4120 * fns.c (internal_equal): Handle PREV_FONT.
4121
4122 * frame.h: Delete USE_FONT_BACKEND conditional.
4123
4124 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
4125 conditionals. Don't check enable_font_backend. Delete all codes
4126 used only when USE_FONT_BACKEND is not defined.
4127 (x_set_font): Call x_new_font, not x_new_fontset2.
4128 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
4129 already set for the frame.
4130
4131 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
4132 a font-entity by font_make_entity. Use font_intern_prop instead
4133 of intern_downcase. Use FONT_SET_STYLE to set a style-related
4134 font property. If a font is scalable, set avgwidth property to 0.
4135 Set font-entity property by font_put_extra.
4136 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
4137 (ffont_driver): Adjusted for the change of struct font_driver.
4138 (ftfont_spec_pattern): New function.
4139 (ftfont_list): Return a list, not vector.
4140 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
4141 (ftfont_list_family): Don't downcase names.
4142 (ftfont_free_entity): Deleted.
4143 (ftfont_open): Return a font-ojbect. Adjusted for the change of
4144 struct font. Get underline_thickness and underline_position from
4145 font property. Don't update dpyinfo->smallest_font_height and
4146 dpyinfo->smallest_char_width.
4147 (ftfont_close): Don't free `struct font'.
4148 (ftfont_has_char): Adjusted for the format change of font-entity.
4149 (ftfont_encode_char, ftfont_text_extents): Likewise.
4150
4151 * ftxfont.c (ftxfont_list): Return a list, not vector.
4152 (ftxfont_open): Return a font-ojbect. Adjusted for the change of
4153 struct font. Get underline_thickness and underline_position from
4154 font property. Don't update dpyinfo->smallest_font_height and
4155 dpyinfo->smallest_char_width.
4156 (ftxfont_close): Don't decrese FRAME_X_DISPLAY_INFO (f)->n_fonts.
4157 (ftxfont_draw): Adjusted for the change of struct font.
4158
4159 * image.c (image_ascent): Don't include "charset.h". Include
4160 "character.h" and "font.h".
4161
4162 * lisp.h (enum pvec_type): New member PREV_FONT.
4163 (Fassoc_string): EXFUN it.
4164
4165 * print.c: Include font.h.
4166 (print_object): Handle font-related objects.
4167
4168 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
4169 conditionals. Don't check enable_font_backend. Delete all codes
4170 used only when USE_FONT_BACKEND is not defined.
4171 (handle_auto_composed_prop): Do nothing if it->f is not on a
4172 window system. Check how many following characters can be
4173 displayed by the same font.
4174 (calc_pixel_width_or_height): Type of the 4th arg is changed to
4175 'struct font *'.
4176 (get_char_face_and_encoding): Assign the whole encoding task to
4177 the `encode-char' method of a font driver.
4178 (fill_composite_glyph_string): Adjusted for the change of `struct
4179 face' and `struct glyph_string'.
4180 (fill_glyph_string): Likewise.
4181 (get_per_char_metric): Arguments changed.
4182 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
4183 and `struct glyph_string'.
4184 (produce_stretch_glyph, calc_line_height_property)
4185 (x_produce_glyphs): Likewise.
4186
4187 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
4188 conditionals. Don't check enable_font_backend. Delete all codes
4189 used only when USE_FONT_BACKEND is not defined. Use
4190 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
4191 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
4192 (Qp): Extern them.
4193 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
4194 Deleted.
4195 (struct font_name): Deleted.
4196 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
4197 (compare_fonts_by_sort_order): New function.
4198 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
4199 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
4200 Deleted.
4201 (Fx_family_fonts): Use font_list_entities, and sort fonts by
4202 compare_fonts_by_sort_order.
4203 (Fx_font_family_list): Call Ffont_family_list.
4204 (face_numeric_value, face_numeric_weight, face_numeric_slant)
4205 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
4206 (face_symbolic_slant, face_symbolic_swidth)
4207 (split_font_name_into_vector, build_font_name_from_vector)
4208 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
4209 (font_rescale_ratio, split_font_name, build_font_name)
4210 (free_font_names, sort_fonts, x_face_list_fonts)
4211 (face_font_available_p, sorted_font_list, cmp_font_names)
4212 (font_list_1, concat_font_list, font_list, remove_duplicates):
4213 Deleted.
4214 (Fx_list_fonts): Use Ffont_list.
4215 (LFACE_AVGWIDTH): Deleted.
4216 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
4217 by FONTP.
4218 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
4219 (set_lface_from_font_name): Delete it.
4220 (set_lface_from_font): Renamed from
4221 set_lface_from_font_and_fontset. Caller changed. Don't set
4222 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
4223 for face.
4224 (merge_face_vectors): Copy font-spec if necessary.
4225 Clear properties of the font-spec if necessary.
4226 (merge_face_ref): Clear properties of the font-spec if necessary.
4227 (Finternal_set_lisp_face_attribute): Likewise.
4228 (set_font_frame_param): Use font_load_for_lface to load a
4229 font-object, and call Fmodify_frame_parameters with it.
4230 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
4231 font name by Ffont_xlfd_name.
4232 (Finternal_lisp_face_attribute_values): Don't check QCweight,
4233 QCslant, and QCwidth.
4234 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
4235 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
4236 Compare fonts by EQ.
4237 (lookup_non_ascii_face): Deleted.
4238 (face_for_font): The 2nd argument changed.
4239 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
4240 Check atomic font properties by case insensitive.
4241 (realize_non_ascii_face): Set face->overstrike correctly.
4242 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
4243 (dump_realized_face): Get font name from
4244 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
4245
4246 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
4247 conditionals. Don't check enable_font_backend. Delete all codes
4248 used only when USE_FONT_BACKEND is not defined.
4249 (xic_create_xfontset): Original code deleted and renamed from
4250 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
4251 (x_make_gc): Don't set GCFont in GCs.
4252 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
4253 opened by "fixed".
4254 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
4255 find_ccl_program_func, query_font_func, set_frame_fontset_func,
4256 get_font_repertory_func.
4257
4258 * xfont.c: Include <stdlib.h> and "ccl.h".
4259 (struct xfont_info): New structure.
4260 (xfont_query_font): Deleted.
4261 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
4262 moved from xterm.c.
4263 (xfont_driver): Adjusted for the change of struct font_driver.
4264 (compare_font_names): New function.
4265 (xfont_list_pattern): Sort font names case insensitively. Make
4266 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
4267 (xfont_list): Return a list, not vector.
4268 (xfont_match): If the font doesn't have QCname property, generate
4269 a name from the other font properties.
4270 (xfont_open): Return a font-ojbect. Adjusted for the change of
4271 struct font. Get underline_thickness and underline_position from
4272 font property. Don't update dpyinfo->smallest_font_height and
4273 dpyinfo->smallest_char_width.
4274 (xfont_close): Don't free struct font.
4275 (xfont_prepare_face): Adjusted for the change of struct font.
4276 (xfont_done_face): Deleted.
4277 (xfont_has_char): Adjusted for the change of struct font.
4278 (xfont_encode_char, xfont_draw): Likewise.
4279 (xfont_check): New function.
4280
4281 * xftfont.c (xftfont_list): Adjusted for the change of `list'
4282 callback function.
4283 (xftfont_match): Adjusted for the fontmat change of font-entity.
4284 (xftfont_open): Adjusted for the format change of font-entity and
4285 font-object. Adjusted for the change of struct font. Return a
4286 font-object. Don't update dpyinfo->smallest_font_height and
4287 dpyinfo->smallest_char_width.
4288 (xftfont_close): Block input while calling XftFontClose.
4289 (xftfont_prepare_face): Don't block input while calling
4290 xftfont_get_colors. Adjusted for the change of struct font.
4291 (xftfont_shape): Return value of error case fixed.
4292
4293 * xrdb.c (x_load_resources): Don't setup a fontset resource.
4294
4295 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
4296 conditionals.
4297 (FONT_WIDTH): Return (f)->max_width.
4298 (struct x_display_info): Delete member `font'.
4299 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
4300 (x_find_ccl_program, x_get_font_repertory): Delete externs.
4301 (struct x_output): Change type of `font' to `struct font *'.
4302
4303 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
4304 conditionals. Don't check enable_font_backend. Delete all codes
4305 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
4306 (x_per_char_metric, x_encode_char): Deleted.
4307 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
4308 (x_compute_glyph_string_overhangs): Adjusted for the change of
4309 `struct face'.
4310 (x_draw_glyph_string_foreground)
4311 (x_draw_composite_glyph_string_foreground): Likewise.
4312 (x_draw_glyph_string): Likewise. Use font->underline_position and
4313 font->underline_thickness.
4314 (x_new_font): Renamed from x_new_fontset2.
4315 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
4316 (x_check_font): Call `check' method of a font driver.
4317 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
4318 (x_query_font, x_get_font_repertory): Deleted.
4319 (x_find_ccl_program): Renamed and moved to xfont.c.
4320 (x_redisplay_interface): Adjusted for the change of `struct
4321 redisplay_interface'.
4322
4323 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
4324 conditionals. Don't check enable_font_backend. Delete all codes
4325 used only when USE_FONT_BACKEND is not defined. Surround non-used
4326 code by "#ifdef OLD_FONT" and "endif".
4327 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
4328
4329 * w32font.h (struct w32font_info): New member.
4330 (FONT_COMPAT): New macro.
4331 (w32font_open_internal): Prototype adjusted.
4332
4333 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
4334 OLD_FONT" and "endif".
4335
4336 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
4337 conditionals. Don't check enable_font_backend. Delete all codes
4338 used only when USE_FONT_BACKEND is not defined.
4339 (w32font_open): Return a font-object. Make a font-object by
4340 font_make_object. Adjusted for the change of struct w32font_info.
4341 (w32font_close): Don't free struct font. Adjusted for the change
4342 of struct w32font_info.
4343 (w32font_encode_char, w32font_text_extents, w32font_draw):
4344 Adjusted for the change of struct w32font_info.
4345 (w32font_draw): Likewise.
4346 (w32font_list_internal): Return a list, not vector.
4347 (w32font_open_internal): Change the 4th arg to font-object.
4348 Adjusted for the change of struct w32font_info and font-object format.
4349 (add_font_name_to_list): Don't downcase names.
4350 (w32_enumfont_pattern_entity): Make a font-entity by
4351 font_make_entity. Adjusted for the format change of font-entity.
4352 Use FONT_SET_STYLE to set a style-related font property. If a
4353 font is scalable, set avgwidth property to 0. Set font-entity
4354 property by font_put_extra.
4355 (font_matches_spec): Adjusted for the format change of font-entity.
4356 (w32_weight_table, w32_decode_weight): New variables.
4357 (w32_encode_weight): New function.
4358 (fill_in_logfont): Adjusted for the format change of font-spec.
4359 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
4360 weight value.
4361 (w32font_driver): Adjusted for the change of struct font_driver.
4362
4363 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
4364 conditionals. Don't check enable_font_backend. Surround non-used
4365 code by "#ifdef OLD_FONT" and "endif".
4366 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
4367 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
4368
4369 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
4370 conditionals. Don't check enable_font_backend. Delete all codes
4371 used only when USE_FONT_BACKEND is not defined. Surround non-used
4372 code by "#ifdef OLD_FONT" and "endif".
4373
4374 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
4375 (uniscribe_open): Return value changed to font-object.
4376 Adjusted for the format change of font-object.
4377 (uniscribe_otf_capability): Adjusted for the change of struct font.
4378 (add_opentype_font_name_to_list): Don't downcase names.
4379 (uniscribe_font_driver): Adjusted for the change of struct
4380 font_driver.
4381
4382 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
4383
4384 * dispnew.c (update_frame_1): Check if tty output is still valid
4385 before flushing it.
4386
4387 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
4388
4389 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
4390 to Gtk+ menus.
4391
4392 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
4393
4394 * dired.c (file_name_completion): Tweak the code so as to always do it
4395 in a single pass. Tighten the scope of some variables.
4396
4397 * dired.c (Qdefault_directory): New var.
4398 (file_name_completion): Use it instead of Fexpand_file_name.
4399 (syms_of_dired): Initialize it.
4400
4401 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
4402
4403 * fileio.c (double_dollars): Remove dead code.
4404
4405 2008-05-10 Eli Zaretskii <eliz@gnu.org>
4406
4407 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
4408 Mention w32-get-true-file-attributes in doc string.
4409
4410 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
4411
4412 2008-05-09 Glenn Morris <rgm@gnu.org>
4413
4414 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
4415 2008-04-23.
4416
4417 2008-05-09 Eli Zaretskii <eliz@gnu.org>
4418
4419 Support for reporting owner and group of each file on MS-Windows:
4420 * dired.c (stat_uname, stat_gname): New functions, with special
4421 implementation for w32.
4422 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
4423
4424 * w32.c: Rename the_passwd_* to dflt_passwd_*.
4425 (dflt_group_name): New static variable.
4426 (dflt_group): Rename from the_group.
4427 (init_user_info): Init dflt_group fields. Get user's group name
4428 from LookupAccountSid.
4429 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
4430 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
4431 New initialization states.
4432 (globals_of_w32): Initialize them to zero. Initialize the default
4433 group name to "None".
4434 (GetFileSecurity_Name): New global var, the name of the function
4435 to call for GetFileSecurity.
4436 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
4437 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
4438 (get_file_security, get_security_descriptor_owner)
4439 (get_security_descriptor_group, is_valid_sid)
4440 (get_file_security_desc, get_rid, get_name_and_id)
4441 (get_file_owner_and_group): New functions.
4442 (stat): Use get_file_security_desc and get_file_owner_and_group to
4443 report the owner and primary group of each file. Don't ignore the
4444 high 32 bits of file's size, now that st_size is 64-bit wide.
4445 Fix test when to get true file attributes.
4446 (init_user_info): Use get_rid instead of equivalent inline code.
4447 (fstat): Don't ignore the high 32 bits of file's size.
4448
4449 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
4450
4451 * image.c (png_load): Use correct bit-depth for setting background
4452 color.
4453
4454 2008-05-08 Eli Zaretskii <eliz@gnu.org>
4455
4456 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
4457 epa-hook.elc.
4458
4459 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
4460
4461 * font.c (Ffont_match_p): Don't use `iff' in docstring.
4462
4463 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
4464
4465 * macfns.c (Fx_create_frame): Make a copy of frame parameters
4466 because the original parameters are in pure storage now.
4467 (mac_window): Remove unused params. Update callers.
4468
4469 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
4470
4471 * lread.c (substitute_object_recurse): Use lower-level primitives.
4472 Don't signal errors when traversing sub-char-tables.
4473 Don't loop over all the possible characters when traversing char-tables.
4474
4475 * print.c (print_preprocess): Add sub-char-tables to the print-table,
4476 just like we do in print.c.
4477
4478 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
4479
4480 * minibuf.c (Ftry_completion): Remove code left over from when we used
4481 scmp instead of Fcompare_strings.
4482
4483 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
4484
4485 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
4486
4487 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4488
4489 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
4490 Create bitmap context in native byte order.
4491
4492 * macterm.c (XDrawLine)
4493 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
4494 context in native byte order.
4495
4496 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4497
4498 * config.in: Regenerate.
4499
4500 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
4501 New definitions for Image I/O support.
4502 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
4503 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
4504 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
4505 (mac_data_provider_release_data, image_load_image_io)
4506 [USE_MAC_IMAGE_IO]: New functions.
4507 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
4508 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
4509 (init_image_func_pointer) [MAC_OSX]: Remove function.
4510 (image_load_quartz2d) [MAC_OSX]: Check availability of
4511 CGImageCreateWithPNGDataProvider at compile time.
4512 Use lowercase `false' for boolean constant.
4513 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
4514 Use image_load_image_io.
4515 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
4516 Don't check MyCGImageCreateWithPNGDataProvider.
4517 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
4518 Don't call init_image_func_pointer.
4519
4520 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
4521
4522 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
4523 Make variable non-static.
4524 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
4525 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
4526
4527 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
4528 (RED_FROM_ULONG): Mask off higher bits.
4529 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
4530
4531 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
4532 Include AvailabilityMacros.h.
4533 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
4534 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
4535
4536 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4537
4538 * chartab.c (Fset_char_table_range): If range is t, really set all
4539 chars to that value.
4540
4541 2008-05-03 Eli Zaretskii <eliz@gnu.org>
4542
4543 * dired.c (Ffile_attributes): Don't allow the device number become
4544 negative.
4545
4546 2008-05-02 Daiki Ueno <ueno@unixuser.org>
4547
4548 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
4549
4550 2008-05-02 Juri Linkov <juri@jurta.org>
4551
4552 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
4553 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
4554 DEFAULT argument as a list of default values in docstrings.
4555
4556 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
4557
4558 * puresize.h (BASE_PURESIZE): Increase to 1210000.
4559
4560 2008-05-01 Martin Rudalics <rudalics@gmx.at>
4561
4562 * dispnew.c (change_frame_size_1): Preserve small windows when
4563 shrinking frames by calling set_window_height|width with third
4564 arg 2.
4565
4566 * window.h (struct window): Replace field too_small_ok by field
4567 resize_proportionally.
4568
4569 * window.c (make_window): Initialize resize_proportionally.
4570 (enlarge_window): Temporarily set resize_proportionally to make
4571 sure that shrink_windows does scale the window proportionally.
4572 (shrink_windows): When window has resize_proportionally set try
4573 to shrink it proportionally by stealing from other windows.
4574 (struct saved_window, Fset_window_configuration)
4575 (compare_window_configurations): Handle resize_proportionally.
4576 (WINDOW_TOTAL_SIZE): New macro.
4577 (window_min_size, shrink_windows, size_window): Use it.
4578 (check_min_window_sizes): Remove. Invalid values of
4579 window-min-height|width are handled by window_min_size_2 now.
4580 (size_window, Fsplit_window, enlarge_window)
4581 (adjust_window_trailing_edge, grow_mini_window): Don't call
4582 check_min_window_sizes.
4583 (window_min_size_2, window_min_size_1, window_min_size):
4584 New argument safe_p for retrieving "safe" minimum sizes.
4585 (Fdisplay_buffer, Fsplit_window, enlarge_window)
4586 (adjust_window_trailing_edge, grow_mini_window):
4587 Adjust arguments of window_min_size... functions.
4588 (shrink_windows): Argument min_size removed. New argument
4589 safe_p allows shrinking windows to their safe minimum sizes.
4590 Calculate minimum size and decide whether a window shall be
4591 deleted for each window individually.
4592 (size_window): When nodelete_p equals 2, tell shrink_windows to
4593 delete windows only if their new minimum size is no more safe.
4594 (shrink_window_lowest_first): Call window_min_size_1 to make
4595 sure to preserve modeline of bottom-most window when resizing
4596 the minibuffer.
4597 (Fset_window_configuration, Fcurrent_window_configuration)
4598 (compare_window_configurations): Do not handle
4599 window-min-height|width any more.
4600 (syms_of_window): Clarify window-min-height|width doc-strings.
4601
4602 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
4603
4604 * dired.c (file_name_completion): Fix up the encoding/decoding issue
4605 some more. Copy some of the code from Ftry_completions.
4606 Remove special case code that dates back to initial revision when the
4607 slash was only added when necessary and that can't trigger nowadays.
4608
4609 2008-04-27 Kenichi Handa <handa@m17n.org>
4610
4611 * font.c (font_prop_validate): Signal `error' instead of `font'.
4612
4613 2008-04-29 Jason Rumney <jasonr@gnu.org>
4614
4615 * w32fns.c (Fw32_battery_status): New defun.
4616 (syms_of_w32fns): Defsubr it.
4617
4618 2008-04-28 Andreas Schwab <schwab@suse.de>
4619
4620 * dired.c (file_name_completion): Fix another mixing of encoded
4621 and decoded names.
4622
4623 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
4624
4625 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
4626
4627 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
4628
4629 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
4630
4631 2008-04-27 Andreas Schwab <schwab@suse.de>
4632
4633 * dired.c (file_name_completion): Fix inappropriate mixing of
4634 encoded and decoded names.
4635
4636 * xterm.c (XTread_socket): Fix use of uninitialized variable.
4637
4638 * puresize.h (BASE_PURESIZE): Increase to 1200000.
4639
4640 2008-04-26 Eli Zaretskii <eliz@gnu.org>
4641
4642 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
4643 2008-03-31, it's not needed anymore with `struct stat' definition
4644 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
4645 for the same reasons.
4646
4647 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
4648
4649 * m/sparc.h: Additional redefinitions for GNU/Linux.
4650
4651 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4652
4653 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
4654 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
4655 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
4656 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
4657 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
4658 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
4659 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
4660 Likewise.
4661
4662 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
4663 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
4664 (mac_ax_number_of_characters): Add externs.
4665 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
4666 [USE_MAC_TSM]: Likewise.
4667 (mac_handle_text_input_event) [MAC_OSX]:
4668 Handle kEventTextInputOffsetToPos for no active input area case.
4669 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
4670 (mac_handle_document_access_event)
4671 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
4672 (install_application_handler) [MAC_OSX]: Register handlers for
4673 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
4674 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
4675 Register mac_handle_document_access_event.
4676
4677 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
4678 Make functions non-static.
4679
4680 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
4681
4682 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
4683 (read_file_name_completion_ignore_case, insert_default_directory)
4684 (Qdefault_directory): Move to minibuffer.el.
4685 (Fread_file_name): Call the new `read-file-name' instead.
4686
4687 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4688
4689 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
4690 Make function non-static.
4691 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
4692 Remove function.
4693 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
4694 Move to mactoolbox.c.
4695 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
4696
4697 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
4698 (mac_rect_make): New macro.
4699
4700 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
4701 instead of float.
4702 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
4703 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
4704 (XSetBackground) [USE_CG_DRAWING]: Likewise.
4705 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
4706 CGRectMake.
4707 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
4708 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
4709 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
4710 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
4711 instead of WindowRef in argument type.
4712 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
4713 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
4714 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
4715 instead of DISPLAY. All uses changed.
4716 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
4717 (x_calc_absolute_position): Simplify so as not to use
4718 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
4719
4720 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
4721 instead of WindowRef in argument type.
4722 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
4723 [TARGET_API_MAC_CARBON]: Remove externs.
4724 (create_apple_event, mac_event_parameters_to_lisp)
4725 [TARGET_API_MAC_CARBON]: Add externs.
4726
4727 * mactoolbox.c (Vmac_ts_script_language_on_focus)
4728 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
4729 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
4730 is clicked.
4731 (x_activate_menubar): Remove extern for saved_menu_event_location.
4732 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
4733 Move from mac.c.
4734
4735 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4736
4737 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
4738 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
4739
4740 2008-04-23 Jason Rumney <jasonr@gnu.org>
4741
4742 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
4743 attributes only for local files.
4744
4745 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
4746 default to Qlocal.
4747
4748 2008-04-22 Juri Linkov <juri@jurta.org>
4749
4750 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
4751 read-buffer-to-switch instead of using the letter "B".
4752
4753 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
4754
4755 * fileio.c (Qdefault_directory): New variable.
4756 (Fread_file_name): Use it to pass `dir' to the completion functions.
4757
4758 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
4759
4760 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
4761
4762 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
4763
4764 * keyboard.c (Vpre_help_message): Remove.
4765 (show_help_echo): Remove default C code.
4766
4767 * dired.c (directory_files_internal, file_name_completion):
4768 Only call ENCODE_FILE if the string is indeed decoded.
4769
4770 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4771
4772 * Makefile.in (TOOLKIT_DEFINES): Remove.
4773 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
4774
4775 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4776
4777 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
4778 (mactoolbox.o): New target.
4779
4780 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
4781 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
4782
4783 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
4784 Use mac_set_frame_window_background instead of XSetWindowBackground.
4785 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
4786 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
4787 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
4788 instead of SetWindowTitleWithCFString.
4789 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
4790 Move function to mactoolbox.c.
4791 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
4792 Use mac_set_window_modified instead of SetWindowModified.
4793 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
4794 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
4795 (Fx_focus_frame): Use mac_front_non_floating_window instead of
4796 FrontNonFloatingWindow. Use mac_activate_window instead of
4797 ActivateWindow. Use mac_active_non_floating_window instead of
4798 ActiveNonFloatingWindow.
4799 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
4800 Use mac_show_hourglass and mac_hide_hourglass.
4801 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
4802 instead of GetGlobalMouse.
4803 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
4804 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
4805 Use mac_bring_window_to_front instead of BringToFront.
4806 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
4807 mactoolbox.c.
4808 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
4809 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
4810 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
4811 mactoolbox.c.
4812
4813 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
4814 (XtPointer): Move typedef from macmenu.c.
4815 (enum button_type): Move enum from macmenu.c.
4816 (widget_value): Move typedef from macmenu.c.
4817 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
4818 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
4819 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
4820 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
4821 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
4822 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
4823 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
4824 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
4825 (Selection): Move typedef from macselect.c.
4826 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
4827 macterm.c.
4828 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
4829 (mac_is_window_collapsed, mac_bring_window_to_front)
4830 (mac_send_window_behind, mac_hide_window, mac_show_window)
4831 (mac_collapse_window, mac_front_non_floating_window)
4832 (mac_active_non_floating_window, mac_activate_window)
4833 (mac_move_window_structure, mac_move_window, mac_size_window)
4834 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
4835
4836 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
4837 (enum mac_menu_kind): Move enum to mactoolbox.c.
4838 (min_menu_id): Move variable to mactoolbox.c.
4839 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
4840 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
4841 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
4842 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
4843 [TARGET_API_MAC_CARBON]: Likewise.
4844 (XtPointer): Move typedef to macgui.h.
4845 (enum button_type): Move enum to macgui.h.
4846 (widget_value): Move typedef to macgui.h.
4847 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
4848 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
4849 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
4850 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
4851 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
4852 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
4853 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
4854 (popup_activated_flag): Make variable non-static.
4855 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
4856 (add_menu_item, fill_menu, dispose_menus):
4857 Move functions to mactoolbox.c.
4858 (restore_show_help_function, menu_target_item_handler)
4859 (install_menu_target_item_handler, mac_handle_dialog_event)
4860 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
4861 [TARGET_API_MAC_CARBON]: Likewise.
4862 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
4863 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
4864 (find_and_call_menu_selection, name_is_separator): Make function
4865 non-static.
4866 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
4867 to mactoolbox.c.
4868 (set_frame_menubar): Don't call install_menu_quit_handler.
4869 (menu_item_selection): New variable.
4870 (mac_menu_show): Use create_and_show_popup_menu.
4871 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
4872 selection but set variable menu_item_selection. All uses changed.
4873 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
4874 Call install_menu_quit_handler. Move to mactoolbox.c.
4875
4876 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
4877 (Selection): Move typedef to macgui.h.
4878 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
4879 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
4880 Make variables non-static.
4881 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
4882 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
4883 Make functions non-static.
4884 (Vmac_service_selection) [MAC_OSX]: Likewise.
4885 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
4886 (mac_valid_selection_target_p, mac_clear_selection)
4887 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
4888 (mac_put_selection_value, mac_selection_has_target_p)
4889 (mac_get_selection_value, mac_get_selection_target_list)
4890 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
4891 Move functions to mactoolbox.c.
4892 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
4893 Likewise.
4894 (copy_scrap_flavor_data, mac_handle_service_event)
4895 (install_service_handler) [MAC_OSX]: Likewise.
4896 (syms_of_macselect) <Vmac_dnd_known_types>:
4897 Use mac_dnd_default_known_types.
4898
4899 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
4900 Move to mactoolbox.c.
4901 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
4902 (Fx_selection_owner_p): Add EXFUN.
4903 (install_window_handler, remove_window_handler, XSetWindowBackground):
4904 Remove externs.
4905 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
4906 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
4907 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
4908 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
4909 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
4910 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
4911 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
4912 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
4913 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
4914 (create_and_show_popup_menu, mac_get_selection_from_symbol)
4915 (mac_valid_selection_target_p, mac_clear_selection)
4916 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
4917 (mac_put_selection_value, mac_selection_has_target_p)
4918 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
4919 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
4920 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
4921 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
4922 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
4923 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
4924 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
4925 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
4926 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
4927
4928 * mactoolbox.c: New file.
4929
4930 2008-04-18 Jason Rumney <jasonr@gnu.org>
4931
4932 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
4933
4934 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4935
4936 * character.c (Fmultibyte_char_to_unibyte):
4937 Return latin1 chars unchanged.
4938
4939 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
4940 relocated if it points to `name'.
4941
4942 2008-04-17 Kenichi Handa <handa@m17n.org>
4943
4944 * data.c (Faset): Allow setting a multibyte character in an
4945 ASCII-only unibyte string.
4946
4947 * lisp.h (STRING_SET_MULTIBYTE): New macro.
4948
4949 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
4950
4951 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
4952 done in config.h.
4953
4954 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
4955
4956 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
4957 (Fchar_direction): Add usage in the docstring.
4958
4959 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
4960
4961 * keyboard.c (read_key_sequence): Remove always-true checks.
4962
4963 2008-04-14 Jason Rumney <jasonr@gnu.org>
4964
4965 * w32font.c (w32font_open_internal): Set max_bounds.descent in
4966 compatibility struct, for better underline positioning.
4967
4968 2008-04-13 David Hansen <david.hansen@gmx.net>
4969
4970 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
4971 string.
4972
4973 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
4974
4975 * m/hp800.h (XUINT, XSET): Remove.
4976
4977 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
4978
4979 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
4980 previous change.
4981
4982 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4983
4984 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
4985 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
4986
4987 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4988
4989 * keymap.h (map_keymap_canonical): Declare.
4990 * xmenu.c (single_keymap_panes): Use it.
4991
4992 2008-04-11 Glenn Morris <rgm@gnu.org>
4993
4994 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
4995 set the target's value to that of the alias.
4996
4997 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4998
4999 * term.c (set_tty_color_mode): Left over typo.
5000
5001 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
5002
5003 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
5004 only after check for file name handler functions. Signal, when
5005 native functionality is not supported.
5006 (syms_of_fileio): Declare it unconditionally.
5007
5008 2008-04-10 Jason Rumney <jasonr@gnu.org>
5009
5010 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
5011 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
5012
5013 * w32.c (logon_network_drive): Also logon to remote drives that
5014 are mapped to drive letters.
5015
5016 2008-04-10 Glenn Morris <rgm@gnu.org>
5017
5018 * xdisp.c (truncate-partial-width-windows): Doc fix.
5019
5020 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
5021
5022 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
5023 Move functions to minibuffer.el.
5024 (syms_of_fileio): Don't declare them.
5025
5026 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
5027
5028 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
5029 (syms_of_minibuf): Remove its initialization.
5030
5031 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
5032
5033 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
5034
5035 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
5036
5037 2008-04-09 Jason Rumney <jasonr@gnu.org>
5038
5039 * makefile.w32-in (distclean): Delete makefile too.
5040 (maintainer-clean): New target.
5041
5042 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
5043
5044 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
5045 for new font backend and composite cases.
5046
5047 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
5048
5049 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
5050 Most of the code moved to run_timers.
5051 (do_pending_atimers): Call run_timers.
5052 (run_timers): New function.
5053
5054 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
5055 run atimers.
5056
5057 * process.c (wait_reading_process_output): The same as above.
5058
5059 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
5060
5061 * minibuf.c (last_exact_completion): Remove variable.
5062 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
5063 (complete_and_exit_1, complete_and_exit_2)
5064 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
5065 (Fdisplay_completion_list, display_completion_list_1)
5066 (Fminibuffer_completion_help, Fself_insert_and_exit)
5067 (Fexit_minibuffer, Fminibuffer_message): Move functions to
5068 minibuffer.el.
5069 (syms_of_minibuf): Remove corresponding initializations.
5070
5071 * keyboard.c (Qdeactivate_mark): New var.
5072 (command_loop_1): Use it to call `deactivate-mark'.
5073 (syms_of_keyboard): Initialize it.
5074
5075 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
5076 to another frame.
5077 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
5078 Don't call set_tty_color_mode.
5079 (store_frame_param): Reset previous_frame rather than call
5080 set_tty_color_mode.
5081 * term.c (set_tty_color_mode): Rewrite.
5082 * dispextern.h (set_tty_color_mode): New type.
5083 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
5084
5085 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
5086
5087 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
5088 for generic chars, which do not exist any more in emacs-unicode.
5089
5090 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
5091
5092 * coding.c (detect_coding_emacs_mule)
5093 (Ffind_operation_coding_system): Fix typo.
5094
5095 2008-04-08 Jason Rumney <jasonr@gnu.org>
5096
5097 * w32uniscribe.c (SNAME): Extract only symbol name.
5098
5099 * w32font.h (struct w32_metric_cache): New struct.
5100 (w32font_info): Use it.
5101 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
5102 (CACHE_BLOCKSIZE): New constants.
5103
5104 * w32font.c (Qja, Qko, Qzh): New symbols.
5105 (syms_of_w32font): Initialise them.
5106 (font_matches_spec): Use them to filter by language.
5107 (recompute_cached_metrics): Remove function.
5108 (compute_metrics, clear_cached_metrics): New functions.
5109 (w32font_encode_char): Use them to manage metric cache.
5110 (w32font_text_extents): Cache metrics for all glyphs on demand.
5111 Delay converting glyph indices to WORD until needed.
5112 (w32font_open_internal): Initialize metric cache to empty.
5113 (registry_to_w32_charset): Charset should always be a symbol.
5114 (fill_in_logfont, list_all_matching_fonts): Family should
5115 always be a symbol.
5116
5117 2008-04-06 Jason Rumney <jasonr@gnu.org>
5118
5119 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
5120 Give up if glyph indices not supported. Use uniscribe obtained
5121 ABC widths for individual metrics. Map glyph clusters back to
5122 characters using fClusterStart flag. Return number of glyphs
5123 produced, not chars processed.
5124 (uniscribe_shape): Map char at FROM to current glyph.
5125
5126 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5127
5128 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
5129 Use SetMenuItemHierarchicalMenu.
5130
5131 2008-04-05 Jason Rumney <jasonr@gnu.org>
5132
5133 * image.c (pbm_load): Allow color values up to 65535.
5134 Throw an error if max_color_idx is outside the supported range.
5135 Report an error when image size is invalid.
5136 Read two bytes at a time when raw images have max_color_idx above 255.
5137
5138 2008-04-05 Eli Zaretskii <eliz@gnu.org>
5139
5140 * w32.c (readdir): If FindFirstFile/FindNextFile return in
5141 cFileName a file name that includes `?' characters, use the 8+3
5142 alias in cAlternateFileName instead.
5143
5144 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
5145
5146 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
5147 append "CCL: Quitted" when the CCL program is quitted.
5148 (setup_ccl_program): Initialize ccl->quit_silently to zero.
5149
5150 * ccl.h (struct ccl_program): New member quit_silently.
5151
5152 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
5153
5154 * search.c (compile_pattern_1): Treat non-nil and non-string of
5155 search-spaces-regexp as nil.
5156
5157 * minibuf.c (Fassoc_string): Tweak docstring.
5158
5159 2008-04-05 Eli Zaretskii <eliz@gnu.org>
5160
5161 * dired.c (Ffile_attributes): Support inode numbers wider than 32
5162 bits. Remove ugly WINDOWSNT-specific kludge introduced on
5163 2008-03-14 to force inode be positive.
5164
5165 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
5166 _S_* ones, since we now use our own sys/stat.h.
5167 (stat, fstat): Don't mangle the inode number.
5168 (init_user_info): Don't restrict UID and GID to 0-60000 range.
5169
5170 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
5171
5172 * frame.h (struct frame): Give one more bit to `visible' since we use
5173 values larger than 1 to indicate obscured frames on ttys.
5174
5175 * keymap.c (Qkeymap_canonicalize): New var.
5176 (Fmap_keymap_internal): New fun.
5177 (describe_map): Use keymap-canonicalize.
5178
5179 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
5180 (Fundo_boundary): Set them.
5181 (syms_of_undo): Initialize them.
5182 (record_point): Use them instead of last_point_position*.
5183 (last_undo_buffer): Change type.
5184
5185 2008-04-04 Jason Rumney <jasonr@gnu.org>
5186
5187 * w32font.c (w32font_text_extents): Use font's ascent and descent.
5188 (recompute_cached_metrics): Don't set ascent and descent per char.
5189
5190 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
5191 (uniscribe_check_otf): Add GC protection before consing.
5192 Rearrange loop for counting features.
5193
5194 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5195
5196 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
5197 buffer with byte-size of source buffer.
5198
5199 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
5200
5201 * callint.c (Fcall_interactively): Handle temporary region even
5202 when shift-select-mode is off.
5203
5204 2008-04-03 Jason Rumney <jasonr@gnu.org>
5205
5206 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
5207
5208 2008-04-03 Kenichi Handa <handa@m17n.org>
5209
5210 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
5211 (CATEGORY_MASK_UTF_16): Likewise.
5212 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
5213 binary file.
5214 (detect_coding): Add null-byte detection for a binary file.
5215 (detect_coding_system): Likewise.
5216
5217 2008-04-03 Jason Rumney <jasonr@gnu.org>
5218
5219 * w32uniscribe.c: New file.
5220
5221 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
5222
5223 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
5224
5225 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
5226 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
5227 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
5228 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
5229 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
5230 (Qphonetic): New symbols.
5231 (syms_of_w32font): Initialize them.
5232 (font_supported_scripts): Use them.
5233 (w32font_list_family): List all charsets.
5234 (w32font_text_extents, recompute_cached_metrics): Fix metric
5235 calculations.
5236 (w32_enumfont_pattern_entity): Make full_type a DWORD.
5237 Give opentype fonts their own format.
5238 (font_matches_spec): New arguments backend and logfont.
5239 Handle :otf spec for uniscribe backend.
5240 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
5241 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
5242
5243 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
5244 font backend.
5245 (globals_of_w32fns): Initialize uniscribe font backend.
5246
5247 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
5248 dependencies.
5249 (w32uniscribe.$(O)): New file to build.
5250 (FONT_OBJ): Include w32uniscribe.$(O).
5251 (LIBS): Add uniscribe libraries.
5252
5253 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
5254
5255 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
5256
5257 * callint.c (Vshift_select_mode): New var.
5258 (Finteractive): Document new ^ spec.
5259 (Fcall_interactively): Call handle-shift-selection if the ^ spec
5260 is present.
5261
5262 * keyboard.c (Vthis_command_keys_shift_translated): New var.
5263 (command_loop_1): Avoid running the direct display versions of
5264 forward-char and backward-char if shift-selection may occur.
5265 (read_key_sequence): Set Vthis_command_keys_shift_translated if
5266 shift-translation takes place.
5267
5268 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
5269 avoid clobbering by define-minor-mode.
5270
5271 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
5272 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
5273
5274 * syntax.c (Fforward_word): Add ^ interactive spec.
5275
5276 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
5277 (Fscroll_right): Add ^ interactive spec.
5278
5279 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
5280
5281 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
5282
5283 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
5284
5285 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
5286
5287 2008-03-31 Juri Linkov <juri@jurta.org>
5288
5289 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
5290
5291 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
5292
5293 * gtkutil.c (xg_set_geometry): Fix indentation.
5294 (xg_resize_outer_widget): Remove.
5295 (x_wm_size_hint_off): Fix indentation.
5296 (xg_frame_set_char_size): Call flush_and_sync after
5297 gtk_window_resize.
5298 (x_wm_set_size_hint): Pass NULL as geometry window to
5299 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
5300 Add menu bar and tool bar height to base height.
5301 (xg_update_frame_menubar, free_frame_menubar)
5302 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
5303 (update_frame_tool_bar, free_frame_tool_bar):
5304 Change xg_resize_outer_widget to xg_frame_set_char_size.
5305
5306 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
5307
5308 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
5309 (Fdbus_call_method): New parameter TIMEOUT.
5310 (dbus-send-signal): Optimize UNGCPRO call.
5311
5312 2008-03-29 Juri Linkov <juri@jurta.org>
5313
5314 * window.c (Fdisplay_buffer): Move call to
5315 Vsplit_window_preferred_function out of conditions that check
5316 if window is eligible for vertical splitting.
5317 When Vsplit_window_preferred_function is non-nil, call it and use
5318 its non-nil return value as window. Otherwise, continue doing
5319 vertical splitting using Fsplit_window with arg horflag=nil.
5320 (syms_of_window) <Vsplit_window_preferred_function>: Change the
5321 default value from `split-window' to nil.
5322
5323 2008-03-29 Juri Linkov <juri@jurta.org>
5324
5325 * callint.c (Fcall_interactively): Revert 2008-03-16 change
5326 for interactive code letters 'b' and 'B'.
5327
5328 2008-03-29 Eli Zaretskii <eliz@gnu.org>
5329
5330 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
5331 multibyte string.
5332
5333 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
5334
5335 * keyboard.c (pending_funcalls): New var.
5336 (timer_check): Run it.
5337 (syms_of_keyboard): Initialize it.
5338 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
5339 (Vdelete_terminal_functions): New vars.
5340 (syms_of_terminal): Initialize them.
5341 (Fdelete_terminal): Run delete-terminal-functions.
5342 * xdisp.c (safe_eval): Rewrite.
5343 (safe_call2): New fun.
5344 * frame.c (Qdelete_frame_functions): New var.
5345 (syms_of_frame): Initialize it.
5346 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
5347 * lisp.h (safe_call2, pending_funcalls): Declare.
5348
5349 2008-03-28 Andreas Schwab <schwab@suse.de>
5350
5351 * indent.c (Fmove_to_column): Move declaration before statements.
5352
5353 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
5354
5355 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
5356 (struct frame): Use bit fields for boolean vars.
5357
5358 * process.c (server_accept_connection): Simplify naming.
5359 (emacs_get_tty_pgrp): Use SDATA.
5360
5361 * coding.c (decode_coding_object): Fix last change.
5362
5363 2008-03-27 Jason Rumney <jasonr@gnu.org>
5364
5365 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
5366
5367 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
5368
5369 * charset.c (Fdefine_charset_internal): Change the way of
5370 registering charsets in Vcharset_order_list.
5371 (syms_of_charset): Make the charset `eight-bit' supplementary.
5372
5373 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
5374
5375 * regex.c (EXTEND_BUFFER): Change order of pointer addition
5376 operations, to avoid having the difference between pointers
5377 overflow.
5378
5379 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
5380
5381 * indent.c (check_display_width): New fun.
5382 (scan_for_column): Use it.
5383
5384 * data.c (syms_of_data): Mark most-positive-fixnum and
5385 most-negative-fixnum as constants.
5386
5387 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
5388
5389 * indent.c (scan_for_column): Extract from current_column_1.
5390 Merge with the same code from Fmove_to_column.
5391 (current_column_1, Fmove_to_column): Use it.
5392
5393 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
5394
5395 * keymap.c (map_keymap_internal): New fun.
5396 (map_keymap): Use it.
5397 (Fmap_keymap_internal): New fun.
5398 (Fmap_keymap): Remove left-out test from before make_save_value.
5399
5400 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
5401
5402 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
5403 Use XCAR/XCDR.
5404
5405 * process.h (struct Lisp_Process): Remove filter_multibyte.
5406 * process.c (QCfilter_multibyte): Remove.
5407 (setup_process_coding_systems): Don't use filter_multibyte.
5408 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
5409 (read_process_output): Don't adjust multibyteness to filter_multibyte.
5410 (Fset_process_filter_multibyte): Change the coding-system to
5411 approximate the previous behavior.
5412 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
5413 coding-system.
5414
5415 * coding.c (decode_coding_object): When not decoding into a buffer,
5416 obey the coding system's preference of (uni|multi)byte.
5417
5418 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
5419
5420 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
5421 every char is changed and has a different byte-length.
5422 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
5423 Fix int -> EMACS_INT.
5424
5425 2008-03-23 David Hansen <david.hansen@gmx.net>
5426
5427 * dbusbind.c (xd_read_message): Remove extra copying of message
5428 strings. Check for NULL `interface' or `member'.
5429
5430 2008-03-22 Eli Zaretskii <eliz@gnu.org>
5431
5432 * w32.c (readdir): If FindFirstFile/FindNextFile return in
5433 cFileName a file name that includes `?' characters, use the 8+3
5434 alias in cAlternateFileName instead.
5435
5436 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
5437
5438 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
5439
5440 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
5441
5442 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
5443 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
5444 work on current_buffer only instead (that was already the case
5445 for some of the code anyway).
5446 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
5447 (temp_set_point, temp_set_point_both): Use EMACS_INT.
5448 (SET_PT, SET_PT_BOTH): Adjust.
5449 * intervals.h (set_point, temp_set_point, set_point_both)
5450 (temp_set_point_both): Remove redundant declarations.
5451
5452 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
5453
5454 * fileio.c (Finsert_file_contents):
5455 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
5456 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
5457 when buffer != current_buffer anyway.
5458
5459 2008-03-20 Andreas Schwab <schwab@suse.de>
5460
5461 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
5462 as default.
5463
5464 2008-03-19 Jason Rumney <jasonr@gnu.org>
5465
5466 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
5467 (syms_of_w32fns): Initialize them.
5468 (HOURGLASS_ID): New constant.
5469 (x_window_to_frame): Don't check hourglass_window.
5470 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
5471 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
5472 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
5473 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
5474 Only change the cursor if hourglass is not active.
5475 (Fx_create_frame): Initialize frame's current_cursor.
5476 (hourglass_atimer): Remove.
5477 (hourglass_started): New function.
5478 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
5479 (show_hourglass): Adapt to w32, changing argument to frame.
5480
5481 * w32term.h (struct w32_output): Remove hourglass_window.
5482 Add current_cursor.
5483
5484 * eval.c (call_debugger, Fsignal):
5485 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
5486 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
5487 (Fexecute_extended_command, cancel_hourglass_unwind):
5488 * minibuf.c (read_minibuf):
5489 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
5490
5491 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
5492
5493 * window.c (run_funs): New fun.
5494 (run_window_configuration_change_hook): Use it to run the buffer-local
5495 and the global part of the hook.
5496
5497 * xdisp.c (format_mode_line_unwind_data): Add window argument.
5498 (unwind_format_mode_line): Restore selected window.
5499 (x_consider_frame_title, Fformat_mode_line): Set selected window.
5500
5501 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
5502
5503 * editfns.c (Fchar_equal): Check they are valid characters.
5504
5505 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
5506
5507 2008-03-17 Andreas Schwab <schwab@suse.de>
5508
5509 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
5510 against a charset.
5511
5512 * lisp.h (Fbuffer_list): Declare.
5513
5514 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
5515
5516 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
5517 handlebox_widget is != 0.
5518
5519 2008-03-16 Juri Linkov <juri@jurta.org>
5520
5521 * callint.c (Fcall_interactively): For interactive code letters
5522 'b' and 'B' put the buffer list into the list of default "future"
5523 values of the minibuffer.
5524
5525 2008-03-16 Andreas Schwab <schwab@suse.de>
5526
5527 * keyboard.c (read_key_sequence): Fix downcasing of letters with
5528 modifiers.
5529
5530 * regex.c (re_match_2_internal): Correct matching of a charset
5531 against latin-1 characters.
5532
5533 2008-03-16 Kenichi Handa <handa@m17n.org>
5534
5535 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
5536 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
5537 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
5538 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
5539 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
5540 CHAR_STRING_ADVANCE.
5541 (produce_chars): Fix for the case that the source and the
5542 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
5543 instead of CHAR_STRING_ADVANCE.
5544 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
5545 STRING_CHAR_ADVANCE.
5546
5547 2008-03-15 Andreas Schwab <schwab@suse.de>
5548
5549 * regex.c (re_match_2_internal): Correct matching of eight bit
5550 characters in unibyte strings.
5551
5552 2008-03-15 Martin Rudalics <rudalics@gmx.at>
5553
5554 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
5555 at end of range when it coincides with the end of the buffer.
5556
5557 2008-03-14 Eli Zaretskii <eliz@gnu.org>
5558
5559 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
5560
5561 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
5562
5563 2008-03-14 Jason Rumney <jasonr@gnu.org>
5564
5565 * editfns.c (initial_tz): New variable.
5566 (syms_of_editfns): Initialize it.
5567 (Fset_time_zone_rule): Set it when first called.
5568 Use it when TZSTRING is nil.
5569
5570 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
5571 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
5572 (monitor_from_point_fn, get_monitor_info_fn): New globals.
5573 (globals_of_w32fns): Initialize them.
5574 (compute_tip_xy): Use them to position tooltips.
5575
5576 2008-03-14 Glenn Morris <rgm@gnu.org>
5577
5578 * emacs.c (main): Revert previous change.
5579 (standard_args): Revert -internal-script back to -scriptload,
5580 and remove the long-option form.
5581
5582 2008-03-13 Glenn Morris <rgm@gnu.org>
5583
5584 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
5585 Remove option -enable-font-backend.
5586
5587 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5588
5589 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
5590
5591 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
5592
5593 * xterm.c (x_connection_closed): For GTK: If this is the last
5594 terminal just exit without closing the display.
5595
5596 2008-03-11 Jason Rumney <jasonr@gnu.org>
5597
5598 * w32font.c (w32font_full_name): Use floor to round.
5599
5600 2008-03-10 dhruva <dhruvakm@gmail.com> (tiny change)
5601
5602 * sound.c (alsa_configure): Declare vol at beginning of block.
5603
5604 * fontset.c (Ffontset_info): Remove extra semicolon.
5605
5606 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
5607
5608 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
5609 size of resulting string.
5610
5611 2008-03-10 Jason Rumney <jasonr@gnu.org>
5612
5613 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
5614
5615 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5616
5617 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
5618 Don't pretend as if characters with display property haven't been
5619 consumed for string-replacing-string case.
5620
5621 2008-03-08 Kim F. Storm <storm@cua.dk>
5622
5623 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
5624 (get_next_display_element, next_element_from_string)
5625 (next_element_from_ellipsis, next_element_from_buffer): Use it.
5626
5627 2008-03-08 Andreas Schwab <schwab@suse.de>
5628
5629 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
5630
5631 2008-03-06 Jason Rumney <jasonr@gnu.org>
5632
5633 * w32font.c (w32_registry): Take font_type argument. Use ANSI
5634 when charset not specified. Only translate ANSI to unicode when
5635 font_type is truetype.
5636 (w32font_coverage_ok): New function.
5637 (add_font_entity_to_list): Use it to filter unsuitable fonts.
5638
5639 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
5640
5641 * lread.c (Fread_char): Resolve modifiers.
5642 (Fread_char_exclusive): Likewise.
5643
5644 * character.c (char_resolve_modifier_mask): New function.
5645 (char_string): Use char_resolve_modifier_mask.
5646 (Fchar_resolve_modifiers): New function.
5647 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
5648 function.
5649
5650 2008-03-04 Jason Rumney <jasonr@gnu.org>
5651
5652 * makefile.w32-in: Always include w32font.c in the build.
5653 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
5654
5655 2008-03-04 Andreas Schwab <schwab@suse.de>
5656
5657 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
5658 (versionclean): Likewise.
5659
5660 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
5661
5662 * .cvsignore: Add oo.
5663
5664 2008-03-03 Andreas Schwab <schwab@suse.de>
5665
5666 * coding.c (decode_coding_object): Inhibit gap shrinking while
5667 decoding in place.
5668
5669 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
5670
5671 * w32term.c: Remove unused include "gnu.h".
5672 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
5673
5674 * gnu.h: Rename to ...
5675 * emacs-icon.h: ... this.
5676 * xterm.c: Use emacs-icon.h instead of gnu.h.
5677 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
5678
5679 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
5680
5681 * w32font.c: Include math.h.
5682
5683 2008-03-03 Jason Rumney <jasonr@gnu.org>
5684
5685 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
5686 Compute options separately.
5687 (w32font_open_internal): Set glyph_idx before caching metrics.
5688
5689 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
5690 Define if system headers don't.
5691 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
5692 (w32font_encode_char): Don't declare here.
5693
5694 * w32font.c (Quniscribe, QCformat): New symbols.
5695 (syms_of_w32font): Define them.
5696 (w32font_has_char): Indicate uncertainty.
5697 (w32font_encode_char): Encode as glyph point. Make static.
5698 (recompute_cached_metrics): New function.
5699 (w32font_open_internal): Use it. Set font to use glyph points
5700 initially. Set format based on type of font.
5701 (w32font_text_extents, w32font_draw): Optionally use glyph points.
5702 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
5703 on it. Set format based on information available here.
5704 (add_font_entity_to_list): Identify backend based on opentype_only.
5705
5706 2008-03-02 Andreas Schwab <schwab@suse.de>
5707
5708 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
5709
5710 * coding.c (decode_coding_big5, produce_chars):
5711 Fix typos in last change.
5712
5713 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
5714
5715 * gnu.h: New icon.
5716
5717 2008-03-02 Kenichi Handa <handa@m17n.org>
5718
5719 * coding.c (decode_coding_utf_8): When eol-type of CODING is
5720 `dos', don't decode '\r' if that is the last in the source.
5721 (decode_coding_utf_16, decode_coding_emacs_mule)
5722 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
5723 (decode_coding_raw_text, decode_coding_charset): Likewise.
5724 (produce_chars): Don't decode EOL here. Use EMACS_INT.
5725
5726 2008-03-01 Jason Rumney <jasonr@gnu.org>
5727
5728 * w32font.c (w32font_full_name): Report point size for scalable fonts.
5729
5730 2008-03-01 Kim F. Storm <storm@cua.dk>
5731
5732 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
5733
5734 2008-03-01 Jason Rumney <jasonr@gnu.org>
5735
5736 * w32font.c (w32font_full_name): New function.
5737 (w32font_open_internal): Use it.
5738
5739 2008-03-01 Kim F. Storm <storm@cua.dk>
5740
5741 * dispnew.c (line_draw_cost): Fix invalid glyph check.
5742
5743 2008-03-01 Jason Rumney <jasonr@gnu.org>
5744
5745 * font.c (font_unparse_fcname): Increase len when style is a symbol.
5746
5747 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
5748
5749 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
5750 xg_frame_resized when the event is for the edit widget.
5751
5752 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
5753
5754 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
5755 set_char_size.
5756 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
5757 operations on widgets here. Just set frame size if needed.
5758 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
5759 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
5760 (x_wm_set_size_hint): Set size hints on the edit widget only, not
5761 the whole frame.
5762 (xg_create_tool_bar): Move attachement of the tool bar to
5763 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
5764 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
5765
5766 2008-03-01 Jason Rumney <jasonr@gnu.org>
5767
5768 * w32fns.c (w32_msg_pump): Disable debug code.
5769
5770 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5771
5772 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
5773
5774 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
5775
5776 * xdisp.c (next_overlay_string): Don't set
5777 overlay_strings_at_end_processed_p if we're currently reading from
5778 a display string.
5779
5780 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
5781
5782 * xdisp.c (get_overlay_strings_1): Fix typo.
5783
5784 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
5785
5786 * xdisp.c (get_overlay_strings_1): Add missing argument type.
5787
5788 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
5789
5790 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
5791
5792 * xdisp.c (display_mode_element): Cancel the previous change.
5793 (decode_mode_spec): Likewise.
5794 (handle_auto_composed_prop): Don't make composition if it->string
5795 is a string.
5796
5797 2008-02-27 Kim F. Storm <storm@cua.dk>
5798
5799 * lisp.h (GLYPH): Change type from int to struct with separate char
5800 and face_id members.
5801 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
5802 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
5803 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
5804 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
5805 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
5806 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
5807 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
5808 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
5809 handle new Lisp glyph code encoding, either an integer or a cons.
5810
5811 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
5812 (GLYPH_ALIAS): Delete.
5813 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
5814 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
5815 (GLYPH_FROM_CHAR): Replace macro by ...
5816 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
5817
5818 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
5819 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
5820 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
5821 (GLYPH_INVALID_P): New macro.
5822 (spec_glyph_lookup_face): Update prototype.
5823
5824 * dispnew.c (line_draw_cost): Adapt to new glyph type.
5825 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
5826 new glyph code encoding.
5827 (spec_glyph_lookup_face): No return value; update passed glyph instead.
5828 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
5829
5830 * xdisp.c (get_next_display_element, next_element_from_display_vector):
5831 Adapt to new glyph type and new glyph code encoding.
5832
5833 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
5834
5835 * indent.c (current_column, current_column_1, Fmove_to_column)
5836 (compute_motion): Adapt to new glyph code encoding.
5837
5838 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
5839
5840 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
5841
5842 * process.c (wait_reading_process_output): Check for window
5843 changes caused by timers.
5844 Suggested by Johan Bockgård.
5845
5846 2008-02-27 Glenn Morris <rgm@gnu.org>
5847
5848 * emacs.c (USAGE1): Add `--disable-font-backend'.
5849
5850 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
5851
5852 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
5853 is made to the buffer.
5854
5855 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
5856
5857 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
5858 (face_at_string_position):
5859 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
5860 (face_at_string_position):
5861 * xdisp.c (display_string, next_overlay_change):
5862 * buffer.h (overlays_at):
5863 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
5864 Update callers.
5865
5866 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
5867
5868 * editfns.c (Fformat): Doc fix.
5869
5870 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
5871
5872 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
5873 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
5874 (Ffont_otf_alternates, Fquery_font): Doc fixes.
5875
5876 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
5877
5878 * buffer.c (Fbuffer_swap_text): New function.
5879 (syms_of_buffer): Defsubr it.
5880
5881 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
5882
5883 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
5884
5885 2008-02-25 Jason Rumney <jasonr@gnu.org>
5886
5887 * w32font.c (w32font_draw): Draw one character at a time when padding.
5888
5889 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
5890
5891 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
5892 Handle a nil arg. Use run_window_configuration_change_hook.
5893 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
5894 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
5895 Use run_window_configuration_change_hook.
5896
5897 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
5898
5899 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
5900 1-pixel width.
5901
5902 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
5903
5904 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
5905 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
5906 if the glyph in the font is zero pixel with.
5907
5908 * dispextern.h (struct glyph_string): New member padding_p.
5909
5910 * w32font.c (w32font_draw): Pay attention to s->padding_p.
5911
5912 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
5913
5914 * xfont.c (xfont_draw): Pay attention to s->padding_p.
5915
5916 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
5917
5918 * font.c: If the font driver doesn't have `shape' function, return Qnil.
5919
5920 2008-02-25 Jason Rumney <jasonr@gnu.org>
5921
5922 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
5923
5924 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
5925
5926 Allow fine-grained image-cache flushing.
5927 * dispextern.h (struct image): Add `dependencies' field.
5928 (clear_image_caches): Change arg to Lisp_Object.
5929 * image.c (make_image): Initialize `dependencies' field.
5930 (clear_image_cache): Change arg to allow fine-grained flushing.
5931 Perform the flush even if image-cache-eviction-delay is nil.
5932 (clear_image_caches): Change arg to Lisp_Object.
5933 (Fclear_image_cache): Expand meaning of the argument.
5934 (mark_image): Mark `dependencies' field.
5935 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
5936 (lface_hash): Use XHASH rather than XFASTINT.
5937 (face_at_buffer_position): Fix int -> EMACS_INT position.
5938 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
5939 (select_frame_for_redisplay): Remove code duplication.
5940 (redisplay_internal): Adapt arg to call to clear_image_caches.
5941
5942 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
5943
5944 * s/vms4-0.h:
5945 * s/vms4-2.h:
5946 * s/vms4-4.h:
5947 * s/vms5-5.h: Remove, unused.
5948
5949 * s/irix5-2.h:
5950 * s/irix6-0.h:
5951 * s/riscos5.h:
5952 * s/mach-bsd4-3.h:
5953 * m/mips4.h: Remove files for obsolete systems.
5954
5955 * Makefile.in:
5956 * filelock.c:
5957 * unexmips.c:
5958 * m/hp9000s300.h:
5959 * m/iris4d.h:
5960 * s/aix3-1.h:
5961 * s/hpux.h:
5962 * s/msdos.h:
5963 * s/usg5-0.h:
5964 * s/usg5-2-2.h:
5965 * s/usg5-2.h:
5966 * s/usg5-3.h: Remove references to obsolete variables.
5967
5968 * s/irix5-0.h: Remove, move all the contents ...
5969 * s/irix6-5.h: ... here. Simplify.
5970 * config.in: Regenerate.
5971
5972 2008-02-24 Jason Rumney <jasonr@gnu.org>
5973
5974 * w32term.c (x_draw_glyph_string_background): Clear the background
5975 manually when cleartype is in use.
5976 (x_draw_glyph_string_foreground): Draw text transparently when
5977 cleartype is in use.
5978
5979 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
5980 a font into it unless we have to.
5981
5982 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
5983
5984 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
5985 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
5986
5987 2008-02-18 Jason Rumney <jasonr@gnu.org>
5988
5989 * w32fns.c (Fw32_shell_execute): Encode parameters.
5990
5991 2008-02-09 Eli Zaretskii <eliz@gnu.org>
5992
5993 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
5994
5995 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
5996
5997 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
5998
5999 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
6000
6001 * xterm.c (x_set_offset): Don't change the gravity if
6002 CHANGE_GRAVITY is -1.
6003
6004 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
6005
6006 * fileio.c (auto_save_error_occurred): New var.
6007 (auto_save_error): Set it.
6008 (Fdo_auto_save): Don't overwrite the error message if an auto-save
6009 error occurred.
6010
6011 2008-02-23 Eli Zaretskii <eliz@gnu.org>
6012
6013 * w32.c (globals_of_w32): Add initializations for
6014 g_b_init_get_sid_sub_authority and
6015 g_b_init_get_sid_sub_authority_count.
6016
6017 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
6018
6019 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
6020 (font_parse_xlfd): Use them for sanity check.
6021 (Finternal_set_font_style_table): Make sure the table is bijective.
6022
6023 Consolidate the image_cache to the terminal struct.
6024 * termhooks.h (P_): Remove redundant def.
6025 (struct terminal): New field `image_cache'.
6026 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
6027 of FRAME_X_IMAGE_CACHE.
6028 * xterm.h (struct x_display_info): Remove image_cache field.
6029 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
6030 * w32term.h (struct w32_display_info): Remove image_cache field.
6031 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
6032 * macterm.h (struct mac_display_info): Remove image_cache field.
6033 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
6034 * xterm.c (x_term_init):
6035 * w32term.c (w32_term_init):
6036 * macterm.c (mac_term_init): Set the image_cache in the terminal.
6037 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
6038 Remove declarations.
6039 (clear_image_caches, mark_image_cache): New declarations.
6040 * xfaces.c (clear_face_cache):
6041 * xdisp.c (redisplay_internal): Use clear_image_caches.
6042 * image.c (clear_image_cache): Don't check that a frame is on
6043 a window-system before checking if it shares the same cache.
6044 (clear_image_caches): New function.
6045 (Fclear_image_cache): Use it.
6046 (mark_image): Move from allo.c.
6047 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
6048 * alloc.c (mark_image, mark_image_cache): Move to image.c.
6049 (mark_object): Don't call mark_image_cache for frames.
6050 (mark_terminals): Call mark_image_cache.
6051
6052 * lisp.h (Fdelete_terminal): Declare.
6053
6054 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
6055 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
6056 wrong_type_argument.
6057
6058 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
6059
6060 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
6061 malayalam.el, and tamil.el. Add sinhala.el.
6062
6063 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
6064
6065 * xterm.c (x_connection_closed): Consolidate identical tests.
6066 (x_delete_terminal): Don't crash if called via x_connection_closed.
6067
6068 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
6069
6070 * xdisp.c (decode_mode_spec): New arg string.
6071 (display_mode_element): Adjust for the above change.
6072
6073 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
6074
6075 * callint.c (Fcall_interactively): Use AREF.
6076
6077 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
6078
6079 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
6080
6081 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
6082
6083 * xfns.c (Fx_show_tip): Set string to " " if empty.
6084
6085 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
6086
6087 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
6088 with Qt.
6089
6090 2008-02-17 Kenichi Handa <handa@m17n.org>
6091
6092 * ftfont.c (ftfont_shape): Return Lispy number.
6093
6094 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
6095 for GCs.
6096 (Finternal_set_font_selection_order): Call font_update_sort_order
6097 only when enable_font_backend is set.
6098 (realize_x_face): Set face->font_info to that of default face only
6099 when enable_font_backend is set.
6100
6101 * xdisp.c (handle_composition_prop): Set it->c to the fist
6102 characte of the composed region.
6103 (fill_composite_glyph_string): Set base_face->font_info to
6104 s->font_info. Get a face for ascii from base_face->ascii_face.
6105 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
6106 with a face already decided.
6107 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
6108 non-negative.
6109 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
6110 call font_prepare_composition unconditionally.
6111
6112 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
6113
6114 * xterm.h (struct x_display_info): New member font.
6115
6116 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
6117 (x_set_mouse_face_gc, x_new_font): Likewise.
6118 (x_term_init): Setup display_info->font.
6119 (x_delete_terminal): Free display_info->font.
6120
6121 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
6122
6123 * ftxfont.c (ftxfont_default_fid): Delete it.
6124 (ftxfont_open): Set xfont->fid to 0.
6125 (ftxfont_end_for_frame): Clear data specific to the frame and the
6126 font-driver.
6127
6128 * xftfont.c (xftfont_default_fid): Delete it.
6129 (xftfont_open): Set xfont->fid to 0.
6130
6131 * fontset.c (FONTSET_OBJLIST): New macro.
6132 (fontset_find_font): Update font-object list of the fontset.
6133 (free_realized_fontset): New function.
6134 (free_face_fontset): Call free_realized_fontset.
6135 (Ffont_info): Call font_close_object only when enable_font_backend
6136 is set.
6137
6138 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
6139 [HAVE_NTGUI]: Include w32term.h.
6140 [MAC_OS]: Include macterm.ch.
6141 (font_otf_ValueRecord): Use make_number.
6142 (font_finish_cache): Fix handling of reference count.
6143 (font_clear_cache): Update num_fonts.
6144 (font_open_entity): Update smallest_char_width and
6145 smallest_font_height of the frame.
6146 (font_close_object): Update num_fonts.
6147 (Fclear_font_cache): Fix finding the target cache data.
6148
6149 2008-02-16 Glenn Morris <rgm@gnu.org>
6150
6151 * fontset.c (Finternal_char_font): Fix compilation warning.
6152
6153 2008-02-16 Eli Zaretskii <eliz@gnu.org>
6154
6155 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
6156 instead of char arrays. Enlarge the size of array passed to
6157 get_token_information.
6158
6159 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
6160 warnings.
6161
6162 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
6163
6164 * .gdbinit: Don't set `args', it breaks gdb --args.
6165
6166 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
6167
6168 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
6169 within a narrowed buffer.
6170
6171 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
6172
6173 * coding.c (decode_coding_object, encode_coding_object):
6174 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
6175
6176 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
6177
6178 * coding.c (coding_set_destination): Use BEG_BYTE rather than
6179 hardcoding 1.
6180 (detect_coding_system):
6181 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
6182 (string_char_to_byte, string_byte_to_char, insert_from_gap):
6183 * insdel.c (insert_from_gap):
6184 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
6185 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
6186 (string_to_multibyte):
6187 * character.c (chars_in_text, multibyte_chars_in_text):
6188 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
6189
6190 * character.h (FETCH_STRING_CHAR_ADVANCE)
6191 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
6192 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
6193 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
6194
6195 * casefiddle.c (casify_region): Only call after-change and composition
6196 functions on the part of the region that was changed.
6197
6198 * keyboard.c (read_avail_input):
6199 * frame.c (Fdelete_frame): Call Fdelete_terminal.
6200
6201 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6202
6203 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
6204 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
6205
6206 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
6207
6208 * w32menu.c (push_submenu_start, push_submenu_end)
6209 (push_left_right_boundary, push_menu_pane, push_menu_item):
6210 * keyboard.c (read_key_sequence): Don't pass args with side effects
6211 to AREF, it fails when compiling with -DENABLE_CHECKING.
6212
6213 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
6214
6215 * Makefile.in (${lispsource}international/charprop.el):
6216 Delete this target.
6217
6218 * search.c (boyer_moore): Fix incorrect synching of the trunk and
6219 emacs-unicode-2.
6220
6221 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6222
6223 * terminal.c (Fdelete_terminal): Clean up the `force' path.
6224
6225 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
6226
6227 * frame.c (Qnoelisp): New symbol.
6228 (syms_of_frame): Initialize it.
6229 (Fdelete_frame): Use it to distinguish a mere `force' passed from
6230 someharmles Elisp code, from a strong `force' from x_connection_closed.
6231 * frame.h (Qnoelisp): Declare.
6232 * xterm.c (x_connection_closed): Pass `noelisp'.
6233
6234 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
6235 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
6236 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
6237 rather than `int' for the type of `type'.
6238
6239 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
6240
6241 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
6242
6243 * Makefile.in (GNUC): Remove support for gcc-1.x.
6244
6245 2008-02-10 Richard Stallman <rms@gnu.org>
6246
6247 * lisp.h (ASET): Use AREF, not ASLOT.
6248
6249 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
6250
6251 * lisp.h (ASET): Check bounds.
6252
6253 2008-02-10 Glenn Morris <rgm@gnu.org>
6254
6255 * buffer.c (mode-name): Doc fix.
6256
6257 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
6258
6259 * Makefile.in:
6260 * emacs.c:
6261 * gmalloc.c:
6262 * keyboard.c:
6263 * lisp.h:
6264 * m/ibm370aix.h:
6265 * process.c:
6266 * regex.c:
6267 * s/hpux.h:
6268 * sysdep.c:
6269 * sysselect.h:
6270 * systty.h:
6271 * unexec.c:
6272 * w32term.c:
6273 * xsmfns.c:
6274 * xterm.c: Remove code that deals with obsolete variables.
6275
6276 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
6277
6278 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
6279 nothing else needs it anymore.
6280
6281 2008-02-09 Eli Zaretskii <eliz@gnu.org>
6282
6283 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
6284 instead of unibyte_char_to_multibyte.
6285
6286 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
6287
6288 * s/gnu-linux.h: Remove commented out code.
6289
6290 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
6291
6292 * Makefile.in: Update what RMS says about using autoconf.
6293 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
6294 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
6295 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
6296 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
6297
6298 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
6299
6300 * keymap.c (Fkey_description): Move side effect outside of macro call.
6301
6302 * xfaces.c (Finternal_make_lisp_face):
6303 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
6304
6305 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
6306 (syms_of_fontset): Use ASET.
6307
6308 * fns.c (concat): Move side effect outside of macro call.
6309 (hash_clear): Use ASET.
6310
6311 2008-02-08 Richard Stallman <rms@gnu.org>
6312
6313 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
6314 If FORCE, and frame has a surrogate minibuffer for another frame,
6315 delete the other frame first.
6316
6317 2008-02-07 Timo Savola <timo.savola@iki.fi>
6318
6319 * xterm.c (x_detect_focus_change): Handle embed client message.
6320 (handle_one_xevent): Ditto.
6321 (handle_one_xevent): If embedded and we get a button press/release,
6322 request focus.
6323 (xembed_set_info, xembed_send_message): New functions.
6324 (x_make_frame_visible): Call xembed_set_info if embedded.
6325 (x_make_frame_invisible): Call xembed_set_info if embedded.
6326 (x_term_init): Initialize Xatom_XEMBED.
6327 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
6328 (x_iconify_frame): Ditto.
6329
6330 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
6331 (enum xembed_info, enum xerm srmbed_message, enum xembed_focus)
6332 (enum xembed_modifier, enum xembed_accelerator): New.
6333 (xembed_set_info, xembed_send_message): Declare.
6334 (FRAME_X_EMBEDDED_P): New.
6335
6336 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
6337 gtk_plug_new.
6338
6339 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
6340 window ID of a frame.
6341 (x_window): Reparent frame if embedded.
6342 (Fx_create_frame): Don't set border width if embedded.
6343
6344 * emacs.c (USAGE3): Add --parent-id.
6345 (standard_args): Ditto.
6346
6347 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
6348
6349 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
6350
6351 2008-02-07 Jim Meyering <meyering@redhat.com>
6352
6353 Use "do...while (0)", not "if (1)...else" in macro definitions.
6354 The latter provokes a warning from gcc about the empty else, when
6355 followed by ";". Also, without that trailing semicolon, it would
6356 silently swallow up any following statement.
6357 * syntax.h (SETUP_SYNTAX_TABLE)
6358 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
6359 * buffer.h (DECODE_POSITION): Likewise.
6360 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
6361 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
6362 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
6363 (FETCH_CHAR_ADVANCE): Likewise.
6364 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
6365
6366 2008-02-07 Jim Meyering <meyering@redhat.com>
6367
6368 * lread.c [lint]: Don't include <sys/inode.h>.
6369
6370 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
6371
6372 * xselect.c (x_handle_dnd_message):
6373 * xmenu.c (digest_single_submenu, xmenu_show):
6374 * xdisp.c (with_echo_area_buffer_unwind_data)
6375 (format_mode_line_unwind_data, unwind_format_mode_line)
6376 (display_menu_bar):
6377 * eval.c (Ffetch_bytecode):
6378 * doc.c (store_function_docstring):
6379 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
6380 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
6381 * buffer.c (add_overlay_mod_hooklist): Use ASET.
6382
6383 2008-02-07 Kenichi Handa <handa@m17n.org>
6384
6385 * ftxfont.c (ftxfont_open): Don't set
6386 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
6387
6388 * ftfont.c (ftfont_open): Fix previous change.
6389
6390 2008-02-06 Jason Rumney <jasonr@gnu.org>
6391
6392 * w32font.c (w32font_text_extents): Fill in lbearing metric.
6393 Use cached metrics for ASCII characters.
6394 (w32font_open_internal): Don't set font's owning_frame.
6395 Cache metrics for ASCII characters.
6396
6397 * w32font.h (struct w32font_info): Add ascii_metrics.
6398 Remove owning_frame.
6399
6400 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
6401
6402 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
6403 to negative value.
6404
6405 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
6406
6407 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
6408
6409 * charset.c (syms_of_charset): Set QCtest and Qeq.
6410
6411 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
6412
6413 * process.c (Fstart_process):
6414 * callproc.c (Fcall_process): Handle the case where
6415 Funhandled_file_name_directory returns nil.
6416
6417 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
6418 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
6419 * font.c (check_gstring): Use them and AREF to access the vector before
6420 we know it's really a gstring.
6421 (Ffont_shape_text): Fix typo.
6422 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Oject mixups.
6423
6424 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
6425 Declare.
6426
6427 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
6428
6429 2008-02-05 Jason Rumney <jasonr@gnu.org>
6430
6431 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
6432 Set smallest_font_height and smallest_char_width in display info.
6433
6434 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
6435
6436 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
6437
6438 2008-02-05 Miles Bader <miles@gnu.org>
6439
6440 * xfaces.c (get_lface_attributes, merge_named_face)
6441 (lookup_named_face, lookup_derived_face, realize_named_face):
6442 Revert 2008-02-01 change by cyd@stupidchicken.com.
6443
6444 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
6445
6446 * fontset.c (Ffontset_info): Handle the case of inhibitting the
6447 fallback fonts.
6448 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
6449
6450 2008-02-04 Jason Rumney <jasonr@gnu.org>
6451
6452 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
6453 set full_name.
6454 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
6455
6456 2008-02-03 Jason Rumney <jasonr@gnu.org>
6457
6458 * makefile.w32-in (OBJ1): Include font.o here.
6459 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
6460
6461 2008-02-02 Jason Rumney <jasonr@gnu.org>
6462
6463 * makefile.w32-in (temacs): Bump EMHEAP to 21.
6464
6465 2008-02-01 Jason Rumney <jasonr@gnu.org>
6466
6467 * s/cygwin.h: Define VIRT_ADDR_VARIES.
6468
6469 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
6470
6471 2008-02-01 Andreas Schwab <schwab@suse.de>
6472
6473 * Makefile.in (shortlisp, lisp): Update for rename of
6474 ../lisp/language/myanmar.el.
6475
6476 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
6477
6478 * xfaces.c (get_lface_attributes): Delete function.
6479 (merge_named_face, lookup_named_face, lookup_derived_face)
6480 (realize_named_face): Call lface_from_face_name directly, and use
6481 the fact that merge_face_vectors does not alter its FROM argument.
6482
6483 2008-02-01 Jason Rumney <jasonr@gnu.org>
6484
6485 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
6486 input in the default locale. Handle non-Unicode multibyte input.
6487
6488 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6489
6490 * fontset.c (reorder_font_vector): Exclude nil elements from the
6491 font group. Don't try multiple fonts.
6492 (fontset_font): Adjust for the above change.
6493 (Finternal_char_font): Return nil if the found font doesn't
6494 contain the character ch.
6495
6496 * Makefile.in (lisp, shortlisp): Add cham.el.
6497
6498 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6499
6500 * font.h (FONTP): Make it return 1 also for a font-object.
6501
6502 * .gdbinit (xfontset): New function.
6503
6504 * font.c (font_find_for_lface): Check if the character C is
6505 supported or not only for the first font.
6506
6507 * fontset.c (reorder_font_vector): Fix typo.
6508 (fontset_find_font): Don't add a font-spec specifying a script.
6509 Use 0 (not Qt) for the indication of empty font-group. Change the
6510 format of RFONT-DEF. Return Qt if no font in the font-group
6511 support the character.
6512 (fontset_font): Adjust for the above change. If no font was
6513 found the character, remember that.
6514 (face_for_char): Adjust for the change of RFONT-DEF.
6515 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
6516 no font for the target.
6517 (Finternal_char_font): Adjust for the change of RFONT-DEF.
6518
6519 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6520
6521 * font.c (font_load_for_face): Handle the case that the font in
6522 face->lface is a string.
6523
6524 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6525
6526 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
6527
6528 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6529
6530 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
6531 Fix previous change. If the frame is not on a window system,
6532 signal an error.
6533
6534 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6535
6536 * coding.c (decode_coding_object, encode_coding_object): Adjust
6537 marker positions after conversion.
6538
6539 * lisp.h (struct Lisp_Marker): New member need_adjustment.
6540
6541 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6542
6543 * font.c (font_find_for_lface): Fix the handling of the return
6544 value of font_has_char.
6545 (Ffont_shape_text): Fix previous change.
6546
6547 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
6548 (fontset_ref_and_range): Delete it.
6549 (fontset_find_font): Call char_table_ref_and_range instead of
6550 FONTSET_REF_AND_RANGE.
6551 (make_fontset): Don't setup font groups of Latin here.
6552 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
6553 (new_fontset_from_font): Make the specified font the default for
6554 all Latin characters.
6555
6556 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6557
6558 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
6559 is on a window system before accessing the fontset of the frame.
6560
6561 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6562
6563 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
6564
6565 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
6566 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
6567
6568 * font.c (Ffont_shape_text): If the font driver doesn't have a
6569 shaper function, make zero-width glyphs to have at least one-pixel
6570 width. Fix setting of `to' field of glyphs.
6571
6572 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6573
6574 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
6575 glyphs.
6576
6577 * font.h (struct font_driver): Improve docstring of member `shape'.
6578
6579 2008-02-01 Kenichi Handa <handa@m17n.org>
6580
6581 * composite.c (syms_of_composite): Fix docstring of
6582 auto-composition-function.
6583
6584 * font.h (LGLYPH_SIZE): New macro.
6585
6586 * font.c (Ffont_fill_gstring): Stop filling when a character not
6587 supported by the font is found.
6588 (Ffont_shape_text): When a shape callback function returns nil,
6589 try at most two more times with larger gstring.
6590 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
6591
6592 * xdisp.c (handle_auto_composed_prop): Change the argument to
6593 auto-composition-function.
6594
6595 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
6596 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
6597 Lispy glyph and store it in the lgstring.
6598
6599 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
6600
6601 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
6602
6603 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6604
6605 * font.c (Ffont_shape_text): Avoid unnecessary composition.
6606
6607 * fontset.c (Vfont_encoding_charset_alist): New variable.
6608 (syms_of_fontset): DEFVAR it.
6609 (reorder_font_vector, fontset_find_font): Optimize for the case of
6610 no need of reordering.
6611 (face_for_char): Map the charset property by
6612 Vfont_encoding_charset_alist.
6613
6614 2008-02-01 Jason Rumney <jasonr@gnu.org>
6615
6616 * w32font.c (logfonts_match): Don't check adstyle here.
6617 (font_matches_spec): Check here against physical font instead.
6618 (add_font_entity_to_list): Avoid some substitutions.
6619
6620 * font.c (font_parse_fcname): Default weight and slant to normal.
6621 (font_score): Prefer normal fonts if weight or slant unspecified.
6622 (font_score) [WINDOWSNT]: Scale weight difference down to closer
6623 match freetype scores.
6624
6625 2008-02-01 Jason Rumney <jasonr@gnu.org>
6626
6627 * w32font.c (w32font_text_extents): Don't use the frame stored in the
6628 font, as it may have been deleted.
6629 (w32_enumfont_pattern_entity): Map generic family to adstyle using
6630 most common hyphenless variation.
6631 (logfonts_match): Check generic family.
6632 (font_matches_spec): Don't check generic family here.
6633 (fill_in_logfont): Set generic family based on adstyle.
6634
6635 * w32font.h (w32font_get_cache): Update declaration.
6636
6637 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6638
6639 * ftfont.c (ftfont_get_cache): Adjust the argument type.
6640
6641 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
6642 If none of the new drivers are available, call font_update_drivers
6643 with the old drivers.
6644
6645 * w32font.c (w32font_get_cache): Adjust the argument type.
6646
6647 * xfont.c (xfont_get_cache): Adjust the argument type.
6648
6649 * font.h (struct font_driver): Change argument type of get_cache.
6650
6651 * xftfont.c (xftfont_start_for_frame): Delete prototype.
6652
6653 * font.c (Ffont_get): Fix arguments to Fassoc.
6654 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
6655 (font_clear_cache): New function.
6656 (font_list_entities, font_matching_entity): Use font_get_cache.
6657 (font_update_drivers): Call font_clear_cache when finishing a driver.
6658
6659 * fontset.c (fontset_find_font): Fix previous change.
6660
6661 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6662
6663 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
6664 dpyinfo->font_table.
6665 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
6666 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
6667
6668 * font.c (font_at): Handle the case that the arg C is negative.
6669 Handle the unibyte case.
6670 (Ffont_at): Call font_at with the arg C -1.
6671
6672 * xdisp.c (handle_auto_composed_prop): Don't get a character at
6673 the position here, and call font_at with the arg C -1.
6674 Don't check the range of the existing composition at the point.
6675
6676 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6677
6678 * fontset.c (fontset_add): New args charset_id and family.
6679 Change caller.
6680 (load_font_get_repertory, fontset_find_font): Assume that
6681 font_spec is always a font-spec object.
6682 (Fset_fontset_font): Always store a font-spec object in a fontset.
6683
6684 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
6685 instead of get_property_and_range.
6686
6687 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6688
6689 * xftfont.c (struct xftfont_info): Delete the member ft_face.
6690 (xftfont_open): Don't keep locking face.
6691 (xftfont_close): Don't unlock face.
6692 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
6693
6694 * fontset.c (fontset_find_font): Don't prefer a font of
6695 supplementary charset.
6696
6697 2008-02-01 Kenichi Handa <handa@m17n.org>
6698
6699 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
6700 script, langsys_tag to langsys, new member script.
6701 (OTF_TAG_STR): Terminate by '\0'.
6702 (ftfont_get_open_type_spec): If :otf prop is is spec, Limit the
6703 listing to the script specified in that property. Fix arg to
6704 OTF_check_features.
6705
6706 2008-02-01 Jason Rumney <jasonr@gnu.org>
6707
6708 * w32font.h: New file.
6709
6710 * w32font.c: Include it.
6711 (struct w32font_info): Add owning_frame field. Move to w32font.h.
6712 (w32font_open): Set owning_frame.
6713 (w32font_text_extents): Use owning_frame.
6714 (struct font_callback_data): Add opentype_only field.
6715 (add_font_entity_to_list): Use it to filter fonts.
6716 Don't check against full name.
6717 (w32font_list_internal): New function.
6718 (w32font_list): Use it.
6719 (w32font_match_internal): New function.
6720 (w32font_match): Use it.
6721 (w32font_open_internal): New function.
6722 (w32font_open): Use it.
6723 (w32font_get_cache, w32font_close, w32font_has_char)
6724 (w32font_encode_char, w32font_text_extents, w32font_draw):
6725 Make non-static.
6726
6727 * makefile.w32-in (w32font.o): Depend on w32font.h.
6728
6729 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6730
6731 * charset.c (Fdefine_charset_internal): Record a supplementary
6732 charset at the tail of Vcharset_order_list.
6733
6734 * font.c (Ffont_shape_text): Fix the return value.
6735
6736 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
6737
6738 * xdisp.c (handle_auto_composed_prop): Fix previous change.
6739
6740 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6741
6742 * ftfont.c (struct OpenTypeSpec): New struct.
6743 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
6744 (ftfont_get_open_type_spec): New function.
6745 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
6746
6747 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
6748
6749 2008-02-01 Jason Rumney <jasonr@gnu.org>
6750
6751 * w32font.c (add_font_entity_to_list): Compare only the beginning
6752 of full name.
6753
6754 2008-02-01 Kenichi Handa <handa@m17n.org>
6755
6756 * xdisp.c (handle_auto_composed_prop): Simplify the code.
6757 Never return HANDLED_RECOMPUTE_PROPS.
6758
6759 2008-02-01 Kenichi Handa <handa@m17n.org>
6760
6761 * font.c (font_gstring_produce): Delete it.
6762
6763 * composite.h (COMPOSITION_METHOD):
6764 Handle COMPOSITION_WITH_GLYPH_STRING.
6765
6766 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6767
6768 * xfont.c (Qx): Delete.
6769 (syms_of_xfont): Don't initialize Qx.
6770
6771 * composite.h (enum composition_method):
6772 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
6773
6774 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6775
6776 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
6777 (choose_face_font): Accept new form of font-spec.
6778
6779 * frame.h (font_driver_list): Declare it unconditionally.
6780 (struct frame): Define members font_driver_list and font_data_list
6781 unconditionally.
6782
6783 * fontset.c: Include "font.h" unconditionally.
6784 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
6785 (Fset_fontset_font): Accept a font-spec object.
6786
6787 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
6788 PIXEL_SIZE part a wild card.
6789
6790 * dispextern.h (struct glyph_string): Define members clip and
6791 num_clips unconditionally.
6792 (struct face): Define members font_info and extra unconditionally.
6793
6794 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
6795 ftfont_info only when HAVE_LIBOTF is defined.
6796
6797 2008-02-01 Andreas Schwab <schwab@suse.de>
6798
6799 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
6800 and end.
6801
6802 2008-02-01 Jason Rumney <jasonr@gnu.org>
6803
6804 * w32font.c (w32font_driver): Add new fields.
6805
6806 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6807
6808 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
6809 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
6810 (LIBES): Add @M17N_FLT_CFLAGS@.
6811
6812 * composite.c (compose_text): Don't treat the new style
6813 composition specially.
6814
6815 * emacs.c (main): Call syms_of_font unconditionally.
6816
6817 * font.h (FONT_ENTITY_NOT_LOADABLE)
6818 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
6819 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
6820 (struct font_driver): New member shape.
6821 (font_registry_charsets): Extern it.
6822 (font_find_for_lface, font_prepare_composition): Adjust prototype.
6823 (font_otf_capability, font_drive_otf): Delete their externs.
6824
6825 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
6826 (font_charset_alist, font_registry_charsets): Move from xfont.c
6827 and rename.
6828 (font_prop_validate_otf): New function.
6829 (font_property_table): Register it for QCotf.
6830 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
6831 (font_drive_otf): Delete.
6832 (font_prepare_composition): New arg F. Adjust for the change of
6833 lispy gstring.
6834 (font_find_for_lface): New arg C.
6835 (font_load_for_face): Adjust for the change of font_find_for_lface.
6836 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
6837 lispy gstring.
6838 (Ffont_shape_text): New function.
6839 (Fopen_font): If the font size is not given, use 12-pixel.
6840 (Ffont_at): New arg STRING.
6841 (syms_of_font): Initalize font_charset_alist.
6842 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
6843 conditionally.
6844
6845 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
6846 fonts of the same font-spec. Change the format of RFONT-DEF.
6847 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
6848 Adjust for the change of RFONT-DEF.
6849 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
6850
6851 * ftfont.h: New file.
6852
6853 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
6854 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
6855 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
6856 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
6857 font_otf_capability and font_drive_otf, set ftfont_shape.
6858 (ftfont_list): Adjust for the change of :otf property value.
6859 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
6860 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
6861 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
6862 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
6863 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
6864 (otf_gstring, gstring, m17n_flt_initialized): New variables.
6865
6866 * w32term.c (x_draw_composite_glyph_string_foreground):
6867 Adjust for the change of lispy gstring.
6868
6869 * xdisp.c (handle_composition_prop): Adjust for the change of
6870 lispy gstring. Call a function for auto-composition with the
6871 third arg it->window.
6872 (fill_composite_glyph_string): Adjust for the change of lispy string.
6873 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
6874
6875 * xfaces.c (set_font_frame_param): Adjust for the change of
6876 font_find_for_lface.
6877
6878 * xfont.c (x_font_charset_alist): Move to font.c and rename.
6879 (xfont_registry_charsets): Likewise. Change caller.
6880 (syms_of_xfont): Don't handle x_font_charset_alist.
6881
6882 * xftfont.c: Include "ftfont.h".
6883 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
6884 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
6885 (xftfont_close) [HAVE_LIBOTF]: Close otf.
6886 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
6887 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
6888 Set xftfont_driver.shape to xftfont_shape.
6889
6890 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
6891 the change of lispy gstring.
6892
6893 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6894
6895 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
6896
6897 2008-02-01 Jason Rumney <jasonr@gnu.org>
6898
6899 * w32font.c (w32font_draw): Fill background manually.
6900
6901 2008-02-01 Jason Rumney <jasonr@gnu.org>
6902
6903 * font.c (Qfontp): Remove unused symbol.
6904 (QCantialias): New symbol.
6905 (syms_of_font): Define it.
6906 (font_property_table): Set a validator for QCantialias.
6907
6908 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
6909 Define if not already.
6910 (QCfamily): Share with xfaces.c.
6911 (Qstandard, Qsubpixel, Qnatural): New symbols.
6912 (syms_of_w32font): Define them. Don't define QCfamily here.
6913 (w32_antialias_type, lispy_antialias_type): New functions.
6914 (w32_enumfont_pattern_entity): New arg requested_font.
6915 Set antialias parameter if non-default was requested.
6916 (fill_in_logfont): Fill in lfQuality if :antialias specified.
6917
6918 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6919
6920 * lread.c (read1): Undo the previous change.
6921
6922 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
6923
6924 * frame.c (Fdelete_frame): Call font_update_drivers only when
6925 USE_FONT_BACKEND is defined.
6926
6927 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6928
6929 * font.h (struct font_bitmap): New member bits_per_pixel.
6930 (struct font_driver): New members start_for_frame and end_for_frame.
6931 (struct font_data_list): New struct.
6932 (font_put_frame_data, font_get_frame_data): Extern them.
6933
6934 * frame.h (struct frame): New member font_data_list.
6935
6936 * font.c (font_update_drivers): Call driver->start_for_frame and
6937 driver->end_for_frame at proper timings.
6938 (font_put_frame_data, font_get_frame_data): New functions.
6939 (Ffont_spec): Add usage in the docstring.
6940
6941 * frame.c (make_frame): Initialize f->font_data_list to NULL.
6942 (Fdelete_frame): Call font_update_drivers.
6943
6944 * xftfont.c (struct xftface_info): Delete the member xft_draw.
6945 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
6946 (xftfont_get_xft_draw): New function.
6947 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
6948 (xftfont_end_for_frame): New function.
6949 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
6950
6951 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
6952 Change argument. Cache GCs in the per-frame data.
6953 (struct ftxfont_frame_data): New struct.
6954 (ftxfont_draw_bitmap): New arg gc_fore and flush.
6955 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
6956 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
6957 (ftxfont_end_for_frame): New function.
6958 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
6959
6960 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
6961
6962 2008-02-01 Kenichi Handa <handa@m17n.org>
6963
6964 * xselect.c (Vselection_coding_system)
6965 (Vnext_selection_coding_system): Delete them.
6966 (syms_of_xselect): Don't declare selection-coding-system and
6967 next-selection-coding-system. They are declared in select.el.
6968
6969 2008-02-01 Jason Rumney <jasonr@gnu.org>
6970
6971 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
6972
6973 * w32fns.c: Include imm.h.
6974 (get_composition_string_fn, get_ime_context_fn): New optional
6975 system functions.
6976 (globals_of_w32fns): Load them from imm32.dll.
6977 (ignore_ime_char): New flag.
6978 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
6979 WM_IME_ENDCOMPOSITION messages.
6980
6981 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
6982 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
6983
6984 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6985
6986 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
6987 (READCHAR_REPORT_MULTIBYTE): New macro.
6988 (readchar): New 2nd arg MULTIBYTE.
6989 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
6990 Make symbol's name multibyte according to the multibyteness of the
6991 source.
6992
6993 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6994
6995 * xfaces.c (face_for_overlay_string): Call lookup_face with
6996 correct arguments (fix of synching with the trunk).
6997
6998 2008-02-01 Kenichi Handa <handa@m17n.org>
6999
7000 * font.c (font_prop_validate_symbol, font_prop_validate_style)
7001 (font_prop_validate_non_neg, font_prop_validate_spacing):
7002 Delete argument prop_index.
7003 (font_property_table): Change arguments to validater. Change Callers.
7004 (font_lispy_object): Delete.
7005 (font_at): Use font_find_object instead fo font_lispy_object.
7006
7007 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7008
7009 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
7010 and file names.
7011
7012 2008-02-01 Jason Rumney <jasonr@gnu.org>
7013
7014 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
7015 (font_matches_spec): Remove debug output.
7016 (add_font_entity_to_list): Avoid using substituted fonts.
7017
7018 2008-02-01 Jason Rumney <jasonr@gnu.org>
7019
7020 * doc.c (Fsnarf_documentation):
7021 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
7022
7023 2008-02-01 Miles Bader <miles@gnu.org>
7024
7025 * dispextern.h (struct glyph_row): Only define "clip" field if
7026 HAVE_WINDOW_SYSTEM is defined.
7027
7028 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
7029
7030 Fix up multi-tty merge.
7031
7032 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
7033 and indentation.
7034
7035 * xfaces.c (free_realized_face, clear_face_gcs):
7036 Include font_done_for_face in the input_blocked section, just in case.
7037
7038 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
7039 (get_char_face_and_encoding): Undo last change and remove the *other*
7040 duplicate definition (i.e. keep the one that's better scoped and that
7041 includes code for the font-backend).
7042
7043 * terminal.c (create_terminal): Default keyboard_coding to
7044 `no-conversion' and terminal_coding to `undecided'.
7045
7046 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
7047
7048 * fontset.c (free_realized_fontsets): Check that the table entry does
7049 contain a fontset before trying to compare it to `base'.
7050
7051 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
7052 syms_of_charset, and syms_of_coding earlier because init_window_once
7053 now needs Vcoding_system_hash_table to be setup.
7054
7055 * coding.h (default_buffer_file_coding): Remove.
7056
7057 * coding.c (default_buffer_file_coding): Remove.
7058 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
7059 than ->symbol, and use the terminal-local coding system.
7060 (syms_of_coding): Don't setup the coding-systems that are not
7061 terminal-local.
7062 (Fdefine_coding_system_internal): Use XCAR/XCDR.
7063
7064 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
7065 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
7066
7067 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
7068 in chartab.c and were re-added here by mistake.
7069 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
7070
7071 * doc.c (Fsnarf_documentation):
7072 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
7073 src to etc.
7074
7075 * ChangeLog.10: Add mistakenly removed entry.
7076
7077 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
7078
7079 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
7080
7081 2008-02-01 Miles Bader <miles@gnu.org>
7082
7083 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
7084 Add extra args to FACE_FOR_CHAR.
7085
7086 2008-02-01 Kenichi Handa <handa@m17n.org>
7087
7088 * keymap.c (where_is_internal_1): If key is a cons, store the copy
7089 in sequence.
7090
7091 * chartab.c (map_sub_char_table, map_char_table): If the range
7092 contains just one character, call the function with that character
7093 even if the depth is not 3.
7094
7095 2008-02-01 Jason Rumney <jasonr@gnu.org>
7096
7097 * w32font.c (w32font_text_extents): Calculate metrics for the
7098 whole string.
7099
7100 2008-02-01 Jason Rumney <jasonr@gnu.org>
7101
7102 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
7103
7104 2008-02-01 Jason Rumney <jasonr@gnu.org>
7105
7106 * w32term.c (x_set_glyph_string_clipping): Use
7107 get_glyph_string_clip_rects.
7108 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
7109 Adjust for the change of struct glyph_string.
7110
7111 * w32font.c (w32font_draw): Do clipping here.
7112
7113 2008-02-01 Kenichi Handa <handa@m17n.org>
7114
7115 * xftfont.c (xftfont_draw): Adjust for the change of struct
7116 glyph_string.
7117
7118 * xterm.c (x_set_glyph_string_clipping): Use
7119 get_glyph_string_clip_rects.
7120 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
7121 Adjust for the change of struct glyph_string.
7122
7123 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
7124 the resulting clip(s}.
7125 (expose_overlaps): Add arg r. Change callers. Set it to
7126 row->clip temporarily.
7127 (expose_window): Redraw rows overlapping the exposed area.
7128
7129 * dispextern.h (struct glyph_row): New member clip.
7130 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
7131 clip_height, new member clip, and num_clips.
7132
7133 2008-02-01 Kenichi Handa <handa@m17n.org>
7134
7135 * data.c (Fchar_or_string_p): Fix docstring.
7136
7137 2008-02-01 Kenichi Handa <handa@m17n.org>
7138
7139 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
7140 create a temporal XftDraw object.
7141
7142 2008-02-01 Kenichi Handa <handa@m17n.org>
7143
7144 * font.c (Ffontp): Fix docstring.
7145
7146 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
7147 strong evidence of ISO-2022.
7148
7149 2008-02-01 Kenichi Handa <handa@m17n.org>
7150
7151 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
7152 SYNTAX_ENTRY_FOLLOW_PARENT.
7153
7154 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
7155
7156 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
7157 its type.
7158 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
7159 Update to the new type of weak_hash_tables and next_weak.
7160
7161 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
7162 a plain C pointer to Lisp_Hash_Table.
7163
7164 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
7165 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
7166 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
7167 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
7168 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
7169 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
7170 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
7171 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
7172 (GC_EQ): Remove since they've been identical to their non-GC_
7173 alter-egos ever since the markbit was eradicated.
7174
7175 * alloc.c:
7176 * buffer.c:
7177 * buffer.h:
7178 * data.c:
7179 * fileio.c:
7180 * filelock.c:
7181 * fns.c:
7182 * frame.h:
7183 * lisp.h:
7184 * macterm.c:
7185 * print.c:
7186 * process.c:
7187 * w32fns.c:
7188 * w32menu.c:
7189 * w32term.c:
7190 * xfns.c:
7191 * xmenu.c:
7192 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
7193
7194 2008-02-01 Kenichi Handa <handa@m17n.org>
7195
7196 * chartab.c (map_sub_char_table): Make it work for the top-level
7197 char-table. Fix handling of parent char-table.
7198 (map_char_table): Adjust for the above change.
7199
7200 2008-02-01 Jason Rumney <jasonr@gnu.org>
7201
7202 * w32font.c (Qgdi): Rename from Qw32.
7203
7204 2008-02-01 Jason Rumney <jasonr@gnu.org>
7205
7206 * w32bdf.c (get_quoted_string): Make function static.
7207
7208 2008-02-01 Kenichi Handa <handa@m17n.org>
7209
7210 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
7211 bigger ascent and descent than those of the font, use them as
7212 font's ascent and descent.
7213
7214 2008-02-01 Kenichi Handa <handa@m17n.org>
7215
7216 * Makefile.in (${lispsource}international/charprop.el): Move this
7217 target within "#ifdef HAVE_UNIDATA" and "#endif".
7218
7219 2008-02-01 Kenichi Handa <handa@m17n.org>
7220
7221 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
7222 (shortlisp): Add ../lisp/language/tai-viet.el.
7223
7224 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
7225
7226 * Makefile.in (${lispsource}international/charprop.el): Depend on
7227 temacs${EXEEXT}.
7228
7229 2008-02-01 Jason Rumney <jasonr@gnu.org>
7230
7231 * w32font.c (w32font_close): Delete the GDI font object.
7232
7233 * w32menu.c: Include character.h.
7234
7235 * w32proc.c: Likewise.
7236
7237 * w32select.c: Likewise.
7238
7239 * makefile.w32-in (w32proc.o): Depend on character.h.
7240
7241 2008-02-01 Jason Rumney <jasonr@gnu.org>
7242
7243 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
7244
7245 * w32menu.c (syms_of_w32menu): Likewise.
7246
7247 * w32proc.c (syms_of_ntproc): Likewise.
7248
7249 * w32select.c (syms_of_w32select): Likewise.
7250
7251 * w32term.c (syms_of_w32term): Likewise.
7252
7253 2008-02-01 Jason Rumney <jasonr@gnu.org>
7254
7255 * w32font.c (w32font_draw): Delete brush after using it.
7256
7257 2008-02-01 Jason Rumney <jasonr@gnu.org>
7258
7259 * w32font.c (w32font_open): Don't set font_idx.
7260 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
7261 to font settings.
7262 (w32font_draw): Fill background explicitly.
7263
7264 2008-02-01 Jason Rumney <jasonr@gnu.org>
7265
7266 * w32term.c (w32_initialize): Don't call w32font_initialize.
7267
7268 * w32font.c (w32font_info): Remove subranges.
7269 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
7270 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
7271 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
7272 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
7273 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
7274 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
7275 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
7276 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
7277 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
7278 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
7279 New symbols.
7280 (font_callback_data): New struct.
7281 (w32font_list, w32font_match): Use it.
7282 (w32font_open): Don't populate subranges.
7283 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
7284 (w32font_encode_char): Always return unicode code-point as-is.
7285 (w32font_text_extents): Supply a tranformation matrix to
7286 GetGlyphOutline. Never look up by glyph index. Avoid looping
7287 twice. Use unicode version of GetTexExtentPoint32 instead of
7288 glyph index version.
7289 (set_fonts_frame): Remove.
7290 (w32_enumfont_pattern_entity): Add frame parameter, use it to
7291 set frame parameter. Use backward compatible fake foundries.
7292 Save generic family in extra slot under QCfamily. Make width slot
7293 constant. Save QCspacing value. Save list of scripts instead of
7294 binary subranges.
7295 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
7296 (add_font_entity_to_list): Use font_callback_data struct. Filter
7297 unwanted fonts.
7298 (add_one_font_entity_to_list): Use font_callback_data struct.
7299 (w32_registry): Default to iso10646_1.
7300 (fill_in_logfont): Use dpi from extra slot. Don't bother with
7301 string font registries. Don't fill in font name if it is a generic
7302 family name, fill family instead. Use spacing, family and script
7303 extra info to fill pitch, family and charset fields.
7304 (list_all_matching_fonts): Use font_callback_data struct.
7305 (unicode_range_for_char): Remove.
7306 (font_supported_scripts): New function.
7307 (w32font_initialize): Remove.
7308 (syms_of_w32font): Update which symbols are defined.
7309
7310 2008-02-01 Jason Rumney <jasonr@gnu.org>
7311
7312 * font.c (font_pixel_size): Reverse assq_no_quit args.
7313
7314 * w32term.h (FONT_WIDTH): Report max width, not average.
7315 (FONT_MAX_WIDTH): Remove.
7316 (FONT_AVG_WIDTH): New macro.
7317
7318 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
7319 redefinition of FONT_WIDTH.
7320
7321 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
7322 (w32_cache_char_metrics): Use FONT_WIDTH.
7323
7324 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
7325
7326 2008-02-01 Jason Rumney <jasonr@gnu.org>
7327
7328 * w32font.c (w32font_open): Make lfHeight negative.
7329
7330 * w32fns.c (x_default_font_parameter): Use new style font name.
7331 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
7332
7333 2008-02-01 Jason Rumney <jasonr@gnu.org>
7334
7335 * w32font.c (QCsubranges): New symbol.
7336 (w32font_open, w32font_has_char): Get subranges from subproperty
7337 of extra.
7338 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
7339 (syms_of_w32font): Define :subranges symbol.
7340
7341 * font.c (font_put_extra): Expose externally.
7342
7343 * font.h (font_put_extra): Move declaration from font.c.
7344
7345 * font.c (Ffont_get): Use font driver to determine otf capability.
7346 (adjust_anchor): Check if driver defines anchor_point before using.
7347
7348 * w32font.c (w32font_open): Handle size, height and pixel_size better.
7349 (w32font_draw): Use options.
7350 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
7351 Fix detection of truetype fonts.
7352 (registry_to_w32_charset): Handle charsets other than iso8859-1
7353 expressed as lisp symbols.
7354 (w32_registry): Express charset as lisp symbol.
7355 (fill_in_logfont): Reverse pixel and point height logic.
7356 Don't set width here. Set quality to default.
7357
7358 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
7359 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
7360
7361 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
7362 Remove redundant loop and allocation.
7363
7364 * makefile.w32-in (font.o, w32font.o): New objects.
7365 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
7366 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
7367
7368 * xdisp.c (fill_composite_glyph_string): Make the first arg to
7369 STORE_XCHARB a valid l-value.
7370
7371 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
7372 calculations for non-Truetype fonts.
7373 (x_draw_glyph_string): Sync with xterm.c.
7374 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
7375 Remove redundant code.
7376 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
7377
7378 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
7379 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
7380
7381 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
7382 (x_to_w32_charset, w32_to_x_charset): Expose externally.
7383
7384 * w32font.c: New file for w32 font backend.
7385
7386 2008-02-01 Kenichi Handa <handa@m17n.org>
7387
7388 * term.c: Don't include "buffer.h" twice.
7389
7390 2008-02-01 Kenichi Handa <handa@m17n.org>
7391
7392 * character.c (Funibyte_string): New function.
7393 (syms_of_character): Defsubr it.
7394
7395 2008-02-01 Jason Rumney <jasonr@gnu.org>
7396
7397 * w32term.c [USE_FONT_BACKEND]:
7398 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
7399 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
7400 (x_draw_glyph_string, x_draw_glyph_string_foreground)
7401 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
7402 (x_free_frame_resources): Sync with xterm.c.
7403
7404 2008-02-01 Andreas Schwab <schwab@suse.de>
7405
7406 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
7407 char-table size.
7408
7409 2008-02-01 Kenichi Handa <handa@m17n.org>
7410
7411 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
7412
7413 2008-02-01 Kenichi Handa <handa@m17n.org>
7414
7415 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
7416 font_otf_gpos, add font_drive_otf.
7417
7418 * fontset.c (fontset_find_font): Pay attention to font size
7419 specified for a font.
7420 (reorder_font_vector): Check contents of font_def.
7421
7422 * font.c (struct otf_list): Delete it.
7423 (otf_list): Make it a lisp variable.
7424 (otf_open): Use lispy otf_list.
7425 (generate_otf_features): Rename from parse_gsub_gpos_spec.
7426 (check_otf_features): New function.
7427 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
7428 New functions.
7429 (font_drive_otf): New function merging font_otf_gsub and
7430 font_otf_gpos.
7431 (font_open_for_lface): New arg spec. Change argument order.
7432 (font_load_for_face): Adjust for the change of font_open_for_lface.
7433 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
7434 Ffont_otf_gpos.
7435 (syms_of_font): Staticpro otf_list. Delete defsubr of
7436 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
7437
7438 * xfaces.c (set_font_frame_param): Adjust for the change of
7439 font_open_for_lface.
7440
7441 * font.h (font_open_for_lface): Adjust prototype.
7442 (struct font_driver): Delete members otf_gsub and otf_gpos, add
7443 member otf_drive.
7444 (font_otf_gsub, font_otf_gpos): Delete externs.
7445 (font_drive_otf): Extern it.
7446
7447 2008-02-01 Kenichi Handa <handa@m17n.org>
7448
7449 * font.c (font_at): If the window W is not on a window system,
7450 return Qnil.
7451
7452 * coding.c (produce_chars, encode_coding): Don't call
7453 insert_from_gap if no characters to produce.
7454
7455 2008-02-01 Kenichi Handa <handa@m17n.org>
7456
7457 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
7458 Fclear_face_cache.
7459
7460 * xfaces.c (face_for_font): Check also face->font==font->font.font.
7461
7462 2008-02-01 Miles Bader <miles@gnu.org>
7463
7464 * emacs.c (main): Change default value of `enable_font_backend' to 1.
7465 Parse "--disable-font-backend" option.
7466 (standard_args): Add "--disable-font-backend" option.
7467
7468 2008-02-01 Kenichi Handa <handa@m17n.org>
7469
7470 * fontset.c (fontset_find_font): New function.
7471 (fontset_font): Use fontset_find_font.
7472 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
7473 Register the specified font for all Latin characters.
7474 (new_fontset_from_font): Register the specified font for all Latin
7475 characters.
7476 (dump_fontset): For a realized fontset, include the base fontset
7477 name in the returned vector.
7478
7479 2008-02-01 Kenichi Handa <handa@m17n.org>
7480
7481 * character.h (CHAR_STRING): Cast C to unsigned on calling
7482 char_string.
7483
7484 * character.c (char_string): Type of arg C changed to unsigned.
7485 Signal an error if C is an invalid character code.
7486
7487 * editfns.c (general_insert_function, Fchar_to_string):
7488 Use CHARACTERP, not INTEGERP.
7489
7490 2008-02-01 Kenichi Handa <handa@m17n.org>
7491
7492 * character.h (MIN_MULTIBYTE_LEADING_CODE)
7493 (MAX_MULTIBYTE_LEADING_CODE): New macros.
7494
7495 * regex.c (analyse_first): Fix for multibyte characters in "case
7496 charset:" and "case categoryspec:".
7497
7498 2008-02-01 Andreas Schwab <schwab@suse.de>
7499
7500 * Makefile.in (LIBES): Move standard libraries to the end.
7501
7502 2008-02-01 Kenichi Handa <handa@m17n.org>
7503
7504 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
7505 nonzero, don't shrink the buffer nextb.
7506
7507 * buffer.h (struct buffer_text): New member inhibit_shrinking.
7508
7509 * coding.c (coding_alloc_by_making_gap): New arg offset.
7510 (alloc_destination): Call coding_alloc_by_making_gap with the arg
7511 offset.
7512 (decode_coding_iso_2022): Update coding->safe_charsets.
7513 (decode_coding_gap): Temporarily set
7514 current_buffer->text->inhibit_shrinking to 1.
7515
7516 2008-02-01 Kenichi Handa <handa@m17n.org>
7517
7518 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
7519 indexing into elements of s->cmp and s->char2b.
7520
7521 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
7522
7523 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
7524
7525 2008-02-01 Kenichi Handa <handa@m17n.org>
7526
7527 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
7528 target_multibyte instead of multibyte.
7529 (re_match_2_internal): Call bcmp_translate with target_multibyte.
7530 (bcmp_translate): Change the argument name from multibyte to
7531 target_multibyte.
7532
7533 2008-02-01 Kenichi Handa <handa@m17n.org>
7534
7535 These changes are to compile a regexp into a pattern that can be
7536 used both for multibyte and unibyte targets.
7537
7538 * Makefile.in (search.o): Depend on charset.h.
7539
7540 * character.c (multibyte_char_to_unibyte_safe): New function.
7541
7542 * search.c: Include "charset.h".
7543 (compile_pattern_1): Delete argument multibyte. Don't set
7544 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
7545 (compile_pattern): Don't compare cp->buf.target_multibyte.
7546 Compare cp->buf.charset_unibyte.
7547 (compile_pattern): Set cp->buf.target_multibyte.
7548
7549 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
7550
7551 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
7552
7553 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
7554 multibyte. Change callers.
7555 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
7556 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
7557 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
7558 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
7559 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
7560 (regex_compile): Make the compiled pattern usable both for
7561 multibyte and unibyte targets.
7562 (analyse_first): Make the fastmap usable both for multibyte and
7563 unibyte targets.
7564 (TRANSLATE_VIA_MULTIBYTE): Delete.
7565 (re_match_2_internal): Pay attention to the case that the
7566 multibyteness of bufp and target may be different.
7567
7568 2008-02-01 Kenichi Handa <handa@m17n.org>
7569
7570 * xdisp.c (x_produce_glyphs): When a font is not found, make the
7571 empty box occupy at least one column width.
7572
7573 2008-02-01 Miles Bader <miles@gnu.org>
7574
7575 * Makefile.in: Remove redundant HAVE_XFT clause.
7576
7577 2008-02-01 Kenichi Handa <handa@m17n.org>
7578
7579 * xrdb.c (x_load_resources): Setup the default fontSet X reource.
7580
7581 2008-02-01 Kenichi Handa <handa@m17n.org>
7582
7583 * fontset.c (Finternal_char_font): Fix for the case of POSITION
7584 being nil.
7585
7586 2008-02-01 Kenichi Handa <handa@m17n.org>
7587
7588 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
7589
7590 2008-02-01 Kenichi Handa <handa@m17n.org>
7591
7592 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
7593
7594 2008-02-01 Kenichi Handa <handa@m17n.org>
7595
7596 * search.c (simple_search): Fix previous change.
7597
7598 2008-02-01 Kenichi Handa <handa@m17n.org>
7599
7600 * xftfont.c (ftfont_font_format): Extern declaration.
7601
7602 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
7603
7604 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
7605 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
7606
7607 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
7608 (ftfont_font_format): Fix previous change.
7609
7610 * font.h (Ffont_xlfd_name): EXFUN it.
7611
7612 * font.c (font_parse_xlfd): Fix the array size of `f'.
7613 (register_font_driver): Use EQ to compare driver->type.
7614
7615 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
7616 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
7617 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
7618
7619 2008-02-01 Kenichi Handa <handa@m17n.org>
7620
7621 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
7622 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
7623
7624 2008-02-01 Kenichi Handa <handa@m17n.org>
7625
7626 * xfont.c (xfont_open): Set font->format.
7627
7628 * xftfont.c (xftfont_open): Set font->format.
7629
7630 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
7631 (ftfont_list): Include FC_FONTFORMAT in FcObject.
7632 (ftfont_open): Set font->format.
7633 (ftfont_font_format): New function.
7634
7635 * font.h (struct font): New memeber format.
7636
7637 * font.c (Qopentype): New variable.
7638 (syms_of_font): Defsym it.
7639 (Fquery_font): Change the format of the last element of the return
7640 value.
7641
7642 2008-02-01 Kenichi Handa <handa@m17n.org>
7643
7644 * xfns.c (xic_create_xfontset): Try the default fontset name as a
7645 last resort.
7646
7647 2008-02-01 Kenichi Handa <handa@m17n.org>
7648
7649 * coding.c (detect_coding_charset): Fix detection of multi-byte
7650 charset.
7651
7652 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
7653
7654 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
7655
7656 2008-02-01 Kenichi Handa <handa@m17n.org>
7657
7658 * xdisp.c (get_next_display_element): Set it->face_id for the
7659 first component of a composition.
7660 (x_produce_glyphs): Check if the font is changed or not for composition.
7661
7662 2008-02-01 Kenichi Handa <handa@m17n.org>
7663
7664 * fontset.c (Qlatin): New variable.
7665 (syms_of_fontset): Define it as a lisp symbol.
7666 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
7667
7668 2008-02-01 Kenichi Handa <handa@m17n.org>
7669
7670 * font.c (font_unparse_fcname): Pay attention to the case that
7671 some of font property is a null string.
7672
7673 2008-02-01 Kenichi Handa <handa@m17n.org>
7674
7675 * term.c: Include "composite.h".
7676 (encode_terminal_code): Output all components of composition.
7677 Check the size of encode_terminal_src.
7678 (produce_glyphs): For composition, call produce_composite_glyph.
7679 (append_composite_glyph, produce_composite_glyph): New functions.
7680
7681 * xdisp.c (x_produce_glyphs): In handling composition, if a font
7682 is not found, get font_info from the current ascii face.
7683
7684 2008-02-01 Kenichi Handa <handa@m17n.org>
7685
7686 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
7687 buffer-file-name to Qnil before calling insert_from_buffer.
7688
7689 * font.c (font_unparse_fcname): Pay attention to the case that
7690 foundry is a null string.
7691
7692 2008-02-01 Kenichi Handa <handa@m17n.org>
7693
7694 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
7695
7696 * font.c (Qunicode_sip): New variable.
7697 (syms_of_font): Declare it as a Lisp symbol.
7698
7699 * font.h (Qunicode_sip): Extern it.
7700
7701 2008-02-01 Kenichi Handa <handa@m17n.org>
7702
7703 * composite.c (get_composition_id): Pay attention to TAB component.
7704
7705 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
7706 TAB. Adjust for the change of s->char2b which always points to
7707 the first elememnt of allocated memory.
7708
7709 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
7710
7711 * xdisp.c (handle_composition_prop): Set it->c to the first
7712 non-TAB component.
7713 (fill_composite_glyph_string): Change argument.
7714 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
7715 (x_produce_glyphs): Fix handling of left/right padding.
7716
7717 2008-02-01 Kenichi Handa <handa@m17n.org>
7718
7719 * coding.c (detect_coding_system): Fix for handling off
7720 inhibit_iso_escape_detection. Fix for the case that no coding
7721 system is defined for a specific coding category.
7722
7723 2008-02-01 Kenichi Handa <handa@m17n.org>
7724
7725 * font.c (font_matching_entity): Delete unused local var.
7726
7727 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
7728 opening a font.
7729
7730 * fileio.c (Finsert_file_contents): On recovering a file, assume
7731 Unix-like eol.
7732 (choose_write_coding_system): On auto-saving a file, force
7733 Unix-like eol.
7734
7735 * coding.c (setup_coding_system): Fix setting of
7736 coding->common_flags based on eol_type.
7737 (coding_inherit_eol_type): If PARENT is not nil, be sure to
7738 inherit from it.
7739
7740 2008-02-01 Kenichi Handa <handa@m17n.org>
7741
7742 * alloc.c (NSTATICS): Increas to 0x600.
7743
7744 2008-02-01 Kenichi Handa <handa@m17n.org>
7745
7746 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
7747 (ftfont_list): Don't check :name property.
7748 (ftfont_match): New function.
7749 (ftfont_pattern_entity): If the pattern doesn't contain
7750 FC_SPACING, don't assuce FC_MONO.
7751
7752 * font.h (struct font_driver): New member `match'.
7753 (font_update_drivers): Adjust prototype.
7754
7755 * font.c (font_parse_fcname, font_parse_name): Don't change :name
7756 property of FONT.
7757 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
7758 them unconditionally.
7759 (font_matching_entity): New function.
7760 (font_open_by_name): Try font_matching_entity if exact match is
7761 not found.
7762 (font_update_drivers): Delete the arg FONT. Return a list of
7763 actually used backends. Don't free faces, font caches here.
7764 Don't store data in frame parameters. Don't call x_set_font.
7765 (Ffont_spec): Store :name property as is.
7766 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
7767 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
7768 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
7769 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
7770 Call font->driver->otf_gsub instead of font_otf_gsub.
7771
7772 * frame.c (x_set_font_backend): Do more works that were done in
7773 font_update_drivers before.
7774
7775 * xfont.c (xfont_match): New function.
7776 (xfont_driver): Set xfont_driver.match to xfont_match.
7777 (xfont_draw): Set font in GC if necessary.
7778
7779 * ftxfont.c (ftxfont_match): New function.
7780 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
7781
7782 * xftfont.c (xftfont_match): New function.
7783 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
7784
7785 2008-02-01 Kenichi Handa <handa@m17n.org>
7786
7787 * font.h (struct font): New member scalable.
7788 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
7789 (font_otf_gsub): Adjust prototype.
7790
7791 * font.c (font_otf_capability): Fix handling of the default langsys.
7792 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
7793 Check the contents of SPEC.
7794 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
7795 (check_gstring): New function.
7796 (REPLACEMENT_CHARACTER): New macro.
7797 (font_otf_gsub): New arg alternate_subst. Be sure to set all
7798 glyph codes of GSTRING.
7799 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
7800 (font_prepare_composition): Set cmp->glyph_len.
7801 (font_open_entity): Set font->scalable.
7802 (Ffont_get): Handle :otf property.
7803 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
7804 functions.
7805 (Fquery_font): Use font->font.full_name.
7806 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
7807 Sfont_otf_alternates.
7808
7809 * ftfont.c (ftfont_open): Set font->font.full_name and
7810 font->font.name properly. Fix calculation of font->font.height
7811 and font->min_width.
7812
7813 * ftxfont.c (ftxfont_create_gcs): New function.
7814 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
7815 (ftxfont_draw_backgrond): Fix filling region.
7816 (ftxfont_default_fid): New function.
7817 (ftxfont_open): Set xfotn->fid to the return value of
7818 ftxfont_default_fid.
7819 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
7820 (ftxfont_done_face): Free only GCs that are created by
7821 ftxfont_create_gcs.
7822 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
7823
7824 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
7825 Clip to src->width, etc (not src->clip_XXX).
7826
7827 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
7828 FontBackend frame parameter.
7829
7830 2008-02-01 Kenichi Handa <handa@m17n.org>
7831
7832 * font.h (struct font_driver_list): New member `on'.
7833 (Fclear_font_cache): EXFUN it.
7834 (font_update_drivers): Extern it.
7835
7836 * font.c (font_unparse_fcname): Fix typo (swidth->width).
7837 (font_list_entities): Check driver_list->on.
7838 (register_font_driver): Initalize `on' member to 0.
7839 (font_update_drivers): New function.
7840 (Fclear_font_cache): Check driver_list->on.
7841
7842 * frame.h (Qfont_backend): Extern it.
7843 (x_set_font_backend): Extern it.
7844
7845 * frame.c (Qfont_backend): New variable.
7846 (frame_parms): New element for font-backend.
7847 (x_set_font_backend): New function.
7848
7849 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
7850 FontBackend frame parameter.
7851 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
7852 x_set_font_backend.
7853
7854 * xfont.c (xfont_list): Don't try listing by :name property if the
7855 name is not for XLFD.
7856
7857 2008-02-01 Kenichi Handa <handa@m17n.org>
7858
7859 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
7860 (LGLYPH_SET_TO): New macros.
7861 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
7862 element of G is vector or not.
7863 (font_at): Extern it.
7864
7865 * font.c: Include window.h.
7866 (font_lispy_object): New function.
7867 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
7868 end of valid glyph.
7869 (font_close_object): Fix getting (struct font *).
7870 (font_at): New function.
7871 (Ffont_get): If FONT is a font-object, get entity from it.
7872 (Ffont_make_gstring): Initialize elements of glyphs with nil.
7873 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
7874 range check.
7875 (Ffont_at): New function.
7876 (syms_of_font): Defsubr Sfont_at.
7877
7878 * xdisp.c (it_props): Move the entry for Qauto_composed to just
7879 before the entry for Qcomposition.
7880 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
7881 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
7882 the font in gstring.
7883 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
7884 LGLYPH_FORM (g) to detect the end of valid glyph.
7885 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
7886 we are composing with gstring.
7887
7888 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
7889 Check if adjustment is vector or not.
7890
7891 * Makefile.in (font.o): Make it depends on window.h.
7892
7893 2008-02-01 Kenichi Handa <handa@m17n.org>
7894
7895 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
7896 adjustment is vector or not.
7897
7898 2008-02-01 Miles Bader <miles@gnu.org>
7899
7900 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
7901
7902 2008-02-01 Kenichi Handa <handa@m17n.org>
7903
7904 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
7905 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
7906 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
7907
7908 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
7909 (DEVICE_DELTA): Fix typo.
7910 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
7911 LGLYPH format.
7912
7913 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
7914 the change of LGLYPH format.
7915
7916 2008-02-01 Kenichi Handa <handa@m17n.org>
7917
7918 * ftfont.c (ftfont_list): Fix typo.
7919 (ftfont_build_basic_charsets): Don't include letters with diacritics.
7920
7921 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
7922
7923 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
7924
7925 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
7926 xftface_info is non-NULL.
7927
7928 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
7929
7930 * ftfont.c (ftfont_list): Move misplaced #endif.
7931
7932 2008-02-01 Kenichi Handa <handa@m17n.org>
7933
7934 * ftfont.c (ftfont_list): Pay attention to the case that
7935 FC_CAPABILITY is not defined.
7936
7937 2008-02-01 Kenichi Handa <handa@m17n.org>
7938
7939 * xftfont.c (xftfont_open): Set charset related members to -1.
7940
7941 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
7942 QCname.
7943 (ftfont_open): Set charset related members to -1.
7944
7945 * fontset.c (Votf_script_alist): New variable.
7946 (syms_of_fontset): Initialize it.
7947 (fontset_font): Delete unused variable.
7948
7949 * fontset.h (Votf_script_alist): Extern it.
7950
7951 * font.c (font_find_for_lface): Optimize code.
7952
7953 * font.h (font_close_object, font_merge_old_spec): Extern them.
7954
7955 2008-02-01 Kenichi Handa <handa@m17n.org>
7956
7957 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
7958 (syms_of_font): Initialize them.
7959 (font_pixel_size): Allow float value in dpi.
7960 (font_prop_validate_type): Delete.
7961 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
7962 Change caller.
7963 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
7964 (font_prop_validate_extra): Delete.
7965 (font_prop_validate_spacing): New function.
7966 (font_property_table): Add elements for all known properties.
7967 (get_font_prop_index): Rename from check_font_prop_name. New
7968 argument FROM. Change caller.
7969 (font_prop_validate): Validate all known properties.
7970 (font_put_extra): Delete argument force. Change caller.
7971 (font_expand_wildcards): Make it static. Fix the way of shrinking
7972 the possible range.
7973 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
7974 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
7975 Change caller.
7976 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
7977 (font_parse_fcname): Delete argument merge. Fix parsing of point
7978 size. Don't validate properties values here. Change caller.
7979 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
7980 (font_open_by_name): Delete unused variable.
7981 (Ffont_spec): Likewise. Validate property values.
7982 (Ffont_match_p): New function.
7983
7984 * font.h (QCscalable): Extern it.
7985 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
7986
7987 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
7988
7989 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
7990 (xfont_list_pattern): New function.
7991 (xfont_list): Use xfont_list_pattern.
7992
7993 2008-02-01 Kenichi Handa <handa@m17n.org>
7994
7995 * font.h (Flist_fonts): EXFUN it.
7996
7997 2008-02-01 Jason Rumney <jasonr@gnu.org>
7998
7999 * w32term.c (w32_initialize): Add back smoothing_type and
8000 smoothing_enabled definitions.
8001
8002 2008-02-01 Kenichi Handa <handa@m17n.org>
8003
8004 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
8005 s->face->font on determining underline position.
8006
8007 2008-02-01 Kenichi Handa <handa@m17n.org>
8008
8009 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
8010 (font_has_char): Accept font-object too.
8011 (font_find_for_lface): Try at first with a size specified in face.
8012
8013 2008-02-01 Kenichi Handa <handa@m17n.org>
8014
8015 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
8016 font_open_by_name.
8017
8018 2008-02-01 Kenichi Handa <handa@m17n.org>
8019
8020 * font.h (QCspacing, QCdpi): Extern them.
8021 (enum font_spacing): New enum.
8022 (FONT_PIXEL_SIZE_QUANTUM): New macro.
8023
8024 * font.c (POINT_TO_PIXEL): Don't divice POINT by 10.
8025 (QCspacing, QCdpi): New variables.
8026 (syms_of_font): Initialize them.
8027 (font_pixel_size): New function.
8028 (font_put_extra): New function.
8029 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
8030 in FONT_EXTRA.
8031 (font_parse_fcname): Handle enumenrated values (e.g. bold).
8032 Fix handling font size. Add QCname property that contains only
8033 unknown properties.
8034 (font_score): Change argument. Change caller. Pay attention to
8035 FONT_PIXEL_SIZE_QUANTUM.
8036 (font_sort_entites, font_list_entities, font_find_for_lface)
8037 (font_open_for_lface, font_open_by_name): Fix handling of font size.
8038 (Ffont_spec): Add QCname property that contains only unknown properties.
8039
8040 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
8041 include weight in listing pattern, instead check weight of each
8042 listed font. Don't include scalable in pattern. Pay attention to
8043 FONT_PIXEL_SIZE_QUANTUM.
8044
8045 2008-02-01 Kenichi Handa <handa@m17n.org>
8046
8047 * font.c (font_parse_fcname): Fix parsing of point-size.
8048 (font_unparse_fcname): Produce symbolic names for style properties.
8049 (font_list_entities): Handle float size correctly.
8050 (font_open_by_name): Prefer `normal' property values if the name
8051 doesn't specify them.
8052
8053 * fontset.c (Finternal_char_font): Use font_get_name, not
8054 Ffont_xlfd_name.
8055
8056 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
8057 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
8058 pattern. Don't force scalable.
8059
8060 * xftfont.c (xftfont_open): For generating a name, start from
8061 96-byte buffer.
8062
8063 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
8064
8065 * frame.h (x_new_fontset2): Fix prototype.
8066
8067 2008-02-01 Kenichi Handa <handa@m17n.org>
8068
8069 * font.h (struct font_driver): Delete member parse_name.
8070 (font_match_p, font_get_spec, font_parse_fcname)
8071 (font_unparse_fcname): Extern them.
8072 (font_get_name): Adjust prototype.
8073
8074 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
8075 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
8076 (font_expand_wildcards): Fix handling ENCODING field. Avoid
8077 unnecessary checks for weight, slant, and swidth.
8078 (font_parse_fcname): New function.
8079 (font_unparse_fcname): New function.
8080 (font_parse_name): New function.
8081 (font_match_p): New function.
8082 (font_get_name): Change return value to Lisp string.
8083 (font_get_spec): New function.
8084 (Qunspecified, Qignore_defface): Don't extern them.
8085 (font_find_for_lface): Assume that LFACE is fully specified.
8086 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
8087 object, use it for FACE.
8088 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
8089 driver->parse_name.
8090 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
8091
8092 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
8093 prototype.
8094
8095 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
8096 argument F. Don't call Fnew_fontset. Instead, directly call
8097 make_fontset.
8098
8099 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
8100
8101 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
8102 of x_new_fontset2.
8103
8104 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
8105 (Qsans__serif): New variables.
8106 (ftfont_generic_family_list): New variable.
8107 (syms_of_ftfont): Initialize the above variables.
8108 (ftfont_pattern_entity): Delete argument NAME.
8109 (ftfont_list_generic_family): New function.
8110 (ftfont_parse_name): Delete this function.
8111 (ftfont_list): Try generic family only when FcFontList found no font.
8112 (ftfont_list_family): Fix args to FcObjectSetBuild.
8113
8114 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
8115 object in attrs[LFACE_FONT_INDEX].
8116 (set_lface_from_font_name): Cancel all changes for font-backend.
8117 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
8118 function.
8119 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
8120 font object in QCfont attribute.
8121 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
8122 (realize_default_face) [USE_FONT_BACKEND]: Call
8123 set_lface_from_font_and_fontset.
8124
8125 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
8126 "fixed", and signal error here if no suitable font was found.
8127
8128 * xfont.c (xfont_parse_name): Delete this function.
8129
8130 * xftfont.c (xftfont_open): Change coding style of error
8131 handling. Generate fontconfig's fontname pattern.
8132
8133 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
8134 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
8135
8136 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
8137 Both args FONTSET and FONT_OBJECT must be existing ones.
8138
8139 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8140
8141 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
8142
8143 2008-02-01 Kenichi Handa <handa@m17n.org>
8144
8145 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
8146
8147 * font.h (struct font): Fix typo.
8148
8149 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
8150 XLFD_XXX_INDEX.
8151 (enum xlfd_field_mask): New enum.
8152 (intern_font_field): Changed argument. Change caller. If digits
8153 are followed by non-digits, return a symbol.
8154 (font_expand_wildcards): New function.
8155 (font_parse_xlfd): Fix wildcard handling.
8156 (Ffont_spec): If :name is specified, reflect the info in the other
8157 properties.
8158
8159 * ftfont.c (ftfont_pattern_entity): Fix typo.
8160 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
8161 locale.
8162
8163 2008-02-01 Kenichi Handa <handa@m17n.org>
8164
8165 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
8166
8167 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
8168 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
8169 registry doesn't specify encoding part.
8170 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
8171 (font_open_by_name): At first try parsing the name.
8172 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
8173 as Lisp symbols.
8174
8175 * fontset.c (reorder_font_vector): Pay attention to the case that
8176 the 3rd element of font_def is nil.
8177 (fontset_font): For the default fontset, append one more fontset
8178 elements for a script-based font specification. Don't add script
8179 attribute on finding a font.
8180 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
8181 font name.
8182 (fontset_ascii_font): If a font can't be opened, return nil.
8183
8184 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
8185 (ftfont_pattern_entity): New function.
8186 (ftfont_get_cache): Assume that freetype_font_cache is already
8187 initialized.
8188 (ftfont_list): Handle the case that a file is specified in font
8189 name. Use ftfont_pattern_entity to generate entities.
8190 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
8191 (syms_of_ftfont): Initialize freetype_font_cache.
8192
8193 * xftfont.c (xftfont_open): Make the font name fontconfig's
8194 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
8195 (xftfont_close): Free font->font.name if not NULL.
8196
8197 * xfont.c (xfont_list): If script is specified for a font, return
8198 null_vector.
8199 (xfont_list_family): Declare argument type.
8200
8201 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
8202 name, set LFACE_FONT (lface) to nil.
8203
8204 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
8205 return Qnil.
8206
8207 2008-02-01 Kenichi Handa <handa@m17n.org>
8208
8209 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
8210 (standard_args): Add "-enable-font-backend".
8211
8212 2008-02-01 Kenichi Handa <handa@m17n.org>
8213
8214 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
8215 (struct xftdraw_list, xftdraw_list): Delete them.
8216 (register_xftdraw, check_xftdraw): Delete them.
8217 (xftfont_prepare_face): Don't call register_xftdraw.
8218 (xftfont_done_face): Don't call check_xftdraw.
8219 (xftfont_draw): Get backroudn color only when with_background is
8220 nonzero.
8221
8222 * xfont.c (xfont_encode_char): Fix calculation of char2b.
8223
8224 2008-02-01 Kenichi Handa <handa@m17n.org>
8225
8226 These changes are for the new font handling codes.
8227
8228 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
8229 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
8230 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
8231 (FONTSRC, FONTOBJ): New variables.
8232 (obj): Add $(FONTOBJ).
8233 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
8234 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
8235 @LIBOTF_LIBS@.
8236 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
8237 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
8238
8239 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
8240
8241 * character.h (Vscript_representative_chars): Extern it.
8242
8243 * character.c (Vscript_representative_chars): New variable.
8244 (syms_of_character): Declare it as a Lisp variable.
8245
8246 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
8247 enable_font_backend is nonzero, accept the composition method
8248 COMPOSITION_WITH_GLYPH_STRING.
8249
8250 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
8251 enumeration COMPOSITION_WITH_GLYPH_STRING.
8252
8253 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
8254 members clip_x, clip_y, clip_width, and clip_height.
8255 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
8256
8257 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
8258 --enable-font-backend. Call syms_of_font.
8259
8260 * fns.c (assoc_no_quit): New function.
8261
8262 * fontset.h (FONT_INFO_FROM_FACE): New macro.
8263 (face_for_font, new_fontset_from_font)
8264 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
8265
8266 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
8267 (fontset_font, fontset_ascii, face_for_char)
8268 (make_fontset_for_ascii_face, Ffont_info)
8269 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
8270 is nonzero, use font-backend mechanism.
8271 (find_font_encoding): Make it non-static.
8272 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
8273 New functions.
8274
8275 * frame.h (struct frame): New members resx and resy.
8276 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
8277 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
8278
8279 * frame.c [USE_FONT_BACKEND]: Include "font.h".
8280 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
8281
8282 * lisp.h (assoc_no_quit): Extern it.
8283
8284 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
8285 Through out the file, use FONT_INFO_FROM_FACE instead of
8286 FONT_INFO_FROM_ID, use get_per_char_metric instead of
8287 rif->per_char_metric.
8288 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
8289 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
8290 (get_glyph_face_and_encoding, fill_composite_glyph_string)
8291 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
8292 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
8293 nonzero, use font-backend mechanism.
8294 (get_per_char_metric): New function.
8295
8296 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
8297 (set_lface_from_font_name)
8298 (set_font_frame_param, free_realized_face)
8299 (prepare_face_for_display, clear_face_gcs)
8300 (Finternal_set_font_selection_order, realize_x_face)
8301 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
8302 font-backend mechanism.
8303 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
8304 (load_face_font) [USE_FONT_BACKEND]: Abort.
8305 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
8306 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
8307
8308 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
8309 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
8310 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
8311 nonzero, register all available font drivers. Call
8312 x_default_font_parameter for deciding a font.
8313 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
8314
8315 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
8316 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
8317 (x_set_glyph_string_clipping_exactly)
8318 (x_compute_glyph_string_overhangs)
8319 (x_draw_glyph_string_foreground)
8320 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
8321 (x_free_frame_resources) [USE_FONT_BACKEND]: If
8322 enable_font_backend is nonzero, use font-backend mechanism.
8323 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
8324
8325 2008-02-01 Kenichi Handa <handa@m17n.org>
8326
8327 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
8328 system_eol_type.
8329 (syms_of_coding): Initialize system_eol_type.
8330
8331 * process.c (Fset_process_coding_system): Inherit system's eol
8332 format if necessary.
8333
8334 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8335
8336 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
8337
8338 2008-02-01 Kenichi Handa <handa@m17n.org>
8339
8340 * coding.c (decode_eol): Pay attention to buffer relocation in
8341 del_range_2.
8342 (decode_coding): Call decode_eol before restoring undo_list.
8343
8344 2008-02-01 Kenichi Handa <handa@m17n.org>
8345
8346 * charset.c (Fdefine_charset_internal): Fix setting of
8347 emacs_mule_bytes.
8348
8349 2008-02-01 Kenichi Handa <handa@m17n.org>
8350
8351 * keyboard.c (read_char): Check if C is a character or not before
8352 looking up Vkeyboard_translate_table.
8353
8354 2008-02-01 Kenichi Handa <handa@m17n.org>
8355
8356 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
8357 condition to terminate the loop.
8358
8359 2008-02-01 Kenichi Handa <handa@m17n.org>
8360
8361 * coding.c (produce_composition): Compare charbuf[i] instead of
8362 args[i] against 0.
8363 (Fterminal_coding_system): Use EQ to compare Lisp objects.
8364
8365 2008-02-01 Kenichi Handa <handa@m17n.org>
8366
8367 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
8368 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
8369 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
8370 detect_coding.
8371 (emacs_mule_char): Handle old style (Emacs 20) component character
8372 of a composition.
8373 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
8374 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
8375 composition rule.
8376 (decode_coding_emacs_mule): Handle invalid bytes correctly.
8377
8378 2008-02-01 Kenichi Handa <handa@m17n.org>
8379
8380 * coding.c (encode_coding_ccl): Allocate destination dynamically
8381 when necessary.
8382
8383 2008-02-01 Kenichi Handa <handa@m17n.org>
8384
8385 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
8386 the loop. When quitted, show a proper error message.
8387
8388 2008-02-01 Kenichi Handa <handa@m17n.org>
8389
8390 * xterm.c (x_set_glyph_string_clipping_exactly): Set
8391 src->clip_head and src->clip_tail temporarily instead of src->hl.
8392
8393 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
8394 character sequence.
8395 (Fccl_execute_on_string): Use ASET, not XSET.
8396
8397 2008-02-01 Kenichi Handa <handa@m17n.org>
8398
8399 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
8400
8401 2008-02-01 Kenichi Handa <handa@m17n.org>
8402
8403 * coding.c (decode_coding): Fix the condition of terminating the
8404 decoding loop.
8405
8406 2008-02-01 Kenichi Handa <handa@m17n.org>
8407
8408 * data.c (Faset): On setting a character bigger than 255 in a
8409 unibyte string, signal an error instead of make the string multibyte.
8410
8411 2008-02-01 Kenichi Handa <handa@m17n.org>
8412
8413 * charset.c (map_charset_chars): Fix for ascii-compatible charset
8414 made by a mapping table.
8415
8416 2008-02-01 Kenichi Handa <handa@m17n.org>
8417
8418 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
8419 not.
8420 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
8421 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
8422
8423 * xterm.c (x_draw_composite_glyph_string_foreground): Check
8424 s->face is NULL or not.
8425
8426 2008-02-01 Kenichi Handa <handa@m17n.org>
8427
8428 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
8429 (x_draw_glyph_string): Fix drawing of right_overhang and
8430 left_overhang around/on cursor.
8431
8432 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
8433
8434 2008-02-01 Kenichi Handa <handa@m17n.org>
8435
8436 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
8437
8438 2008-02-01 Kenichi Handa <handa@m17n.org>
8439
8440 * coding.c (Fdefine_coding_system_internal)
8441 (Fdefine_coding_system_alias): Avoid a duplicated element in
8442 Vcoding_system_alist.
8443
8444 2008-02-01 Kenichi Handa <handa@m17n.org>
8445
8446 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
8447
8448 * coding.c (Qcoding_system_define_form): New variable.
8449 (syms_of_coding): Intern and staticpro it.
8450 (Fcoding_system_p): Check Qcoding_system_define_form.
8451 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
8452
8453 * coding.h (CODING_SYSTEM_P): If ID is not available, call
8454 Fcoding_system_p.
8455 (CHECK_CODING_SYSTEM): If ID is not available, call
8456 Fcheck_coding_system.
8457 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
8458 Try also Fcheck_coding_system.
8459
8460 2008-02-01 Kenichi Handa <handa@m17n.org>
8461
8462 * coding.c (code_conversion_restore): GCPRO arg.
8463
8464 2008-02-01 Kenichi Handa <handa@m17n.org>
8465
8466 * character.c (lisp_string_width): Check multibyteness of STRING.
8467
8468 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8469
8470 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
8471 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
8472 (decode_mac_font_name): Use decode_coding_c_string instead of
8473 decode_coding.
8474 (x_load_font): Initialize fontp->fontset to -1. Set
8475 fontp->encoding_type.
8476
8477 2008-02-01 Kenichi Handa <handa@m17n.org>
8478
8479 * search.c (search_buffer): Give up BM search on case-fold-search
8480 if one of a target character has a case-equivalence of different
8481 byte length even if that target charcter is an ASCII.
8482 (simple_search): Fix calculation of byte length of matched text.
8483 (boyer_moore): Fix handling of case-equivalent multibyte characters.
8484
8485 2008-02-01 Kenichi Handa <handa@m17n.org>
8486
8487 * coding.c (decode_coding): Fix handling of invalid bytes.
8488
8489 2008-02-01 Kenichi Handa <handa@m17n.org>
8490
8491 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
8492 Unicode characters.
8493
8494 2008-02-01 Kenichi Handa <handa@m17n.org>
8495
8496 * coding.c (encode_coding_object): If a pre-write-conversion
8497 function makes a new buffer, kill it.
8498
8499 2008-02-01 Kenichi Handa <handa@m17n.org>
8500
8501 * coding.c (QCascii_compatible_p): New variable.
8502 (syms_of_coding): Initialize it.
8503 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
8504 calling string_char.
8505 (record_conversion_result): Add `default:' case.
8506 (coding_charset_list): Delete unused variable `coding_type'.
8507 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
8508 property in the plist of the coding system.
8509 (Fcoding_system_put): Check QCascii_compatible_p.
8510
8511 2008-02-01 Miles Bader <miles@gnu.org>
8512
8513 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
8514 removed calculation of frame `f', as it's now used.
8515
8516 2008-02-01 Kenichi Handa <handa@m17n.org>
8517
8518 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
8519 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
8520 (UNIDATA): New variable.
8521 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
8522 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
8523 $(RUN_TEMACS) unconditionally.
8524
8525 2008-02-01 Kenichi Handa <handa@m17n.org>
8526
8527 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
8528 (admindir): New variable.
8529 ($(lispsource)international/charprop.el): New target.
8530
8531 2008-02-01 Miles Bader <miles@gnu.org>
8532
8533 * character.c (chars-in-region): Remove obsolete function.
8534 (syms_of_character): Remove its initialization.
8535
8536 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
8537
8538 * w32select.c (validate_coding_system)
8539 (setup_windows_coding_system): New functions.
8540 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
8541 setup_windows_coding_system.
8542 (setup_config, Fw32_get_clipboard_data): Use
8543 validate_coding_system.
8544 (Fx_selection_exists): Move call to setup_config to a place
8545 where signals are allowed.
8546
8547 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
8548 (Fcheck_coding_system): Add declarations.
8549
8550 2008-02-01 Kenichi Handa <handa@m17n.org>
8551
8552 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
8553
8554 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8555
8556 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
8557 string as the second argument for x_new_fontset.
8558
8559 2008-02-01 Kenichi Handa <handa@m17n.org>
8560
8561 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
8562 (encode_coding_object): Use safe_call instead of call2.
8563
8564 2008-02-01 Kenichi Handa <handa@m17n.org>
8565
8566 * fontset.c (Fset_fontset_font): Check family element of a given vector.
8567
8568 * Makefile.in (lisp): Include charprop.el.
8569
8570 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8571
8572 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
8573 Not sure if it's unnecessary.
8574
8575 2008-02-01 Steven Tamm <steventamm@mac.com>
8576
8577 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
8578 some possibly unnecessary fontset checking code that crashed
8579 when creating a new frame.
8580
8581 2008-02-01 Kenichi Handa <handa@m17n.org>
8582
8583 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
8584 lookup_face.
8585
8586 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
8587
8588 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
8589
8590 2008-02-01 Kenichi Handa <handa@m17n.org>
8591
8592 * coding.c: Cancel the change done in HEAD on 2008-02-01.
8593 (coding_charset_list): New function.
8594
8595 * coding.h (coding_charset_list): Extern it.
8596
8597 2008-02-01 Kenichi Handa <handa@m17n.org>
8598
8599 * fontset.c (Fset_fontset_font): Call find_font_encoding with
8600 concatenation of family and registry.
8601
8602 2008-02-01 Kenichi Handa <handa@m17n.org>
8603
8604 * character.h (BYTE8_STRING): Fix typo.
8605
8606 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
8607 string to multibyte (sync to HEAD).
8608
8609 * casefiddle.c (casify_region): Handle changes in byte-length
8610 using replace_range_2 (sync to HEAD).
8611
8612 2008-02-01 Andreas Schwab <schwab@suse.de>
8613
8614 * chartab.c (map_char_table): GCPRO table and arg.
8615
8616 2008-02-01 Kenichi Handa <handa@m17n.org>
8617
8618 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
8619 already at limit.
8620
8621 2008-02-01 Kenichi Handa <handa@m17n.org>
8622
8623 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
8624 instead of fast_c_string_match_ignore_case.
8625 (find_font_encoding): Change argument to Lisp_Object. Use
8626 fast_string_match_ignore_case instead of
8627 fast_c_string_match_ignore_case. Change caller.
8628
8629 2008-02-01 Kenichi Handa <handa@m17n.org>
8630
8631 * xdisp.c (get_next_display_element): In unibyte case, decide to
8632 display in octal form by checking a chacter by
8633 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
8634
8635 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
8636
8637 * character.c (unibyte_has_multibyte_table): New variable.
8638
8639 * character.h (unibyte_has_multibyte_table): Extern it.
8640 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
8641
8642 2008-02-01 Kenichi Handa <handa@m17n.org>
8643
8644 * coding.c (encode_coding_iso_2022): Fix handling of charset
8645 annotation.
8646
8647 2008-02-01 Kenichi Handa <handa@m17n.org>
8648
8649 * coding.c (setup_coding_system): If coding_system is nil, use
8650 Qundecided.
8651 (Fterminal_coding_system): Return nil if terminal coding system is
8652 `undecided'.
8653 (syms_of_coding): Define coding-system `undecided' here. Setup
8654 terminal_coding as `undecided'.
8655
8656 2008-02-01 Kenichi Handa <handa@m17n.org>
8657
8658 * xdisp.c (message_dolog, set_message_1): Call
8659 unibyte_char_to_multibyte with arg type int.
8660
8661 * lread.c (read1): Fix reading of a char-table.
8662
8663 * print.c (print_object): Include sub char-table in cicularities
8664 detection.
8665
8666 2008-02-01 Kenichi Handa <handa@m17n.org>
8667
8668 * keymap.c (where_is_internal_2): Fix for the case that KEY is a
8669 cons. Append the found sequences in car of ARGS instead of prepending.
8670
8671 2008-02-01 Kenichi Handa <handa@m17n.org>
8672
8673 * fileio.c (report_file_error): Make a unibyte string from
8674 strerror (errorno).
8675 (Fsubstitute_in_file_name): Fix the arg to
8676 unibyte_char_to_multibyte. It is evaluated twice.
8677
8678 2008-02-01 Kenichi Handa <handa@m17n.org>
8679
8680 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
8681
8682 2008-02-01 Kenichi Handa <handa@m17n.org>
8683
8684 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
8685 BOM is not found.
8686 (detect_coding, detect_coding_system): Optimization for ISO-2022
8687 when no 8-bit data is found.
8688
8689 2008-02-01 Jason Rumney <jasonr@gnu.org>
8690
8691 * w32fns.c (x_to_w32_font): Update to use new coding struct.
8692
8693 2008-02-01 Kenichi Handa <handa@m17n.org>
8694
8695 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
8696 CHARS.
8697
8698 2008-02-01 Steven Tamm <steventamm@mac.com>
8699
8700 * macterm.c (mac_encode_char): Add charset argument and update
8701 to use encoding_type.
8702 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
8703 switch to pure fontset.
8704 (decode_mac_font_name): Temporarily remove decoding.
8705 (x_font_name_to_mac_font_name): Temporarily remove encoding.
8706 (x_load_font): Temporarily remove encoding.
8707
8708 2008-02-01 Kenichi Handa <handa@m17n.org>
8709
8710 * xfaces.c (Fface_font): If frame is not on a window system,
8711 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
8712 refer to face->font.
8713 (split_font_name_into_vector, build_font_name_from_vector)
8714 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
8715 whne HAVE_WINDOW_SYSTEM is defined.
8716
8717 2008-02-01 Kenichi Handa <handa@m17n.org>
8718
8719 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
8720 (x_produce_glyphs): Fix setting of members of cmp in case
8721 cmp->glyph_len is zero.
8722
8723 * fontset.c (Fset_fontset_font): Fix docstring.
8724 (Ffontset_info): Make it backward compatible. New arg ALL.
8725
8726 2008-02-01 Kim F. Storm <storm@cua.dk>
8727
8728 * process.c (read_process_output): Grow decoding_buf when needed;
8729 this could cause a crash in allocate_string and compact_small_strings.
8730
8731 2008-02-01 Kenichi Handa <handa@m17n.org>
8732
8733 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
8734
8735 2008-02-01 Kenichi Handa <handa@m17n.org>
8736
8737 * coding.c (setup_coding_system): Set coding->common_flags
8738 correctly for raw-text.
8739 (consume_chars): On encoding unibyte text by raw-text, don't check
8740 multibyte form.
8741 (encode_coding): On encoding by raw-text, never use translation tables.
8742
8743 * fileio.c (e_write): Short cut for the case of no encoding.
8744
8745 2008-02-01 Kenichi Handa <handa@m17n.org>
8746
8747 * coding.c (detect_coding, detect_coding_system): Delete unused
8748 variables.
8749
8750 2008-02-01 Kenichi Handa <handa@m17n.org>
8751
8752 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
8753 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
8754
8755 2008-02-01 Kenichi Handa <handa@m17n.org>
8756
8757 * coding.c (Ffind_coding_systems_region_internal): Include
8758 raw-text and no-conversion in the result.
8759
8760 2008-02-01 Kenichi Handa <handa@m17n.org>
8761
8762 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
8763 (load_font_get_repertory): Delete unnecessary check of ENCODING of
8764 FONT_DEF.
8765 (font_def_arg, add_arg, from_arg, to_arg): New args.
8766 (set_fontset_font): Change argument.
8767 (Fset_fontset_font): Fix for the case that TARGET is a script
8768 name and charset name.
8769 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
8770
8771 2008-02-01 Kenichi Handa <handa@m17n.org>
8772
8773 * fontset.c (fontset_font): Rename from fontset_face. Change return
8774 value.
8775 (face_suitable_for_char_p, face_for_char): Adjust for the change
8776 of fontset_font.
8777 (make_fontset_for_ascii_face): Fix setting of the fontset element
8778 for ASCII.
8779 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
8780 to get a font name.
8781 (Ffontset_info): Adjust for the change of fontset_font.
8782
8783 * coding.c (emacs_mule_char): Check invalid code more regidly.
8784
8785 * character.h (LEADING_CODE_LATIN_1_MIN)
8786 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
8787
8788 2008-02-01 Kenichi Handa <handa@m17n.org>
8789
8790 * editfns.c (check_translation): New function.
8791 (Ftranslate_region_internal): Handle M:N mapping.
8792
8793 2008-02-01 Kenichi Handa <handa@m17n.org>
8794
8795 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
8796
8797 2008-02-01 Kenichi Handa <handa@m17n.org>
8798
8799 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
8800 goto invalid_code.
8801 (decode_coding_iso_2022): Fix handling of invalid designation.
8802
8803 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
8804 after calling code_conversion_save.
8805
8806 2008-02-01 Kenichi Handa <handa@m17n.org>
8807
8808 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
8809
8810 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
8811
8812 * fontset.c: Include "intervals.h".
8813 (fontset_face): Fix comparing of Lisp_Objects.
8814 (free_face_fontset, new_fontset_from_font_name): Fix
8815 Lisp_Object/int mixup.
8816
8817 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
8818
8819 * coding.c: Add many prototypes for static functions.
8820 (get_translation_table): Allow max_lookup to be NULL.
8821 (decode_coding, Ffind_coding_systems_region_internal)
8822 (Funencodable_char_position, Fcheck_coding_systems_region): Call
8823 get_translation_table with max_lookup NULL.
8824
8825 2008-02-01 Kenichi Handa <handa@m17n.org>
8826
8827 * coding.c (get_translation_table): Declare it as Lisp_Object.
8828 (LOOKUP_TRANSLATION_TABLE): New macro.
8829 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
8830 instead of CHAR_TABLE_REF.
8831
8832 2008-02-01 Kenichi Handa <handa@m17n.org>
8833
8834 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
8835 annotation data format.
8836 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
8837 Change arguments FROM and TO to single argument NCHARS. Change caller.
8838 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
8839 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
8840 (decode_coding_ccl, decode_coding_charset): Pay attention to
8841 coding->charbuf_used.
8842 (get_translation): New function.
8843 (produce_chars): New arguments translation_table and last_block.
8844 Translate characters here. Return number of carryover chars.
8845 Change caller.
8846 (produce_composition): New argument pos. Change caller.
8847 Adjust for the change of annotation data format.
8848 (produce_charset, produce_annotation): Likewise.
8849 (decode_coding, encode_coding): Don't call translate_chars.
8850 (consume_chars): New arg translation_table. Change caller.
8851 (translate_chars): Delete.
8852 (syms_of_coding): Make translation-table's number of extra slots 2.
8853
8854 2008-02-01 Kenichi Handa <handa@m17n.org>
8855
8856 * search.c (simple_search): Fix setting this_pos_byte in backward
8857 search.
8858
8859 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
8860 byte sequence.
8861 (detect_coding_ccl): Fix setting of the variable valids.
8862
8863 2008-02-01 Kenichi Handa <handa@m17n.org>
8864
8865 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
8866
8867 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
8868
8869 * editfns.c (Ftranslate_region_internal): Rename from
8870 Ftranslate_region. Accept a char-table in TABLE.
8871 (syms_of_editfns): Defsubr Stranslate_region_internal.
8872
8873 * xfaces.c (set_lface_from_font_name): If a font is specified for
8874 a frame, generate a fontset from the font.
8875 (build_scalable_font_name): If the scalable font is requested for
8876 a specific size, don't change that size.
8877 (try_font_list): Try a scalable font also in the case that a
8878 pattern string is specified.
8879
8880 2008-02-01 Kenichi Handa <handa@m17n.org>
8881
8882 * xfaces.c (Fface_font): New optional arg CHARACTER.
8883
8884 2008-02-01 Kenichi Handa <handa@m17n.org>
8885
8886 * charset.h (CHARSET_OFFSET): New macro.
8887
8888 2008-02-01 Kenichi Handa <handa@m17n.org>
8889
8890 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
8891
8892 * fontset.c (fontset_face): Handle the case that repertory is a
8893 char-table.
8894 (find_font_encoding): Return nil for unknown encoding.
8895 (Fset_fontset_font): Ignore a font of unknown encoding.
8896
8897 2008-02-01 Kenichi Handa <handa@m17n.org>
8898
8899 * keymap.c (describe_vector): Handle default value of a char table.
8900
8901 * fontset.c (fontset_face): Handle fallback fonts correctly.
8902 (Ffontset_info): Return infomation about fallback fonts.
8903
8904 2008-02-01 Kenichi Handa <handa@m17n.org>
8905
8906 * fontset.c (FONTSET_DEFAULT): New macro.
8907 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
8908 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
8909 the case that it is nil.
8910 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
8911 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
8912
8913 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
8914 subset or superset.
8915
8916 2008-02-01 Kenichi Handa <handa@m17n.org>
8917
8918 * emacs.c (main): Call init_charset after syms_of_XXX.
8919
8920 * charset.c (Vcharset_map_directory): Delete.
8921 (Vcharset_map_path): New variable.
8922 (load_charset_map_from_file): Use Vcharset_map_path instead.
8923 (init_charset): Initialize Vcharset_map_path.
8924 (syms_of_charset): Delete declaration of "charset-map-directory",
8925 add declaration of "charset-map-path".
8926
8927 2008-02-01 Kenichi Handa <handa@m17n.org>
8928
8929 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
8930 ASCII only string.
8931
8932 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
8933
8934 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
8935 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
8936
8937 2008-02-01 Kenichi Handa <handa@m17n.org>
8938
8939 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
8940
8941 * coding.c (QCmnemonic, QCdefalut_char)
8942 (QCdecode_translation_table, QCencode_translation_table)
8943 (QCpost_read_conversion, QCpre_write_conversion): New variables.
8944 (get_translation_table): Return a list of translation tables if
8945 necessary.
8946 (decode_coding): Call get_translation_table with ENCODEP 0.
8947 (char_encodable_p): If translation_table is non-nil, always call
8948 translate_char.
8949 (Fdefine_coding_system_internal): Accept list of translation
8950 tables as :encode-translation-table and :decode-translation-table.
8951 (Fcoding_system_put): New function.
8952 (syms_of_coding): Declare new symbols. Defsubr
8953 Scoding_system_put.
8954 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
8955 typically JISX0212.
8956
8957 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
8958 when the charset is superset type.
8959
8960 * character.c (translate_char): Accept list of translation tables.
8961
8962 2008-02-01 Kenichi Handa <handa@m17n.org>
8963
8964 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
8965 (CODING_ATTR_TRANS_TBL): New macro.
8966
8967 * coding.c (get_translation_table): New function.
8968 (translate_chars): Fix the bug of skipping annotation data.
8969 (decode_coding, encode_coding): Utilize get_translation_table.
8970 (char_encodable_p, Funencodable_char_position): Translate char if
8971 necessary.
8972 (Ffind_coding_systems_region_internal)
8973 (Fcheck_coding_systems_region): Setup translation table for encode
8974 in a coding system attribute vector in advance.
8975 (Fdefine_coding_system_internal): Allow a symbol as translation
8976 table. For shift-jis type coding system, allow 4th charset.
8977
8978 2008-02-01 Kenichi Handa <handa@m17n.org>
8979
8980 * coding.c (decode_coding_sjis): Check the first byte rigidly.
8981
8982 * xdisp.c (get_next_display_element): Pass -1 as POS to
8983 FACE_FOR_CHAR if displaying a C-string.
8984
8985 2008-02-01 Kenichi Handa <handa@m17n.org>
8986
8987 * composite.c (get_composition_id): Handle xoff and yoff in a
8988 composition rule.
8989
8990 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
8991 (struct composition): New member lbearing and rbearing.
8992
8993 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
8994 (x_get_glyph_overhangs): Handle a composition glyph.
8995 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
8996
8997 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
8998 composition glyph.
8999
9000 2008-02-01 Kenichi Handa <handa@m17n.org>
9001
9002 * print.c: Include charset.h.
9003 (Vprint_charset_text_property): New variable.
9004 (Qdefault): Extern it.
9005 (PRINT_STRING_NON_CHARSET_FOUND)
9006 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
9007 (print_check_string_result): New variable.
9008 (print_check_string_charset_prop): New function.
9009 (print_prune_charset_plist): New variable.
9010 (print_prune_string_charset): New function.
9011 (print_object): Call print_prune_string_charset if
9012 Vprint_charset_text_property is not t.
9013 (print_interval): Print nothing if itnerval->plist is nil.
9014 (syms_of_print): Declare Vprint_charset_text_property as a lisp
9015 variable. Init and staticpro print_prune_charset_plist.
9016
9017 2008-02-01 Kenichi Handa <handa@m17n.org>
9018
9019 * fontset.c (new_fontset_from_font_name): Use the specified font
9020 for all characters in the new fontset.
9021
9022 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
9023 OBJECT args.
9024
9025 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
9026 OBJECT args for composition too.
9027
9028 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
9029 OBJECT args.
9030
9031 2008-02-01 Kenichi Handa <handa@m17n.org>
9032
9033 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
9034
9035 * fontset.c (reorder_font_vector): Adjust for the change of
9036 FONT_DEF format.
9037 (fontset_face): New arg id. Change caller.
9038 (face_for_char): New args pos and object.
9039 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
9040 (fs_query_fontset): Check NAME by Fassoc too.
9041 (Fset_fontset_font): Allow non-XLFD font name.
9042 (Ffontset_info): Adjust for the change of FONT_DEF format.
9043
9044 * fontset.h (face_for_char): Adjust prototype.
9045
9046 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
9047 (append_space, extend_face_to_end_of_line)
9048 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
9049 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
9050
9051 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
9052 POS and OBJECT args.
9053
9054 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
9055 POS and OBJECT args.
9056
9057 2008-02-01 Jason Rumney <jasonr@gnu.org>
9058
9059 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
9060 of GlobalAlloc'ed memory.
9061
9062 2008-02-01 Kenichi Handa <handa@m17n.org>
9063
9064 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
9065
9066 * charset.h (charset_table_used): Delete extern.
9067
9068 * charset.c (charset_table_used): Make it static.
9069 (map_charset_chars): Fix args to c_function with.
9070
9071 * chartab.c (map_sub_char_table_for_charset): Fix args to
9072 c_function with.
9073
9074 * coding.h (enum coding_result_code): Delete
9075 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
9076
9077 * coding.c (Qinsufficient_source, Qinconsistent_eol)
9078 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
9079 (Vlast_code_conversion_error): New variables.
9080 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
9081 (ONE_MORE_BYTE): Record error if any instead of signaling an
9082 error. If non-ASCII multibyte char is found, return the negative
9083 value of the code. All callers changed to check it.
9084 (ONE_MORE_BYTE_NO_CHECK): Likewise.
9085 (record_conversion_result): New function. Change all codes setting
9086 coding->result to call this function.
9087 (detect_coding_utf_8, decode_coding_utf_8)
9088 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
9089 Don't use the local variable incomplete.
9090 (emacs_mule_char): Change the second arg to `const'.
9091 (decode_coding): Fix of flushing out unprocessed data.
9092 (make_conversion_work_buffer): Fix making of a work buffer.
9093 (decode_coding_object): Return coding->dst_object.
9094
9095 * fontset.c (set_fontset_font): Fix args.
9096
9097 * lisp.h (CHARACTERBITS): Define as 22.
9098
9099 * process.c (send_process): Be sure to set coding->src_multibyte.
9100
9101 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
9102
9103 2008-02-01 Kenichi Handa <handa@m17n.org>
9104
9105 * xdisp.c (handle_auto_composed_prop): Give limit to
9106 Fnext_single_char_property_change.
9107
9108 2008-02-01 Kenichi Handa <handa@m17n.org>
9109
9110 * composite.c (syms_of_composite): Don't make the composition hash
9111 table weak.
9112
9113 * fontset.c (Fset_fontset_font): Fix docstring.
9114
9115 * lisp.h (detect_coding_system): Adjust prototype.
9116
9117 * fileio.c (kill_workbuf_unwind): Delete this function.
9118 (Finsert_file_contents): Adjust the call of detect_coding_system.
9119 Get conversion_buffer by code_conversion_save. Use the macor
9120 CODING_MAY_REQUIRE_DECODING. After decoding, update
9121 coding_system.
9122
9123 * coding.h (make_conversion_work_buffer): Delete extern.
9124 (code_conversion_save): Extern it.
9125
9126 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
9127 (CODING_GET_INFO): Delete argument eol_type. Change callers.
9128 (decode_coding_utf_8): Don't do eol converion.
9129 (detect_coding_utf_16): Check coding->src_chars, not
9130 coding->src_bytes. Add heuristics for those that have no signature.
9131 (decode_coding_emacs_mule, decode_coding_iso_2022)
9132 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
9133 Don't do eol converion.
9134 (adjust_coding_eol_type): Return a new coding system.
9135 (detect_coding): Don't detect eol. Fix for utf-16 detection.
9136 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
9137 each change.
9138 (decode_coding): Pay attention to undo_list. Do eol convesion for
9139 all types of coding-systems (if necessary).
9140 (Vcode_conversion_work_buf_list): Delete it.
9141 (Vcode_conversion_reused_workbuf): Rename from
9142 Vcode_conversion_reused_work_buf.
9143 (Vcode_conversion_workbuf_name): New variable.
9144 (reused_workbuf_in_use): New variable.
9145 (make_conversion_work_buffer): Delete the arg DEPTH.
9146 (code_conversion_restore): Change argument to cons.
9147 (code_conversion_save): Delete the argument BUFFER. Change callers.
9148 (detect_coding_system): New argument src_chars. Change callers.
9149 Fix for utf-16 detection.
9150 (init_coding_once): Don't use ISO_carriage_return.
9151 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
9152 reused_workbuf_in_use.
9153
9154 2008-02-01 Kenichi Handa <handa@m17n.org>
9155
9156 * keymap.c (store_in_keymap): Pay attention to the case that idx
9157 is a cons specifying a character range.
9158
9159 2008-02-01 Kenichi Handa <handa@m17n.org>
9160
9161 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
9162 HANDLED_RECOMPUTE_PROPS.
9163
9164 * coding.c (Fdefine_coding_system_internal): Fix checking of
9165 ascii compatibility.
9166
9167 2008-02-01 Kenichi Handa <handa@m17n.org>
9168
9169 * charset.c (find_charsets_in_text): Delete unused locale variable.
9170 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
9171
9172 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
9173 Resync charset_list to Vemacs_mule_charset_list.
9174
9175 * keymap.c (store_in_keymap): Pay attention to the case that idx
9176 is a cons specifying a character range.
9177
9178 2008-02-01 Kenichi Handa <handa@m17n.org>
9179
9180 * composite.c (update_compositions): Bind inhibit-read-only, etc
9181 to t before calling remove-list-of-text-properties.
9182
9183 * print.c (print_object): Always print ASCII chars as is.
9184
9185 2008-02-01 Kenichi Handa <handa@m17n.org>
9186
9187 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
9188
9189 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
9190 is a char table.
9191
9192 2008-02-01 Kenichi Handa <handa@m17n.org>
9193
9194 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
9195
9196 2008-02-01 Kenichi Handa <handa@m17n.org>
9197
9198 * xfaces.c (set_lface_from_font_name): Fix for the case that
9199 FONTNAME is not fontset name.
9200
9201 2008-02-01 Kenichi Handa <handa@m17n.org>
9202
9203 * fns.c (base64_encode_1): Fix previous change.
9204
9205 2008-02-01 Kenichi Handa <handa@m17n.org>
9206
9207 * fontset.c (set_fontset_font): New function.
9208 (Fset_fontset_font): If a font is specified for a charset, use
9209 map_charset_chars to store the font spec in a fontset.
9210
9211 2008-02-01 Kenichi Handa <handa@m17n.org>
9212
9213 * fontset.c (fontset_face): Create a fallback fontset on demand.
9214 (make_fontset): Don't create a fallback fontset here.
9215 (free_face_fontset): Free a fallback fontset (if any) too.
9216 (n_auto_fontsets): Delete this variable.
9217 (auto_fontset_alist): New variable.
9218 (new_fontset_from_font_name): Check auto_fontset_alist.
9219 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
9220 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
9221 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
9222 Defsubr Sfontset_list_all.
9223
9224 2008-02-01 Kenichi Handa <handa@m17n.org>
9225
9226 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
9227
9228 2008-02-01 Kenichi Handa <handa@m17n.org>
9229
9230 * fontset.c (Fnew_fontset): Check NAME more rigidly.
9231
9232 2008-02-01 Kenichi Handa <handa@m17n.org>
9233
9234 * editfns.c (Fgoto_char): Fix docstring.
9235
9236 2008-02-01 Kenichi Handa <handa@m17n.org>
9237
9238 * insdel.c (insert_from_gap): Adjust intervals correctly.
9239
9240 2008-02-01 Jason Rumney <jasonr@gnu.org>
9241
9242 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
9243 (pfnGetFontUnicodeRanges): New dynamically loaded function.
9244 (w32_initialize): Try to load it.
9245 (x_get_font_repertory): Use it if available.
9246 (w32_encode_char): Add shortcut for unicode output.
9247
9248 * w32fns.c (w32_load_system_font): Default charset to -1.
9249 (x_to_w32_charset): Match all fonts for unicode.
9250 (w32_to_x_charset): New parameter matching. Don't return partial
9251 or wildcard charsets.
9252 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
9253 (w32_codepage_for_font): Return CP_UNICODE for unicode.
9254 (w32_to_x_font): Match charset to real charset.
9255 (enum_font_cb2): Always list unicode versions.
9256
9257 * makefile.w32-in (temacs): Increase EMHEAP.
9258
9259 2008-02-01 Jason Rumney <jasonr@gnu.org>
9260
9261 * w32term.c (w32_encode_char): New charset parameter.
9262 font_info.encoding becomes encoding_type.
9263 (x_get_font_repertory): New function. Warning: stub only!
9264 (x_new_font): Return quickly if font already set.
9265 (x_new_fontset): fontsetname parameter is Lisp_Object.
9266 Use new fs_query_fontset. Try new_fontset_from_font_name.
9267 Use fontset_name for return value.
9268
9269 * w32term.h: Declare x_get_font_repertory.
9270
9271 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
9272 place of find_charset_in_text. Use encode_coding_object in place
9273 of encode_coding.
9274 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
9275 decode_coding.
9276
9277 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
9278 of x_new_fontset.
9279 (w32_load_system_font): Initialize charset as unicode.
9280 font_info.encoding becomes encoding_type.
9281 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
9282 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
9283 (syms_of_w32fns): Set get_font_repertory_func.
9284
9285 * w32console.c: Include character.h. Use terminal_encode_buffer
9286 from term.c.
9287 (write_glyphs): Use new version of encode_terminal_code. Use
9288 encode_coding_object in place of encode_coding.
9289
9290 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
9291 encoding becomes encoding_type.
9292
9293 * term.c (terminal_encode_buffer): Make externally visible.
9294
9295 * makefile.w32-in: Add character.h dependancies.
9296 (character.o, chartab.o): New targets.
9297
9298 2008-02-01 Kenichi Handa <handa@m17n.org>
9299
9300 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
9301 CODING_ID_EOL_TYPE.
9302
9303 2008-02-01 Andreas Schwab <schwab@suse.de>
9304
9305 * coding.c (produce_chars): Revert last change.
9306
9307 2008-02-01 Kenichi Handa <handa@m17n.org>
9308
9309 * charset.h (charset_unicode): Extern it.
9310
9311 * charset.c (string_xstring_p): Check by (C >= 0x100).
9312 (find_charsets_in_text): Change format of the arc CHARSETS. New
9313 arg MULTIBYTE.
9314 (Ffind_charset_region, Ffind_charset_string): Adjust for the
9315 change of find_charsets_in_text.
9316 (Fsplit_char): Fix doc. Never return unknown.
9317
9318 * chartab.c (char_table_translate): Use CHARACTERP, not INETEGERP.
9319
9320 * coding.c (Fdefine_coding_system_alias): Update
9321 Vcoding_system_list.
9322
9323 * fontset.c (load_font_get_repertory): Pay attention to the case
9324 that ENCODING of a font is specified by a char-table.
9325
9326 * xterm.c (x_get_font_repertory): Handle the case that the
9327 encoding of font is other than Unicode.
9328
9329 2008-02-01 Kenichi Handa <handa@m17n.org>
9330
9331 * term.c (encode_terminal_code): Don't handle glyph-table. Check
9332 if a character is encodable by the terminal coding system. If
9333 not, produces proper number of `?'s. Update
9334 terminal_encode_buffer and terminal_encode_buf_size if necessary.
9335 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
9336
9337 2008-02-01 Kenichi Handa <handa@m17n.org>
9338
9339 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
9340 variables.
9341 (encode_terminal_code): Change argument. Encode multiple
9342 characters at once. Store the result of encoding in
9343 terminal_encode_buffer.
9344 (write_glyphs, insert_glyphs): Adjust for the change of
9345 encode_terminal_code.
9346 (term_init): Initialize terminal_encode_buffer and
9347 terminal_encode_buf_size.
9348
9349 * coding.c (consume_chars): If coding->src_object is nil, don't
9350 check annotation.
9351
9352 2008-02-01 Kenichi Handa <handa@m17n.org>
9353
9354 * character.c (char_string): Use ASCII_CHAR_P instead of
9355 SINGLE_BYTE_CHAR_P.
9356
9357 2008-02-01 Kenichi Handa <handa@m17n.org>
9358
9359 * xdisp.c (handle_auto_composed_prop): Check if the last
9360 characters of auto-composed region is newly composed with the
9361 following characters.
9362 (handle_composition_prop): Fix checking of point being inside
9363 composition.
9364
9365 2008-02-01 Kenichi Handa <handa@m17n.org>
9366
9367 * fns.c (concat): Don't change multibyteness of the result by
9368 concatenating an 8-bit character.
9369
9370 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
9371 multibyteness of the result when newelt is an 8-bit character.
9372
9373 2008-02-01 Dave Love <fx@gnu.org>
9374
9375 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
9376 EMACS_INT.
9377
9378 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
9379
9380 * xfaces.c (face_numeric_value): Declare dim size_t.
9381 (Finternal_lisp_face_equal_p): Remove unused f.
9382
9383 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
9384 (MATRIX_ROW): Remove unused vars.
9385 (draw_glyphs, x_insert_glyphs, fast_find_position)
9386 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
9387 byte/char counts.
9388
9389 * regex.c (regex_compile): Remove unused var.
9390
9391 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
9392
9393 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
9394 (Faccessible_keymaps, where_is_internal): Remove unused vars.
9395
9396 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
9397
9398 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
9399
9400 * fileio.c (Fwrite_region): Remove unused var.
9401
9402 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
9403 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
9404
9405 * composite.c (Fremove_list_of_text_properties): Declare.
9406
9407 * coding.c (inhibit_pre_post_conversion): Remove (unused).
9408 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
9409 (coding_inherit_eol_type): Remove unused attrs.
9410 (detect_coding): Cast arg of detect_eol.
9411
9412 * charset.c (syms_of_charset): Remove unused var p.
9413 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
9414 byte/char counts.
9415
9416 * casetab.c (set_case_table): Remove unused var.
9417
9418 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
9419 unused vars.
9420
9421 2008-02-01 Dave Love <fx@gnu.org>
9422
9423 * xterm.c (x_bitmap_mask): Declare.
9424
9425 2008-02-01 Dave Love <fx@gnu.org>
9426
9427 * xterm.c (x_term_init): Fix type error.
9428
9429 * lisp.h: Add Funibyte_char_to_multibyte.
9430
9431 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
9432 (Fset_coding_system_priority): Doc fix.
9433
9434 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
9435
9436 * indent.c (check_composition): Make start and end EMACS_INT.
9437
9438 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
9439
9440 * xdisp.c (handle_composition_prop, check_point_in_composition):
9441 Make buffer positions EMACS_INT.
9442
9443 * composite.c (find_composition, run_composition_function)
9444 (update_compositions, Ffind_composition_internal): Make buffer
9445 positions EMACS_INT.
9446
9447 * composite.h (find_composition, update_compositions): Make
9448 position args EMACS_INT.
9449
9450 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
9451
9452 * intervals.c (get_property_and_range):
9453 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
9454
9455 * unexalpha.c: Don't include varargs.h.
9456
9457 2008-02-01 Dave Love <fx@gnu.org>
9458
9459 * coding.h (ENCODE_UTF_8): New.
9460
9461 * Makefile.in (gtkutil.o): Depend on coding.h.
9462
9463 * coding.c (Fset_coding_system_priority): Doc fix.
9464
9465 2008-02-01 Kenichi Handa <handa@m17n.org>
9466
9467 * fileio.c (Finsert_file_contents): Call setup_coding_system in
9468 the case of auto saving.
9469
9470 2008-02-01 Andreas Schwab <schwab@suse.de>
9471
9472 * chartab.c (map_char_table, map_char_table_for_charset): Protect
9473 `range' from GC.
9474
9475 2008-02-01 Kenichi Handa <handa@m17n.org>
9476
9477 * coding.c (decode_coding_sjis): Check bytes more rigidly.
9478
9479 2008-02-01 Kenichi Handa <handa@m17n.org>
9480
9481 * fileio.c (choose_write_coding_system): Return a decided coding system.
9482 (Fwrite_region): Set Vlast_coding_system_used to the return value
9483 of choose_write_coding_system.
9484
9485 2008-02-01 Kenichi Handa <handa@m17n.org>
9486
9487 * charset.c (Fset_charset_priority): Pay attention to duplicated
9488 arguments.
9489
9490 * coding.c (QCcategory): New variable.
9491 (syms_of_coding): Defsym it. Set all elements of
9492 Vcoding_category_table and their symbol values.
9493 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
9494 coding-category-XXX, and coding-category-list.
9495 (Fdefine_coding_system_internal): Add category in the plist.
9496
9497 2008-02-01 Kenichi Handa <handa@m17n.org>
9498
9499 * callproc.c (Fcall_process): Handle carryover correctly.
9500
9501 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
9502 (raw_text_coding_system): Check NILP (coding_system).
9503 (coding_inherit_eol_type): Check NILP (coding_system) and
9504 NILP (parent).
9505 (consume_chars): Fix for the case of raw-text.
9506
9507 * process.c (read_process_output): Handle carryover correctly.
9508
9509 2008-02-01 Dave Love <fx@gnu.org>
9510
9511 * regex.c (re_search_2): Fix last change.
9512
9513 2008-02-01 Kenichi Handa <handa@m17n.org>
9514
9515 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
9516 target_multibyte. Even in a unibyte case, return a converted
9517 multibyte char.
9518 (GET_CHAR_AFTER): New macro.
9519 (PATFETCH): Translate via multibyte char.
9520 (HANDLE_UNIBYTE_RANGE): Delete this macro.
9521 (SETUP_MULTIBYTE_RANGE): New macro.
9522 (regex_compile): Setup compiled code so that its multibyteness
9523 matches that of a target. Fix the handling of "[X-YZ]" using
9524 SETUP_MULTIBYTE_RANGE.
9525 (analyse_first) <charset>: For filling fastmap for all multibyte
9526 characters, don't check by BASE_LEADING_CODE_P.
9527 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
9528 the same as RE_MULTIBYTE_P (bufp) now.
9529 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
9530 (TARGET_CHAR_AND_LENGTH): Delete this macro.
9531 (TRANSLATE_VIA_MULTIBYTE): New macro.
9532 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
9533 It is the same as RE_MULTIBYTE_P (bufp) now.
9534 <exactn>: Translate via multibyte.
9535 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
9536 translate it.
9537 <charset, charset_not>: Fetch a character by
9538 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
9539 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
9540 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
9541 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
9542 by GET_CHAR_AFTER.
9543 (bcmp_translate): Likewise.
9544
9545 * search.c (compile_pattern): Check the member target_multibyte,
9546 not the member multibyte of buf.
9547
9548 * lread.c (read1): While reading a string, set force_singlebyte
9549 and force_multibyte correctly.
9550
9551 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
9552 up of unibyte_to_multibyte_table.
9553
9554 2008-02-01 Kenichi Handa <handa@m17n.org>
9555
9556 * coding.c (setup_coding_system): If coding has
9557 post-read-conversion or pre-write-conversion, set
9558 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
9559 respectively.
9560 (decode_coding_gap): Run post-read-conversion if any.
9561
9562 * fileio.c (Finsert_file_contents): Even if we read into a
9563 unibyte buffer, check if we must decode the result or not.
9564
9565 2008-02-01 Kenichi Handa <handa@m17n.org>
9566
9567 * coding.c (make_conversion_work_buffer): Change the work buffer
9568 name to the same one as that of Emacs 21.
9569
9570 2008-02-01 Kenichi Handa <handa@m17n.org>
9571
9572 * coding.h (make_conversion_work_buffer): Adjust prototype.
9573 (code_conversion_restore): Don't extern it.
9574
9575 * coding.c (detected_mask): Delete unused variable.
9576 (decode_coding_iso_2022): Pay attention to the byte sequence of
9577 CTEXT extended segment, and retain those bytes as is.
9578 (decode_coding_ccl): Delete unused variable `valids'.
9579 (setup_coding_system): Delete unused variable `category'.
9580 (consume_chars): Delete unused variable `category'. Make it work
9581 for non-multibyte case.
9582 (make_conversion_work_buffer): Change argument.
9583 (saved_coding): Delete unused variable.
9584 (code_conversion_restore): Don't check saved_coding->destination.
9585 (code_conversion_save): New function.
9586 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
9587 instead of record_unwind_protect.
9588 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
9589 (detect_coding_system): Delete unused variable `mask'.
9590 (Fdefine_coding_system_internal): Delete unused vaiable id.
9591
9592 * fileio.c (kill_workbuf_unwind): New function.
9593 (Finsert_file_contents): On replacing, call
9594 make_conversion_work_buffer with correct args, and call
9595 record_unwind_protect with the first arg kill_workbuf_unwind.
9596
9597 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
9598
9599 2008-02-01 Kenichi Handa <handa@m17n.org>
9600
9601 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
9602 (fontset_add): Fix for the case that TO is less than TO1.
9603 (Ffontset_info): Don't use fallback fontset on checking the
9604 default fontset.
9605 (dump_fontset): New function for debugging.
9606
9607 * coding.c (Fdefine_coding_system_internal): Fix for the case that
9608 coding_type is Qcharset.
9609
9610 2008-02-01 Kenichi Handa <handa@m17n.org>
9611
9612 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
9613 (map_char_table): Don't inherit the value from the parent on
9614 initializing VAL. Adjust for the above change.
9615
9616 2008-02-01 Kenichi Handa <handa@m17n.org>
9617
9618 * coding.c (Qsignature, Qendian): Delete these variables.
9619 (syms_of_coding): Don't initialize them.
9620 (CATEGORY_MASK_UTF_16_AUTO): New macro.
9621 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
9622 detect_info->found.
9623 (decode_coding_utf_16): Don't detect BOM here.
9624 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
9625 is NOT utf_16_without_bom.
9626 (setup_coding_system): For a coding system of type utf-16, check
9627 if the attribute :endian is Qbig or not (not nil or not), and set
9628 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
9629 (detect_coding): If coding type is utf-16 and BOM detection is
9630 required, detect it.
9631 (Fdefine_coding_system_internal): For a coding system of type
9632 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
9633
9634 2008-02-01 Kenichi Handa <handa@m17n.org>
9635
9636 * coding.c (coding_set_source): Fix for the case that the current
9637 buffer is different from coding->src_object.
9638 (decode_coding_object): Don't use the conversion work buffer if
9639 DST_OBJECT is a buffer.
9640
9641 2008-02-01 Dave Love <fx@gnu.org>
9642
9643 * lread.c (read_emacs_mule_char) [len==2]: Index
9644 emacs_mule_charset correctly.
9645
9646 2008-02-01 Dave Love <fx@gnu.org>
9647
9648 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
9649 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
9650 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
9651 treated specially.)
9652 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
9653 (detected_mask): Remove Big5 bits.
9654
9655 2008-02-01 Kenichi Handa <handa@m17n.org>
9656
9657 The following changes are to make the font rescaling facility
9658 compatible with Emacs 21.
9659
9660 * xfaces.c (Vface_font_rescale_alist): Rename from
9661 Vface_resizing_fonts.
9662 (struct font_name): Rename member resizing_ratio to rescale_ratio.
9663 (font_rescale_ratio): Rename from font_resizing_ratio.
9664 (split_font_name): Set font->rescale_ratio.
9665 (better_font_p): Pay attention to font->rescale_ratio.
9666 (build_scalable_font_name): Likewise. Change RESX, and RESY
9667 fields.
9668 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
9669
9670 2008-02-01 Kenichi Handa <handa@m17n.org>
9671
9672 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
9673 (Qutf_16_le): Remove these variables.
9674 (syms_of_coding): Don't DEFSYM them.
9675 (decode_coding_utf_16): Fix handling of BOM.
9676 (encode_coding_utf_16): Fix handling of BOM.
9677
9678 2008-02-01 Kenichi Handa <handa@m17n.org>
9679
9680 * fileio.c (Finsert_file_contents): On replacing, before decoding
9681 the file into the work buffer, set point of the work buffer to the end.
9682
9683 2008-02-01 Dave Love <fx@gnu.org>
9684
9685 * coding.c (Fcheck_coding_systems_region): Fix type errors.
9686
9687 2008-02-01 Dave Love <fx@gnu.org>
9688
9689 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
9690 and fix C types.
9691
9692 2008-02-01 Kenichi Handa <handa@m17n.org>
9693
9694 * xdisp.c (SKIP_GLYPHS): New macro.
9695 (set_cursor_from_row): Pay attention to string display properties.
9696
9697 * category.c (copy_category_entry): Fix for the case that RANGE
9698 is an integer.
9699
9700 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
9701
9702 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
9703
9704 2008-02-01 Kenichi Handa <handa@m17n.org>
9705
9706 * charset.c (Fcharset_id_internal): New function.
9707 (syms_of_charset): Defsubr it.
9708
9709 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
9710 with the last arg charset_list acquired from coding.
9711 (Fdefine_coding_system_internal): For ccl-based coding system, fix
9712 the attribute coding_attr_ccl_valids.
9713
9714 * coding.h (enum define_coding_ccl_arg_index): Set the first
9715 member coding_arg_ccl_decoder to coding_arg_max.
9716
9717 * ccl.h (ccl_driver): Adjust prototype.
9718
9719 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
9720 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
9721 of DECODE_CAHR, ENCODE_CHAR, CHAR_CHARSET.
9722 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
9723 last arg Qnil.
9724
9725 2008-02-01 Kenichi Handa <handa@m17n.org>
9726
9727 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
9728 call encode_char.
9729
9730 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
9731
9732 2008-02-01 Dave Love <fx@gnu.org>
9733
9734 * composite.c (syms_of_composite): Make composition_hash_table weak.
9735
9736 2008-02-01 Kenichi Handa <handa@m17n.org>
9737
9738 * dispextern.h (check_face_attributes, generate_ascii_font_name)
9739 (font_name_registry): Don't extern them.
9740 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
9741
9742 * fontset.h (Qfontset): Don't extern it.
9743 (new_fontset_from_font_name): Extern it.
9744
9745 * fontset.c: Give 8 extra slots to fontset objects.
9746 (Qfontset_info): New variable.
9747 (syms_of_fontset): Defsym it.
9748 (FONTSET_FALLBACK): New macro.
9749 (fontset_face): Try also the default fontset.
9750 (make_fontset): Realize a fallback fontset from the default fontset.
9751 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
9752 using split_font_name_into_vector and build_font_name_from_vector.
9753 (Fset_fontset_font): Access the elements of font_spec by enum
9754 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
9755 name by using split_font_name_into_vector.
9756 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
9757 generate a proper font name from the fontset name. Update
9758 Vfontset_alias_alist.
9759 (n_auto_fontsets): New variable.
9760 (new_fontset_from_font_name): New function.
9761 (Ffont_info): Store the information about fonts generated from the
9762 default fontset in the first extra slot of the returned char-table.
9763
9764 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
9765 (font_name_registry): Delete function.
9766 (split_font_name_into_vector): New function.
9767 (build_font_name_from_vector): New function.
9768 (font_list): The argument REGISTRY is now a list of registry names.
9769 (choose_face_font): If we are choosing an ASCII font, and ATTRS
9770 specifies an explicit font name, return the name as is. Make a
9771 list of registy names.
9772
9773 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
9774 of x_new_fontset.
9775 (Fx_create_frame): Don't call x_new_fontset here. Just use
9776 x_list_fonts to check the existence of fonts.
9777
9778 * xterm.h (x_new_fontset): Adjust prototype.
9779
9780 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
9781 string. Use new_fontset_from_font_name to create a fontset from a
9782 font name.
9783
9784 2008-02-01 Kenichi Handa <handa@m17n.org>
9785
9786 * syntax.c (Vfind_word_boundary_function_table): New name for
9787 Vnext_word_boundary_function_table.
9788 (find-word-boundary-function-table): New name for
9789 next-word-boundary-function-table.
9790
9791 2008-02-01 Dave Love <fx@gnu.org>
9792
9793 * Makefile.in: Fix some dependencies.
9794
9795 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
9796 set it to nil before returning.
9797
9798 * composite.c (update_compositions): Fix type error.
9799
9800 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
9801
9802 2008-02-01 Kenichi Handa <handa@m17n.org>
9803
9804 * xterm.c (x_new_font): Optimize for the case that the font is
9805 already set for the frame.
9806
9807 2008-02-01 Kenichi Handa <handa@m17n.org>
9808
9809 * chartab.c (char_table_ascii): Check if the char table contents
9810 is sub-char-table or not.
9811 (char_table_set, char_table_set_range): Fix argument to
9812 char_table_ascii.
9813
9814 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
9815 (detect_coding_utf_8, detect_coding_utf_16)
9816 (detect_coding_emacs_mule, detect_coding_iso_2022)
9817 (detect_coding_sjis, detect_coding_big5)
9818 (detect_coding_ccl, detect_coding_charset): Change argument MASK
9819 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
9820 sequence is valid in this coding system. Change callers.
9821 (MAX_ANNOTATION_LENGTH): New macro.
9822 (ADD_ANNOTATION_DATA): New macro.
9823 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
9824 ADD_ANNOTATION_DATA. Change the format of annotation data.
9825 (ADD_CHARSET_DATA): New macro.
9826 (emacs_mule_char): New argument ID. Change callers.
9827 (decode_coding_emacs_mule, decode_coding_iso_2022)
9828 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
9829 Produce charset annotation data in coding->charbuf.
9830 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
9831 to charset annotation data in coding->charbuf.
9832 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
9833 coding->common_flags if the coding system is iso-2022 based and
9834 uses designation.
9835 (produce_composition): Adjust for the new annotation data format.
9836 (produce_charset): New function.
9837 (produce_annotation): Handle charset annotation.
9838 (handle_composition_annotation, handle_charset_annotation): New
9839 functions.
9840 (consume_chars): Handle charset annotation. Utilize the above two
9841 functions.
9842 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
9843 buffer, get the deleted text as a string and set
9844 coding->src_object to that string.
9845 (detect_coding, detect_coding_system): Use the new struct
9846 coding_detection_info.
9847
9848 * coding.h (struct coding_detection_info): New structure.
9849 (struct coding_system): Adjust prototype of the member `detector'.
9850 (CODING_ANNOTATE_CHARSET_MASK): New macro.
9851
9852 2008-02-01 Kenichi Handa <handa@m17n.org>
9853
9854 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
9855
9856 2008-02-01 Dave Love <fx@gnu.org>
9857
9858 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
9859 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
9860 to new local and nullify apropos_accumulate before returning.
9861 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
9862
9863 2008-02-01 Kenichi Handa <handa@m17n.org>
9864
9865 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
9866 correctly.
9867
9868 2008-02-01 Dave Love <fx@gnu.org>
9869
9870 * fns.c (Flanginfo): Call synchronize_system_time_locale.
9871
9872 2008-02-01 Kenichi Handa <handa@m17n.org>
9873
9874 The following changes are to make character composition happen
9875 automatically on displaying.
9876
9877 * Makefile.in (lisp, shortlisp): Add composite.elc.
9878
9879 * composite.h (Qauto_composed, Vauto_composition_function)
9880 (Qauto_composition_function): Extern them.
9881
9882 * composite.c (Vcomposition_function_table)
9883 (Qcomposition_function_table): Delete variables.
9884 (Qauto_composed, Vauto_composition_function)
9885 (Qauto_composition_function): New variables.
9886 (run_composition_function): Don't call
9887 compose-chars-after-function.
9888 (update_compositions): Clear `auto-composed' text property.
9889 (compose_chars_in_text): Delete this function.
9890 (syms_of_composite): Staticpro Qauto_composed and
9891 Qauto_composition_function. Declare Vauto_composition_function as
9892 a Lisp variable.
9893
9894 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
9895
9896 * xdisp.c (it_props): Add an entry for Qauto_composed.
9897 (handle_auto_composed_prop): New function.
9898
9899 * xselect.c (selection_data_to_lisp_data): Don't call
9900 compose_chars_in_text.
9901
9902 2008-02-01 Dave Love <fx@gnu.org>
9903
9904 * keyboard.c (read_char): Modify checking around use of
9905 Vkeyboard_translate_table.
9906
9907 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
9908 and fix C types.
9909
9910 2008-02-01 Kenichi Handa <handa@m17n.org>
9911
9912 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
9913 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
9914 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
9915 the case that the last byte is '\r' correctly.
9916 (decode_coding): Flush out the unprocessed data correctly.
9917 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
9918
9919 2008-02-01 Dave Love <fx@gnu.org>
9920
9921 * xterm.c (XTread_socket): Fix changes for defined keysyms.
9922 Add XK_ISO... case.
9923 (xaw_scroll_callback): Revert last change.
9924
9925 2008-02-01 Kenichi Handa <handa@m17n.org>
9926
9927 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
9928
9929 2008-02-01 Kenichi Handa <handa@m17n.org>
9930
9931 * xfaces.c (Vface_resizing_fonts): New variable.
9932 (struct font_name): New member `resizing_ratio'.
9933 (font_resizing_ratio): New function.
9934 (split_font_name): Set font->resizing_ratio.
9935 (better_font_p): Pay attention to font->resizing_ratio.
9936 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
9937 RESX, and RESY fields.
9938 (try_alternative_families): Try scalable fonts if
9939 Vscalable_fonts_allowed is not Qt.
9940 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
9941
9942 2008-02-01 Dave Love <fx@gnu.org>
9943
9944 * xterm.c (xaw_scroll_callback): Cast correctly.
9945
9946 2008-02-01 Dave Love <fx@gnu.org>
9947
9948 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
9949 (lispy_kana_keys): Comment out.
9950 (make_lispy_event) [XK_kana_A]: Comment out.
9951
9952 * xterm.c (xaw_scroll_callback): Cast call_data.
9953 (XTread_socket): Deal with ASCII keysyms.
9954 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
9955
9956 2008-02-01 Dave Love <fx@gnu.org>
9957
9958 * xterm.c (Vx_keysym_table): New.
9959 (syms_of_xterm): Initialize it.
9960 (XTread_socket): Use it.
9961 From head: Eliminate incorrect optimization that tried to avoid
9962 decoding the output of X*LookupString.
9963 (x_get_font_repertory): Delete charset declaration.
9964
9965 2008-02-01 Kenichi Handa <handa@m17n.org>
9966
9967 * coding.c (detect_coding_charset): If only ASCII bytes are found,
9968 return 0.
9969 (Fdefine_coding_system_internal): Setup
9970 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
9971
9972 2008-02-01 Dave Love <fx@gnu.org>
9973
9974 * coding.c (Fcheck_coding_system): Doc fix.
9975
9976 * editfns.c (Finsert_byte): Return a proper value.
9977
9978 2008-02-01 Kenichi Handa <handa@m17n.org>
9979
9980 * coding.c (decode_coding): Fix args to translate_chars. Pay
9981 attention to Vstandard_translation_table_for_decode.
9982 (encode_coding): Fix args to translate_chars. Pay attention to
9983 Vstandard_translation_table_for_encode.
9984
9985 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
9986 SINGLE_BYTE_CHAR_P.
9987
9988 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
9989 not by SINGLE_BYTE_CHAR_P.
9990
9991 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
9992 SINGLE_BYTE_CHAR_P.
9993
9994 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
9995 SINGLE_BYTE_CHAR_P.
9996
9997 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
9998 by SINGLE_BYTE_CHAR_P.
9999
10000 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
10001 SINGLE_BYTE_CHAR_P.
10002
10003 2008-02-01 Dave Love <fx@gnu.org>
10004
10005 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
10006
10007 2008-02-01 Dave Love <fx@gnu.org>
10008
10009 * fns.c (Flanginfo): Fix typo.
10010
10011 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
10012
10013 2008-02-01 Kenichi Handa <handa@m17n.org>
10014
10015 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
10016 (detect_coding_emacs_mule, detect_coding_iso_2022)
10017 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
10018 incomplete byte sequence. Don't update *mask when correctly detected.
10019 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
10020 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
10021 (detect_coding, detect_coding_system): Adjust for the changes above.
10022
10023 2008-02-01 Kenichi Handa <handa@m17n.org>
10024
10025 * character.c (char_string): Rename from
10026 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
10027 (string_char): Rename from string_char.
10028
10029 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
10030 if C is greater than MAX_3_BYTE_CHAR.
10031 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
10032 string_char instead of string_char_with_unification.
10033
10034 2008-02-01 Dave Love <fx@gnu.org>
10035
10036 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
10037
10038 2008-02-01 Kenichi Handa <handa@m17n.org>
10039
10040 * keymap.c (push_key_description): Pay attention to force_multibyte.
10041
10042 * regex.c (re_search_2): Fix for the case of unibyte buffer.
10043
10044 2008-02-01 Dave Love <fx@gnu.org>
10045
10046 * charset.c (define_charset_internal): Rename `supprementary'.
10047
10048 * Makefile.in (lisp, shortlisp): Remove latin-N.
10049
10050 2008-02-01 Dave Love <fx@gnu.org>
10051
10052 * xfns.c (x_window, x_window): Use use_xim.
10053
10054 * xterm.c (use_xim): Initialize.
10055 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
10056 (x_term_init): Maybe set use_xim.
10057
10058 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
10059
10060 2008-02-01 Kenichi Handa <handa@m17n.org>
10061
10062 * search.c (search_buffer): Fix case-fold-search of multibyte
10063 characters.
10064 (boyer_moore): Rename the last argument to char_high_bits.
10065
10066 2008-02-01 Kenichi Handa <handa@m17n.org>
10067
10068 * xdisp.c (display_string): Fix for the case of zero width glyph.
10069
10070 * xfns.c (x_set_font): Change the error message of the case that
10071 x_new_fontset returns Qt.
10072
10073 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
10074 (Finternal_set_lisp_face_attribute): Use signal_error for the
10075 error of invalid fontset.
10076
10077 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
10078 fontset, return Qt.
10079
10080 2008-02-01 Dave Love <fx@gnu.org>
10081
10082 * unexelf.c (unexec): Make .got handling not SGI-specific.
10083
10084 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
10085
10086 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
10087
10088 * keyboard.c (read_key_sequence): Fix type error.
10089
10090 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
10091 type error.
10092
10093 * fontset.c (fontset_add): Return Lisp_Object.
10094
10095 2008-02-01 Dave Love <fx@gnu.org>
10096
10097 * charset.h (charset_ordered_list_tick): Declare extern.
10098
10099 2008-02-01 Kenichi Handa <handa@m17n.org>
10100
10101 The following changes (and some of 2008-02-01 changes of mine) are
10102 for handling syntax, category, and case conversion for unibyte
10103 characters by converting them to multibyte on the fly. With these
10104 changes, we don't have to setup syntax and case tables for unibyte
10105 characters in each language environment.
10106
10107 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
10108 multibyte if necessary.
10109
10110 * bytecode.c (Fbyte_code): Likewise.
10111
10112 * character.h (LEADING_CODE_LATIN_1_MIN)
10113 (LEADING_CODE_LATIN_1_MAX): New macros.
10114 (unibyte_to_multibyte_table): Extern it.
10115 (unibyte_char_to_multibyte): New macro.
10116 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
10117 (CHAR_LEADING_CODE): New macro.
10118 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
10119
10120 * character.c (unibyte_to_multibyte_table): New variable.
10121 (unibyte_char_to_multibyte): Move to character.h and define as macro.
10122 (multibyte_char_to_unibyte): If C is an eight-bit character,
10123 convert it to the corresponding byte value.
10124
10125 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
10126 not 1, singals an error. Update the elements of
10127 unibyte_to_multibyte_table.
10128 (init_charset_once): Initialize unibyte_to_multibyte_table.
10129 (syms_of_charset): Define the charset `iso-8859-1'.
10130
10131 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
10132 as is without converting it to unibyte. In a unibyte buffer,
10133 convert C to multibyte before checking the syntax.
10134
10135 * lisp.h (unibyte_char_to_multibyte): Delete extern.
10136
10137 * minibuf.c (Fminibuffer_complete_word): Use the macro
10138 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
10139
10140 * regex.h (struct re_pattern_buffer): New member target_multibyte.
10141
10142 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
10143 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
10144 that is zero, convert an eight-bit char to multibyte.
10145 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
10146 non-emacs case.
10147 (PATFETCH): Convert an eight-bit char to multibyte.
10148 (HANDLE_UNIBYTE_RANGE): New macro.
10149 (regex_compile): Setup the compiled pattern for multibyte chars
10150 even if the given regex string is unibyte. Use PATFETCH_RAW
10151 instead of PATFETCH in many places. To handle `charset'
10152 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
10153 only for ASCII chars.
10154 (analyse_first) <exactn>: Simplify because the compiled pattern
10155 is multibyte.
10156 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
10157 <charset>: Use CHAR_LEADING_CODE to get leading codes.
10158 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
10159 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
10160 multibyte always 1.
10161 (re_search_2): In emacs, set the locale variable multibyte to 1,
10162 otherwise to 0. New local variable target_multibyte. Check it
10163 to decide the multibyteness of STR1 and STR2. If
10164 target_multibyte is zero, convert unibyte chars to multibyte
10165 before translating and checking fastmap.
10166 (TARGET_CHAR_AND_LENGTH): New macro.
10167 (re_match_2_internal): In emacs, set the locale variable multibyte
10168 to 1, otherwise to 0. New local variable target_multibyte. Check
10169 it to decide the multibyteness of STR1 and STR2. Use
10170 TARGET_CHAR_AND_LENGTH to fetch a character from D.
10171 <charset, charset_not>: If multibyte is nonzero, check fastmap
10172 only for ASCII chars. Call bcmp_translate with
10173 target_multibyte, not with multibyte.
10174 <begline>: Declare the local variable C as `unsigned'.
10175 (bcmp_translate): Change the last arg name to target_multibyte.
10176
10177 * search.c (compile_pattern_1): Don't adjust the multibyteness of
10178 the regexp pattern and the matching target. Set cp->buf.multibyte
10179 to the multibyteness of the regexp pattern. Set
10180 cp->but.target_multibyte to the multibyteness of the matching target.
10181 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
10182 FETCH_STRING_CHAR_ADVANCE.
10183 (Freplace_match): Convert unibyte chars to multibyte.
10184
10185 * syntax.c (char_quoted, back_comment, scan_words)
10186 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
10187 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
10188 unibyte chars to multibyte.
10189 (skip_chars): Delete the arg syntaxp, and move the code for
10190 handling syntaxes to skip_syntaxes. Change callers.
10191 Fix the case that the multibyteness of STRING and the current
10192 buffer doesn't match.
10193 (skip_syntaxes): New function.
10194 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
10195 SINGLE_BYTE_CHAR_P.
10196
10197 2008-02-01 Kenichi Handa <handa@m17n.org>
10198
10199 * xfaces.c (QCfontset): New variable.
10200 (LFACE_FONTSET): New macro.
10201 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
10202 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
10203 (Finternal_set_lisp_face_attribute)
10204 (Finternal_get_lisp_face_attribute): Handle QCfontset.
10205 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
10206 check also LFACE_FONTSET_INDEX.
10207 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
10208 attrs[LFACE_FONT_INDEX].
10209 (syms_of_xfaces): Intern and staticpro QCfontset.
10210
10211 * dispextern.h (enum lface_attribute_index): New member
10212 LFACE_FONTSET_INDEX.
10213
10214 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
10215
10216 2008-02-01 Kenichi Handa <handa@m17n.org>
10217
10218 * coding.c (coding_set_destination): Fix coding->destination for
10219 the case converting a region.
10220 (encode_coding_utf_8): Encode eight-bit chars as single byte.
10221 (encode_coding_object): Fix coding->dst_pos and
10222 coding->dst_pos_byte for the case converting a region.
10223
10224 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
10225
10226 * character.h (BYTE8_STRING): New macro.
10227
10228 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
10229
10230 2008-02-01 Kenichi Handa <handa@m17n.org>
10231
10232 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
10233 characters by octal form.
10234
10235 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
10236
10237 * buffer.h (_fetch_multibyte_char_len): Delete extern.
10238 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
10239 _fetch_multibyte_char_len.
10240 (FETCH_CHAR_AS_MULTIBYTE): New macro.
10241
10242 * casetab.c (set_canon, set_identity, shuffle): Simplify.
10243
10244 * casefiddle.c (casify_object): Simplify. Handle the case that
10245 the case conversion change the byte length.
10246 (casify_region): Likewise.
10247
10248 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
10249
10250 * character.c (_fetch_multibyte_char_len): Delet this variable.
10251 (syms_of_character): Setup Vprintable_chars.
10252
10253 * editfns.c (Fchar_equal): Fix for the unibyte case.
10254 (Finsert_byte): New function.
10255 (syms_of_editfns): Defsubr it.
10256
10257 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
10258 of direct code 0x3ffff.
10259
10260 * search.c (Freplace_match): Fix for the unibyte case.
10261
10262 2008-02-01 Kenichi Handa <handa@m17n.org>
10263
10264 * lread.c (safe_to_load_p): Fix the logic.
10265
10266 * syntax.c (scan_words): Don't treat characters belonging to
10267 different scripts as constituting a word.
10268
10269 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
10270
10271 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
10272
10273 * emacs.c (main): In the case of --unibyte, instead of aborting on
10274 finding non-empty buffer, make it unibyte.
10275
10276 2008-02-01 Kenichi Handa <handa@m17n.org>
10277
10278 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
10279 to create a fontset.
10280
10281 2008-02-01 Dave Love <fx@gnu.org>
10282
10283 * character.c (Funibyte_char_to_multibyte): Doc fix.
10284
10285 * xfns.c [HAVE_STDLIB_H]: Fix last change.
10286
10287 2008-02-01 Kenichi Handa <handa@m17n.org>
10288
10289 * fontset.c (fontset_add): Make the type `int'.
10290 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
10291
10292 * character.c (unibyte_char_to_multibyte)
10293 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
10294 charset_unibyte, not charset_primary.
10295
10296 * charset.h (charset_unibyte): Extern it instead of charset_primary.
10297
10298 * charset.c (charset_unibyte): Rename from charset_primary.
10299 (Funibyte_charset): Rename from Fprimary_charset.
10300 (Fset_unibyte_charset): Rename from Fset_primary_charset.
10301 (syms_of_charset): Adjust for the above changes.
10302
10303 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
10304 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
10305 it->multibyte_p is zero.
10306
10307 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
10308 Delete extern.
10309
10310 2008-02-01 Kenichi Handa <handa@m17n.org>
10311
10312 * coding.c (Fdefine_coding_system_internal): Fix category setting
10313 for a coding system of type iso-2022.
10314
10315 2008-02-01 Kenichi Handa <handa@m17n.org>
10316
10317 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
10318
10319 2008-02-01 Kenichi Handa <handa@m17n.org>
10320
10321 * syntax.c (Vnext_word_boundary_function_table): New variable.
10322 (next-word-boundary-function-table): Declare it as a Lisp variable
10323 in syms_of_syntax.
10324 (scan_words): Call functions in Vnext_word_boundary_function_table
10325 if any.
10326
10327 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
10328
10329 * fontset.c (fs_load_font): If fontp->charset is not negative,
10330 return fontp without setting its members.
10331
10332 2008-02-01 Dave Love <fx@gnu.org>
10333
10334 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
10335
10336 * m/sparc.h (HAVE_ALLOCA): Delete.
10337
10338 * s/irix6-5.h: Don't include strings.h.
10339 (bcopy, bzero, bcmp): Don't undef.
10340
10341 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
10342
10343 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
10344 (TIOCSIGSEND): Don't test IRIX6.
10345 (bcopy, bzero, bcmp): Define conditionally.
10346
10347 2008-02-01 Kenichi Handa <handa@m17n.org>
10348
10349 * buffer.c (Qas, Qmake, Qto): New variables.
10350 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
10351 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
10352
10353 * callproc.c (Fcall_process): Don't call insert_1_both directly if
10354 we are inserting a process output into a multibyte buffer.
10355
10356 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
10357 multibyte_char_to_unibyte.
10358
10359 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
10360 by the primary charset, make it eight-bit char.
10361 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
10362
10363 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
10364 (charset_8_bit__control, charset_8_bit_graphic)
10365 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
10366 (define_charset_internal): New function.
10367 (syms_of_charset): Call define_charset_internal for pre-defined
10368 charsets.
10369
10370 * charset.h (charset_8_bit): Extern it.
10371
10372 * coding.c (make_conversion_work_buffer): Adjust for the change
10373 of Fset_buffer_multibyte.
10374 (encode_coding_raw_text): Increment p0 in the loop.
10375
10376 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
10377
10378 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
10379 for the change of Fset_buffer_multibyte.
10380
10381 * fns.c (Fstring_to_multibyte): New function.
10382 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
10383
10384 2008-02-01 Dave Love <fx@gnu.org>
10385
10386 * xfns.c (x_put_x_image): Declare args.
10387
10388 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
10389 (try_font_list): Declare an arg.
10390
10391 * xdisp.c (message2_nolog, set_message): Declare an arg.
10392
10393 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
10394
10395 * syntax.c (scan_sexps_forward): Declare an arg.
10396
10397 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
10398 Declare an arg.
10399
10400 * lisp.h (Fnew_fontset): Declare.
10401
10402 * keymap.c (push_key_description): Call CHARACTERP correctly.
10403
10404 * fontset.c (fontset_add): Declare args. Call make_number correctly.
10405 (face_for_char): Delete unused vars.
10406 (Fset_fontset_font): Doc fix. Delete unused vars.
10407
10408 * doc.c (Fsubstitute_command_keys): Delete unused vars.
10409
10410 * composite.c (update_compositions): Declare arg.
10411
10412 * cm.c (calccost, cmgoto): Declare args.
10413
10414 * charset.c: Remove `emacs' conditional. Doc fixes.
10415 (map_char_table_for_charset): Declare.
10416
10417 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
10418
10419 * ccl.c: Remove `emacs' conditional.
10420
10421 2008-02-01 Kenichi Handa <handa@m17n.org>
10422
10423 The following changes are to allow specifying multiple font
10424 patterns for a character range (specified by script or charset).
10425
10426 * Makefile.in (abbrev.o): Depend on syntax.h.
10427 (xfaces.o): Depend on charset.h.
10428
10429 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
10430 SINGLE_BYTE_CHAR_P.
10431
10432 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
10433
10434 * character.h (Vchar_script_table): Extern it.
10435
10436 * character.c (Vscript_alist): Delete.
10437 (Vchar_script_table, Qchar_script_table): New variable.
10438 (syms_of_character): Declare Vchar_script_table as a lisp variable
10439 and initialize it.
10440
10441 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
10442 have property char-table-extra-slots, make no extra slot.
10443
10444 * dispextern.h (struct face): Delete member `charset'.
10445 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
10446 SINGLE_BYTE_CHAR_P.
10447 (choose_face_font, lookup_non_ascii_face, font_name_registry):
10448 Add prototypes.
10449 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
10450 (generate_ascii_font_name): Rename from generate_ascii_font.
10451
10452 * fontset.h (get_font_repertory_func): New prototype.
10453 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
10454 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
10455
10456 * fontset.c (Qprepend, Qappend): New variables.
10457 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
10458 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
10459 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
10460 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
10461 (fontset_ref_and_range, fontset_add, reorder_font_vector)
10462 (load_font_get_repertory): New functions.
10463 (fontset_set): Delete.
10464 (fontset_face): New arg FACE. Return face ID, not face.
10465 Complete re-write to handle new fontset structure. Change caller.
10466 (free_face_fontset): Use ASET istead of AREF (X) = Y.
10467 (face_for_char): Don't call lookup_face.
10468 (make_fontset_for_ascii_face): New arg FACE.
10469 (fs_load_font): New arg CHARSET_ID. Don't check
10470 Vfont_encoding_alist here.
10471 (find_font_encoding): New function.
10472 (list_fontsets): Use STRINGP, not ! NILP.
10473 (accumulate_script_ranges): New function.
10474 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
10475 re-written to handle new fontset structure.
10476 (Ffontset_font): Return a copy of element.
10477 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
10478 docstring of font-encoding-alist.
10479
10480 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
10481 (Fset_fotset_font): Fix arguments to 5.
10482
10483 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
10484
10485 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
10486 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
10487 (highlight_trailing_whitespace): Adjust for the change of
10488 lookup_named_face.
10489
10490 * xfaces.c: Include charset.h.
10491 (load_face_font): Delete argument C. Change caller.
10492 (generate_ascii_font_name): Rename from generate_ascii_font.
10493 (font_name_registry): New function.
10494 (cache_face): Store ascii faces before non-ascii faces in buckets.
10495 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
10496 Lookup only ascii faces.
10497 (lookup_non_ascii_face): New function.
10498 (lookup_named_face): Delete argument C. Change caller.
10499 (lookup_derived_face): Delete argument C. Change caller.
10500 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
10501 a string, just call font_list with it.
10502 (choose_face_font): Delete arguments FACE and C. New arg
10503 FONT_SPEC. Change caller.
10504 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
10505 Change caller.
10506 (realize_non_ascii_face): New function.
10507 (realize_x_face): Call load_face_font here.
10508 (realize_tty_face): Delete argument C. Change caller.
10509 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
10510 get a face ID.
10511 (dump_realized_face): Don't print charset of FACE.
10512
10513 * xfns.c (x_set_font): Always call x_new_fontset and
10514 store_frame_parameter.
10515 (Fx_create_frame): Call x_new_fontset, not x_new_font.
10516 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
10517
10518 * xterm.h (x_get_font_repertory): Extern it.
10519
10520 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
10521 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
10522 it->multibyte_p is zero.
10523 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
10524 (x_new_fontset): If FONTSETNAME doesn't match any existing
10525 fontsets, create a new one.
10526 (x_get_font_repertory): New function.
10527
10528 2008-02-01 Kenichi Handa <handa@m17n.org>
10529
10530 * coding.c (Ffind_coding_systems_region_internal): Detect an
10531 ASCII only string correctly.
10532
10533 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
10534 version is 0.
10535
10536 2008-02-01 Kenichi Handa <handa@m17n.org>
10537
10538 * lread.c: Include "coding.h".
10539 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
10540 (load_each_byte, unread_char): New variables.
10541 (readchar_backlog): Delete.
10542 (readchar): Return a character unless load_each_byte is nonzero.
10543 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
10544 cons. If unread_char is not -1, simply return it.
10545 (unreadchar): Handle the case that readcharfun is
10546 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
10547 (read_multibyte): Delete.
10548 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
10549 (read_emacs_mule_char): New functions.
10550 (Fload): Even if the file doesn't have the extention ".elc", if
10551 safe_to_load_p returns a positive version number, assume that the
10552 file contains bytecompiled code. If the version is less than 22,
10553 load the file while decoding multibyte sequences by emacs-mule.
10554 (readevalloop): Don't use readchar_backlog.
10555 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
10556 (Fread_from_string): Pay attention to the case that STREAM is a cons.
10557 (read_escape): Delete the arg BYTEREP.
10558 (read1): Set load_each_byte to 1 temporarily while handling
10559 #@NUMBER. Don't call read_multibyte.
10560 (read_vector): Call Fread with a cons. If readcharfun is
10561 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
10562 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
10563 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
10564 and Qload_force_doc_strings.
10565
10566 2008-02-01 Kenichi Handa <handa@m17n.org>
10567
10568 * xdisp.c (face_before_or_after_it_pos): Call
10569 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
10570
10571 2008-02-01 Kenichi Handa <handa@m17n.org>
10572
10573 * character.h (TRAILING_CODE_P): New macro.
10574 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
10575 (string_char_with_unification): Fix prototype.
10576 (Vscript_alist): Extern it.
10577
10578 * character.c (Vscript_alist): New variable.
10579 (string_char_with_unification, str_as_unibyte)
10580 (string_escape_byte8): Add `const' to local variables.
10581 (syms_of_character): Declare script-alist as a Lisp variable.
10582
10583 * charset.h (Vcharset_ordered_list): Extern it.
10584 (charset_ordered_list_tick): Extern it.
10585 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
10586 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
10587 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
10588 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
10589 (Funify_charset): Adjust for the change of Funify_charset.
10590
10591 * charset.c (charset_ordered_list_tick): New variable.
10592 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
10593 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
10594 deunify intead of unify a charset.
10595 (string_xstring_p): Add `const' to local variables.
10596 (find_charsets_in_text): Add `const' to arguemnts and local variables.
10597 (encode_char): Adjust for the change of Funify_charset. Fix
10598 detecting of invalid code.
10599 (Fset_charset_priority): Increment charset_ordered_list_tick.
10600 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
10601 and TO_CODE.
10602
10603 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
10604 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
10605 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
10606 (decode_coding_ccl, consume_chars)
10607 (Ffind_coding_systems_region_internal)
10608 (Fcheck_coding_systems_region): Add `const' to local variables.
10609
10610 * print.c (print_object): Use octal form for printing the
10611 contents of a bool vector.
10612
10613 2008-02-01 Dave Love <fx@gnu.org>
10614
10615 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
10616 <version == 20>: Refuse to load.
10617
10618 2008-02-01 Dave Love <fx@gnu.org>
10619
10620 * fns.c: Move coding.h.
10621 (Qcodeset, Qdays, Qmonths): New.
10622 (concat): Use CHARACTERP instead of INTERGERP.
10623 (Flocale_codeset): Delete.
10624 (Flanginfo): New function.
10625 (syms_of_fns): Change accordingly.
10626
10627 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
10628
10629 2008-02-01 Dave Love <fx@gnu.org>
10630
10631 * casetab.c (init_casetab_once, init_casetab_once): Fix
10632 CHAR_TABLE_SET call.
10633
10634 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
10635
10636 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
10637
10638 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
10639 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
10640 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
10641
10642 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
10643
10644 * coding.c (ENCODE_DESIGNATION, decode_eol)
10645 (make_conversion_work_buffer, code_conversion_restore)
10646 (Fdefine_coding_system_internal): Convert Lisp types.
10647 (code_conversion_restore): Use EQ, not ==.
10648 (Fencode_coding_string): Fix code_convert_string call.
10649
10650 * coding.h (code_convert_region): Fix prototype.
10651
10652 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
10653
10654 * fontset.c (fontset_ref, fontset_set, fs_load_font)
10655 (Ffontset_info): Convert Lisp types.
10656
10657 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
10658
10659 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
10660
10661 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
10662
10663 * chartab.c: Include "...h", not <...h> in some cases.
10664
10665 * callproc.c (Fcall_process): Remove unused variables.
10666
10667 2008-02-01 Dave Love <fx@gnu.org>
10668
10669 * coding.c (Fset_coding_system_priority): Allow null arg list.
10670
10671 2008-02-01 Dave Love <fx@gnu.org>
10672
10673 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
10674 (Fself_insert_and_exit): Use CHARACTERP.
10675
10676 * callproc.c (Fcall_process): Remove unused vars.
10677
10678 * xterm.c (XTread_socket): Add extra dead keysyms.
10679
10680 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
10681
10682 * dispextern.h: Remove prototypes for redraw_frame,
10683 redraw_garbaged_frames.
10684
10685 * cmds.c (Fself_insert_command): Use CHARACTERP.
10686
10687 * chartab.c (make_sub_char_table): Remove unused var.
10688 (Fset_char_table_default, Fmap_char_table): Doc fix.
10689
10690 * keymap.c (access_keymap): Remove generic char code.
10691 (push_key_description): Use CHARACTERP.
10692
10693 2008-02-01 Dave Love <fx@gnu.org>
10694
10695 * charset.c: Doc fixes.
10696 (Funify_charset): Extra checking.
10697
10698 2008-02-01 Dave Love <fx@gnu.org>
10699
10700 * lread.c: Remove some unused variables.
10701 (safe_to_load_p): If safe, return the magic number version byte.
10702 (Fload): Maybe use load-with-code-conversion.
10703
10704 2008-02-01 Kenichi Handa <handa@m17n.org>
10705
10706 * category.c (Fmodify_category_entry): Don't modify the contents
10707 of category_set for characters out of the range. Avoid
10708 unnecessary modification.
10709
10710 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
10711 Vchar_unify_table. The default value of the table is now nil.
10712
10713 * character.c (syms_of_character): Setup Vchar_width_table for
10714 eight-bit-control and raw-byte chars.
10715
10716 * charset.h (enum define_charset_arg_index): Delete
10717 charset_arg_parents and add charset_arg_subset and
10718 charset_arg_superset.
10719 (enum charset_attr_index): Delete charset_parents and add
10720 charset_subset and charset_superset.
10721 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
10722 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
10723 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
10724 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
10725 (CHARSET_SUPERSET): New macros.
10726 (charset_work): Extern it.
10727 (ENCODE_CHAR): Use charset_work.
10728 (CHAR_CHARSET_P): Adjust for the change of encoder format.
10729 (map_charset_chars): Extern it.
10730
10731 * charset.c (load_charset_map): Set the default value of encoder
10732 and deunifier char-tables to nil.
10733 (map_charset_chars): Change argument. Change callers. Use
10734 map_char_table_for_charset instead of map_char_table.
10735 (Fmap_charset_chars): New optional args from_code and to_code.
10736 (Fdefine_charset_internal): Adjust for the change of
10737 `define-charset' (:parents -> :subset or :superset).
10738 (charset_work): New variable.
10739 (encode_char, syms_of_charset): Adjust for the change of
10740 Fdefine_charset_internal.
10741 (Ffind_charset_string): Setup the vector `charsets' correctly.
10742
10743 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
10744 the previous change.
10745 (char_table_ref_and_range): Adjust for the above change.
10746 (map_sub_char_table_for_charset): New function.
10747 (map_char_table_for_charset): New function.
10748
10749 * keymap.c (describe_vector): Handle a char-table directly here.
10750 (describe_char_table): Delete.
10751
10752 * lisp.h (map_charset_chars): Delete.
10753
10754 2008-02-01 Dave Love <fx@gnu.org>
10755
10756 * fns.c (count_combining): Comment out (unused).
10757 (Flocale_codeset): New.
10758 (syms_of_fns): Defsubr it.
10759
10760 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
10761 (size_t): Remove.
10762
10763 2008-02-01 Dave Love <fx@gnu.org>
10764
10765 * Makefile.in (chartab.o): Depend on charset.h.
10766
10767 2008-02-01 Kenichi Handa <handa@m17n.org>
10768
10769 * character.c (syms_of_character): Set the default value of
10770 Vprintable_chars to Qnil.
10771
10772 2008-02-01 Dave Love <fx@gnu.org>
10773
10774 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
10775
10776 2008-02-01 Kenichi Handa <handa@m17n.org>
10777
10778 * charset.c (load_charset_map): Handle the case that from < to
10779 correctly.
10780
10781 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
10782 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
10783 Pay attention to raw-8-bit chars.
10784
10785 2008-02-01 Kenichi Handa <handa@m17n.org>
10786
10787 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
10788 It is not bytecompiled now.
10789
10790 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
10791 (charset_jisx0208): New variables.
10792 (Fdefine_charset_internal): Setup them if appropriate.
10793 (init_charset_once): Initialize them to -1.
10794
10795 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
10796 (charset_jisx0208): Extern them.
10797
10798 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
10799 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
10800 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
10801 (setup_iso_safe_charsets): Fix arguments to Fassq.
10802 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
10803 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
10804 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
10805 (encode_coding_iso_2022): Change the 1st arg to
10806 ENCODE_ISO_CHARACTER to a variable.
10807
10808 2008-02-01 Kenichi Handa <handa@m17n.org>
10809
10810 * charset.h (enum define_charset_arg_index): New enums
10811 charset_arg_min_code and charset_arg_max_code.
10812 (struct charset): New member char_index_offset.
10813
10814 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
10815 Take charset->char_index_offset into account.
10816 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
10817 args[charset_arg_max_code]. Setup charset.char_index_offset.
10818 (syms_of_charset): Fix args to Fdefine_charset_internal.
10819
10820 2008-02-01 Dave Love <fx@gnu.org>
10821
10822 * coding.c (decode_coding_utf_8): Reject overlong sequences.
10823
10824 2008-02-01 Dave Love <fx@gnu.org>
10825
10826 * coding.c: Doc fixes.
10827 (Fcoding_system_aliases): Fix return value.
10828 (Qmac): Remove (duplicated) definition.
10829
10830 2008-02-01 Dave Love <fx@gnu.org>
10831
10832 * charset.c (Fcharset_priority_list, Fset_charset_priority): New
10833 functions.
10834
10835 * character.c (Fstring): Doc fix.
10836
10837 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
10838
10839 * fontset.c (Ffontset_info): Doc fix. Return charset names, not
10840 ids.
10841 (font-encoding-alist): Doc fix.
10842
10843 2008-02-01 Dave Love <fx@gnu.org>
10844
10845 * term.c (costs_set): Declare static, non-initialized for pcc.
10846 (encode_terminal_code): Remove unused var.
10847
10848 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
10849 for K&R.
10850
10851 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
10852
10853 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
10854 (suffixes): Move out of make_subsidiaries for K&R.
10855
10856 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
10857
10858 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
10859
10860 2008-02-01 Dave Love <fx@gnu.org>
10861
10862 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
10863
10864 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
10865
10866 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
10867
10868 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
10869
10870 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
10871
10872 2008-02-01 Kenichi Handa <handa@m17n.org>
10873
10874 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
10875 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
10876
10877 2008-02-01 Kenichi Handa <handa@m17n.org>
10878
10879 * coding.c (decode_coding_charset): Adjust for the change of
10880 Fdefine_coding_system_internal.
10881 (Fdefine_coding_system_internal): For a coding system of
10882 `charset' type, store a list of charset IDs in
10883 `charset_attr_charset_valids' element of coding attributes.
10884
10885 2008-02-01 Kenichi Handa <handa@m17n.org>
10886
10887 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
10888 (emacs_mule_char): New arg src. Delete arg `composition'. Change
10889 caller. Handle 2-byte and 3-byte charsets correctly.
10890 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
10891 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
10892 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
10893 (DECODE_EMACS_MULE_21_COMPOSITION): Call
10894 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
10895 sequence.
10896 (decode_coding_emacs_mule): Handle composition correctly. Rewind
10897 `src' and `consumed_chars' correctly before calling emacs_mule_char.
10898 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
10899 and alt&rule composition.
10900 (decode_coding_iso_2022): Handle composition correctly.
10901 (init_coding_once): Setup emacs_mule_bytes for private charsets.
10902
10903 * charset.c (Fdefine_charset_internal): Fix bug for the case of
10904 re-defining a charset. If the charset has :emacs-mule-id, setup
10905 emacs_mule_bytes.
10906 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
10907
10908 2008-02-01 Kenichi Handa <handa@m17n.org>
10909
10910 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
10911 (encode_coding_big5, encode_coding_charset): If coding requires safe
10912 encoding, produce a character specified by
10913 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
10914
10915 2008-02-01 Dave Love <fx@gnu.org>
10916
10917 * xterm.c (XSetIMValues): Declare.
10918
10919 * process.c: Conditionally include sys/wait.h, pty.h.
10920
10921 * print.c (print_object): Fix print format for 64-bit systems.
10922
10923 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
10924
10925 * buffer.c (emacs_strerror): Declare.
10926
10927 * fontset.c (Fclear_face_cache): Declare.
10928 (accumulate_font_info): Comment-out (unused).
10929 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
10930 variables.
10931
10932 * character.h (string_escape_byte8): Declare.
10933
10934 * charset.c (load_charset_map, load_charset_map_from_file): Remove
10935 unused vars.
10936 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
10937 (Fmap_charset_chars): Doc fix.
10938
10939 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
10940 (Fset_coding_system_priority, Fset_coding_system_priority)
10941 (Fdefine_coding_system_internal): Doc fix.
10942
10943 2008-02-01 Dave Love <fx@gnu.org>
10944
10945 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
10946
10947 2008-02-01 Kenichi Handa <handa@m17n.org>
10948
10949 * character.c (string_escape_byte8): Make multibyte string with
10950 correct size.
10951
10952 * charset.c (Fmake_char): Delete unnecessary code.
10953
10954 2008-02-01 Kenichi Handa <handa@m17n.org>
10955
10956 * xfns.c (x_encode_text): Allocate coding.destination here, and
10957 call encode_coding_object with dst_object Qnil.
10958
10959 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
10960 multibyte form correctly.
10961
10962 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
10963 against Vfont_encoding_alist.
10964
10965 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
10966 handling of charset list.
10967 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
10968 (decode_coding_object): Move point to coding->dst_pos before
10969 calling post-read-conversion function.
10970 (encode_coding_object): Give correct arguments to
10971 pre-write-conversion. Ignore the return value of
10972 pre-write-conversion function. Pay attention to the case that
10973 pre-write-conversion changes the current buffer. If dst_object is
10974 Qt, even if coding->src_bytes is zero, allocate at least one byte
10975 to coding->destination.
10976
10977 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
10978
10979 * charset.c (Fmake_char): Make it more backward compatible.
10980 (Fmap_charset_chars): Fix docstring.
10981
10982 2008-02-01 Dave Love <fx@gnu.org>
10983
10984 * coding.c: Doc fixes.
10985 (Fdefine_coding_system_alias): Use names, not symbols, in
10986 coding-system-alist.
10987
10988 2008-02-01 Kenichi Handa <handa@m17n.org>
10989
10990 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
10991 of calling free_realized_face.
10992
10993 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
10994
10995 * charset.c (read_hex): Don't treat SPC as a comment starter.
10996 (decode_char): If CODE_POINT_TO_INDEX retruns -1, always return -1.
10997 (Fdecode_char): Fix typo.
10998
10999 2008-02-01 Kenichi Handa <handa@m17n.org>
11000
11001 * charset.h (struct charset): New member `code_space_mask'.
11002
11003 * coding.c (coding_set_source): Delete the local variable beg_byte.
11004 (encode_coding_charset, Fdefine_coding_system_internal):
11005 Delete the local variable charset.
11006 (Fdefine_coding_system_internal): Setup
11007 attrs[coding_attr_charset_valids] correctly.
11008
11009 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
11010 member to check if CODE is valid or not.
11011 (Fdefine_charset_internal): Initialize `code_space_mask' member.
11012 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
11013 is within the range of charset->min_code and carset->max_code.
11014
11015 2008-02-01 Dave Love <fx@gnu.org>
11016
11017 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
11018
11019 * dispextern.h (generate_ascii_font): Fix return type.
11020
11021 * xfaces.c (generate_ascii_font): Fix arg declaration.
11022
11023 * coding.c (coding_inherit_eol_type)
11024 (Fset_terminal_coding_system_internal)
11025 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
11026
11027 2008-02-01 Kenichi Handa <handa@m17n.org>
11028
11029 * coding.c (decode_coding_charset, encode_coding_charset): Handle
11030 multiple charsets correctly.
11031
11032 2008-02-01 Kenichi Handa <handa@m17n.org>
11033
11034 * search.c (boyer_moore): Fix handling of mulitbyte character
11035 translation.
11036
11037 * xdisp.c (display_mode_element): When the variable `elt' is
11038 changed, update `this' and `lisp_string'.
11039
11040 2008-02-01 Kenichi Handa <handa@m17n.org>
11041
11042 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
11043
11044 * callproc.c (Fcall_process): Be sure to give the current buffer
11045 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
11046
11047 * charset.c (struct charset_map_entries): New struct.
11048 (load_charset_map): Rename from parse_charset_map. New args
11049 entries and n_entries. Change caller.
11050 (load_charset_map_from_file): Rename from load_charset_map.
11051 Change caller. New arg control_flag. Call load_charset_map at
11052 the tail.
11053 (load_charset_map_from_vector): New function.
11054 (Fdefine_charset_internal): Setup charset.compact_codes_p.
11055 (encode_char): If the charset is compact, change a character index
11056 to a code point.
11057
11058 * coding.c (coding_alloc_by_making_gap): Check the case that the
11059 source and destination are the same correctly.
11060 (decode_coding_raw_text): Set coding->consumed_char and
11061 coding->consumed to 0.
11062 (produce_chars): If coding->chars_at_source is nonzero, update
11063 coding->consumed_char and coding->consumed before calling
11064 alloc_destination.
11065 (Fdefine_coding_system_alias): Register ALIAS in
11066 Vcoding_system_alist.
11067 (syms_of_coding): Define `no-convesion' coding system at the tail.
11068
11069 * fileio.c (Finsert_file_contents): Set coding_system instead of
11070 val. If the current buffer is multibyte, always call
11071 decode_coding_gap.
11072
11073 * xfaces.c (try_font_list): Give higher priority to fontset's
11074 family than face's family.
11075
11076 2008-02-01 Kenichi Handa <handa@m17n.org>
11077
11078 * callproc.c (Fcall_process): Be sure to give the current buffer
11079 to decode_coding_c_string.
11080
11081 * xfaces.c (try_font_list): Give a family specified in a fontset
11082 higher priority than a family specified in a face.
11083
11084 2008-02-01 Kenichi Handa <handa@m17n.org>
11085
11086 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
11087 Fix arguments to insert_from_buffer.
11088
11089 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
11090
11091 2008-02-01 Kenichi Handa <handa@m17n.org>
11092
11093 * coding.c (produce_chars): Set the variable `multibytep' correctly.
11094 (decode_coding_gap): Set coding->dst_multibyte correctly.
11095
11096 2008-02-01 Kenichi Handa <handa@m17n.org>
11097
11098 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
11099 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
11100 (encode_coding_utf_16): Substitute coding->default_char for
11101 non-Unicode characters.
11102 (decode_coding): Don't call record_insert here.
11103 (setup_coding_system): Initialize `surrogate' of
11104 coding->spec.utf_16 to 0.
11105 (EMIT_ONE_BYTE): Fix for multibyte case.
11106
11107 * insdel.c (insert_from_gap): Call record_insert.
11108
11109 2008-02-01 Kenichi Handa <handa@m17n.org>
11110
11111 * casefiddle.c (casify_region): Fix multibyte case.
11112
11113 * character.c (c_string_width): Add return type `int'.
11114 (char_string_with_unification): Delete arg ADVANCED.
11115
11116 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
11117 (CHAR_STRING): Adjust for the change of char_string_with_unification.
11118 (CHAR_STRING_ADVANCE): Make it do-while statement.
11119
11120 * chartab.c (sub_char_table_set_range): Optimize for the case
11121 DEPTH == 3. Add workaround code for a GCC optimization bug.
11122
11123 * charset.c (parse_charset_map): Remove an unused variable.
11124
11125 * coding.c: Delete unused variables.
11126
11127 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
11128 earlier. If inserted is zero and the coding system doesn't
11129 require flushing, don't call decode_coding_gap.
11130
11131 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
11132
11133 2008-02-01 Kenichi Handa <handa@m17n.org>
11134
11135 The following changes are for using Unicode as an internal
11136 character model, and use UTF-8 format for buffer/string
11137 representation.
11138
11139 * .gdbinit (xchartable): Adjust for the change of char table structure.
11140 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
11141
11142 * Makefile.in (obj): Add character.o and chartab.o.
11143 (lisp, shortlisp): Remove utf-8.elc.
11144 (*.o): For many files, change dependency on charset.h to
11145 character.h, and add dependency on character.h.
11146 (character.o, chartab.o): New targets.
11147
11148 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
11149 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
11150 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
11151 of "charset.h".
11152
11153 * dired.c, filelock.c: Include "character.h".
11154
11155 * alloc.c: Include "character.h" instead of "charset.h".
11156 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
11157 (syms_of_alloc): Remove defsubr for Smake_char_table.
11158
11159 * buffer.c: Include "character.h" instead of "charset.h", don't
11160 include "coding.h".
11161 (Fset_buffer_multibyte): Adjust for UTF-8.
11162
11163 * buffer.h: EXFUN Fbuffer_live_p.
11164
11165 * callproc.c: Include "character.h" instead of "charset.h".
11166 (Fcall_process): Big change for the new code-conversion APIs.
11167
11168 * casetab.c: Include "character.h" instead of "charset.h".
11169 (set_canon, set_identity, shuffle): Adjust for the new
11170 map_char_table spec.
11171 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
11172 accessing the char table structure.
11173
11174 * chartab.c: New file that implements char table.
11175
11176 * category.c: Include "character.h".
11177 (copy_category_entry): New function.
11178 (copy_category_table): Call map_char_table and copy_category_entry.
11179 (Fmake_category_table): Initialize all top-vel slots.
11180 (char_category_set): New function.
11181 (modify_lower_category_set): Delete.
11182 (Fmodify_category_entry): Call char_table_ref_and_range.
11183
11184 * category.h (CATEGORY_SET): Just call char_category_set.
11185
11186 * ccl.c: Include "character.h".
11187 (Qccl, Qcclp): New variables.
11188 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
11189 it's less than 256.
11190 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
11191 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
11192 and DST type.
11193 (ccl_driver): Change types of argument, adjust code accordingly.
11194 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
11195 ccl_driver.
11196 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
11197
11198 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
11199 New members src_multibyte, dst_multibyte, consumed, and produced.
11200 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
11201 (CODING_SPEC_CCL_PROGRAM): New macro.
11202 (ccl_driver): Update prototype.
11203 (Qccl, Qcclp, Fccl_program_p): Extern them.
11204 (CHECK_CCL_PROGRAM): New macro.
11205
11206 * character.c, character.h, chartab.c: New files.
11207
11208 * charset.c: Mostly re-written. Move character and multibyte sequence
11209 handling codes to character.c.
11210
11211 * charset.h: Mostly re-written. Move character and multibyte sequence
11212 handling codes to character.h.
11213
11214 * coding.c, coding.h: Mostly re-written.
11215
11216 * composite.c: Include "character.h" instead of "charset.h".
11217 (CHAR_WIDTH): Move to character.h.
11218 (HASH_KEY, HASH_VALUE): Delete.
11219
11220 * composite.h (enum composition_method): Change order of enumeration
11221 symbols.
11222
11223 * data.c: Include "character.h" instead of "charset.h".
11224 (Faref): Call CHAR_TABLE_REF for a char table.
11225 (Faset): Call CHAR_TABLE_SET for a char table.
11226
11227 * dispextern.h (free_realized_face, check_face_attribytes)
11228 (generate_ascii_font): Extern them.
11229 (free_realized_multibyte_face): Delete extern.
11230
11231 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
11232 table structure.
11233
11234 * editfns.c: Include "character.h" instead of "charset.h".
11235 (Fchar_to_string): Always call CHAR_STRING.
11236
11237 * emacs.c (main): Call init_charset_once, init_charset,
11238 syms_of_chartab, and syms_of_character.
11239
11240 * fileio.c: Include "character.h" instead of "charset.h".
11241 (Finsert_file_contents): Big change for the new code-conversion API.
11242 (choose_write_coding_system, Fwrite_region): Likewise.
11243 (build_annotations_2): Delete.
11244 (e_write): Big change for the new code-conversion API.
11245
11246 * fns.c: Include "character.h" instead of "charset.h".
11247 (copy_sub_char_table): Move to chartab.c.
11248 (Fcopy_sequence): Call copy_char_table for a char table.
11249 (concat): Delete codes calling count_multibyte.
11250 (string_char_to_byte, string_byte_to_char): Adjust for the new
11251 multibyte form.
11252 (internal_equal): Adjust for the change of char table structure.
11253 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
11254 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
11255 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
11256 (char_table_translate, optimize_sub_char_table)
11257 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
11258 chartab.c.
11259 (char_table_ref_and_index): Delete.
11260 (HASH_KEY, HASH_VALUE): Move to lisp.h.
11261 (Fmd5): Call preferred_coding_system instead of accessing
11262 Vcoding_category_list. Adjust for the new code-conversion API.
11263 (syms_of_fns): Move defsubr for char table related functions to
11264 chartab.c.
11265
11266 * fontset.c: Mostly re-written.
11267
11268 * fontset.h (struct font_info): Change type of the member encoding_type.
11269 (enum FONT_SPEC_INDEX): New enum.
11270 (fontset_font_pattern, fs_load_font): Update prototype.
11271 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
11272
11273 * indent.c: Include "character.h" instead of "charset.h".
11274 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
11275
11276 * insdel.c: Include "character.h" instead of "charset.h".
11277 (copy_text): Don't refer to Vnonascii_translation_table.
11278 (insert_from_gap): New function.
11279
11280 * keyboard.c: Include "character.h" instead of "charset.h".
11281 (command_loop_1): Never call direct_output_forward_char before
11282 a non-ASCII character.
11283 (read_char): If Vkeyboard_translate_table is a char table, always
11284 translate a character.
11285
11286 * keymap.c: Include "character.h".
11287 (store_in_keymap): Handle the case that IDX is a cons.
11288 (Fdefine_key): Handle the case that KEY is a cons and the car part
11289 is also a cons (range).
11290 (push_key_description): Adjust for the new character code.
11291 (describe_vector): Call describe_char_table for a char table.
11292 (describe_char_table): New function.
11293
11294 * keymap.h (describe_char_table): Extern it.
11295
11296 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
11297 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
11298 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
11299 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
11300 Delete.
11301 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
11302 structure.
11303 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
11304 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
11305 (CHARTAB_SIZE_BITS_3): New macros.
11306 (chartab_size): Extern it.
11307 (struct Lisp_Char_Table): Re-design.
11308 (struct Lisp_Sub_Char_Table): New structure.
11309 (HASH_KEY, HASH_VALUE): Move from fns.c.
11310 (CHARACTERBITS): Define as 22.
11311 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
11312 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
11313 (GC_SUB_CHAR_TABLE_P): New macro.
11314 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
11315 (code_convert_string_norecord): Deleted extern.
11316 (init_character_once, syms_of_character, init_charset)
11317 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
11318
11319 * lread.c: Include "character.h".
11320 (read_multibyte): New arg NBYTES.
11321 (read_escape): Change the meaning of returned *BYTEREP.
11322 (to_multibyte): Delete.
11323 (read1): Adjust the handling of char table and string.
11324
11325 * print.c: Include "character.h" instead of "charset.h".
11326 (print_string): Convert 8-bit raw bytes to octal form by
11327 string_escape_byte8.
11328 (print_object): Adjust for the new multibyte form. Print 8-bit
11329 raw bytes always in octal form. Handle sub char table correctly.
11330
11331 * process.c: Include "character.h" instead of "charset.h".
11332 (read_process_output, send_process): Adjust for the new
11333 code-conversion API.
11334
11335 * puresize.h (BASE_PURESIZE): Increase.
11336
11337 * regex.c: Include "character.h" instead of "charset.h".
11338 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
11339 (regex_compile): Accept a range whose starting and ending
11340 character have different leading bytes.
11341 (analyse_first): Adjust for the above change.
11342
11343 * search.c: Include "character.h" instead of "charset.h".
11344 (search_buffer, boyer_moore): Adjust for the new multibyte form.
11345 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
11346
11347 * syntax.c: Include "character.h" instead of "charset.h".
11348 (syntax_parent_lookup): Delete.
11349 (Fmodify_syntax_entry): Accept a cons as CHAR.
11350 (skip_chars): Adjust for the new multibyte form.
11351 (init_syntax_once): Call char_table_set_range instead of directly
11352 accessing the structure of a char table.
11353
11354 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
11355 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
11356 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
11357 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
11358
11359 * term.c: Include "buffer.h" and "character.h".
11360 (encode_terminal_code, write_glyphs): Adjust for the new
11361 code-conversion API.
11362 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
11363
11364 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
11365
11366 * xdisp.c: Include "character.h".
11367 (get_next_display_element): Adjust for the new multibyte form.
11368 (disp_char_vector): Adjust for the new char table structure.
11369 (decode_mode_spec_coding): Adjust for the new structure of
11370 coding system.
11371 (decode_mode_spec): Adjust for the new code-conversion API.
11372
11373 * xfaces.c: Include "character.h" instead of "charset.h".
11374 (load_face_font): Adjust for the change of choose_face_font and
11375 FS_LOAD_FONT.
11376 (generate_ascii_font): New function.
11377 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
11378 (set_font_frame_param): Adjust for the change of choose_face_font.
11379 (free_realized_face): Make it public.
11380 (free_realized_faces_for_fontset): Rename from
11381 free_realized_multibyte_face. Free also faces realized for ASCII.
11382 (choose_face_font): Change arguments. Adjust for the change of
11383 fontset_font_pattern and FS_LOAD_FONT.
11384
11385 * xfns.c: Include "character.h".
11386 (x_encode_text): Adjust for the new code-conversion API.
11387
11388 * xselect.c: Don't include "charset.h".
11389 (selection_data_to_lisp_data): Adjust for the new code conversion API.
11390
11391 * xterm.c: Include "character.h".
11392 (x_encode_char): New argument CHARSET. Change caller.
11393 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
11394 Call ENCODE_CHAR instead of SPLIT_CHAR.
11395 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
11396 CHAR_WIDTH instead of CHARSET_WIDTH.
11397 (XTread_socket): Adjust for the new code-conversion API.
11398 (x_new_font): Adjust for the change of FS_LOAD_FONT.
11399 (x_load_font): Adjust for the change of struct font.
11400
11401 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
11402
11403 * xfaces.c (face_at_buffer_position): Remove unused vars.
11404
11405 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
11406
11407 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
11408 Fix overflow checking.
11409
11410 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
11411
11412 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
11413 Cancel previous change.
11414
11415 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
11416
11417 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
11418 ccl->eight_bit_control. Fix check for buffer overflow.
11419 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
11420 (ccl_driver): Initialize extra_bytes to 0.
11421
11422 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
11423
11424 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
11425 return it ORed with ctrl_modifier.
11426
11427 2008-01-29 Miles Bader <miles@gnu.org>
11428
11429 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
11430
11431 2008-01-28 Jason Rumney <jasonr@gnu.org>
11432
11433 * w32.c (stat): Don't double check for networked drive.
11434
11435 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
11436
11437 * window.c (run_window_configuration_change_hook): New function.
11438 Code extracted from set_window_buffer. Set the selected frame.
11439 (set_window_buffer): Use it.
11440 * window.h (run_window_configuration_change_hook): Declare.
11441 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
11442
11443 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
11444
11445 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
11446
11447 * Makefile.in: Remove references to unused macros.
11448
11449 2008-01-26 Eli Zaretskii <eliz@gnu.org>
11450
11451 * w32.c (g_b_init_get_sid_sub_authority)
11452 (g_b_init_get_sid_sub_authority_count): New static variables.
11453 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
11454 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
11455 (init_user_info): Use them to retrieve uid and gid.
11456 Use 500/513, the Windows defaults, as Administrator's uid/gid.
11457 (fstat): Use pw_uid and pw_gid from the_passwd structure for
11458 st_uid and st_gid of the file.
11459
11460 2008-01-26 Jason Rumney <jasonr@gnu.org>
11461
11462 * w32.c (logon_network_drive): New function.
11463 (stat): Use it.
11464
11465 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
11466
11467 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
11468 invisible text covered with an ellipsis.
11469
11470 2008-01-25 Richard Stallman <rms@gnu.org>
11471
11472 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
11473 jump back to beginning. Move some other initializations after that.
11474 (Qwindow_text_change_functions, Vwindow_text_change_functions):
11475 New variables.
11476 (syms_of_xdisp): Init them.
11477
11478 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
11479
11480 * buffer.c (reset_buffer_local_variables):
11481 Implement `permanent-local-hook'.
11482 (Qpermanent_local_hook): New variable.
11483 (syms_of_buffer): Init and staticpro it.
11484
11485 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
11486
11487 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
11488
11489 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
11490
11491 * fns.c (Fclrhash): Return TABLE.
11492
11493 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11494
11495 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
11496 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
11497 is set even without positional changes.
11498 (x_scroll_bar_clear): Set bar->redraw_needed_p.
11499
11500 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
11501
11502 2008-01-23 Jason Rumney <jasonr@gnu.org>
11503
11504 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
11505
11506 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
11507 the unicode range available in MULE by locale-coding-system.
11508 Improve dbcs lead byte detection. Set event timestamp and modifiers
11509 earlier.
11510
11511 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11512
11513 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
11514 [MAC_OSX] (init_mac_osx_environment): Initialize it.
11515 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
11516 when used on child processes.
11517
11518 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
11519
11520 * dbusbind.c (Fdbus_method_return_internal): Rename from
11521 Fdbus_method_return.
11522 (Fdbus_unregister_object): Move to dbus.el.
11523 (Fdbus_call_method, Fdbus_method_return_internal)
11524 (Fdbus_send_signal): Improve debug messages.
11525
11526 2008-01-20 Martin Rudalics <rudalics@gmx.at>
11527
11528 * undo.c (undo_inhibit_record_point): New variable.
11529 (syms_of_undo): Initialize it.
11530 (record_point): Don't record point when undo_inhibit_record_point
11531 is set.
11532
11533 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
11534
11535 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
11536
11537 * xdisp.c (Qauto_hscroll_mode): New var.
11538 (syms_of_xdisp): Initialize it.
11539 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
11540 window's buffer.
11541 (hscroll_windows): Don't check automatic_hscrolling_p here.
11542
11543 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
11544 vscroll if we're setting window-buffer to the value it already has.
11545
11546 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
11547
11548 * m/intel386.h: Remove references to XENIX.
11549
11550 2008-01-17 Andreas Schwab <schwab@suse.de>
11551
11552 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
11553 instead of HAVE_X86_64_LIB64_DIR.
11554 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
11555
11556 2008-01-17 Glenn Morris <rgm@gnu.org>
11557
11558 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
11559 to HAVE_X86_64_LIB64_DIR.
11560
11561 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
11562
11563 * s/irix3-3.h:
11564 * s/irix4-0.h:
11565 * s/386-ix.h:
11566 * s/domain.h:
11567 * s/hpux9-x11r4.h:
11568 * s/hpux9shxr4.h: Remove files for systems no longer supported.
11569
11570 * sysdep.c: Remove code containing references to symbols defined
11571 by unsupported systems.
11572
11573 2008-01-16 Glenn Morris <rgm@gnu.org>
11574
11575 * coding.c (select-safe-coding-system-function): Doc fix.
11576
11577 2008-01-15 Glenn Morris <rgm@gnu.org>
11578
11579 * config.in: Revert 2008-01-13 change: this is a generated file.
11580
11581 2008-01-13 Tom Tromey <tromey@redhat.com>
11582
11583 * lisp.h: Fix typo.
11584
11585 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
11586
11587 * m/sequent-ptx.h:
11588 * m/sequent.h:
11589 * s/ptx.h:
11590 * s/ptx4-2.h:
11591 * s/ptx4.h: Remove files for systems no longer supported.
11592
11593 * callproc.c (Fcall_process): Fix previous change.
11594
11595 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
11596
11597 * unexsunos4.c: Remove file, system not supported anymore.
11598
11599 * m/mips.h:
11600 * m/intel386.h:
11601 * callproc.c:
11602 * config.in:
11603 * ecrt0.c:
11604 * emacs.c:
11605 * fileio.c:
11606 * frame.c:
11607 * getpagesize.h:
11608 * keyboard.c:
11609 * lread.c:
11610 * process.c:
11611 * puresize.h:
11612 * sysdep.c:
11613 * systty.h:
11614 * syswait.h:
11615 * unexec.c:
11616 * xdisp.c:
11617 * alloc.c: Remove code containing references to symbols defined by
11618 unsupported systems.
11619
11620 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
11621
11622 * coding.c (detect_coding_mask): Fix previous change.
11623
11624 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
11625
11626 * coding.c (detect_coding_iso2022): New arg
11627 latin_extra_code_state. Allow Latin extra codes only
11628 when *latin_extra_code_state is nonzero.
11629 (detect_coding_mask): If there is a NULL byte, detect the encoding
11630 as UTF-16 or binary. If Latin extra codes exist, detect the
11631 encoding as ISO-2022 only when there's no other proper encoding is
11632 found.
11633
11634 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11635
11636 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
11637 #ifdef MAC_OS.
11638
11639 2008-01-08 Richard Stallman <rms@gnu.org>
11640
11641 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
11642
11643 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
11644
11645 * keyboard.c (parse_menu_item): Don't enclose key bindings on
11646 menu bar in parentheses.
11647
11648 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
11649
11650 * m/7300.h:
11651 * m/acorn.h:
11652 * m/alliant-2800.h:
11653 * m/alliant.h:
11654 * m/alliant1.h:
11655 * m/alliant4.h:
11656 * m/altos.h:
11657 * m/amdahl.h:
11658 * m/apollo.h:
11659 * m/att3b.h:
11660 * m/aviion-intel.h:
11661 * m/aviion.h:
11662 * m/celerity.h:
11663 * m/clipper.h:
11664 * m/cnvrgnt.h:
11665 * m/convex.h:
11666 * m/cydra5.h:
11667 * m/delta88k.h:
11668 * m/dpx2.h:
11669 * m/dual.h:
11670 * m/elxsi.h:
11671 * m/f301.h:
11672 * m/gould-np1.h:
11673 * m/gould.h:
11674 * m/i860.h:
11675 * m/ibmps2-aix.h:
11676 * m/ibmrt-aix.h:
11677 * m/ibmrt.h:
11678 * m/irist.h:
11679 * m/is386.h:
11680 * m/isi-ov.h:
11681 * m/mega68.h:
11682 * m/mg1.h:
11683 * m/news-r6.h:
11684 * m/news-risc.h:
11685 * m/news.h:
11686 * m/nh3000.h:
11687 * m/nh4000.h:
11688 * m/ns16000.h:
11689 * m/ns32000.h:
11690 * m/nu.h:
11691 * m/orion.h:
11692 * m/orion105.h:
11693 * m/paragon.h:
11694 * m/pfa50.h:
11695 * m/plexus.h:
11696 * m/pyramid.h:
11697 * m/pyrmips.h:
11698 * m/sh3el.h:
11699 * m/sps7.h:
11700 * m/sr2k.h:
11701 * m/stride.h:
11702 * m/sun1.h:
11703 * m/sun2.h:
11704 * m/sun3-68881.h:
11705 * m/sun3-fpa.h:
11706 * m/sun3-soft.h:
11707 * m/sun3.h:
11708 * m/sun386.h:
11709 * m/symmetry.h:
11710 * m/tad68k.h:
11711 * m/tahoe.h:
11712 * m/targon31.h:
11713 * m/tek4300.h:
11714 * m/tekxd88.h:
11715 * m/tower32.h:
11716 * m/tower32v3.h:
11717 * m/ustation.h:
11718 * m/wicat.h:
11719 * m/xps100.h:
11720 * s/cxux.h:
11721 * s/cxux7.h:
11722 * s/dgux.h:
11723 * s/dgux4.h:
11724 * s/dgux5-4-3.h:
11725 * s/dgux5-4r2.h:
11726 * s/esix.h:
11727 * s/esix5r4.h:
11728 * s/hiuxmpp.h:
11729 * s/hiuxwe2.h:
11730 * s/iris3-5.h:
11731 * s/iris3-6.h:
11732 * s/isc2-2.h:
11733 * s/isc3-0.h:
11734 * s/isc4-0.h:
11735 * s/isc4-1.h:
11736 * s/newsos5.h:
11737 * s/newsos6.h:
11738 * s/osf1.h:
11739 * s/osf5-0.h:
11740 * s/riscix1-1.h:
11741 * s/riscix12.h:
11742 * s/sco4.h:
11743 * s/sco5.h:
11744 * s/sunos4-0.h:
11745 * s/sunos4-1.h:
11746 * s/sunos413.h:
11747 * s/sunos4shr.h:
11748 * s/umax.h:
11749 * s/unipl5-2.h:
11750 * s/xenix.h:
11751 * cxux-crt0.s:
11752 * unexapollo.c:
11753 * unexconvex.c:
11754 * unexenix.c:
11755 * unexsni.c: Remove files for systems no longer supported.
11756
11757 * m/intel386.h: Remove references to unsupported systems.
11758
11759 * w32.c (get_emacs_configuration): Remove reference to i860.
11760
11761 * sysdep.c: Remove dead code.
11762
11763 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
11764
11765 * s/rtu.h:
11766 * m/masscomp.h: Remove files. Platform is obsolete.
11767
11768 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
11769
11770 * dbusbind.c (Fdbus_method_return): New function.
11771 (xd_read_message): Add the serial number to the event.
11772 (Fdbus_register_method): Activate the function.
11773
11774 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
11775
11776 * keyboard.c (read_key_sequence): Fix typo.
11777
11778 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
11779
11780 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
11781 (xd_signature, xd_append_arg): Handle element type detection for
11782 empty arrays.
11783 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
11784 SDATA () calls; this must be solved more general.
11785 (Fdbus_register_signal): Use SBYTES instead of strlen.
11786
11787 2008-01-03 Magnus Henoch <magnus@zemdatav>
11788
11789 * dbusbind.c (xd_append_arg): Use unsigned char instead of
11790 unsigned int for byte values (necessary for big-endian platform).
11791 (Fdbus_call_method): Handle the case of no returned arguments.
11792
11793 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
11794
11795 * dbusbind.c (xd_read_message): Use non-static input_event struct.
11796
11797 2007-12-31 Magnus Henoch <mange@freemail.hu>
11798
11799 * dbusbind.c (xd_signature): Signature of variant is just "v".
11800
11801 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
11802
11803 * dbusbind.c: Fix several errors and compiler warnings.
11804 Reported by Tom Tromey <tromey@redhat.com>.
11805 (XD_ERROR, XD_DEBUG_MESSAGE)
11806 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
11807 (xd_append_arg): Part for basic D-Bus types rewitten.
11808 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
11809 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
11810 appropriate.
11811 (xd_read_message): Return Qnil. Don't signal an error; it is not
11812 useful during event reading.
11813 (Fdbus_register_signal): Signal an error if the check for
11814 FUNCTIONP fails.
11815 (Fdbus_register_method): New function. The implementation is not
11816 complete, the call of the function signals an error therefore.
11817 (Fdbus_unregister_object): New function, renamed from
11818 Fdbus_unregister_signal. The initial check signals an error, if
11819 the object is not well formed.
11820
11821 2007-12-30 Richard Stallman <rms@gnu.org>
11822
11823 * textprop.c (get_char_property_and_overlay):
11824 Signal error if POSITION is out of range in a buffer.
11825
11826 2007-12-29 Martin Rudalics <rudalics@gmx.at>
11827
11828 * w32fns.c (Fx_create_frame): Make copy of frame parameters
11829 because the original parameters are in pure storage now.
11830
11831 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11832
11833 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
11834
11835 2007-12-22 Eli Zaretskii <eliz@gnu.org>
11836
11837 * callint.c (syms_of_callint) <command-history>: Add reference to
11838 history-length in the doc string.
11839
11840 2007-12-17 Jason Rumney <jasonr@gnu.org>
11841
11842 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
11843 before passing as wParam.
11844
11845 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
11846
11847 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
11848 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
11849 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
11850 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
11851 as number.
11852 (Fdbus_call_method): Fix docstring.
11853
11854 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
11855
11856 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
11857 New macros.
11858 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
11859 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
11860 Simplify.
11861 (xd_signature): New function.
11862 (xd_append_arg): Compute also signatures. Major rewrite.
11863 (xd_retrieve_arg): Make debug messages friendly.
11864 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
11865 Check for signatures of arguments.
11866
11867 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
11868
11869 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
11870 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
11871 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
11872 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
11873 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
11874 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
11875 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
11876 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
11877 (xd_retrieve_value): Remove. Functionality included in ...
11878 (xd_append_arg): New function.
11879 (Fdbus_call_method, Fdbus_send_signal): Apply it.
11880
11881 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
11882
11883 * dbusbind.c (top): Include <stdio.h>.
11884 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
11885 dbus_message_new_method_call and dbus_message_new_signal.
11886 (Fdbus_register_signal): Rename unique_name to uname.
11887 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
11888 non-existing unique name. Fix typos in matching rule. Return an
11889 object which is useful in Fdbus_unregister_signal.
11890 (Fdbus_unregister_signal): Reimplementation, in order to remove
11891 only the corresponding entry.
11892 (Vdbus_registered_functions_table): Change the order of entries.
11893 Apply these changes in xd_read_message and Fdbus_register_signal.
11894
11895 2007-12-16 Andreas Schwab <schwab@suse.de>
11896
11897 * fileio.c (Finsert_file_contents): Fix overflow check to not
11898 depend on undefined integer overflow.
11899
11900 2007-12-14 Jason Rumney <jasonr@gnu.org>
11901
11902 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
11903 for characters above 127.
11904
11905 2007-12-13 Jason Rumney <jasonr@gnu.org>
11906
11907 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
11908 before dereferencing array.
11909 (lookup_vk_code): Remove zero comparison.
11910
11911 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
11912
11913 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
11914 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
11915 Use `unsigned int' instead of `uint'.
11916 (xd_read_message, Fdbus_register_signal): Split expressions into
11917 multiple lines before operators "&&" and "||", according to the
11918 GNU Coding Standards.
11919
11920 2007-12-14 Eli Zaretskii <eliz@gnu.org>
11921
11922 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
11923
11924 2007-12-12 Juri Linkov <juri@jurta.org>
11925
11926 * buffer.c (Frename_buffer): In interactive spec replace
11927 `read-buffer' with `read-string' that uses `buffer-name-history'
11928 as history, and the current buffer's name as default.
11929
11930 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
11931
11932 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
11933 manipulating the backtrace manually.
11934 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
11935 (struct backtrace, backtrace_list): Remove.
11936 (command_loop_1): Remove dead var `no_direct'.
11937
11938 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
11939 preserve non-built-in buffer-local variables.
11940 (Fkill_all_local_variables): Don't re-create&re-set permanent
11941 buffer-local variables.
11942
11943 2007-12-09 Juri Linkov <juri@jurta.org>
11944
11945 * buffer.c (Frename_buffer): Change interactive spec from "s" to
11946 Lisp code that uses `read-buffer' with current buffer as default.
11947
11948 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
11949
11950 * dbusbind.c (xd_read_message): Generate an event for every
11951 registered handler. There might be several handlers registered
11952 for the same signal.
11953 (Fdbus_register_signal): Don't overwrite a registration for the
11954 same signal. Add a new registration if handlers are different.
11955 (Vdbus_registered_functions_table): Rework doc string.
11956
11957 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
11958
11959 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
11960 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
11961 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
11962 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
11963 Unify argument lists.
11964 (xd_read_message, Fdbus_register_signal): Reorder and extend event
11965 arguments and hash table keys. Use unique name for service.
11966 (Fdbus_unregister_signal): Remove checks.
11967 (Vdbus_registered_functions_table): Fix doc string.
11968
11969 2007-12-05 Magnus Henoch <mange@freemail.hu>
11970
11971 * process.c (make_process): Initialize pty_flag to 0.
11972
11973 2007-12-05 Jason Rumney <jasonr@gnu.org>
11974
11975 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
11976 specified XBMs.
11977
11978 2007-12-05 Richard Stallman <rms@gnu.org>
11979
11980 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
11981
11982 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11983
11984 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
11985 New variable.
11986 (mac_try_close_socket) [MAC_OSX]: New function.
11987 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
11988 Update cfsockets_for_select. Replace invalid CFRunLoop source.
11989
11990 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
11991 Use mac_try_close_socket.
11992
11993 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11994
11995 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
11996 reloc_base.
11997 (copy_dysymtab): Compute relocation base here.
11998 (rebase_reloc_address) [__ppc64__]: New function.
11999 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
12000 changed.
12001
12002 2007-12-05 Jason Rumney <jasonr@gnu.org>
12003
12004 * w32proc.c (sys_spawnve): Quote args with wildcards.
12005
12006 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12007
12008 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
12009 __objc_* sections.
12010 (unrelocate) [_LP64]: Set relocation base to address of data segment.
12011
12012 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
12013
12014 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
12015 Move check for Vdbus_registered_functions_table to
12016 xd_read_queued_messages.
12017 (xd_read_queued_messages): Protect xd_read_message calls by
12018 internal_condition_case_1.
12019
12020 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
12021
12022 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
12023 Qdbus_system_bus and Qdbus_session_bus, respectively.
12024 (Vdbus_intern_symbols): Remove.
12025 (Vdbus_registered_functions_table): New hash table.
12026 (XD_SYMBOL_INTERN_SYMBOL): Remove.
12027 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
12028 Rewrite in order to manage registered functions by hash table
12029 Vdbus_registered_functions_table.
12030
12031 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
12032
12033 * xterm.c: Update URL to Window Manager Specification in comment.
12034
12035 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
12036
12037 * config.in (HAVE_DBUS): Add.
12038
12039 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
12040 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
12041 (obj): Add $(DBUS_OBJ).
12042 (LIBES): Add $(DBUS_LIBS).
12043 (dbusbind.o): New target.
12044
12045 * dbusbind.c: New file.
12046
12047 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
12048
12049 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
12050 (Qdbus_event): New Lisp symbol.
12051 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
12052 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
12053 (keys_of_keyboard ): Define dbus-event.
12054
12055 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
12056
12057 2007-12-01 Richard Stallman <rms@gnu.org>
12058
12059 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
12060
12061 2007-11-30 Jason Rumney <jasonr@gnu.org>
12062
12063 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
12064 (w32con_reset_terminal_modes): Clear screen buffer.
12065 (w32_face_attributes): Don't use color indexes that are out of range.
12066 Only reverse the default colors.
12067
12068 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
12069 WINDOWSNT.
12070
12071 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
12072
12073 2007-11-29 Jason Rumney <jasonr@gnu.org>
12074
12075 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
12076 (w32_face_attributes): Use Vtty_defined_color_alist to determine
12077 if the terminal colors are initialized.
12078 (unspecified_fg, unspecified_bg): Remove unused declarations.
12079
12080 2007-11-29 Andreas Schwab <schwab@suse.de>
12081
12082 * keyboard.c (apply_modifiers): Fix typo.
12083
12084 2007-11-29 Richard Stallman <rms@gnu.org>
12085
12086 * keymap.c (Fcurrent_local_map): Doc fix.
12087
12088 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
12089
12090 * s/gnu-kfreebsd.h: New file.
12091
12092 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12093
12094 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
12095 Don't cast redundantly.
12096
12097 * keyboard.c (KEY_TO_CHAR): New macro.
12098 (parse_modifiers, apply_modifiers): Accept integer arguments.
12099 (read_key_sequence): Use them to unify the "shift->unshift" mapping
12100 for chars and symbol keys.
12101 After doing such remapping, apply function-key-map again.
12102
12103 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
12104
12105 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
12106 compiled anymore.
12107
12108 2007-11-26 Andreas Schwab <schwab@suse.de>
12109
12110 * process.c (list_processes_1): Fix indentation level of the
12111 command column.
12112
12113 2007-11-23 Andreas Schwab <schwab@suse.de>
12114
12115 * editfns.c (Fformat): Handle %c specially since it requires the
12116 argument to be of type int.
12117
12118 2007-11-23 Markus Triska <markus.triska@gmx.at>
12119
12120 * emacs.c (main): Call init_editfns before init_process, since
12121 init_process sets Vprocess_connection_type depending on OS release.
12122
12123 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12124
12125 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
12126 (find_symbol_value): Use do_symval_forwarding.
12127
12128 * data.c (set_internal): Set the value in the `cons-cell' (for
12129 Buffer_Local_values) not only for frame-local variables.
12130
12131 2007-11-22 Andreas Schwab <schwab@suse.de>
12132
12133 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
12134 values to sprintf.
12135 * keymap.c (Fsingle_key_description): Likewise.
12136 * print.c (print_object): Likewise.
12137
12138 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
12139
12140 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
12141 file for image is nil.
12142
12143 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
12144
12145 * term.c: Include stdarg.h.
12146 (fatal): Implement using varargs.
12147 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
12148
12149 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12150
12151 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
12152 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
12153 Update call to buffer_slot_type_mismatch.
12154 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
12155 (buffer_slot_type_mismatch): Update.
12156 * buffer.c (buffer_local_types): Remove.
12157 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
12158 (defvar_per_buffer): Set the type in the buffer_objfwd.
12159
12160 2007-11-21 Jason Rumney <jasonr@gnu.org>
12161
12162 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
12163 CreateFileMapping returns NULL on failure.
12164
12165 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12166
12167 * search.c (Fset_match_data): Remove the `evaporate' feature.
12168 (unwind_set_match_data): Don't use the `evaporate' feature.
12169
12170 2007-11-21 Jason Rumney <jasonr@gnu.org>
12171
12172 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
12173
12174 * w32console.c (w32con_write_glyphs): Remove unused variables.
12175
12176 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
12177
12178 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
12179
12180 * s/darwin.h (MULTI_KBOARD): Remove.
12181
12182 * macfns.c (x_create_tip_frame, Fx_create_frame)
12183 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
12184
12185 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
12186
12187 * buffer.c (Fbuffer_local_value): Remove redundant test.
12188 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
12189 than in `current-buffer' to match the comment.
12190 Do the swap using swap_in_global_binding.
12191
12192 * data.c (store_symval_forwarding, set_internal):
12193 * eval.c (specbind): Remove dead code.
12194
12195 * coding.c (detect_coding, Fupdate_coding_systems_internal):
12196 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
12197 Since we do not want to see internal Lisp_*fwd objects here.
12198
12199 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
12200
12201 * sysdep.c (init_system_name): Use getaddrinfo if available.
12202
12203 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
12204 (x_scroll_bar_note_movement): start, end, with, height in struct
12205 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
12206
12207 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
12208
12209 * puresize.h (BASE_PURESIZE): Increase to 1190000.
12210
12211 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12212
12213 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
12214 This undoes Richard's change of 14-Oct-2002.
12215
12216 * alloc.c (allocate_other_vector):
12217 * lisp.h (allocate_other_vector): Remove.
12218
12219 * window.c (struct save_window_data): Move non-lisp data to the end
12220 and make it `int' rather than Lisp_Object.
12221 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
12222 Done wrap/unwrap integer values.
12223 (Fset_window_configuration, compare_window_configurations):
12224 Update use of fields to their new types.
12225
12226 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
12227 Turn integer fields into `int'. Merge x_window_low and x_window_high.
12228 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
12229 (SET_SCROLL_BAR_X_WINDOW): Remove.
12230 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
12231 Access the new x_window field directly.
12232 * xterm.c (x_scroll_bar_create): Use a pseudovector.
12233 Don't wrap/unwrap integers into Lisp_Objects.
12234 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
12235 (x_scroll_bar_report_motion):
12236 Don't wrap/unwrap integers into Lisp_Objects.
12237 (x_term_init): Use SDATA.
12238 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
12239 (x_scroll_bar_set_handle, x_scroll_bar_remove)
12240 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
12241 (x_scroll_bar_report_motion, x_scroll_bar_clear):
12242 * xfns.c (x_set_background_color):
12243 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
12244 Access the new x_window field directly.
12245
12246 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
12247 (allocate_pseudovector): Make non-static.
12248
12249 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
12250 (allocate_pseudovector): Declare.
12251 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
12252
12253 2007-11-15 Andreas Schwab <schwab@suse.de>
12254
12255 * editfns.c (Fformat): Correctly format EMACS_INT values.
12256 Also take precision into account when formatting an integer.
12257
12258 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
12259
12260 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
12261
12262 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
12263 (syms_of_keyboard): Defsubr it.
12264
12265 * data.c (swap_in_global_binding): Fix longstanding bug where
12266 store_symval_forwarding was not called with the right second argument,
12267 thus causing objfwd-ing from being dropped.
12268
12269 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
12270
12271 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
12272 (Fx_display_pixel_height, Fx_display_planes)
12273 (Fx_display_color_cells, Fx_server_max_request_size)
12274 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
12275 (Fx_display_visual_class, Fx_display_save_under):
12276 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
12277 (Fx_display_pixel_height, Fx_display_planes)
12278 (Fx_display_color_cells, Fx_server_max_request_size)
12279 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
12280 (Fx_display_mm_height, Fx_display_mm_width)
12281 (Fx_display_backing_store, Fx_display_visual_class)
12282 (Fw32_select_font, Fx_display_save_under):
12283 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
12284 (Fx_display_pixel_height, Fx_display_planes)
12285 (Fx_display_color_cells, Fx_server_max_request_size)
12286 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
12287 (Fx_display_save_under): Fix typos in docstrings.
12288
12289 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
12290
12291 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
12292 corresponding to deleted entries; they are an implementation detail.
12293 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
12294 Remove variables.
12295 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
12296 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
12297 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
12298 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
12299 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
12300 (Fw32_define_rgb_color, Fw32_load_color_file)
12301 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
12302 Fix typos in docstrings.
12303 (Fx_server_version): Reflow docstring.
12304 (Fw32_shell_execute): Doc fixes.
12305
12306 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
12307
12308 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
12309 if w32_parse_hot_key returned nil.
12310
12311 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12312
12313 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
12314
12315 2007-11-09 Jason Rumney <jasonr@gnu.org>
12316
12317 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
12318
12319 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
12320
12321 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
12322 Remove W32_SCROLL_BAR_CLICK_EVENT.
12323
12324 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
12325 Add MULTIMEDIA_KEY_EVENT.
12326
12327 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
12328 (lispy_multimedia_keys) [WINDOWSNT]: New array.
12329 (make_lispy_event) [WINDOWSNT]: Use it to translate
12330 MULTIMEDIA_KEY_EVENT.
12331
12332 * w32term.h (WM_APPCOMMAND): Define if not already.
12333 (GET_APPCOMMAND_LPARAM): Likewise.
12334
12335 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
12336 WM_APPCOMMAND.
12337
12338 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
12339 (syms_of_w32fns): Export and initialize it.
12340 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
12341
12342 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
12343
12344 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
12345 twice.
12346
12347 * xdisp.c (handle_face_prop): Fix last change.
12348
12349 2007-11-09 Richard Stallman <rms@gnu.org>
12350
12351 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
12352 not just for after-strings and before-strings.
12353 Call face_for_overlay_string and pass the overlay to it.
12354 (handle_display_prop): Determine whether property came from an overlay.
12355 Pass OVERLAY arg to handle_single_display_spec.
12356 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
12357 (load_overlay_strings): Fill in it->string_overlays.
12358 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
12359
12360 * xfaces.c (face_for_overlay_string): Function renamed from
12361 face_at_buffer_position_no_overlays, and add arg OVERLAY.
12362
12363 * dispextern.h (struct it): New elt string_overlays.
12364 New elt from_overlay, also in stack.
12365 Rearrange a few elements.
12366 (face_for_overlay_string): Decl renamed from
12367 face_at_buffer_position_no_overlays, and add argument.
12368
12369 2007-11-09 Richard Stallman <rms@gnu.org>
12370
12371 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
12372 to get the base face for an overlay string.
12373
12374 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
12375
12376 * xfaces.c (face_at_buffer_position_no_overlays): New function.
12377
12378 * xdisp.c (handle_stop): Move some code out of loop.
12379
12380 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12381
12382 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
12383 Fix conversion from Lisp object to ATSUFontID.
12384
12385 2007-11-09 Jason Rumney <jasonr@gnu.org>
12386
12387 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
12388
12389 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12390
12391 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
12392 Don't assume regions are aligned to page boundary.
12393 (print_load_command_name): Add LC_UUID if defined.
12394
12395 2007-11-09 Richard Stallman <rms@gnu.org>
12396
12397 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
12398
12399 2007-11-07 Jason Rumney <jasonr@gnu.org>
12400
12401 * s/windows95.h: Remove.
12402
12403 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
12404
12405 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
12406 abort with a message on unhandled store_type values.
12407
12408 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
12409
12410 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
12411 Remove HAVE_X11R5 and HAVE_X11R4.
12412
12413 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
12414
12415 * Makefile.in: Remove references to sunfns.c and sunfns.o.
12416
12417 2007-11-01 Johan Bockgård <bojohan@gnu.org>
12418
12419 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
12420 Don't set s->stippled_p here, since it has already been set by
12421 x_set_glyph_string_gc from x_draw_glyph_string.
12422
12423 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
12424
12425 * sunfns.c: Remove file.
12426
12427 * m/sun386.h:
12428 * m/sun2.h:
12429 * m/sparc.h: Remove Sun windows code.
12430
12431 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
12432
12433 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
12434 (init_keyboard): Set current_kboard's window-system to nil.
12435 (tty_read_avail_input): Typo.
12436 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
12437
12438 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
12439
12440 * s/usg5-4.h:
12441 * s/usg5-3.h:
12442 * s/ptx.h:
12443 * m/is386.h:
12444 * m/ibmps2-aix.h:
12445 * Makefile.in: Remove all mentions of X10.
12446
12447 * dispnew.c (syms_of_display): Don't mention version 10.
12448
12449 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
12450
12451 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
12452 ($(BLD)/abbrev.$(O)): Remove.
12453
12454 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12455
12456 Rewrite abbrev.c in Elisp.
12457 * image.c (Qcount): Don't declare as extern.
12458 (syms_of_image): Initialize and staticpro `Qcount'.
12459 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
12460 * emacs.c (main): Don't call syms_of_abbrev.
12461 * Makefile.in (obj): Remove abbrev.o.
12462 (abbrev.o): Remove.
12463 * abbrev.c: Remove.
12464
12465 2007-10-26 Martin Rudalics <rudalics@gmx.at>
12466
12467 * window.c (window_min_size_2): Don't count header-line.
12468
12469 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
12470
12471 * frame.h (struct frame): Move all bit fields after the first bit
12472 field to take advantage of the available space. Group all the
12473 chars together to reduce wasted space due to padding.
12474
12475 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
12476
12477 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
12478
12479 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
12480 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
12481 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
12482 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
12483 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
12484 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
12485 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
12486 (last_marked, mark_object_loop_halt): Make static.
12487
12488 * frame.c (syms_of_frame) <delete-frame-functions>:
12489 Fix typo in docstring.
12490
12491 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
12492
12493 * w32.c (init_environment): Fix tiny memory leak.
12494 (w32_get_resource): Remove unused variable `ok'.
12495
12496 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
12497
12498 Make `window-system' into a keyboard-local variable (rather than
12499 frame-local as done originally by multi-tty).
12500
12501 * keyboard.h (struct kboard): Add Vwindow_system.
12502 * keyboard.c (init_kboard): Set a default for Vwindow_system.
12503 (mark_kboards): Mark Vwindow_system.
12504
12505 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
12506 (init_display): Don't set the obsolete `window-system' frame-param.
12507
12508 * xterm.c (x_term_init):
12509 * w32term.c (w32_create_terminal):
12510 * term.c (init_tty): Set Vwindow_system.
12511 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
12512 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
12513
12514 * xfns.c (Fx_create_frame, x_create_tip_frame):
12515 * w32fns.c (Fx_create_frame, x_create_tip_frame):
12516 * macfns.c (Fx_create_frame):
12517 Don't set the obsolete `window-system' frame-param.
12518
12519 * frame.h (Qwindow_system): Remove.
12520 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
12521 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
12522
12523 2007-10-24 Richard Stallman <rms@gnu.org>
12524
12525 * frame.c (x_figure_window_size): For fullscreen case,
12526 set USPosition | PPosition without clobbering rest of window_prompting.
12527
12528 * keyboard.c (Fcurrent_idle_time): Doc fix.
12529
12530 * print.c (Fwith_output_to_temp_buffer): Doc fix.
12531
12532 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
12533
12534 * process.c (unwind_request_sigio): Only define if __ultrix__.
12535
12536 * callproc.c (child_setup): Remove spurious *.
12537
12538 * lisp.h (Fget_text_property): Declare.
12539 (have_menus_p): Declare it here rather than in sys-dep header files.
12540 * macterm.h (have_menus_p):
12541 * msdos.h (have_menus_p):
12542 * xterm.h (have_menus_p): Remove.
12543
12544 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
12545 (Fmake_variable_frame_local): Just check the variable's const-ness
12546 rather than checking nil or t.
12547
12548 2007-10-22 Jason Rumney <jasonr@gnu.org>
12549
12550 * w32fns.c: Include math.h.
12551 (w32_abort): Declaration moved to nt/config.nt.
12552
12553 * s/ms-w32.h (HAVE_STDLIB_H): Define.
12554 (abort): Redefinition moved to nt/config.nt.
12555
12556 * m/windowsnt.h: Remove.
12557
12558 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
12559
12560 * emacs.c (Fdump_emacs): Fix typo in message.
12561 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
12562 <installation-directory>: Reflow docstring.
12563
12564 2007-10-22 Juri Linkov <juri@jurta.org>
12565
12566 * minibuf.c: Allow minibuffer default to be a list of default values.
12567 With empty input use the first element of this list as returned default.
12568 (string_to_object)
12569 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
12570 (read_minibuf): If defalt is cons, set histstring to its car.
12571 (Fread_string): If default_value is cons, set val to its car.
12572 (Fread_buffer): If def is cons, use its car.
12573 (Fcompleting_read): If defalt is cons, set val to its car.
12574
12575 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
12576
12577 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
12578
12579 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
12580
12581 * doc.c (Fdocumentation): Check for advice in all cases.
12582
12583 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
12584
12585 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
12586
12587 2007-10-19 Richard Stallman <rms@gnu.org>
12588
12589 * doc.c (Fdocumentation): Check for and handle an advised function.
12590
12591 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
12592
12593 * process.c (Fset_process_filter): Doc fix.
12594
12595 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
12596
12597 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
12598 which caused key-translation-map to applied repeatedly (thus breaking
12599 double-mode).
12600
12601 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
12602
12603 * xselect.c (x_own_selection, x_handle_selection_clear)
12604 (x_clear_frame_selections):
12605 * w32menu.c (list_of_panes, list_of_items):
12606 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
12607 * textprop.c (validate_plist, interval_has_all_properties)
12608 (interval_has_some_properties, interval_has_some_properties_list)
12609 (add_properties, text_property_list):
12610 * process.c (Fget_buffer_process, list_processes_1, status_notify):
12611 * minibuf.c (Fassoc_string):
12612 * macselect.c (x_own_selection, x_clear_frame_selections)
12613 (Fx_disown_selection_internal):
12614 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
12615 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
12616
12617 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
12618
12619 * process.c: Link to libs for calling res_init() if available.
12620 (Fmake_network_process): Call res_init() before getaddrinfo or
12621 gethostbyname, if possible.
12622
12623 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
12624
12625 * lread.c (read1): Set pvectype for char_tables.
12626
12627 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
12628 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
12629 Add type checks.
12630 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
12631
12632 * alloc.c (free_misc): Use XMISCTYPE.
12633 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
12634
12635 2007-10-17 Glenn Morris <rgm@gnu.org>
12636
12637 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
12638 (syms_of_minibuf): Add Qcompletion_ignore_case.
12639 * dired.c (Qcompletion_ignore_case): Change to external.
12640 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
12641 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
12642 (Fread_file_name): Use it rather than intern'ing.
12643
12644 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
12645 (Fread_coding_system): Ignore case of user input.
12646
12647 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12648
12649 * xdisp.c (handle_display_prop): Ignore display specs after
12650 replacing one when string text is being replaced.
12651 (handle_single_display_spec): Pretend as if characters with display
12652 property haven't been consumed only when buffer text is being replaced.
12653
12654 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
12655
12656 * xfns.c (Fx_create_frame, Fx_display_list):
12657 * window.c (window_fixed_size_p, enlarge_window)
12658 (shrink_window_lowest_first):
12659 * macterm.c (init_font_name_table):
12660 * macfns.c (Fx_create_frame, Fx_display_list):
12661 * lread.c (close_load_descs):
12662 * keyboard.c (read_char_x_menu_prompt):
12663 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
12664 * coding.c (code_convert_region_unwind): Test the type of an object
12665 rather than just !NILP before extracting data from it.
12666
12667 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
12668
12669 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
12670 (XMISCANY): New macro.
12671 (XMISCTYPE): Use it.
12672 (struct Lisp_Misc_Any): New type.
12673 (union Lisp_Misc): Use it.
12674 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
12675 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
12676 (find_symbol_value, set_internal, default_value, Fset_default)
12677 (Fmake_variable_buffer_local, Fmake_local_variable)
12678 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
12679 (Flocal_variable_if_set_p, Fvariable_binding_locus):
12680 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
12681 * alloc.c (allocate_buffer): Set the size and tag.
12682 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
12683 Use XMISCANY.
12684 (die): Follow the GNU convention for error messages.
12685 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
12686 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
12687 tag any more.
12688 (set_buffer_internal_1):
12689 * frame.c (store_frame_param):
12690 * eval.c (specbind):
12691 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
12692
12693 * doc.c (Fsnarf_documentation): Simplify.
12694
12695 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
12696
12697 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
12698 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
12699
12700 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12701
12702 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
12703
12704 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
12705
12706 * eval.c (do_autoload): Don't save autoloads.
12707
12708 * data.c (Ffset): Save autoload of the function being set.
12709
12710 2007-10-07 John Paul Wallington <jpw@pobox.com>
12711
12712 * xfns.c (x_create_tip_frame): Set the `display-type' frame
12713 parameter before setting up faces.
12714
12715 2007-10-13 Eli Zaretskii <eliz@gnu.org>
12716
12717 * ccl.c (Fregister_code_conversion_map):
12718 * keyboard.c (append_tool_bar_item): Reformat last change.
12719
12720 * lisp.h (eabs): Rename from `abs'. All callers changed.
12721
12722 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
12723
12724 * buffer.c (add_overlay_mod_hooklist):
12725 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
12726 * fontset.c (make_fontset):
12727 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
12728 (append_tool_bar_item):
12729 * macmenu.c (grow_menu_items):
12730 * w32menu.c (grow_menu_items):
12731 * xmenu.c (grow_menu_items): Use larger_vector.
12732
12733 2007-10-13 Eli Zaretskii <eliz@gnu.org>
12734
12735 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
12736 selected frame'' on MSDOS).
12737
12738 2007-10-12 Martin Rudalics <rudalics@gmx.at>
12739
12740 * frame.c (Qexplicit_name): New variable.
12741 (x_report_frame_params): Report it in parameter alist.
12742 (syms_of_frame): Intern and staticpro it.
12743
12744 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
12745
12746 * macfns.c (x_create_tip_frame): Set terminal for frame.
12747
12748 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
12749
12750 * frame.c (Qenvironment): Remove.
12751 (syms_of_frame) <Qenvironment>: Don't initialize.
12752 (Fdelete_frame): Don't treat the `environment' param specially.
12753 * frame.h (Qenvironment): Don't declare.
12754 * callproc.c (set_initial_environment): Don't set unused frame param.
12755
12756 * frame.c (Fframe_with_environment): Remove.
12757 (syms_of_frame) <Sframe_with_environment>: Don't declare.
12758
12759 * lisp.h (Fframe_with_environment): Don't declare.
12760
12761 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
12762
12763 * indent.c (indent_tabs_mode, last_known_column)
12764 (last_known_column_modified): Make static.
12765 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
12766
12767 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
12768
12769 * puresize.h (BASE_PURESIZE): Increase to 1170000.
12770
12771 2007-10-09 Jason Rumney <jasonr@gnu.org>
12772
12773 * w32term.c (x_set_window_size): Disable code that attempts to tell
12774 Lisp code about a size change before it actually happens.
12775
12776 2007-10-09 Richard Stallman <rms@gnu.org>
12777
12778 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
12779 return HANDLED_RETURN.
12780
12781 2007-10-08 Martin Rudalics <rudalics@gmx.at>
12782
12783 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
12784 when there's an unread command event.
12785
12786 * frame.c (focus_follows_mouse): Move here from frame.el to allow
12787 window autoselection act appropriately when leaving selected frame.
12788 (syms_of_frame): Initialize focus_follows_mouse.
12789 * frame.h (focus_follows_mouse): Extern it.
12790 * macterm.c (XTread_socket): When focus_follows_mouse is nil
12791 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
12792 * msdos.c (dos_rawgetc): Likewise.
12793 * w32term.c (w32_read_socket): Likewise.
12794 * xterm.c (handle_one_xevent): Likewise.
12795 * xdisp.c (syms_of_xdisp): In doc-string of
12796 mouse-autoselect-window mention focus-follows-mouse.
12797
12798 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12799
12800 * macterm.c (mac_load_query_font): Fix missing return value.
12801 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
12802 Add BLOCK_INPUT.
12803
12804 2007-10-08 Richard Stallman <rms@gnu.org>
12805
12806 * xdisp.c (get_window_cursor_type): Implement documented behavior
12807 for cursor-in-non-selected-windows = t.
12808
12809 2007-10-08 Jason Rumney <jasonr@gnu.org>
12810
12811 * w32.c (w32_get_resource): Always close registry keys.
12812
12813 2007-10-08 Jason Rumney <jasonr@gnu.org>
12814
12815 * makefile.w32-in (LIBS): Add COMCTL32.
12816
12817 * w32fns.c (globals_of_w32fns): Init common controls.
12818
12819 2007-10-08 Richard Stallman <rms@gnu.org>
12820
12821 * image.c (our_memory_buffer): Rename from omfib_buffer.
12822
12823 2007-10-08 Richard Stallman <rms@gnu.org>
12824
12825 * buffer.c (Foverlays_at): Doc fix.
12826
12827 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
12828
12829 * fns.c (Fplist_put): Preserve uneven tail data.
12830
12831 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
12832
12833 * termhooks.h (enum event_kind): Remove trailing comma.
12834
12835 * frame.h (enum): Remove trailing comma.
12836
12837 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
12838
12839 * w32proc.c (delete_child): Don't terminate threads of zombies.
12840
12841 2007-10-08 Martin Rudalics <rudalics@gmx.at>
12842
12843 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
12844
12845 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
12846 last-repeatable-command.
12847 (init_kboard): Initialize Vlast_repeatable_command.
12848 (command_loop_1): Set it to real_this_command unless that was
12849 bound to an input event.
12850 (mark_kboards): Mark it.
12851
12852 2007-10-08 Richard Stallman <rms@gnu.org>
12853
12854 * eval.c (condition-case): Doc fix.
12855
12856 2007-10-08 Masatake YAMATO <jet@gyve.org>
12857
12858 * xfaces.c (tty_supports_face_attributes_p): Fix code
12859 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
12860 was copied and not edited.
12861
12862 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
12863
12864 Add new `input-decode-map' keymap and use it for terminal
12865 escape sequences.
12866 * keyboard.h (struct kboard): Add Vinput_decode_map.
12867 Remove Vlocal_key_translation_map.
12868 * keyboard.c (read_key_sequence): Add support for input-decode-map.
12869 (init_kboard): Init input-decode-map.
12870 Replace local-key-translation-map back with key-translation-map.
12871 (syms_of_keyboard): Declare input-decode-map.
12872 Remove local-key-translation-map. Update docstrings.
12873 (mark_kboards): Mark Vinput_decode_map.
12874 Don't mark Vlocal_key_translation_map.
12875 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
12876 Replace local-key-translation-map back with key-translation-map.
12877 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
12878 Bind in input-decode-map rather than function-key-map.
12879
12880 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
12881 This was made redundant by the previous introduction of XSETPVECTYPE.
12882
12883 2007-10-09 Richard Stallman <rms@gnu.org>
12884
12885 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
12886
12887 2007-09-29 Richard Stallman <rms@gnu.org>
12888
12889 * eval.c (internal_condition_case_2, internal_condition_case_1)
12890 (internal_condition_case): Reenable abort if x_catching_errors ()
12891 to see if that really happens and why.
12892
12893 2007-10-06 Andreas Schwab <schwab@suse.de>
12894
12895 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
12896
12897 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
12898
12899 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
12900
12901 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
12902
12903 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
12904
12905 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
12906
12907 * window.h (struct window):
12908 * window.c (struct save_window_data, struct saved_window):
12909 * termhooks.h (struct terminal):
12910 * process.h (struct Lisp_Process):
12911 * frame.h (struct frame):
12912 * buffer.h (struct buffer):
12913 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
12914 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
12915 The size field of (pseudo)vectors is now unsigned.
12916 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
12917
12918 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
12919 Turn `count' into an integer.
12920
12921 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
12922 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
12923 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
12924 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
12925 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
12926
12927 * alloc.c (allocate_pseudovector): New fun.
12928 (ALLOCATE_PSEUDOVECTOR): New macro.
12929 (allocate_window, allocate_terminal, allocate_frame)
12930 (allocate_process): Use it.
12931 (mark_vectorlike): New function.
12932 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
12933 (mark_terminals): Use it.
12934 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
12935 (Fmake_byte_code): Use XSETPVECTYPE.
12936
12937 * frame.c (Fframe_parameters): Minor simplification.
12938
12939 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
12940
12941 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
12942
12943 * buffer.c (Fget_buffer_create, init_buffer_once):
12944 * lread.c (defsubr):
12945 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
12946
12947 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
12948 defined differently in the m/*.h files.
12949 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
12950 (XSETPVECTYPE): New macro.
12951 (XSETPSEUDOVECTOR): Use it.
12952
12953 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
12954 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
12955
12956 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
12957 * lread.c (defvar_per_buffer):
12958 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
12959
12960 * window.c (candidate_window_p): Only consider as visible frames that
12961 are on the same terminal.
12962
12963 * m/ibms390x.h (MARKBIT): Remove unused macro.
12964
12965 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
12966
12967 * lread.c (Fload): Fix typo in docstring.
12968
12969 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
12970
12971 * floatfns.c (Fexpt): Manually check for overflows, so that a power
12972 of a non-zero value can't yield zero.
12973
12974 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
12975
12976 * term.c (term_clear_mouse_face, term_mouse_highlight)
12977 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
12978
12979 * print.c (safe_debug_print): Use XHASH.
12980
12981 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
12982 Lisp elements such as tags.
12983 (XHASH): New macro.
12984 (EQ): Use it.
12985 (SREF, SSET, STRING_COPYIN): Use SDATA.
12986 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
12987
12988 * alloc.c (mark_terminal): Remove left-over declaration.
12989 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
12990 (allocate_vectorlike): Remove type argument. Adjust callers.
12991 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
12992 Only handle the one remaining MEM_TYPE_VECTORLIKE.
12993
12994 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
12995 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
12996 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
12997 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
12998 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
12999 Use them.
13000
13001 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
13002 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
13003 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
13004
13005 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
13006
13007 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
13008 loaded by default.
13009
13010 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
13011
13012 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
13013 on this tty.
13014 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
13015
13016 * term.c (mouse_face_window): Rename from Qmouse_face_window.
13017 Update all users.
13018 (handle_one_term_event): Use Gpm_DrawPointer.
13019 (Fgpm_mouse_start): Rename from Fterm_open_connection.
13020 Signal errors instead of returning nil. Always return nil.
13021 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
13022 Make it a noop if gpm-mouse was not activated.
13023 (syms_of_term): Update names.
13024
13025 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
13026
13027 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
13028 (init_sys_modes): Check that gpm_tty is the current tty.
13029
13030 * alloc.c (allocate_terminal): Set the vector size to only count the
13031 lisp fields. Initialize those to nil.
13032 (mark_object): Don't treat terminals specially.
13033 (mark_terminal): Remove.
13034 (mark_terminals): Use mark_object instead.
13035
13036 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
13037 the GC to the beginning.
13038
13039 * indent.h:
13040 * indent.c: Use EMACS_INT for ints coming from Elisp data.
13041
13042 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
13043
13044 2007-09-25 Jason Rumney <jasonr@gnu.org>
13045
13046 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
13047
13048 * w32console.c (create_w32cons_output): Remove.
13049
13050 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
13051
13052 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
13053 (reset_sys_modes): Use reset_terminal_modes_hook.
13054
13055 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
13056
13057 * eval.c (do_autoload): Don't output any message.
13058
13059 2007-09-24 Juri Linkov <juri@jurta.org>
13060
13061 * emacs.c (standard_args): Change priority of "--no-splash"
13062 from 40 to 3. Add "--no-desktop" with the same priority.
13063
13064 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
13065
13066 * alloc.c (gc_sweep): Check cons cell mark bits word by word
13067 and optimize the case where they are all 1.
13068
13069 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
13070
13071 * lisp.h (abs): Define if not defined.
13072 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
13073 Don't define `abs', since it's defined in lisp.h.
13074
13075 2007-09-22 Eli Zaretskii <eliz@gnu.org>
13076
13077 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
13078 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
13079 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
13080 (init_tty): Use DEV_TTY instead of "/dev/tty".
13081 [WINDOWSNT]: No need to protect from NAME arg being null.
13082
13083 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
13084
13085 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
13086 up the tty state.
13087
13088 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
13089
13090 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
13091 (gpm_tty): Change its type.
13092 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
13093 (gpm_tty): Change its type and initialize it.
13094 (Fterm_open_connection): Check the frame is indeed a tty.
13095 Use the new gpm_tty.
13096 (Fterm_close_connection): Use the new gpm_tty.
13097 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
13098 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
13099
13100 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
13101
13102 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
13103 underline_color, to draw strike-through.
13104
13105 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
13106
13107 * lisp.h (allocate_terminal): Declare.
13108
13109 * window.c (candidate_window_p): Consider frames that are being placed
13110 by the user as somewhere between visible and iconified.
13111 (window_loop): Prefer windows on the current frame.
13112 (Fselect_window): Move the use of select-frame to the beginning so we
13113 can just delegate all the work (it'll call us back anyway).
13114
13115 * frame.c (Qdisplay_environment_variable):
13116 * frame.h (Qdisplay_environment_variable): Delete.
13117
13118 * .gdbinit (xbacktrace): Print the arg's address rather than the value
13119 of the first arg, since that value may be a union.
13120
13121 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
13122 parameter rather than Qdisplay_environment_variable. If all else
13123 fails, look for DISPLAY in initial-environment.
13124
13125 2007-09-21 Glenn Morris <rgm@gnu.org>
13126
13127 * Makefile.in (emacstool): Remove target.
13128 (lisp, shortlisp): Remove termdev.elc.
13129
13130 2007-09-21 Markus Triska <markus.triska@gmx.at>
13131
13132 * xterm.c (x_delete_display): Compile session management conditionally.
13133
13134 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
13135
13136 * callproc.c (getenv_internal_1): New function.
13137 (getenv_internal): Use it.
13138 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
13139
13140 * terminal.c (get_terminal): Don't accept ints to represent terminals.
13141 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
13142 (Fset_terminal_parameter): Work with dead terminals as well.
13143 (Fmodify_terminal_parameters): Remove.
13144
13145 * terminal.c (get_terminal): Handle terminals.
13146 Make sure the terminal returned is live.
13147 (create_terminal): Use allocate_terminal.
13148 (mark_terminals): Move to alloc.c.
13149 (delete_terminal): Use terminal->name as liveness status.
13150 NULL out fields after freeing their contents.
13151 Don't deallocate the object.
13152 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
13153 rather than an int.
13154 (Fterminal_live_p): Accept non-integer arguments.
13155 (Fterminal_list): Return terminal objects rather than an ints.
13156
13157 * alloc.c (enum mem_type): New member for `terminal' objects.
13158 (allocate_terminal): New function.
13159 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
13160 Handle terminals.
13161 (mark_terminal): New fun.
13162 (mark_terminals): Move from terminal.c.
13163
13164 * term.c (get_tty_terminal): Don't treat output_initial specially.
13165 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
13166 (delete_tty): Use terminal->name as liveness status.
13167
13168 * termhooks.h (struct terminal): Make it into a pseudovector.
13169 Remove `deleted' replaced by checking `name's nullness.
13170
13171 * print.c (print_object): Handle terminals.
13172
13173 * lisp.h (enum pvec_type): New `terminal' pseudovector.
13174 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
13175
13176 * frame.c (make_terminal_frame):
13177 * keyboard.c (tty_read_avail_input):
13178 * w32term.c (x_delete_terminal):
13179 * xfns.c (Fx_create_frame, x_create_tip_frame):
13180 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
13181
13182 2007-09-20 Glenn Morris <rgm@gnu.org>
13183
13184 * process.c (Fmake_network_process): Doc fix.
13185
13186 2007-09-19 Jason Rumney <jasonr@gnu.org>
13187
13188 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
13189
13190 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
13191
13192 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
13193 Fix a C warning regarding variable constness.
13194
13195 * xterm.c (handle_one_xevent): Fix a C warning.
13196
13197 2007-09-18 Jason Rumney <jasonr@gnu.org>
13198
13199 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
13200
13201 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
13202
13203 * gtkutil.c (gdpy_def): New variable.
13204 (xg_initialize): Initialize gdpy_def.
13205 (xg_display_close): If no other display exists, set gdpy_def to a
13206 new connection.
13207
13208 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
13209
13210 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
13211 when we have no file name for the icon.
13212 (xg_tool_bar_expose_callback): Remove.
13213 (xg_create_tool_bar): Don't connect expose signal to
13214 xg_tool_bar_expose_callback.
13215 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
13216
13217 2007-09-16 Andreas Schwab <schwab@suse.de>
13218
13219 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
13220 values instead of zapping them.
13221
13222 2007-09-14 Glenn Morris <rgm@gnu.org>
13223
13224 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
13225 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
13226 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
13227 scope and rename to omfib_buffer for clarity.
13228 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
13229
13230 2007-09-14 Kenichi Handa <handa@m17n.org>
13231
13232 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
13233
13234 2007-09-13 Jason Rumney <jasonr@gnu.org>
13235
13236 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
13237
13238 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
13239
13240 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
13241 (mac_term_init): Call here instead, passing rif.
13242
13243 2007-09-13 Glenn Morris <rgm@gnu.org>
13244
13245 * s/hpux.h: No longer define `static' as nothing.
13246
13247 2007-09-13 Johan Bockgård <bojohan@gnu.org>
13248
13249 * callint.c (Fcall_interactively): Remove unused var `fun'.
13250
13251 2007-09-12 Romain Francoise <romain@orebokech.com>
13252
13253 * window.c (prefer_window_split_horizontally, display_buffer):
13254 Revert 2007-09-08 change.
13255
13256 2007-09-12 Glenn Morris <rgm@gnu.org>
13257
13258 * alloca.c: Remove file.
13259 * Makefile.in (alloca): Do not undef.
13260 (allocaobj, alloca.o): Remove.
13261 (otherobj): Remove allocaobj.
13262 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
13263 * regex.c (C_ALLOCA): Remove all references and code that was only
13264 used when this was defined.
13265 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
13266 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
13267 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
13268
13269 * Makefile.in (SOURCES, unlock, relock): Delete.
13270
13271 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
13272 (menu_grab_callback): All uses changed.
13273
13274 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
13275 (x_reply_selection_request): All uses changed.
13276
13277 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
13278
13279 * lread.c (load_warn_old_style_backquotes): Change message to look
13280 better when it appears in the middle of byte-compiler messages.
13281
13282 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
13283
13284 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
13285
13286 * xterm.c (x_create_terminal): Add comment.
13287
13288 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
13289
13290 2007-09-10 Richard Stallman <rms@gnu.org>
13291
13292 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
13293
13294 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
13295
13296 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
13297 (DEFUN): Document `intspec', use it instead of `prompt'.
13298
13299 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
13300
13301 * data.c (Finteractive_form): If the interactive specification starts
13302 with a `(', use it as a Lisp form.
13303
13304 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
13305 name and file modes.
13306
13307 * callint.c (Fcall_interactively): Comment fixes.
13308
13309 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
13310
13311 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
13312 and compiled functions.
13313
13314 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
13315
13316 * window.c (prefer_window_split_horizontally): New variable.
13317 (display_buffer): Consider splitting window horizontally depending
13318 on prefer_window_split_horizontally.
13319
13320 2007-09-08 Eli Zaretskii <eliz@gnu.org>
13321
13322 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
13323
13324 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
13325
13326 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
13327
13328 * frame.c (x_set_frame_parameters): Check number is positive before
13329 using XFASTINT.
13330
13331 * window.c (freeze_window_start): Don't presume selected_window holds
13332 a window object.
13333 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
13334
13335 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
13336
13337 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
13338
13339 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
13340
13341 * window.c (Vsplit_window_preferred_function): New var.
13342 (Fdisplay_buffer): Use it.
13343 (syms_of_window): Export, and initialize it.
13344
13345 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
13346
13347 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
13348
13349 2007-09-06 Glenn Morris <rgm@gnu.org>
13350
13351 * gtkutil.c (menu_grab_callback) <cnt>:
13352 * xselect.c (x_reply_selection_request) <cnt>: Move static
13353 variable to file scope.
13354
13355 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
13356
13357 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
13358 consistent values of selected_frame and selected_window.
13359
13360 2007-09-04 Jason Rumney <jasonr@gnu.org>
13361
13362 * w32console.c (initialize_w32_display): Zero unused hooks.
13363
13364 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
13365
13366 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
13367 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
13368
13369 2007-09-04 Jason Rumney <jasonr@gnu.org>
13370
13371 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
13372 in w32console.c. Set up input. Remove XXX comments that have been
13373 confirmed as correct.
13374
13375 * s/ms-w32.h (MULTI_KBOARD): Define.
13376
13377 * w32console.c (one_and_only_w32cons): Remove.
13378 (initialize_w32_display): Take terminal argument.
13379
13380 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
13381 initialize_w32_display.
13382 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
13383
13384 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
13385
13386 * keyboard.c (discard_mouse_events): Discard it.
13387 (make_lispy_event): Translate it to a lisp event.
13388 (lispy_wheel_names): Add wheel-left and right events.
13389 (syms_of_keyboard): Enlarge wheel_syms.
13390
13391 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
13392 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
13393
13394 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
13395
13396 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
13397 from WM_MOUSEHWHEEL.
13398 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
13399
13400 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
13401 terminal.
13402
13403 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
13404 keyboard for the terminal.
13405
13406 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
13407
13408 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
13409 (Vresume_tty_hook): Rename from Vresume_tty_functions.
13410 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
13411 and resume-tty-function to resume-tty-hook.
13412 (Fsuspend_tty, Fresume_tty): Use new names.
13413
13414 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
13415
13416 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
13417 if it starts with "n:".
13418
13419 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
13420
13421 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
13422
13423 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
13424
13425 * frame.h:
13426 * frame.c (Qterm_environment_variable): Remove.
13427 (syms_of_frame): Don't init and staticpro it.
13428
13429 * callproc.c (getenv_internal): Remove special case for $TERM.
13430
13431 * callproc.c (Vinitial_environment): New variable.
13432 (set_initial_environment): Initialize it.
13433 (syms_of_callproc): Declare it.
13434 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
13435 TERM under which a process runs is never related to the TERM in which
13436 Emacs is running.
13437
13438 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
13439
13440 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
13441 * s/darwin.h: ... do it here.
13442
13443 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
13444
13445 * lisp.h (set_initial_environment): Rename from set_global_environment.
13446
13447 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
13448 removed by mistake on the multi-tty branch.
13449
13450 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
13451 (Fmodify_frame_parameters): Return a value.
13452
13453 * image.c (png_load): Comment-out var only used in commented-out code.
13454
13455 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
13456 before passing it to mark_object.
13457
13458 * xfaces.c (internal_resolve_face_name): Return a value.
13459 (internal_resolve_face_name, resolve_face_name_error): Comment out.
13460
13461 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
13462 (x_icon): Comment-out var only used in commented-out code.
13463
13464 2007-08-29 Romain Francoise <romain@orebokech.com>
13465
13466 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
13467 QUIT hasn't been provided.
13468
13469 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
13470
13471 * callproc.c (child_setup, getenv_internal): Use the
13472 display-environment-variable and term-environment-variable frame params.
13473 (set_initial_environment): Initialise Vprocess_environment.
13474
13475 * config.in: Disable multi-keyboard support on a mac.
13476
13477 * frame.c (Qterm_environment_variable)
13478 (Qdisplay_environment_variable): New variables.
13479 (syms_of_frame): Intern and staticpro them.
13480 (Fmake_terminal_frame): Disable output method test.
13481
13482 * frame.h: Declare them here.
13483
13484 * macfns.c (x_set_mouse_color): Get rif from the frame.
13485 (x_set_tool_bar_lines): Don't use updating_frame.
13486 (mac_window): Add 2 new parameters for consistency with other systems.
13487 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
13488 frame parameters following what is done in X11 and w32. Don't use
13489 FRAME_MAC_DISPLAY_INFO.
13490 (Fx_open_connection, start_hourglass): Remove window-system check.
13491 (x_create_tip_frame): Get the keyboard from the terminal.
13492
13493 * macmenu.c: Reorder includes.
13494 (Fx_popup_menu): Use terminal specific mouse_position_hook.
13495
13496 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
13497 terminal parameter.
13498 (x_clear_frame): Add a frame parameter.
13499 (note_mouse_movement): Get rif from the frame.
13500 (mac_term_init): Initialize the terminal.
13501 (mac_initialize): Make static and move terminal initialization ...
13502 (mac_create_terminal): ... to this new function.
13503
13504 * macterm.h (struct mac_display_info): Add terminal.
13505 (mac_initialize): Delete declaration.
13506
13507 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
13508
13509 * sysdep.c: Comment out text after #endif.
13510
13511 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
13512 is defined. Better initialize ttys in windows. Use terminal
13513 specific mouse_position_hook.
13514
13515 * termhooks.h (union display_info): Add mac_display_info.
13516
13517 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
13518 Set the default minibuffer frame, window_system and the rest of the
13519 frame parameters following what is done in X11.
13520
13521 * w32term.c (w32_initialize): Make static.
13522
13523 * xselect.c (x_handle_selection_clear): Only access
13524 terminal->kboard when MULTI_KBOARD is defined.
13525
13526 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
13527 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
13528
13529 2007-08-29 Jason Rumney <jasonr@gnu.org>
13530
13531 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
13532 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
13533
13534 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
13535 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
13536
13537 * keyboard.c (restore_kboard_configuration): Only define when
13538 MULTI_KBOARD defined.
13539
13540 * makefile.w32-in: Update dependancies from Makefile.in.
13541 (OBJ1): Add terminal.$(O)
13542
13543 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
13544 Don't define function body.
13545 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
13546
13547 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
13548
13549 * w32.c (request_sigio, unrequest_sigio): Remove.
13550
13551 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
13552 (w32con_clear_frame, w32con_clear_end_of_line)
13553 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
13554 (w32con_delete_glyphs, w32con_set_terminal_window)
13555 (scroll_line, w32_sys_ring_bell): Add frame arg.
13556 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
13557 Add terminal arg.
13558 (PICK_FRAME): Remove.
13559 (w32con_write_glyphs): Use frame specific terminal coding.
13560 (one_and_only_w32cons): New global variable.
13561 (initialize_w32_display): Use it for storing hooks.
13562 (create_w32cons_output): New function.
13563
13564 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
13565 arg a frame.
13566
13567 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
13568 Set window_system.
13569 (x_set_tool_bar_lines): Don't use updating_frame.
13570 (Fx_create_frame): Set terminal and ref count.
13571 (Fx_open_connection): Remove window-system check.
13572
13573 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
13574
13575 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
13576 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
13577 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
13578 Add frame arg.
13579 (x_delete_terminal, w32_create_terminal): New functions.
13580 (w32_term_init): Create a terminal.
13581 (w32_initialize): Move terminal specific initialization to
13582 w32_create_terminal.
13583
13584 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
13585 (w32_clear_rect, w32_clear_area): Use background from frame.
13586 (w32_display_info): Add terminal.
13587 (w32_sys_ring_bell, x_delete_display): Declare here.
13588
13589 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
13590
13591 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
13592
13593 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
13594
13595 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
13596 Fix get_named_tty calls for the controlling tty.
13597
13598 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
13599
13600 * term.c (dissociate_if_controlling_tty)[USG]: Fix parse error.
13601
13602 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
13603
13604 * term.c (tty_insert_glyphs): Add missing first parameter.
13605
13606 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
13607
13608 * buffer.c (Fbuffer_list, Fbury_buffer):
13609 Take frame->buried_buffer_list into account.
13610
13611 * cm.c (current_tty): New variable, for cmputc().
13612 (cmputc): Use it.
13613 (cmcheckmagic): Add tty parameter, look up terminal streams there.
13614 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
13615 (cmgoto): Add tty parameter. Pass it on to calccost().
13616 Use emacs_tputs() instead of tputs().
13617
13618 * cm.h (emacs_tputs): New macro to set current_tty, and then call
13619 tputs().
13620 (current_tty): New variable, for cmputc().
13621 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
13622
13623 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
13624 (internal_condition_case, internal_condition_case_1)
13625 (internal_condition_case_2): Don't abort when x_catching_errors.
13626
13627 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
13628 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
13629 prevent crashes caused by bogus longjmps in read_char.
13630
13631 * keymap.h (Fset_keymap_parent): Add EXFUN.
13632
13633 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
13634 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
13635 Remove redundant definition.
13636
13637 * macfns.c (x_set_mouse_color, x_make_gc):
13638 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
13639
13640 * w32term.c (x_free_frame_resources):
13641 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
13642 (w32_initialize): Use the accessor macros for terminal characteristics.
13643
13644 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
13645 Use the accessor macros for terminal characteristics.
13646 * msdos.c (internal_terminal_init): Use the accessor macros for
13647 terminal characteristics.
13648 (ScreenVisualBell, internal_terminal_init):
13649 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
13650
13651 * termopts.h (no_redraw_on_reenter): Declare.
13652
13653 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
13654 (mark_terminals, mark_ttys): Declare.
13655 (Fgarbage_collect): Call them.
13656 (mark_object): Mark buried_buffer_list.
13657
13658 * prefix-args.c: Include stdlib.h for exit.
13659
13660 * syssignal.h: Add comment.
13661
13662 * indent.c: Include stdio.h.
13663
13664 * window.h (Vinitial_window_system): Declare.
13665 (Vwindow_system): Delete declaration.
13666
13667 * fontset.c (Finternal_char_font): Use FRAME_RIF.
13668
13669 * image.c (lookup_image): Don't initialize `c' until the xasserts
13670 have been run.
13671
13672 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
13673 FRAME_FOREGROUND_PIXEL.
13674
13675 * print.c (print_preprocess): Don't lose print_depth levels while
13676 iterating.
13677
13678 * widget.c (update_from_various_frame_slots):
13679 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
13680
13681 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
13682 frames.
13683 (window_internal_height): Remove bogus make_number call.
13684 (init_window_once): Call make_terminal_frame with two zero parameters.
13685
13686 * fileio.c (Fread_file_name): Update comment.
13687
13688 * callint.c (Fcall_interactively):
13689 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
13690 Make sure it is correctly unwound.
13691
13692 * xsmfns.c (x_session_close): New function.
13693
13694 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
13695 Delete declarations.
13696
13697 * xterm.h: Remove declaration for x_fully_uncatch_errors.
13698 (x_output): Remove background_pixel and foreground_pixel fields.
13699 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
13700 (x_delete_device, x_session_close): Declare.
13701
13702 * lread.c: Include setjmp.h. Update declaration of `read_char'.
13703 (read_filtered_event): Call `read_char' with a local
13704 `wrong_kboard_jmpbuf'.
13705
13706 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
13707 Don't call single_kboard_state. Use FRAME_RIF.
13708
13709 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
13710 systems.
13711
13712 * lisp.h (set_process_environment): Rename to `set_global_environment'.
13713 (Fframe_with_environment, Fset_input_meta_mode)
13714 (Fset_quit_char): EXFUN.
13715 (x_create_device, tty_output, terminal, tty_display_info): Declare.
13716 (init_sys_modes, reset_sys_modes): Update prototypes.
13717 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
13718
13719 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
13720 Vlocal_key_translation_map, and Vkeyboard_translate_table.
13721 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
13722 Delete declarations.
13723 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
13724 (temporarily_switch_to_single_kboard, tty_read_avail_input):
13725 New declarations.
13726
13727 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
13728 already does that during init_display(). Call syms_of_keymap
13729 before syms_of_keyboard. Call `syms_of_terminal'.
13730 Call set_initial_environment, not set_process_environment.
13731 (shut_down_emacs): Call reset_all_sys_modes() instead of
13732 reset_sys_modes().
13733
13734 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
13735 (internal_resolve_face_name, resolve_face_name_error): New functions.
13736 (resolve_face_name): Protect against loops and errors thrown by Fget.
13737 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
13738 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
13739
13740 * scroll.c: Replace CURTTY() with local variables throughout the
13741 file (where applicable).
13742 (calculate_scrolling, calculate_direct_scrolling)
13743 (scrolling_1, scroll_cost): Use the accessor macros for terminal
13744 characteristics.
13745
13746 * keymap.c (Vfunction_key_map): Remove.
13747 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
13748 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
13749 (Vkey_translation_map): Remove.
13750 (syms_of_keymap): Remove DEFVAR for key-translation-map.
13751 (Fdescribe_buffer_bindings)
13752 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
13753 Update for terminal-local key-translation-map.
13754
13755 * Makefile.in (callproc.o): Update dependencies.
13756 (lisp, shortlisp): Add termdev.elc.
13757 (obj): Add terminal.o.
13758 (terminal.o): Add dependencies.
13759 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
13760 (data.o, fns.o): Add termhooks.h dependency.
13761 (SOME_MACHINE_LISP): Add dnd.elc.
13762 (minibuf.o): Fix typo.
13763 Update dependencies.
13764
13765 * data.c (do_symval_forwarding, store_symval_forwarding)
13766 (find_symbol_value): Use the selected frame's keyboard, not
13767 current_kboard.
13768
13769 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
13770 Vwindow_system.
13771
13772 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
13773 Fmenu_bar_open.
13774 (syms_of_xmenu): Update defsubr.
13775 (mouse_position_for_popup, Fx_popup_menu)
13776 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
13777 (set_frame_menubar, free_frame_menubar)
13778 (create_and_show_popup_menu, xmenu_show, )
13779 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
13780 an X frame.
13781
13782 * xselect.c (x_own_selection): Abort if not an X frame.
13783 (some_frame_on_display): Check if it is an X frame.
13784 (x_handle_selection_clear): Deal with MULTI_KBOARD.
13785
13786 * coding.c: Include frame.h and termhooks.h.
13787 (terminal_coding, keyboard_coding): Delete.
13788 (Fset_terminal_coding_system_internal)
13789 (Fset_keyboard_coding_system_internal)
13790 (Fkeyboard_coding_system)
13791 (Fterminal_coding_system): Add a terminal parameter.
13792 Get terminal_coding from the terminal.
13793 (init_coding_once): Don't call setup_coding_system here.
13794
13795 * dispextern.h (set_scroll_region, turn_off_insert)
13796 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
13797 (tty_clear_end_of_line, tty_setup_colors)
13798 (delete_tty, updating_frame)
13799 (produce_special_glyphs, produce_glyphs, write_glyphs)
13800 (insert_glyphs): Remove.
13801 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
13802 (tty_turn_off_highlight, get_tty_size): Add declaration.
13803 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
13804
13805 * frame.h (enum output_method): Add output_initial.
13806 (struct x_output): Delete.
13807 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
13808 Access foreground_pixel and background_pixel directly from the frame.
13809 (tty_display): Delete.
13810 (struct frame): Add buried_buffer_list, foreground_pixel,
13811 background_pixel and terminal. Delete kboard.
13812 (union output_data): Add tty.
13813 (FRAME_KBOARD): Get the kboard from the terminal.
13814 (FRAME_INITIAL_P): New macro.
13815 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
13816 (Qterm_environment_variable, Qdisplay_environment_variable)
13817 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
13818 New declarations.
13819
13820 * termchar.h (tty_output, tty_display_info): New structures.
13821 (tty_list): Declare.
13822 (FRAME_TTY, CURTTY): New macros.
13823 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
13824 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
13825 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
13826 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
13827
13828 * callproc.c: Include frame.h and termhooks.h, for terminal
13829 parameters.
13830 (add_env): New function.
13831 (child_setup): Use it.
13832 (child_setup, getenv_internal): Handle the new Vprocess_environment.
13833 (getenv_internal): Fix get_terminal_param call.
13834 (Fgetenv_internal, egetenv): Update doc.
13835 (syms_of_callproc): Initialize Vprocess_environment to nil.
13836 Register and initialize them. Remove obsolete defvars. Update doc
13837 strings.
13838 (child_setup): Handle Vlocal_environment_variables.
13839 (getenv_internal): Add terminal parameter.
13840 Handle Vlocal_environment_variables.
13841 (Fgetenv_internal): Add terminal parameter.
13842 (child_setup, getenv_internal, Fgetenv_internal): Store the local
13843 environment in a frame (not terminal) parameter. Update doc strings.
13844 (set_initial_environment): Rename from set_global_environment.
13845 Store Emacs environment in initial frame parameter.
13846
13847 * xdisp.c (redisplay_internal): Update references to
13848 `previous_terminal_frame'.
13849 (display_mode_line, Fformat_mode_line): Replace calls to
13850 `push_frame_kboard' with `push_kboard'.
13851 (get_glyph_string_clip_rects): Add extra parentheses and
13852 braces to prevent compiler warnings.
13853 (calc_pixel_width_or_height): Add xassert to check that the
13854 frame is alive. Don't call `lookup_image' on a termcap frame.
13855 (message2_nolog, message3_nolog, redisplay_internal)
13856 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
13857 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
13858 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
13859 (Fx_display_pixel_width, Fx_display_pixel_height)
13860 (Fx_display_planes, Fx_display_color_cells)
13861 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
13862 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
13863 (Fx_display_backing_store, Fx_display_visual_class)
13864 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
13865 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
13866
13867 * xfns.c (x_set_foreground_color x_set_background_color)
13868 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
13869 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
13870 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
13871 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
13872 terminal that is being deleted.
13873 (Fx_create_frame): Use `store_frame_param' to set `window-system'
13874 frame parameter, and make sure it overrides any user-supplied setting.
13875 (Fx_close_connection, Fx_synchronize): Unify argument names with
13876 the rest of the DEFUNs.
13877
13878 * dispnew.c (Fsend_string_to_terminal): Update call to
13879 `get_tty_terminal'.
13880 (Fredraw_frame, Fsend_string_to_terminal)
13881 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
13882 FRAME_TERMCAP_P and FRAME_TTY.
13883 (window_change_signal): Don't believe width/height values that are
13884 impossibly small.
13885 (Vinitial_window_system): Rename from Vwindow_system.
13886 (termscript, Wcm, rif): Delete.
13887
13888 * termhooks.h (struct terminal): New struct containing the
13889 previously global text display hooks and new members NAME,
13890 DELETED and PARAM_ALIST.
13891 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
13892 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
13893 (FRAME_RIF): New macros.
13894 (get_terminal_param, get_device): New declarations.
13895 (termscript): Delete declaration.
13896
13897 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
13898 (XTflash, x_free_frame_resources, x_scroll_bar_create)
13899 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
13900 FRAME_FOREGROUND_PIXEL.
13901 (x_fully_uncatch_errors): Disable definition.
13902 (x_scroll_bar_expose): Fix reference to foreground pixel.
13903 (XTread_socket): Disable loop on all X displays.
13904 (x_delete_terminal): Don't set terminal->deleted and let
13905 delete_terminal delete the frames on the terminal.
13906 (x_delete_display): Doc update to reflect changes in
13907 delete_terminal.
13908 (x_display_info) <terminal>: Move member earlier in the struct.
13909 (deleting_tty): Remove old variable.
13910 (Fsuspend_tty): Call clear_tty_hooks.
13911 (Fresume_tty, init_tty): Call set_tty_hooks.
13912 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
13913 errors on X frames.
13914 (x_catch_errors_unwind): Abort if x_error_message is NULL.
13915 (handle_one_xevent): Initialize `f' to NULL.
13916 (x_delete_terminal, x_create_terminal): New functions.
13917 (XTset_terminal_modes, XTreset_terminal_modes)
13918 (XTread_socket, x_connection_closed, x_term_init)
13919 (x_term_init, x_delete_display): Add terminal parameter.
13920 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
13921 X connections.
13922
13923 * frame.c: Include termchar.h.
13924 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
13925 (Qwindow_system, Qenvironment, Qterm_environment_variable)
13926 (Qdisplay_environment_variable): New vars.
13927 (Fframep): Deal with output_initial.
13928 (Fframe-live-p): Doc fix.
13929 (Fwindow-system): New function.
13930 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
13931 (make_terminal_frame): Don't create frames on a terminal that is
13932 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
13933 (store_frame_param): Check for found_for_frame before calling XFRAME.
13934 (Fmake_terminal_frame): Handle NULL tty names correctly.
13935 (syms_of_frame): Enhance doc string of `default-frame-alist'.
13936 (Fdelete_frame): Remove unused variable `count'. Don't allow other
13937 frames to refer to a deleted frame in their 'environment parameter.
13938 (Fframe_with_environment): New function.
13939 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
13940 (get_future_frame_param): New function.
13941 (Fmake_terminal_frame): Use it.
13942 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
13943
13944 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
13945 * sysdep.c (reset_sys_modes): Update for renames.
13946
13947 * keyboard.c (tty_read_avail_input): New function.
13948 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
13949 (syms_of_keyboard): Defsubr them.
13950 (Fset_input_meta_mode, Fset_quit_char): New functions.
13951 (Fset_input_mode): Split to above functions.
13952 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
13953 parameter. Use it in call to `read_char'.
13954 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
13955 Set wrong_kboard_jmpbuf correctly in recursive calls.
13956 Use current_kboard to access Vkeyboard_translate_table.
13957 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
13958 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
13959 Update longjmp invocations. Remember the original current_kboard,
13960 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
13961 changes it. Comment out unnecessary calls to
13962 `record_single_kboard_state' and `any_kboard_state'.
13963 Update recursive calls.
13964 (wrong_kboard_jmpbuf): Remove global variable.
13965 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
13966 Handle deleted interrupted_kboards correctly; that is a legal
13967 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
13968 and read_char calls. Abort if interrupted_kboard died in read_char.
13969 (any_kboard_state, single_kboard_state)
13970 (push_frame_kboard): Remove function.
13971 (pop_kboard): Switch out of single_kboard mode if the kboard has
13972 been deleted. Remove unused variable. Help debugging by not
13973 changing current_kboard unnecessarily. Set current_kboard to the
13974 kboard of the selected frame when the stored kboard object has
13975 been deleted before pop_kboard.
13976 (temporarily_switch_to_single_kboard): Change first parameter to a
13977 frame pointer. Throw an error when caller wants to change kboards
13978 while in single_kboard mode. Don't push_kboard if we weren't in
13979 single kboard state. Don't pop_kboard if we popped into any
13980 kboard state.
13981 (restore_kboard_configuration): Abort if pop_kboard changed the
13982 kboard in single_kboard mode. Call pop_kboard only after setting
13983 up single_kboard mode.
13984 (Frecursive_edit): Switch to single_kboard mode only in nested
13985 command loops.
13986 (cmd_error, command_loop, command_loop_1, timer_check):
13987 Comment out unnecessary call to `any_kboard_state' and
13988 `record_single_kboard_state'.
13989 (delete_kboard): Exit single_kboard mode if we have just deleted
13990 that kboard. Use FRAME_KBOARD.
13991 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
13992 `fatal_error_signal'.
13993 (record_single_kboard_state): Don't push_kboard if we weren't in
13994 single kboard state. Don't pop_kboard if we popped into any
13995 kboard state.
13996 (push_frame_kboard): Rename to push_kboard.
13997 (kbd_buffer_get_event): Use FRAME_TERMINAL.
13998 (read_avail_input): Read input from all terminals.
13999 (mark_kboards): Also mark Vkeyboard_translate_table.
14000 (kbd_buffer_store_event_hold): Simplify condition.
14001 (read_key_sequence): Reinitialize fkey and keytran at each replay.
14002 (Vkeyboard_translate_table): Move to struct kboard.
14003 (init_kboard): Initialize Vkeyboard_translate_table.
14004 (syms_of_keyboard): Use DEFVAR_KBOARD to define
14005 Vkeyboard_translate_table. Update doc strings. Update docs of
14006 local-function-key-map and function-key-map.
14007
14008 * terminal.c: New file.
14009
14010 * term.c: Include errno.h.
14011 (Vring_bell_function, device_list, initial_device)
14012 (next_device_id, ring_bell, update_begin, update_end)
14013 (set_terminal_window, cursor_to, raw_cursor_to)
14014 (clear_to_end, clear_frame, clear_end_of_line)
14015 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
14016 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
14017 (syms_of_term): Move their initialization to terminal.c.
14018 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
14019 (Ftty_display_color_cells)
14020 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
14021 (clear_tty_hooks, set_tty_hooks)
14022 (init_tty, maybe_fatal): New functions.
14023 (Ftty_type): Return nil if terminal is not on a tty instead of
14024 throwing an error. Doc update.
14025 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
14026 Doc update. Initialize new subrs and variables.
14027 (delete_tty): Use terminal->deleted.
14028 (tty_set_terminal_modes): Rename from set_terminal_modes.
14029 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
14030 (set_scroll_region): Rename to `tty_set_scroll_region'.
14031 (turn_on_insert): Rename to `tty_turn_on_insert'.
14032 (turn_off_insert): Rename to `tty_turn_off_insert'.
14033 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
14034 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
14035 (toggle_highligh): Rename to `tty_toggle_highlight'.
14036 (background_highlight): Rename to `tty_background_highlight'.
14037 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
14038 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
14039 (tty_set_scroll_region, tty_background_highlight)
14040 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
14041 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
14042 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
14043 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
14044 Add static modifier.
14045 (tty_reset_terminal_modes, tty_set_terminal_window)
14046 (tty_set_scroll_region, tty_background_highlight)
14047 (tty_highlight_if_desired, tty_cursor_to)
14048 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
14049 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
14050 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
14051 renames.
14052
14053 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
14054
14055 * keyboard.c: Qrtl is new.
14056 (parse_tool_bar_item): Handle :rtl keyword.
14057 (syms_of_keyboard): Intern :rtl keyword.
14058
14059 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
14060
14061 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
14062 so no Lisp code is executed.
14063 (file_for_image, find_rtl_image): New functions.
14064 (xg_get_image_for_pixmap): Use file_for_image.
14065 (update_frame_tool_bar): If direction is RTL, use RTL image if
14066 defined. Use Gtk stock images if defined.
14067
14068 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14069
14070 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
14071 for nonexistent or zero-width glyph in composition glyph.
14072
14073 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
14074
14075 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
14076
14077 * xdisp.c (Finvisible_p): New function.
14078 (syms_of_xdisp): defsubr it.
14079
14080 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
14081
14082 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
14083 Doc fixes.
14084
14085 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14086
14087 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
14088
14089 2007-08-24 Martin Rudalics <rudalics@gmx.at>
14090
14091 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
14092 whether decoding has modified buffer contents.
14093
14094 2007-08-24 Jason Rumney <jasonr@gnu.org>
14095
14096 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
14097 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
14098 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
14099 (init_svg_functions) [HAVE_NTGUI]: New function.
14100 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
14101 (svg_load_image): Use them.
14102 (svg_load_image) [HAVE_NTGUI]: Implement background.
14103
14104 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14105
14106 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
14107 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
14108 (LIBX): Remove @RSVG_LIBS@.
14109 (LIBES): Add $(RSVG_LIBS).
14110
14111 * image.c (svg_load_image): Blend with specified background if exists.
14112 Use IMAGE_BACKGROUND. Add Mac OS Support.
14113
14114 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
14115 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
14116 Remove macros.
14117 [MAC_OSX] (socket_callback): Do nothing.
14118 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
14119 ReceiveNextEvent.
14120 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
14121 socket_callback.
14122 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
14123
14124 2007-08-22 Glenn Morris <rgm@gnu.org>
14125
14126 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
14127
14128 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
14129
14130 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
14131
14132 * image.c: Add support for SVG images. Some additional comments
14133 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
14134 (svg_image_p): New function to test for SVG image.
14135 (svg_load): New function to load SVG image.
14136 (svg_load_image): New function, helper for svg_load.
14137 (Qsvg): New Lisp_object.
14138 (svg_keyword_index): New enum.
14139 (svg_format): New static `image_keyword' struct.
14140 (svg_type): New static `image_type' struct.
14141 (librsvg/rsvg.h): Include it.
14142
14143 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
14144
14145 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
14146
14147 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
14148
14149 * lread.c (Qold_style_backquotes): New var.
14150 (syms_of_lread): Init and staticpro it.
14151 (load_warn_old_style_backquotes): New fun.
14152 (Fload): Use them to warn about old style backquotes.
14153 (end_of_file_error, Fload): Remove unused vars.
14154
14155 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
14156
14157 * lread.c (Vold_style_backquotes): New var.
14158 (syms_of_lread): Init and export it to Elisp.
14159 (read1): Set it when we find an old-style (back)quote.
14160
14161 2007-08-22 Jason Rumney <jasonr@gnu.org>
14162
14163 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
14164
14165 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
14166
14167 * puresize.h (BASE_PURESIZE): Increase to 1140000.
14168
14169 2007-08-19 Richard Stallman <rms@gnu.org>
14170
14171 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
14172
14173 2007-08-19 Andreas Schwab <schwab@suse.de>
14174
14175 * alloc.c (pure): Round PURESIZE up.
14176
14177 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
14178
14179 * xterm.c (handle_one_xevent): Remove check that mouse click is in
14180 active frame.
14181
14182 2007-08-16 Richard Stallman <rms@gnu.org>
14183
14184 * eval.c (Fcommandp): Add parens to clarify.
14185
14186 * minibuf.c (Fall_completions): Use enum for type of table.
14187
14188 * emacs.c (USAGE2): Improve text.
14189
14190 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
14191
14192 * term.c (tty_default_color_capabilities): Declare static
14193 variables in file scope, to avoid HPUX compiler problem.
14194
14195 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
14196
14197 * gtkutil.c (update_frame_tool_bar): Use -1 as index
14198 to gtk_toolbar_insert.
14199
14200 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
14201
14202 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
14203
14204 * insdel.c (reset_var_on_error): New fun.
14205 (signal_before_change, signal_after_change):
14206 Use it to reset (after|before)-change-functions to nil in case of error.
14207 Bind inhibit-modification-hooks to t.
14208 Don't bind (after|before)-change-functions to nil while they run.
14209
14210 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14211
14212 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
14213 filling pixmap with stippled background.
14214
14215 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14216
14217 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
14218 Don't use invisible frame as parent window for repositioning.
14219
14220 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
14221
14222 * print.c (new_backquote_output): Rename from old_backquote_output.
14223 (print): Inverse its logic (according to its name) so as to match the
14224 behavior of new_backquote_flag in lread.c.
14225
14226 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14227
14228 * gmalloc.c (posix_memalign): New function.
14229
14230 * macterm.c (frame_highlight, frame_unhighlight): Don't call
14231 ActivateControl/DeactivateControl here.
14232 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
14233 frame-notice-user-settings is non-nil.
14234 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
14235 for kEventParamFMFontStyle.
14236 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
14237 mac_pass_command_to_system and mac_pass_control_to_system here.
14238 (XTread_socket): Call ActivateControl/DeactivateControl here.
14239 (XTread_socket) [TARGET_API_MAC_CARBON]:
14240 Check mac_pass_command_to_system and mac_pass_control_to_system here.
14241 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
14242 for window repositioning.
14243
14244 2007-08-08 Glenn Morris <rgm@gnu.org>
14245
14246 * Replace `iff' in doc-strings and comments.
14247
14248 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
14249
14250 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
14251
14252 2007-08-07 Martin Rudalics <rudalics@gmx.at>
14253
14254 * fileio.c (Finsert_file_contents): Run format-decode and
14255 after_insert_file_functions on entire buffer when REPLACE is
14256 non-nil and inhibit modification_hooks and point_motion_hooks.
14257 For consistency, run after_insert_file_functions iff something
14258 got inserted. Move signal_after_change and update_compositions
14259 after code running after_insert_file_functions. Make sure that
14260 undo_list doesn't record intermediate steps of the decoding process.
14261
14262 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14263
14264 * emacs.c (main)
14265 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
14266 Call malloc_enable_thread on interactive startup.
14267
14268 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
14269 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
14270 [USE_PTHREAD]: Conditionalize with it.
14271 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
14272 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
14273 New functions.
14274
14275 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
14276
14277 * xdisp.c (redisplay_window): When restoring original buffer
14278 position, make sure it is still valid.
14279
14280 * image.c (png_load): Ignore png-supplied background color.
14281
14282 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14283
14284 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
14285 Use kCFAbsoluteTimeIntervalSince1970.
14286
14287 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
14288 New variable.
14289 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
14290 event loop should be quit.
14291 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
14292 Quit dialog event loop if quit_dialog_event_loop is set.
14293
14294 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
14295 (Selection): New typedef. Use instead of ScrapRef.
14296 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
14297 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
14298 (mac_clear_selection): Rename from clear_scrap.
14299 (get_flavor_type_from_symbol): New argument SEL and subsume function of
14300 scrap_has_target_type. All uses changed.
14301 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
14302 (mac_selection_has_target_p): New functions.
14303 (mac_put_selection_value): Rename from put_scrap_string.
14304 (mac_get_selection_value): Rename from get_scrap_string.
14305 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
14306 (put_scrap_private_timestamp, scrap_has_target_type)
14307 (get_scrap_private_timestamp): Remove functions.
14308 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
14309 (x_own_selection, x_get_local_selection):
14310 Use mac_valid_selection_value_p.
14311 (x_own_selection): Don't use put_scrap_private_timestamp.
14312 Record OWNERSHIP-INFO into Vselection_alist instead.
14313 (x_get_local_selection): Don't check type if request is local.
14314 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
14315 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
14316
14317 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
14318
14319 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
14320 add comment explaining why.
14321
14322 2007-08-03 Richard Stallman <rms@gnu.org>
14323
14324 * fileio.c (Fvisited_file_modtime): Use make_time.
14325
14326 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
14327
14328 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
14329 build.
14330
14331 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
14332
14333 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
14334
14335 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
14336
14337 * puresize.h (BASE_PURESIZE): Increase to 1130000.
14338
14339 2007-07-30 Richard Stallman <rms@gnu.org>
14340
14341 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
14342
14343 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
14344
14345 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
14346
14347 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
14348
14349 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
14350 remote default-directory.
14351
14352 * buffer.c (mode-line-format): Update doc string.
14353
14354 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14355
14356 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
14357 scroll bar gap.
14358 (x_scroll_bar_create): Set bar->fringe_extended_p.
14359 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
14360 on frame edge. Check fringe background extension. Don't clear
14361 extended fringe background area.
14362
14363 * w32term.h (struct scroll_bar): New member fringe_extended_p.
14364 (w32_fill_area): Enclose multiple statements with do ... while (0).
14365
14366 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
14367 Extend fringe background to scroll bar gap.
14368 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
14369 Set bar->fringe_extended_p.
14370 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
14371 Put leftmost/rightmost scroll bars on frame edge. Check fringe
14372 background extension. Don't clear extended fringe background area.
14373
14374 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
14375 New member fringe_extended_p.
14376
14377 2007-07-25 Glenn Morris <rgm@gnu.org>
14378
14379 * Relicense all FSF files to GPLv3 or later.
14380
14381 * COPYING: Switch to GPLv3.
14382
14383 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
14384
14385 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
14386
14387 * data.c (Finteractive_form): Check for the presence of an
14388 `interactive-form' symbol property more thoroughly.
14389
14390 * data.c (Finteractive_form): Use an `interactive-form' property if
14391 present, analogous to the function-documentation property.
14392
14393 2007-07-24 Jason Rumney <jasonr@gnu.org>
14394
14395 * w32fns.c (x_real_positions): Get real position from OS instead of
14396 calculating it.
14397
14398 2007-07-23 Jason Rumney <jasonr@gnu.org>
14399
14400 * filelock.c (current_lock_owner): Allow for @ sign in username.
14401
14402 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
14403
14404 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
14405 remote default-directory.
14406
14407 * buffer.c (mode-line-format): Describe above case in doc string.
14408
14409 2007-07-20 Eli Zaretskii <eliz@gnu.org>
14410
14411 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
14412 Define if not defined.
14413
14414 2007-07-18 Jason Rumney <jasonr@gnu.org>
14415
14416 * w32proc.c (w32_executable_type): Handle 64 bit executables.
14417
14418 2007-07-18 Richard Stallman <rms@gnu.org>
14419
14420 * data.c (Fsetq_default): Doc fix.
14421
14422 * eval.c (Fsetq): Doc fix.
14423
14424 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
14425
14426 * coding.c (Ffind_operation_coding_system):
14427 * eval.c (For, Fand): Doc fixes.
14428 Reported by Johan Bockgård.
14429
14430 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
14431
14432 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
14433
14434 * xterm.h: Declare x_ewmh_activate_frame.
14435
14436 * xterm.c (x_ewmh_activate_frame): New function.
14437 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
14438
14439 2007-07-17 Martin Rudalics <rudalics@gmx.at>
14440
14441 * window.c (Fdisplay_buffer): If largest or LRU window is the
14442 only window, split it even if it is not eligible for splitting.
14443 This restores the original behavior broken by the 2007-07-15
14444 change.
14445
14446 2007-07-17 Glenn Morris <rgm@gnu.org>
14447
14448 * abbrev.c (abbrev_check_chars): New function.
14449 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
14450 Call abbrev_check_chars to check abbrev characters are word
14451 constituents. Doc fix.
14452
14453 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
14454
14455 * process.c (Fstart_process, Fmake_network_process)
14456 (read_process_output): Fix up last changes.
14457
14458 2007-07-16 Eli Zaretskii <eliz@gnu.org>
14459
14460 * makefile.w32-in (clean): Don't delete *~.
14461
14462 2007-07-16 Andreas Schwab <schwab@suse.de>
14463
14464 * window.c (Fdisplay_buffer): Use NILP.
14465 (Fset_window_scroll_bars): Likewise.
14466
14467 2007-07-15 Martin Rudalics <rudalics@gmx.at>
14468
14469 * window.c (window_min_size_2): New function.
14470 (window_min_size_1, size_window, Fdisplay_buffer)
14471 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
14472 windows without mode- or header-lines when window-min-height is
14473 too small.
14474 (size_window): Reset nodelete_p after testing it, following an
14475 earlier note by Kim F. Storm.
14476 (display_buffer): Do not set split_height_threshold to twice the
14477 value of window_min_height to avoid changing the value of a
14478 customizable variable. Rather explicitly check whether the
14479 height of the window that shall be splitted is at least as large
14480 as split_height_threshold.
14481 (Fwindow_full_width_p): New defun.
14482 (syms_of_window): Defsubr it.
14483
14484 * window.h: Add EXFUN for Fwindow_full_width_p.
14485
14486 2007-07-14 Jason Rumney <jasonr@gnu.org>
14487
14488 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
14489
14490 2007-07-14 Richard Stallman <rms@gnu.org>
14491
14492 * eval.c (maybe_call_debugger): New function.
14493 (find_handler_clause): Use maybe_call_debugger.
14494 Call it when the handler says `debug'.
14495 Eliminate DEBUGGER_VALUE_PTR.
14496 (Fsignal): Eliminate debugger_value.
14497 (Qdebug): New variable.
14498 (syms_of_eval): Initialize it.
14499
14500 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
14501
14502 * eval.c (Fprogn):
14503 * keyboard.c (Ftrack_mouse):
14504 * print.c (Fwith_output_to_temp_buffer):
14505 * window.c (Fsave_window_excursion): Doc fix.
14506
14507 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
14508
14509 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
14510
14511 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
14512
14513 * process.h (struct Lisp_Process): Turn slots infd, outfd,
14514 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
14515 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
14516 read_output_delay, and read_output_skip from Lisp_Objects to ints.
14517 Remove unused encoding_carryover.
14518 * process.c: Adjust all functions accordingly.
14519
14520 2007-07-12 Richard Stallman <rms@gnu.org>
14521
14522 * term.c: Include unistd.h only if HAVE_UNISTD_H.
14523
14524 2007-07-11 Jason Rumney <jasonr@gnu.org>
14525
14526 * makefile.w32-in (LIBS): Include OLE32.
14527
14528 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
14529 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
14530
14531 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
14532
14533 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
14534 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
14535 from a Lisp_Object into a bare pointer.
14536 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
14537 Adjust the code correspondingly.
14538
14539 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
14540
14541 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
14542 (term_show_mouse_face): Remove unused var `j'.
14543 (handle_one_term_event): Remove unused vars `i' and `j'.
14544 Don't cast return value of ttyname since it's not necessary.
14545
14546 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
14547
14548 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
14549 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
14550
14551 * fns.c (map_char_table): Use an array of int for `indices' rather than
14552 an array of Lisp_Objects (which are only ever integers anyway).
14553 (Fmap_char_table): Update caller.
14554 * lisp.h: Update prototype.
14555 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
14556 * fontset.c (Ffontset_info):
14557 * casetab.c (set_case_table): Update callers.
14558
14559 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
14560
14561 * keymap.c (struct accessible_keymaps_data)
14562 (struct where_is_internal_data): New structures.
14563 (accessible_keymaps_1, where_is_internal_1): Use them to change
14564 interface to adhere to the one used by map_keymap.
14565 (Faccessible_keymaps, where_is_internal): Use map_keymap.
14566 (accessible_keymaps_char_table, where_is_internal_2): Remove.
14567
14568 * keymap.h (map_keymap_function_t): More informative prototype.
14569
14570 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
14571
14572 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
14573 (looking_at_1): Don't change search_regs and last_thing_searched
14574 if `inhibit-changing-match-data' is non-nil.
14575 (string_match_1, search_buffer, set_search_regs): Likewise.
14576 (syms_of_search): Add Lisp level definition for
14577 `inhibit-changing-match-data' and set it to nil.
14578 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
14579 start and end of the match, instead of using values in search_regs.
14580
14581 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
14582
14583 * minibuf.c (Fcompleting_read): New value `confirm-only'
14584 for `require-match'.
14585
14586 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
14587
14588 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
14589 part of the 2007-06-27 change to syms_of_fileio.
14590
14591 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14592
14593 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
14594 Check WINDOWP before using XWINDOW. Consolidate return statements.
14595
14596 2007-06-27 Richard Stallman <rms@gnu.org>
14597
14598 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
14599
14600 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
14601
14602 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
14603
14604 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14605
14606 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
14607 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
14608 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
14609 (_free_internal, memalign): Use them.
14610 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
14611 Initialize to PTHREAD_MUTEX_INITIALIZER.
14612 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
14613 (morecore_nolock): Rename from morecore. All uses changed.
14614 Use only nolock versions of internal allocation functions.
14615 (_malloc_internal_nolock, _realloc_internal_nolock)
14616 (_free_internal_nolock): New functions created from
14617 _malloc_internal, _realloc_internal, and _free_internal.
14618 (_malloc_internal, _realloc_internal, _free_internal): Use them.
14619 Copy hook value to automatic variable before its use.
14620 (memalign): Copy hook value to automatic variable before its use.
14621
14622 2007-06-26 Kenichi Handa <handa@m17n.org>
14623
14624 * coding.c (Ffind_operation_coding_system): Docstring improved.
14625 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
14626
14627 2007-06-25 David Kastrup <dak@gnu.org>
14628
14629 * keymap.c (Fcurrent_active_maps): Add `position' argument.
14630 (Fwhere_is_internal): Adjust call to `current-active-maps' to
14631 cater for additional parameter.
14632
14633 * keymap.h: Adjust number of parameters to `current-active-maps'.
14634
14635 * doc.c (Fsubstitute_command_keys): Adjust call of
14636 `current-active-maps'.
14637
14638 2007-06-25 David Kastrup <dak@gnu.org>
14639
14640 * callint.c (Fcall_interactively): Make the parsing of interactive
14641 specs somewhat more readable.
14642
14643 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14644
14645 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
14646 to scroll bar gap also when bitmap fills fringe. Draw only foreground
14647 if extended background has already been filled.
14648
14649 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14650
14651 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
14652 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
14653
14654 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
14655 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
14656 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
14657 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
14658 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
14659 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
14660 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
14661 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
14662 Run timers during dialog popup.
14663 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
14664
14665 2007-06-21 Jason Rumney <jasonr@gnu.org>
14666
14667 * image.c (convert_mono_to_color_image): Swap fore and background.
14668
14669 2007-06-20 Jason Rumney <jasonr@gnu.org>
14670
14671 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
14672 (w32_free_bdf_font): Unmap memory not handle.
14673
14674 2007-06-20 Sam Steingold <sds@gnu.org>
14675
14676 * gmalloc.c (__morecore): Fix the declaration to comply with the
14677 definition.
14678
14679 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
14680
14681 * w32term.c (w32_delete_display): Remove leftover declaration.
14682 (w32_define_cursor, w32_initialize): Make static.
14683
14684 * w32.c (_wsa_errlist): Fix typo in error message.
14685 (init_environment): Ignore any environment variable from the
14686 registry having a null value.
14687
14688 2007-06-20 Glenn Morris <rgm@gnu.org>
14689
14690 * Makefile.in (LIBGIF): Default to -lgif.
14691
14692 2007-06-17 Jason Rumney <jasonr@gnu.org>
14693
14694 * w32menu.c (add_menu_item): Don't use multibyte string functions on
14695 unicode strings.
14696
14697 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
14698
14699 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
14700 Fix typo in docstring.
14701
14702 2007-06-16 Eli Zaretskii <eliz@gnu.org>
14703
14704 * w32menu.c (add_menu_item): Escape `&' characters in menu items
14705 and their keybindings.
14706
14707 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
14708
14709 * composite.c (update_compositions): Fix last fix.
14710
14711 2007-06-14 Jason Rumney <jasonr@gnu.org>
14712
14713 * w32.c (get_process_times_fn): New function pointer.
14714 (globals_of_w32): Intialize it if present in kernel32.dll.
14715 (w32_get_internal_run_time): New function.
14716
14717 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
14718
14719 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
14720
14721 * composite.c (update_compositions): Check the validness of
14722 compositions.
14723
14724 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14725
14726 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
14727 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
14728
14729 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
14730 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
14731
14732 * macgui.h (USE_MAC_TOOLBAR): New define.
14733
14734 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
14735 Return immediately unless popup is activated.
14736
14737 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
14738 background to scroll bar gap.
14739 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
14740 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
14741 scroll bars on frame edge. Check fringe background extension.
14742 Don't clear extended fringe background area.
14743 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
14744 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
14745 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
14746 [USE_MAC_TOOLBAR]: New macros.
14747 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
14748 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
14749 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
14750 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
14751 [USE_MAC_TOOLBAR]: New functions.
14752 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
14753 manually if previous repositioning has failed.
14754 (mac_handle_keyboard_event): Use precomputed event kind.
14755 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
14756 as tool bar item click. Handle mouse movement over tool bar items.
14757
14758 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
14759 toolbar_win_gravity.
14760 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
14761 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
14762 Add externs.
14763
14764 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
14765 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
14766
14767 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
14768
14769 * image.c (search_image_cache): Remove unused variable.
14770
14771 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
14772
14773 * xfns.c, xmenu.c: Link to xaw3d if available.
14774
14775 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14776
14777 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
14778 frame_foreground and frame_background.
14779
14780 * image.c (lookup_image): Save frame foreground and background colors.
14781 (search_image_cache): Check if saved and current frame colors match.
14782
14783 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
14784
14785 * regex.c (regex_compile): Remove the `regnum' counter.
14786 Use bufp->re_nsub instead. Add support for \(?N:RE\).
14787
14788 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
14789
14790 * term.c: Include intervals.h to declare Fget_text_property.
14791
14792 2007-06-10 Jason Rumney <jasonr@gnu.org>
14793
14794 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
14795
14796 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
14797
14798 * callint.c (Fcall_interactively):
14799 * editfns.c (Fdelete_and_extract_region):
14800 * fileio.c (Fread_file_name):
14801 * fns.c (Fmapconcat):
14802 * keyboard.c (cmd_error_internal):
14803 * keymap.c (Fkey_description):
14804 * lread.c (openp):
14805 * minibuf.c (read_minibuf):
14806 * search.c (wordify):
14807 * sunfns.c (sel_read):
14808 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
14809 * xfns.c (x_default_scroll_bar_color_parameter):
14810 * xmenu.c (menu_help_callback):
14811 * xselect.c (Fx_get_atom_name):
14812 * xterm.c (x_term_init): Use empty_unibyte_string.
14813
14814 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
14815
14816 * alloc.c (init_strings): Initialize canonical empty strings.
14817 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
14818 canonical empty string when the requested size is 0.
14819
14820 * emacs.c (empty_unibyte_string): Rename from empty_string.
14821 (empty_multibyte_string): New canonical empty string.
14822 (syms_of_emacs): Don't initialize empty_string.
14823
14824 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
14825 string, if appropriate.
14826 (empty_unibyte_string, empty_multibyte_string): New externs.
14827 (empty_string): Remove extern.
14828
14829 * lread.c (syms_of_lread): Use empty_unibyte_string.
14830
14831 2007-06-07 Jason Rumney <jasonr@gnu.org>
14832
14833 * s/ms-w32.h: Don't define HAVE_TZNAME.
14834
14835 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
14836
14837 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14838
14839 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
14840
14841 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
14842 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
14843
14844 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
14845 Don't call next handler.
14846 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
14847 Remove argument. Install handler to application.
14848 (set_frame_menubar): Don't change deep_p.
14849 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
14850 FRAME_OUTER_TO_INNER_DIFF_Y.
14851 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
14852 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
14853 [HAVE_DIALOGS]: New macros.
14854 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
14855 Use them.
14856 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
14857
14858 * macselect.c [MAC_OSX] (install_service_handler): Rename from
14859 init_service_handler. All callers changed. Return OSStatus value.
14860
14861 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
14862 All callers changed so as not to call SetPortWindowPort.
14863 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
14864 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
14865 mac_draw_string_common.
14866 (mac_draw_image_string_qd): Likewise.
14867 (mac_draw_string_common): Use them. Add INLINE.
14868 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
14869 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
14870 GetGlobalMouse.
14871 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
14872 and FRAME_OUTER_TO_INNER_DIFF_Y.
14873 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
14874 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
14875 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
14876 repositioning window to mac_handle_window_event.
14877 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
14878 saving window location to mac_handle_window_event
14879 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
14880 (install_menu_target_item_handler): Remove argument in extern.
14881 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
14882 Also accept command events.
14883 (do_keystroke): New function created from XTread_socket.
14884 (init_command_handler): Remove functions.
14885 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
14886 and save window location by kEventWindowShowing and kEventWindowHiding
14887 handlers here. Don't call next handler for window state change and
14888 focus events.
14889 (mac_handle_application_event, mac_handle_keyboard_event)
14890 [TARGET_API_MAC_CARBON]: New functions.
14891 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
14892 kEventWindowShowing and kEventWindowHiding events. Move installation
14893 of mouse, font, text input and menu target item handlers to
14894 install_application_handler.
14895 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
14896 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
14897 New function.
14898 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
14899 Register it.
14900 (XTread_socket) [TARGET_API_MAC_CARBON]:
14901 Consolidate SendEventToEventTarget calls.
14902 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
14903 Move application activation handler to mac_handle_application_event.
14904 Move keyboard handler to mac_handle_keyboard_event.
14905 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
14906 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
14907 init_command_handler. Call install_application_handler.
14908
14909 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
14910 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
14911
14912 2007-06-07 Glenn Morris <rgm@gnu.org>
14913
14914 * emacs.c (main): Use `emacs-copyright' in --version output.
14915
14916 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
14917
14918 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
14919
14920 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14921
14922 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
14923
14924 * macgui.h: Replace WindowPtr with WindowRef.
14925
14926 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
14927 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
14928 Replace ControlHandle with ControlRef.
14929 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
14930
14931 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
14932 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
14933 Replace ControlHandle with ControlRef.
14934 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
14935 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
14936
14937 * macterm.h (struct scroll_bar): Rename member control_handle_low
14938 and control_handle_high to control_ref_low and control_ref_high.
14939 All uses changed.
14940 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
14941 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
14942 respectively. All uses changed.
14943 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
14944 (install_window_handler, remove_window_handler): Replace WindowPtr
14945 with WindowRef in externs.
14946
14947 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
14948
14949 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
14950
14951 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
14952
14953 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
14954
14955 * frame.c (Fmouse_position, Fmouse_pixel_position):
14956 Condition on HAVE_GPM too.
14957
14958 * term.c (term_mouse_highlight): Remove unused variables.
14959 (Fterm_open_connection): Set gpm_zerobased to 1.
14960 (term_mouse_movement, term_mouse_click, handle_one_term_event):
14961 Use zero based co-ordinates.
14962 (handle_one_term_event): Report a drag as mouse movement too.
14963
14964 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
14965
14966 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
14967
14968 * image.c (search_image_cache): New function. Require background
14969 color match if background color is unspecified in the image spec.
14970 (uncache_image, lookup_image): Use it.
14971
14972 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
14973
14974 * window.c (Fshrink_window): Reflow docstring.
14975
14976 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
14977
14978 * Version 22.1 released.
14979
14980 2007-06-01 Richard Stallman <rms@gnu.org>
14981
14982 * xfns.c (x_encode_text): Add GCPRO.
14983
14984 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14985
14986 * xfns.c (x_set_name_internal): Save encoded name before
14987 x_encode_text in case string data is relocated.
14988
14989 2007-05-31 Richard Stallman <rms@gnu.org>
14990
14991 * buffer.c (syms_of_buffer): Doc fix.
14992
14993 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
14994
14995 * sysdep.c (init_sys_modes): Add rather than replace with
14996 O_NONBLOCK.
14997
14998 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
14999 term_mouse_moveto.
15000
15001 * termhooks.h (term_mouse_moveto): New extern.
15002
15003 * term.c (mouse_face_window): Rename...
15004 (Qmouse_face_window): ...to this.
15005 (term_show_mouse_face, term_clear_mouse_face)
15006 (term_mouse_highlight): Use Qmouse_face_window.
15007 (term_mouse_moveto): New function.
15008 (term_mouse_position): Make it work.
15009 (syms_of_term): Uncomment assignment to mouse_position_hook.
15010 Staticpro Qmouse_face_window.
15011
15012 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15013
15014 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
15015 around current_column call.
15016
15017 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
15018
15019 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
15020 * xdisp.c (next_element_from_buffer):
15021 * window.c (delete_window):
15022 * term.c (term_mouse_highlight):
15023 * msdos.c (getdefdir):
15024 * macterm.c (mac_create_bitmap_from_bitmap_data)
15025 (init_font_name_table):
15026 * fns.c (Fsxhash):
15027 * data.c (Fmake_local_variable):
15028 * ccl.c (ccl_driver): Likewise.
15029
15030 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15031
15032 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
15033 Call mac_wakeup_from_rne on window size change.
15034
15035 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
15036
15037 * image.c (uncache_image): Fix typo.
15038
15039 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
15040
15041 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
15042
15043 2007-05-22 Richard Stallman <rms@gnu.org>
15044
15045 * xterm.c (x_connection_closed): Remove NO_RETURN.
15046
15047 2007-05-22 Martin Rudalics <rudalics@gmx.at>
15048
15049 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
15050
15051 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
15052
15053 * image.c (uncache_image): New function.
15054 (Fimage_refresh): New function.
15055
15056 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
15057
15058 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
15059
15060 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
15061
15062 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
15063 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
15064
15065 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
15066
15067 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
15068 conditional on [HAVE_GPM_H].
15069
15070 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
15071
15072 * syntax.c (skip_chars): Update syntax-table only after we checked that
15073 the new location is valid.
15074
15075 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15076
15077 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
15078 mac_get_window_bounds.
15079
15080 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
15081
15082 * Makefile.in (LIBGPM): Allow it to be set from configure.
15083 If set then link Emacs with it.
15084
15085 * config.in: Regenerate.
15086
15087 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
15088 New externs.
15089
15090 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
15091 Include gpm.h.
15092 (handle_one_term_event, term_gpm): New externs.
15093
15094 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
15095 and allow it to be interrupted by SIGIO.
15096
15097 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
15098 (wait_reading_process_output): Wait on gpm_fd too.
15099 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
15100 (add_gpm_wait_descriptor_called_flag): New variable.
15101 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
15102
15103 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
15104 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
15105 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
15106 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
15107 (make_lispy_event): Add case GPM_CLICK_EVENT.
15108 (read_avail_input): Handle mouse input.
15109
15110 * term.c (write_glyphs_with_face): New function.
15111 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
15112 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
15113 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
15114 (mouse_face_face_id, term_gpm, pos_x, pos_y)
15115 (last_mouse_x, last_mouse_y): New variables.
15116 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
15117 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
15118 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
15119 (Fterm_close_connection): New functions.
15120 (term_init): Initialise mouse_face_window.
15121
15122 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
15123
15124 * xdisp.c (redisplay_window): If first window line is a
15125 continuation line, recompute the new window start instead of
15126 recentering.
15127
15128 2007-05-18 Glenn Morris <rgm@gnu.org>
15129
15130 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
15131 Suggested by Alfred M. Szmidt <ams@gnu.org>.
15132
15133 2007-05-17 Glenn Morris <rgm@gnu.org>
15134
15135 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
15136
15137 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15138
15139 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
15140 dead key repeat and up events.
15141
15142 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
15143
15144 * image.c (pbm_load): Check image size for monochrome pbm.
15145
15146 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
15147
15148 * xterm.c (XTread_socket): Revert last change.
15149
15150 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
15151
15152 * image.c (pbm_load): Correctly check image size for greyscale pbm.
15153
15154 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
15155
15156 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15157
15158 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
15159 mixup (YAILOM).
15160
15161 2007-05-07 Andreas Schwab <schwab@suse.de>
15162
15163 * keymap.c (Flookup_key): Fix typo in last change.
15164
15165 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15166
15167 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
15168 mapping for unibyte strings.
15169
15170 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15171
15172 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
15173 (Fx_popup_dialog) [MAC_OSX]: Likewise.
15174
15175 2007-04-29 Richard Stallman <rms@gnu.org>
15176
15177 * insdel.c (replace_range): For undo, record insertion first.
15178
15179 2007-04-29 Andreas Schwab <schwab@suse.de>
15180
15181 * lisp.h (VECSIZE): Use OFFSETOF.
15182
15183 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15184
15185 * xdisp.c (try_window_reusing_current_matrix): Fix number of
15186 disabled lines.
15187
15188 2007-04-28 Richard Stallman <rms@gnu.org>
15189
15190 * lread.c (read_escape): In a string, \s is always space.
15191
15192 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
15193
15194 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
15195
15196 * gtkutil.c (xg_update_menubar, create_menus): Create empty
15197 submenu for menu bar items.
15198
15199 See ChangeLog.10 for earlier changes.
15200
15201 ;; Local Variables:
15202 ;; coding: utf-8
15203 ;; add-log-time-zone-rule: t
15204 ;; bug-reference-url-format: "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s"
15205 ;; End:
15206
15207 Copyright (C) 2007, 2008 Free Software Foundation, Inc.
15208
15209 This file is part of GNU Emacs.
15210
15211 GNU Emacs is free software: you can redistribute it and/or modify
15212 it under the terms of the GNU General Public License as published by
15213 the Free Software Foundation, either version 3 of the License, or
15214 (at your option) any later version.
15215
15216 GNU Emacs is distributed in the hope that it will be useful,
15217 but WITHOUT ANY WARRANTY; without even the implied warranty of
15218 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15219 GNU General Public License for more details.
15220
15221 You should have received a copy of the GNU General Public License
15222 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
15223
15224 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40