* src/coding.c (encode_designation_at_bol): Change return value to EMACS_INT.
[emacs/old-mirror.git] / src / ChangeLog
blobe44ec5fde6b9ecac3927a9498cb389fa69a8894c
1 2012-01-25  Chong Yidong  <cyd@gnu.org>
3         * Version 23.4 released.
5 2012-01-25  HIROSHI OOTA  <nil@mad.dog.cx>  (tiny change)
7         * coding.c (encode_designation_at_bol): Change return value to
8         EMACS_INT.
10 2012-01-19  Paul Eggert  <eggert@cs.ucla.edu>
12         * coding.c (encode_designation_at_bol): Don't use uninitialized
13         local variable (Bug#9318).
15 2012-01-19  Kenichi Handa  <handa@m17n.org>
17         * coding.c (encode_designation_at_bol): New args charbuf_end and
18         dst.  Return the number of produced bytes.  Callers changed.
19         (coding_set_source): Return how many bytes coding->source was
20         relocated.
21         (coding_set_destination): Return how many bytes
22         coding->destination was relocated.
23         (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
24         (CODING_CHAR_CHARSET_P): Adjusted for the avove changes.
26 2012-01-19  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
28         * coding.c (CODING_CHAR_CHARSET_P): New macro.
29         (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
30         macro (Bug#9318).
32 2012-01-19  Andreas Schwab  <schwab@linux-m68k.org>
34         The following changes are to fix Bug#9318.
36         * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
37         (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
38         (encode_coding_iso_2022, encode_coding_sjis)
39         (encode_coding_big5, encode_coding_charset): Use the above macros.
41 2012-01-18  Yoshiaki Kasahara  <kasahara@nc.kyushu-u.ac.jp>  (tiny change)
43         * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to
44         aliasing change.
46 2012-01-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
48         * xftfont.c (xftfont_draw): Use the font metrics of s->font to
49         fill background (Bug#8992).
51 2012-01-13  Kenichi Handa  <handa@m17n.org>
53         * character.c (char_width): New function.
54         (Fchar_width, c_string_width, lisp_string_width):
55         Use char_width (Bug#9496).
57 2012-01-12  Sven Joachim  <svenjoac@gmx.de>
59         * s/gnu-linux.h: Use CRT_DIR.
61 2011-11-11  Johan Bockgård  <bojohan@gnu.org>
63         * xdisp.c (fill_composite_glyph_string): Always set s->face, to
64         avoid a crash (bug#9496).
66 2012-01-09  Chong Yidong  <cyd@gnu.org>
68         * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
70 2012-01-09  Eli Zaretskii  <eliz@gnu.org>
72         * xdisp.c (note_mouse_highlight): Initialize `area'.  (Bug#9947)
73         Initialize `part', to avoid a possible random value that matches
74         one of those tested as condition to clear the mouse face.
76 2012-01-09  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
78         * dispnew.c (scrolling_window): Truncate overlaps in copy
79         destination of scroll runs so as to avoid assigning disabled bogus
80         rows and unnecessary graphics copy operations.
82 2012-01-09  Eli Zaretskii  <eliz@gnu.org>
84         * dispnew.c (scrolling_window): Fix incorrect indices in accessing
85         current_matrix and desired_matrix.  (Bug#9990)
87 2011-10-31  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
89         * xmenu.c (cleanup_widget_value_tree): New function.
90         (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
91         calling free_menubar_widget_value_tree directly (Bug#9830).
93 2011-09-19  Andreas Schwab  <schwab@linux-m68k.org>
95         * keymap.c (Fsingle_key_description): Use make_specified_string
96         instead of build_string to build string from push_key_description.
97         (Bug#5193)
99 2011-09-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
101         * xdisp.c (expose_window): Save original value of phys_cursor_on_p
102         and turn window cursor on if cleared (Bug#9415).
104 2011-09-07  Andreas Schwab  <schwab@linux-m68k.org>
106         * search.c (boyer_moore): Take unibyte characters from pattern
107         literally.  (Bug#9458)
109 2011-08-30  Chong Yidong  <cyd@stupidchicken.com>
111         * syntax.c (find_defun_start): Update all cache variables if
112         exiting early (Bug#9401).
114 2011-08-19  Andreas Schwab  <schwab@linux-m68k.org>
116         * keyboard.c: Include "process.h"
118 2011-07-28  Eli Zaretskii  <eliz@gnu.org>
120         * xfaces.c (update_face_from_frame_parameter): Move out of
121         HAVE_WINDOW_SYSTEM portion.  Condition window-system only parts
122         with HAVE_WINDOW_SYSTEM.
124 2011-07-26  Andreas Schwab  <schwab@linux-m68k.org>
126         * fontset.c (fontset_get_font_group): Add proper type checks.
127         (Bug#9172)
129 2011-07-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
131         * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
132         and LC_VERSION_MIN_MACOSX.
133         (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
134         (dump_it) [LC_FUNCTION_STARTS]: Use it.
136 2011-07-22  Chong Yidong  <cyd@stupidchicken.com>
138         * frame.c (Fmodify_frame_parameters): In tty case, update the
139         default face if necessary (Bug#4238).
141 2011-07-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
143         * s/darwin.h (LD_SWITCH_SYSTEM_TEMACS): Add -fno-pie so as to suppress
144         address randomization (Bug#8395).
146 2011-07-07  Kenichi Handa  <handa@m17n.org>
148         * composite.c (composition_compute_stop_pos): Ignore a static
149         composition starting before CHARPOS (Bug#8915).
151         * xdisp.c (handle_composition_prop): Likewise.
153 2011-06-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
155         * dispnew.c (scrolling_window): Before scrolling, turn off a
156         mouse-highlight in the window being scrolled.
158 2011-06-16  Paul Eggert  <eggert@cs.ucla.edu>
160         * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.  (Bug#8839)
162 2011-06-02  Dan Nicolaescu  <dann@ics.uci.edu>
164         * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
166 2011-06-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
168         * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
169         in the current matrix if keep_current_p is non-zero.
171 2011-05-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
173         * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
175         * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
176         for fringe update if it has periodic bitmap.
177         (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
178         and fringe_bitmap_periodic_p.
180         * fringe.c (get_fringe_bitmap_data): New function.
181         (draw_fringe_bitmap_1, update_window_fringes): Use it.
182         (update_window_fringes): Record periodicity of fringe bitmap in glyph
183         row.  Mark glyph row for fringe update if periodicity changed.
185         * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
186         for fringe update unless it has periodic bitmap.
188 2011-05-25  Kenichi Handa  <handa@m17n.org>
190         * xdisp.c (get_next_display_element): Set correct it->face_id for
191         a static composition.
193 2011-05-21  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
195         * dispnew.c (scrolling_window): Don't exclude the case that the
196         last enabled row in the desired matrix touches the bottom boundary.
198 2011-05-11  Drew Adams  <drew.adams@oracle.com>
200         * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
202 2011-05-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
204         * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
205         `width' to `bar_area_x' and `bar_area_width', respectively.
206         (x_scroll_run): Take account of fringe background extension.
208         * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]: Rename
209         local vars `left' and `width' to `bar_area_x' and
210         `bar_area_width', respectively.
211         (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
212         background extension.
214 2011-05-09  Andreas Schwab  <schwab@linux-m68k.org>
216         * xmenu.c (set_frame_menubar): Fix submenu loops.
218 2011-05-09  Eli Zaretskii  <eliz@gnu.org>
220         Backport revisions 103939.1.41..103939.1.44 (inclusive) from trunk.
221         (bug#8623)
222         The next log entry shows the actual changes by Paul Eggert.
224 2011-05-08  Paul Eggert  <eggert@cs.ucla.edu>
226         Fix a problem with aliasing and vector headers.
227         GCC 4.6.0 optimizes based on type-based alias analysis.  For
228         example, if b is of type struct buffer * and v of type struct
229         Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
230         != &v->size, and therefore "v->size = 1; b->size = 2; return
231         v->size;" must therefore return 1.  This assumption is incorrect
232         for Emacs, since it type-puns struct Lisp_Vector * with many other
233         types.  To fix this problem, this patch adds a new type struct
234         vector_header that documents the constraints on layout of vectors
235         and pseudovectors, and helps optimizing compilers not get fooled
236         by Emacs's type punning.  It also adds the macros XSETTYPED_PVECTYPE
237         XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
238         * lisp.h (XVECTOR_SIZE): New convenience macro.  All previous uses of
239         XVECTOR (foo)->size replaced to use this macro, to avoid the hassle
240         of writing XVECTOR (foo)->header.size.
241         * lisp.h: Say "vectorlike header" rather than "vector header.
242         (struct vectorlike_header): Rename from struct vector_header.
243         (XVECTORLIKE_HEADER_SIZE): Renamed from XVECTOR_HEADER_SIZE.
244         All uses changed.
245         (XVECTOR_HEADER_SIZE): New macro, for use in XSETPSEUDOVECTOR.
246         (XSETTYPED_PVECTYPE): New macro, specifying the name of the size
247         member.
248         (XSETPVECTYPE): Rewrite in terms of new macro.
249         (XSETPVECTYPESIZE): New macro, specifying both type and size.
250         This is a bit clearer, and further avoids the possibility of
251         undesirable aliasing.
252         (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
253         (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR
254         and XVECTOR_HEADER_SIZE.
255         (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
256         since Lisp_Subr is a special case (no "next" field).
257         (ASIZE): Rewrite in terms of XVECTOR_SIZE.
258         (struct vector_header): New type.
259         (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
260         object, to help avoid aliasing.
261         (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
262         (SUBRP): Likewise, since Lisp_Subr is a special case.
264         * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
265         (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
266         (struct Lisp_Hash_Table): Combine first two members into a single
267         struct vector_header member.  All uses of "size" and "next" members
268         changed to be "header.size" and "header.next".
269         * buffer.h (struct buffer): Likewise.
270         * font.h (struct font_spec, struct font_entity, struct font): Likewise.
271         * frame.h (struct frame): Likewise.
272         * process.h (struct Lisp_Process): Likewise.
273         * termhooks.h (struct terminal): Likewise.
274         * window.c (struct save_window_data, struct saved_window): Likewise.
275         * window.h (struct window): Likewise.
276         * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
277         Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
278         * buffer.c (init_buffer_once): Likewise.
279         * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
280         special case.
281         * process.c (Fformat_network_address): Use local var for size,
282         for brevity.
283         * fns.c (vector): Remove; this old hack is no longer needed.
284         * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
286 2011-04-29  Eli Zaretskii  <eliz@gnu.org>
288         * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
289         New version that can reserve upto 2GB of heap space.
291 2011-04-26  Chong Yidong  <cyd@stupidchicken.com>
293         * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
295 2011-04-18  Eli Zaretskii  <eliz@gnu.org>
297         * s/ms-w32.h (localtime): Redirect to sys_localtime.
299         * w32.c: Include <time.h>.
300         (sys_localtime): New function.
302 2011-04-13  Chong Yidong  <cyd@stupidchicken.com>
304         * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
306 2011-04-10  Samuel Thibault  <sthibault@debian.org>  (tiny change)
308         * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
309         zombies (Bug#8467).
311 2011-04-10  Chong Yidong  <cyd@stupidchicken.com>
313         * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
315 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
317         * ftfont.c (get_adstyle_property, ftfont_pattern_entity): Use
318         unsigned char, to match FcChar8 type definition.
320         * xterm.c (handle_one_xevent):
321         * xmenu.c (create_and_show_popup_menu):
322         * xselect.c (x_decline_selection_request)
323         (x_reply_selection_request): Avoid type-punned deref of X events.
325 2011-04-08  Samuel Thibault  <sthibault@debian.org>  (tiny change)
327         * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
329 2011-03-19  Christoph Scholtes  <cschol2112@googlemail.com>
331         * process.c (Fformat_network_address): Doc fix.
333 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
335         * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
336         (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
337         These macros can no longer be used for assignment.
339         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Assign
340         struct members directly, instead of using BUF_BEGV etc.
341         (record_buffer_markers, fetch_buffer_markers): New functions for
342         recording and fetching special buffer markers.
343         (set_buffer_internal_1, set_buffer_temp): Use them.
345         * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
347         * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
349         * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
350         (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
352         * xdisp.c (hscroll_window_tree):
353         (reconsider_clip_changes): Use PT instead of BUF_PT.
355 2011-03-17  Juanma Barranquero  <lekktu@gmail.com>
357         * xfaces.c (Fx_load_color_file):
358         Read color file from absolute filename (bug#8250).
360 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
362         Backport revno:103582 from trunk.
363         * w32xfns.c (select_palette): Check success of RealizePalette against
364         GDI_ERROR, not zero.
366 2011-03-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
368         * fringe.c (update_window_fringes): Remove unused variables.
370         * unexmacosx.c (copy_data_segment): Also copy __got section.
371         (Bug#8223)
373 2011-03-07  Chong Yidong  <cyd@stupidchicken.com>
375         * Version 23.3 released.
377 2011-02-22  Kenichi Handa  <handa@m17n.org>
379         * font.c (font_open_entity): Be sure to set scaled_pixel_size.
380         (font_find_for_lface): Check if attrs[LFACE_HEIGHT_INDEX] is
381         integer.
383 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
385         * Makefile.in (prefix-args${EXEEXT}): Compile with ALL_CFLAGS.
387 2011-02-13  Eli Zaretskii  <eliz@gnu.org>
389         * xdisp.c (redisplay_internal): Resynchronize `w' if the selected
390         window is changed inside calls to do_pending_window_change.
391         (Bug#8020)
393 2011-02-12  Eli Zaretskii  <eliz@gnu.org>
395         * terminal.c (create_terminal): Use default-keyboard-coding-system
396         and default-terminal-coding-system to initialize coding systems of
397         the new terminal.  (Bug#7840)
399 2011-02-09  Martin Rudalics  <rudalics@gmx.at>
401         * window.c (select_window): Check inhibit_point_swap argument when
402         deciding whether to return immediately.
404 2011-02-08  Jan Djärv  <jan.h.d@swipnet.se>
406         * nsterm.m (setFrame, initFrame): Make sure pixel_height doesn't become
407         zero (Bug#7348).
409 2011-02-03  Glenn Morris  <rgm@gnu.org>
411         * xfaces.c (Finternal_set_lisp_face_attribute):
412         Try to clarify some error messages.  (Bug#2659)
414 2011-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
416         * editfns.c (save_restriction_restore): Don't forget to invalidate the
417         current_column cache (bug#7946).
419 2011-02-02  Kenichi Handa  <handa@m17n.org>
421         * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined.
423         * xftfont.c (xftfont_open): Likewise.
425 2011-02-01  Andreas Schwab  <schwab@linux-m68k.org>
427         * window.c (Fselect_window): Add missing return value.
429 2011-01-29  Andreas Schwab  <schwab@linux-m68k.org>
431         * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
432         of int.  All uses adjusted.
433         (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load)
434         (svg_load_image): Remove casts.
436 2011-01-29  Chong Yidong  <cyd@stupidchicken.com>
438         * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png
439         function definitions for compiling with libpng-1.5.
440         (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5.
441         (my_png_error, png_load): Use them.  Suggested by Thomas Klausner
442         (Bug#7908).
444 2011-01-28  Chong Yidong  <cyd@stupidchicken.com>
446         * m/intel386.h: Define NO_ARG_ARRAY.  Suggested by Dan Nicolaescu.
448 2011-01-27  Chong Yidong  <cyd@stupidchicken.com>
450         * font.c (font_parse_fcname): Require GTK-style font sizes to
451         occur at the end of the font string (Bug#7853).
453 2011-01-26  Chong Yidong  <cyd@stupidchicken.com>
455         * font.c (font_parse_fcname): Fix typo in string length.
457 2011-01-24  Stefan Monnier  <monnier@iro.umontreal.ca>
459         * xdisp.c (handle_fontified_prop): Be careful with font-lock changing
460         the buffer's point-max (bug#7876).
462 2011-01-23  Chong Yidong  <cyd@stupidchicken.com>
464         * lisp.h (XPNTR): Obey DATA_SEG_BITS in all non-USE_LSB_TAG cases.
465         Remove unused HAVE_SHM branch (Bug#6811).
467 2011-01-23  Peter O'Gorman  <bug-gnu-emacs@mlists.thewrittenword.com>  (tiny change)
469         * s/hpux11.h: Set CANNOT_DUMP on IA64 (Bug#6811).
471 2011-01-22  Martin Rudalics  <rudalics@gmx.at>
473         * window.c (select_window): New function.
474         (Fselect_window): Call it.
475         (inhibit_point_swap): Variable deleted.
476         (Fset_window_configuration): Call select_window directly.
478 2011-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
480         * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
482 2011-01-16  Eli Zaretskii  <eliz@gnu.org>
484         * image.c (syms_of_image): Don't use SET_SYMBOL_VALUE.  (Bug#7848)
486 2011-01-15  Martin Rudalics  <rudalics@gmx.at>
488         * window.c (inhibit_point_swap): New variable.
489         (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
490         point this time.
491         (Fset_window_configuration): Set inhibit_point_swap to 1 instead
492         of setting selected_window to nil (Bug#7728).
494 2011-01-12  Chong Yidong  <cyd@stupidchicken.com>
496         * config.in (TERMINFO): New definition.
498         * s/netbsd.h: Use it to choose between terminfo and termcap
499         (Bug#7642).
501 2011-01-03  Jan Djärv  <jan.h.d@swipnet.se>
503         * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
505         * nsfns.m (ns_set_name_iconic): Remove.
506         (ns_get_screen): Don't assign integer to f.
507         (ns_set_name_internal): New function (Bug#7517).
508         (Vicon_title_format): Extern declare.
509         (ns_set_name): Call ns_set_name_internal.
510         (x_explicitly_set_name): Remove call to ns_set_name_iconic.
511         (x_implicitly_set_name): Ditto.
512         (x_set_title): Remove commet about EXPLICIT.  Call ns_set_name_internal.
513         (ns_set_name_as_filename): Encode name with ENCODE_UTF_8.
514         Always use buffer name for title and buffer filename only for
515         RepresentedFilename.  Handle bad UTF-8 in buffer name (Bug#7517).
517 2011-01-03  Eli Zaretskii  <eliz@gnu.org>
519         * image.c (png_jmpbuf): Remove definition.
520         (my_png_error, png_load): Don't use png_jmpbuf.
522 2010-12-31  Eli Zaretskii  <eliz@gnu.org>
524         * image.c <Qlibpng_version>: New variable.
525         (syms_of_image): Intern and staticpro it.  Set its value to the
526         version of PNG library we were compiled with.
527         (my_png_error, png_load): Avoid GCC warnings about direct access
528         to png_ptr->jmpbuf.  (Bug#7716)
529         (png_jmpbuf): New macro.
530         (my_png_error, png_load): Use it instead of #ifdef'ing according
531         to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
533 2010-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
535         * .gdbinit (xgetptr): Fix the union+lsb case.
536         (xbacktrace): Fix the union case.
538 2010-12-26  Stefan Monnier  <monnier@iro.umontreal.ca>
540         * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
541         different from selected-window's.
543 2010-12-25  Eli Zaretskii  <eliz@gnu.org>
545         * keyboard.c (parse_menu_item): Prepend "  " to the key sequence
546         equivalent of a menu item when the key sequence is given by the
547         `:keys' attribute.  (Bug#7662)
549         * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
550         the basic faces are supported.
552 2010-12-24  Jan Djärv  <jan.h.d@swipnet.se>
554         * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
556 2010-12-17  Eli Zaretskii  <eliz@gnu.org>
558         * xdisp.c (Fformat_mode_line): Fix last change.
560 2010-12-16  Chong Yidong  <cyd@stupidchicken.com>
562         * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
563         faces (Bug#7587).
565 2010-12-13  Eli Zaretskii  <eliz@gnu.org>
567         * fileio.c (Fexpand_file_name): One more doc fix.
569 2010-12-12  Eli Zaretskii  <eliz@gnu.org>
571         * fileio.c (Fexpand_file_name): Doc fix.  (Bug#7617)
573 2010-12-11  Eli Zaretskii  <eliz@gnu.org>
575         * w32fns.c (Fx_show_tip): Call try_window with last argument
576         TRY_WINDOW_IGNORE_FONTS_CHANGE.  Delete the TODO ifdef: problem
577         solved.  Round up the tip height to an integral multiple of the
578         frame's line height.  Add FRAME_COLUMN_WIDTH to the tip width.
579         (Bug#7398)
581         * xdisp.c (string_pos_nchars_ahead, c_string_pos)
582         (face_before_or_after_it_pos, next_element_from_string)
583         (next_element_from_c_string, produce_stretch_glyph): Remove unused
584         calculations of maximum string length before calling
585         string_char_and_length and STRING_CHAR_AND_LENGTH.
586         (string_char_and_length): Update commentary: MAXLEN is no longer
587         needed.
589 2010-12-10  Jan Djärv  <jan.h.d@swipnet.se>
591         * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
592         as (Qsave_session arg).
594         * xsmfns.c (smc_interact_CB): Set arg to Qnil.
595         (smc_die_CB): Make an event with arg Qt.
596         (Fhandle_save_session): If event has Qt as argument,
597         call Fkill_emacs (Bug#7552).
599 2010-12-07  Jan Djärv  <jan.h.d@swipnet.se>
601         * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
603 2010-12-06  Chong Yidong  <cyd@stupidchicken.com>
605         * dispextern.h (struct it): New member overlay_strings_charpos.
607         * xdisp.c (next_overlay_string, load_overlay_strings): Record the
608         charpos where we computed n_overlay_strings.
609         (next_overlay_string): Load overlay strings at recorded position,
610         which may not be the same as the iterator's charpos (Bug#7016).
612 2010-12-05  Jan Djärv  <jan.h.d@swipnet.se>
614         * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
615         with cursor color and draw a rectangle around the image (Bug#7412).
617 2010-12-05  Chong Yidong  <cyd@stupidchicken.com>
619         * xdisp.c (try_scrolling): Avoid infloop if the first line is
620         obscured due to a vscroll (Bug#7537).
622 2010-12-02  Jan Djärv  <jhd@zeplinf.localdomain>
624         * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
626         * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
627         Use FRAME_TOOLBAR_HEIGHT.
628         (x_set_offset): Handle XNegative and YNegative in
629         f->size_hint_flags (Bug#7510).
631 2010-11-25  Kenichi Handa  <handa@m17n.org>
633         * charset.c (emacs_mule_charset): Make it an array of charset ID;
634         i.e. integer.
635         (Fdefine_charset_internal): Adjusted for the above change.
636         (init_charset_once): Likewise.
638         * charset.h (emacs_mule_charset): Adjust the prototype.  Delete
639         duplicated extern.
641         * coding.c (emacs_mule_char): Adjust for the change of
642         emacs_mule_charset.
644         * lread.c (read_emacs_mule_char): Adjust for the change of
645         emacs_mule_charset.
647 2010-11-22  Eli Zaretskii  <eliz@gnu.org>
649         * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
650         of w32api >= 3.15.  (Bug#6989)  (Bug#7452)
652 2010-11-22  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
654         * alloc.c (mark_terminals): Ensure that the image cache is marked
655         even if the terminal object was marked earlier (Bug#6301).
657 2010-11-21  Chong Yidong  <cyd@stupidchicken.com>
659         * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
661 2010-11-20  Jan Djärv  <jan.h.d@swipnet.se>
663         * gtkutil.c (menubar_map_cb): New function (Bug#7425).
664         (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
665         Use 23 as menubar height if 0.  (Bug#7425).
667 2010-11-14  Jan Djärv  <jan.h.d@swipnet.se>
669         * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
671         * config.in (HAVE_G_TYPE_INIT): New symbol.
673 2010-11-12  Eli Zaretskii  <eliz@gnu.org>
675         * lread.c (Fload): Mention `load-in-progress' and
676         `load-file-name'.  (Bug#7346)
678 2010-11-09  Eli Zaretskii  <eliz@gnu.org>
680         * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
681         (kbd_buffer_store_event_hold, kbd_buffer_get_event)
682         (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
683         subprocesses.  Use buffer_free only ifdef subprocesses.
685         * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
686         the subprocesses version, not in the non-subprocesses one.
688         * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
690         * xfns.c (x_real_positions): Fix declaration-after-statement
691         problem.
693 2010-11-05  Chong Yidong  <cyd@stupidchicken.com>
695         * image.c (free_image): Don't garbage the frame here, since this
696         function can be called while redisplaying (Bug#7210).
697         (uncache_image): Garbage the frame here (Bug#6426).
699 2010-11-04  Chong Yidong  <cyd@stupidchicken.com>
701         * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
702         Windows.
704 2010-11-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
706         * process.c (Fmake_network_process): Don't call turn_on_atimers around
707         `connect' (Bug#5723).
709 2010-11-04  Helmut Eller  <eller.helmut@gmail.com>
711         * process.c (Fmake_network_process): Call `select' for interrupted
712         `connect' rather than creating new socket (Bug#5173).
714 2010-11-04  Kenichi Handa  <handa@m17n.org>
716         * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
717         Don't sheck SPEC if it is nil.
718         (font_list_entities): Call font_delete_unmatched if
719         Vface_ignored_fonts is non-nil.
721 2010-11-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
723         * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
724         (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
726         * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
727         Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
728         set in FLAGS.  Callers with non-zero CHECK_MARGINS changed to use
729         TRY_WINDOW_CHECK_MARGINS.
731         * xfns.c (Fx_show_tip): Undo last change.  Call try_window with
732         TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423).
734 2010-11-04  Jan Djärv  <jan.h.d@swipnet.se>
736         * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
737         parent is the root window.  Check this after traversing window tree.
739         * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
741         * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
743         * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
744         before traversing window tree (Bug#5721).
746 2010-11-03  Glenn Morris  <rgm@gnu.org>
748         * Makefile.in (CRT_DIR): New variable, set by configure.
749         * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
750         Use $CRT_DIR rather than HAVE_LIB64_DIR.  (Bug#5655)
752 2010-11-01  Jan Djärv  <jan.h.d@swipnet.se>
754         * process.c (kbd_is_on_hold): New variable.
755         (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
756         New functions.
757         (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
758         select on empty input mask.
759         (init_process): Initialize kbd_is_on_hold to 0.
761         * process.h (hold_keyboard_input, unhold_keyboard_input)
762         (kbd_on_hold_p): Declare.
764         * keyboard.c (input_available_signal): Declare.
765         (kbd_buffer_nr_stored): New function.
766         (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
767         more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
768         (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
769         returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
770         (tty_read_avail_input): If input is on hold, return.
771         Don't read more that free slots in kbd_buffer (Bug#6571).
773 2010-10-31  Chong Yidong  <cyd@stupidchicken.com>
775         * xterm.c (x_connection_closed): Print informative error message
776         when aborting on GTK.  This requires using shut_down_emacs
777         directly instead of Fkill_emacs.
779 2010-10-25  Michael Albinus  <michael.albinus@gmx.de>
781         * dbusbind.c (Fdbus_call_method_asynchronously)
782         (Fdbus_register_signal, Fdbus_register_method): Check, whether
783         `dbus-registered-objects-table' is initialized.
785 2010-10-24  Chong Yidong  <cyd@stupidchicken.com>
787         * xterm.c (x_connection_closed): Kill Emacs unconditionally.
789 2010-10-22  Eli Zaretskii  <eliz@gnu.org>
791         * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
793         * dispnew.c (syms_of_display) <initial-window-system, window-system>:
794         Deprecate use as a boolean flag.
796 2010-10-18  Ken Brown  <kbrown@cornell.edu>
798         * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
800 2010-10-15  Kenichi Handa  <handa@m17n.org>
802         Fix incorrect font metrics when the same font is opened with
803         different pixelsizes.
805         * xftfont.c: Include composite.h.
806         (xftfont_shape): New function.
807         (syms_of_xftfont): Set xftfont_driver.shape.
809 2010-10-13  Damyan Pepper  <damyanp@gmail.com>
811         Fix handling of font properties on Windows (bug#6303).
812         * font.c (font_filter_properties): New function, refactored from
813         ftfont_filter_properties.
814         * font.h (font_filter_properties): Declare.
815         * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
816         * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
817         (w32font_filter_properties): New function.
818         (w32font_driver): Add w32font_filter_properties.
820 2010-10-12  Juanma Barranquero  <lekktu@gmail.com>
822         * font.c (Ffont_variation_glyphs):
823         * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
825 2010-10-10  Jan Djärv  <jan.h.d@swipnet.se>
827         * nsterm.m (Qleft): Declare.
828         (ns_right_alternate_modifier): New variable
829         (NSRightAlternateKeyMask): New define.
830         (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
831         ns_right_alternate_modifier isn't Qleft.
832         (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
833         as emacs modifier for NSRightAlternateKeyMask.
834         (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
836 2010-10-08  Michael Albinus  <michael.albinus@gmx.de>
838         * dbusbind.c (xd_get_dispatch_status): Return a Lisp_Object.
839         (xd_pending_messages): Catch xd_get_dispatch_status calls.
841 2010-10-08  Kenichi Handa  <handa@m17n.org>
843         * coding.c (complement_process_encoding_system): Fix previous change.
845 2010-10-03  Michael Albinus  <michael.albinus@gmx.de>
847         * dbusbind.c (syms_of_dbusbind): Move putenv call ...
848         (Fdbus_init_bus): ... here.  (Bug#7113)
850 2010-10-03  Glenn Morris  <rgm@gnu.org>
852         * buffer.c (before-change-functions, after-change-functions):
853         Three-year overdue doc fix following 2007-08-13 change.
855 2010-10-02  Kenichi Handa  <handa@m17n.org>
857         * coding.c (coding_inherit_eol_type): If parent doesn't specify
858         eol-format, inherit from the system's default.
859         (complement_process_encoding_system): Make a new coding system
860         inherit the original eol-format.
862 2010-09-30  Kenichi Handa  <handa@m17n.org>
864         * coding.c (complement_process_encoding_system): New function.
866         * coding.h (complement_process_encoding_system): Extern it.
868         * callproc.c (Fcall_process): Complement the coding system for
869         encoding arguments.
870         (Fcall_process_region): Complement the coding system for encoding
871         the input to the process.
873         * process.c (Fstart_process): Complement the coding system for
874         encoding arguments.
875         (send_process): Complement the coding system for encoding what
876         sent to the process.
878 2010-09-29  Kenichi Handa  <handa@m17n.org>
880         * xfont.c (xfont_open): Fix setting of font->average_width from
881         :avgwidth property (Bug#7123).
883 2010-09-28  Michael Albinus  <michael.albinus@gmx.de>
885         * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
886         is more portable.
888         * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
889         (kbd_buffer_get_event): ... here.  This is needed for cygwin, which
890         has not defined SIGIO.
892 2010-09-27  Michael Albinus  <michael.albinus@gmx.de>
894         * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
895         (Bug#7113)
897 2010-09-26  Jan Djärv  <jan.h.d@swipnet.se>
899         * xgselect.c (xg_select): Clear file descriptors not set from
900         rfds and wfds.
902 2010-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
904         * syntax.c (back_comment): Detect the case where a 1-char comment
905         starter is also the 2nd char of a 2-char comment ender.
907 2010-09-17  Jan Djärv  <jan.h.d@swipnet.se>
909         * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
911 2010-09-12  Jan Djärv  <jan.h.d@swipnet.se>
913         * xterm.c (get_current_vm_state): New function.
914         (do_ewmh_fullscreen): Call get_current_vm_state and compare with
915         want_fullscreen so set_wm_state calls are few (Bug#7013).
916         (x_handle_net_wm_state): Move code to get_current_vm_state and
917         call that function.
919 2010-09-11  Courtney Bane  <emacs-bugs-7626@cbane.org>  (tiny change)
921         * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
923 2010-09-08  Kenichi Handa  <handa@m17n.org>
925         * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
926         we may use designation or locking-shift.
928 2010-09-07  Kenichi Handa  <handa@m17n.org>
930         * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
931         sequence when the source is multibyte.
933 2010-08-31  Kenichi Handa  <handa@m17n.org>
935         * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
936         characters.
938         * term.c (encode_terminal_code): Fix the previous change.
939         (produce_glyphs): Don't set it->char_to_display here.
940         Don't handle unibyte-display-via-language-environment here.
941         (produce_special_glyphs): Set temp_it.char_to_display before
942         calling produce_glyphs.
944         * xdisp.c (get_next_display_element): Set it->char_to_display
945         here.  Convert all 8-bit bytes from unibyte buffer/string to 8-bit
946         characters.
947         (get_overlay_arrow_glyph_row): Set it.char_to_display too before
948         calling PRODUCE_GLYPHS.
949         (append_space_for_newline): Save and store it->char_to_display.
950         Set it->char_to_display before calling PRODUCE_GLYPHS.
951         (extend_face_to_end_of_line): Set it->char_to_display before
952         calling PRODUCE_GLYPHS.
953         (get_glyph_face_and_encoding): Set the glyph code an 8-bit
954         character to its byte value.
955         (get_char_glyph_code): New function.
956         (produce_stretch_glyph): Set it2.char_to_display too before
957         calling x_produce_glyphs.
958         (x_produce_glyphs): Simplify by using the same code for ASCII and
959         non-ASCII characters.  Don't set it->char_to_display here.
960         Don't handle unibyte-display-via-language-environment here.  For a
961         character of no glyph, use font->space_width instead of FONT_WIDTH.
963 2010-08-29  Kenichi Handa  <handa@m17n.org>
965         * term.c (encode_terminal_code): Encode byte chars to the
966         correspnding bytes.
968 2010-08-17  Andreas Schwab  <schwab@linux-m68k.org>
970         * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
971         instead of SAFE_ALLOCA.
973 2010-08-17  Chong Yidong  <cyd@stupidchicken.com>
975         * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
976         (Bug#6214).
978 2010-08-14  Jan Djärv  <jan.h.d@swipnet.se>
980         * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
982 2010-08-13  Jan Djärv  <jan.h.d@swipnet.se>
984         * doc.c (Fsnarf_documentation): Initialize skip_file before
985         build-files test.
987 2010-08-09  Peter O'Gorman <pogma@thewrittenword.com>  (tiny change)
989         * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
990         New definitions.
991         (HAVE_TERMIO): Remove.
993 2010-08-06  Kenichi Handa  <handa@m17n.org>
995         * charset.c: Include <stdlib.h>
996         (struct charset_sort_data): New struct.
997         (charset_compare): New function.
998         (Fsort_charsets): New function.
999         (syms_of_charset): Declare Fsort_charsets as a Lisp function.
1001         * coding.c (decode_coding_iso_2022): Fix checking of dimension
1002         number in CTEXT extended segment.
1004 2010-08-01  Juanma Barranquero  <lekktu@gmail.com>
1006         * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
1007         * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
1009 2010-07-30  Juanma Barranquero  <lekktu@gmail.com>
1011         * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
1012         (Fhash_table_size): Fix typos in docstrings.
1013         (Fmake_hash_table): Doc fix.
1015 2010-07-28  Juanma Barranquero  <lekktu@gmail.com>
1017         * minibuf.c (syms_of_minibuf) <read-buffer-function>:
1018         Doc fix (bug#5625).
1020 2010-07-27  Ken Brown  <kbrown@cornell.edu>
1022         * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
1023         the MSDOS definition.
1025 2010-07-25  Christoph Scholtes  <cschol2112@gmail.com>
1027         * minibuf.c (Fread_buffer): Doc fix (bug#6528).
1029 2010-07-22  Christoph Scholtes  <cschol2112@gmail.com>
1031         * window.c (Fwindow_height): Doc fix (bug#6518).
1033 2010-07-21  Juanma Barranquero  <lekktu@gmail.com>
1035         * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
1037 2010-07-17  Jan Djärv  <jan.h.d@swipnet.se>
1039         * gtkutil.c (xg_event_is_for_menubar): Also check that event window
1040         is related to the menu bar (Bug#6499).
1042 2010-07-14  Jan Djärv  <jan.h.d@swipnet.se>
1044         * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
1046         * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
1048         * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
1049         i.e. don't put back ButtonRelease (Bug#6608).
1051         * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
1052         instead of Window.  Call xg_event_is_for_menubar when
1053         USE_GTK (Bug#6499).
1055         * gtkutil.h (xg_event_is_for_menubar): Declare.
1057         * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
1059 2010-07-14  Eli Zaretskii  <eliz@gnu.org>
1061         * w32fns.c (x_set_foreground_color): Fix setting the cursor color
1062         when it's the same as the old foreground.  (Bug#6609)
1064 2010-07-10  Chong Yidong  <cyd@stupidchicken.com>
1066         * xfaces.c (realize_face): Garbage the frame if a face is removed
1067         (Bug#6593).
1069 2010-07-05  Andreas Schwab  <schwab@linux-m68k.org>
1071         * keyboard.c: Remove duplicate <setjmp.h>.
1072         (read_key_sequence): Remove volatile qualifiers.
1074 2010-07-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1076         * dispextern.h (FRINGE_HEIGHT_BITS): New define.
1077         (struct glyph_row): New members left_fringe_offset and
1078         right_fringe_offset.
1080         * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
1081         specially.
1082         * w32term.c (w32_draw_fringe_bitmap): Likewise.
1083         * nsterm.m (ns_draw_fringe_bitmap): Likewise.
1085         * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
1086         Take account of bitmap offset.
1087         (draw_window_fringes): Take account of window vscroll.
1088         (update_window_fringes): Likewise.  Extend top-aligned top indicator
1089         or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
1090         in one row.  Don't set redraw_fringe_bitmaps_p outside row comparison.
1091         Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
1093 2010-07-04  Juanma Barranquero  <lekktu@gmail.com>
1095         * w32fns.c (Qtooltip): Declare.
1096         Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
1098 2010-07-03  Jan Djärv  <jan.h.d@swipnet.se>
1100         * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
1101         grab on just Press (Bug#6499).
1103 2010-07-02  Chong Yidong  <cyd@stupidchicken.com>
1105         * frame.c (Qtooltip): New var.
1106         (delete_frame): Use it.  Fix faulty if statement.  Don't update
1107         mode line for tooltip frames.  Suggested by Martin Rudalics.
1109         * xfns.c (x_create_tip_frame):
1110         * w32fns.c (x_create_tip_frame): Use it.
1112 2010-06-30  Naohiro Aota  <naota@elisp.net>  (tiny change)
1114         * xftfont.c (xftfont_open): Check font width one by one also when
1115         spacing is dual.
1117         * ftfont.c (ftfont_open): Ditto.
1119 2010-06-26  Andreas Schwab  <schwab@linux-m68k.org>
1121         * alloc.c (Fmake_byte_code): Don't access undefined argument
1122         (Bug#6517).
1124 2010-06-25  Chong Yidong  <cyd@stupidchicken.com>
1126         * xdisp.c (next_element_from_image): Ensure that after-strings are
1127         read the next time we hit handle_stop (Bug#1336).
1129 2010-06-23  Andreas Schwab  <schwab@linux-m68k.org>
1131         * lread.c (read1): Signal error if #s is not followed by paren.
1133 2010-06-19  Chong Yidong  <cyd@stupidchicken.com>
1135         * image.c (free_image): Mark frame as garbaged (Bug#6426).
1137         * keymap.c (Fdefine_key): Doc fix (Bug#6460).
1139 2010-06-15  Glenn Morris  <rgm@gnu.org>
1141         * editfns.c (Fbyte_to_string): Pacify compiler.
1143 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1145         * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
1146         Check `object's type before accessing its guts.
1148 2010-06-08  Andreas Schwab  <schwab@linux-m68k.org>
1150         * minibuf.c (Fall_completions): Add more checks.
1152 2010-06-08  Juanma Barranquero  <lekktu@gmail.com>
1154         * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
1156 2010-06-03  Andreas Schwab  <schwab@linux-m68k.org>
1158         * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4
1159         address.  (Bug#6346)
1161 2010-06-03  Juanma Barranquero  <lekktu@gmail.com>
1163         * ccl.c (Fccl_program_p): Fix typo in docstring.
1165 2010-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1167         * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
1168         of bug#6305).
1170 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
1172         * xdisp.c (redisplay_window): After redisplay, check if point is
1173         still valid before setting it (Bug#6177).
1175 2010-05-20  enami tsugutomo  <tsugutomo.enami@jp.sony.com>
1177         * s/netbsd.h: If terminfo is found, use it in preference to
1178         termcap.  (Bug#6190)  [Backport from trunk]
1180 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1182         * keyboard.c (Vlast_command, Vkeyboard_translate_table)
1183         (Voverriding_terminal_local_map, Vsystem_key_alist)
1184         (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
1186 2010-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1188         * editfns.c (Fbyte_to_string): New function.
1190 2010-05-18  Chong Yidong  <cyd@stupidchicken.com>
1192         * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
1193         prevent stack overflow if number of arguments is too large
1194         (Bug#6214).
1196 2010-05-11  Eli Zaretskii  <eliz@gnu.org>
1198         * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(SRC)/w32.h.
1200         * w32fns.c: Include w32.h.
1201         (Fw32_shell_execute): Decode the error message before passing it
1202         to `error'.  (Bug#6126)
1204 2010-05-11  Karel Klic  <kklic@redhat.com>
1206         * ftfont.c: Fix incorrect parentheses of #if condition for
1207         definining M17N_FLT_USE_NEW_FEATURE.
1209 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
1211         * Version 23.2 released.
1213 2010-04-30  Andreas Schwab  <schwab@linux-m68k.org>
1215         * composite.c (autocmp_chars): Save point as marker before calling
1216         auto-composition-function (Bug#5984).
1218         * lisp.h (restore_point_unwind): Add prototype.
1220         * fileio.c (restore_point_unwind): Remove static attribute.
1222 2010-04-23  Kenichi Handa  <handa@m17n.org>
1224         * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
1225         new feature of libotf and m17n-flt.
1226         (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
1227         Call OTF_check_features even if no specific feature is given.
1228         (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
1229         (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
1230         that OUT is NULL.  Use OTF_drive_gsub_with_log and
1231         OTF_drive_gpos_with_log instead of OTF_drive_gsub and
1232         OTF_drive_gpos.
1233         (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
1234         (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
1235         Setup mflt_enable_new_feature and mflt_try_otf.
1237 2010-04-19  Juanma Barranquero  <lekktu@gmail.com>
1239         * dired.c (Ffile_attributes): Fix typo in docstring.
1241 2010-04-13  Adrian Robert  <Adrian.B.Robert@gmail.com>
1243         * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
1244         NSInteger (Bug#5811).
1246 2010-04-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1248         * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
1249         (PTY_OPEN): New defines.  Use openpty (Bug#726, Bug#5819).
1251 2010-04-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1253         * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
1255 2010-04-07  Jan Djärv  <jan.h.d@swipnet.se>
1257         * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
1258         FRAME_LINE_TO_PIXEL_Y.
1260         * xterm.c (x_set_window_size_1): Don't add border_width/height to
1261         pixelwidth/height.
1263 2010-04-05  Chong Yidong  <cyd@stupidchicken.com>
1265         * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
1266         terminal frames (Bug#5837).
1268 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
1270         * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
1271         * nsterm.h: Fix prototype.
1273 2010-03-31  Eli Zaretskii  <eliz@gnu.org>
1275         * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
1276         in this function.  (Bug#5703)
1278 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
1280         * nsterm.h: Fix last change.
1282 2010-03-30  Bernhard Herzog  <bh@intevation.de>  (tiny change)
1284         * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
1286 2010-03-30  Jan Djärv  <jan.h.d@swipnet.se>
1288         * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
1289         invisible (Bug#5766).
1291 2010-03-29  Adrian Robert  <adrian.b.robert@gmail.com>
1293         * xdisp.c (x_consider_frame_title, update_window_cursor): Remove
1294         HAVE_NS conditionals.
1295         (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
1297         * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
1298         filename for the title.
1299         (ns_set_doc_edited): Do nothing if the selected window is a
1300         minibuffer window.
1302         * nsterm.h: Add prototypes for ns_set_name_as_filename and
1303         ns_set_doc_edited.
1305         * nsterm.m: Remove unneeded prototype.
1307 2010-03-28  Glenn Morris  <rgm@gnu.org>
1309         * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
1310         in the DOC file.  (Bug#5336)
1312 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
1314         * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
1316 2010-03-20  Jan Djärv  <jan.h.d@swipnet.se>
1318         * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
1320         * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
1322         * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
1324 2010-03-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1326         * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
1327         XLoadQueryFont.
1329 2010-03-16  Kenichi Handa  <handa@m17n.org>
1331         * coding.c (decode_coding_ccl): Fix previous change for the
1332         multibyte case.
1333         (encode_coding_ccl): Don't setup ccl program here.  Fix for the
1334         case that the output buffer is fullfilled.
1335         (encode_coding): Setup ccl program here.
1337 2010-03-15  Andreas Politz  <politza@fh-trier.de>  (tiny change)
1339         * editfns.c (Fformat): Account for string precision when computing
1340         field width (Bug#5710).
1342 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1344         Make it possible to C-g in a tight bytecode loop again (bug#5680).
1345         * lisp.h (ELSE_PENDING_SIGNALS): New macro.
1346         (QUIT): Use it to consolidate code and remove redundancy.
1347         * bytecode.c (BYTE_CODE_QUIT): Use it as well.
1349         * regex.c (regex_compile): Setup gl_state as well.
1351         * syntax.c (skip_chars): Setup gl_state (bug#3823).
1352         (in_classes): Use CONSP before XCAR/XCDR.
1354 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
1356         * keymap.c (Fwhere_is_internal): Use Fequal to compare
1357         definitions, so that keyboard macros are correctly handled
1358         (Bug#5481).
1360 2010-03-02  Eli Zaretskii  <eliz@gnu.org>
1362         * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
1363         text that could be relocated inside the call to emacs_mule_char.
1364         (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
1365         (CODING_DECODE_CHAR): Add a comment describing its purpose.
1367 2010-03-02  Kenichi Handa  <handa@m17n.org>
1369         * character.c (parse_str_as_multibyte): Fix handling of the
1370         multibyte form of raw-bytes.
1371         (str_as_multibyte): Likewise.
1373         * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
1374         form of raw-bytes.
1376 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
1378         * charset.c (load_charset_map_from_file)
1379         (load_charset_map_from_vector): Zero out allocated
1380         charset_map_entries before using them.
1382 2010-02-27  Andreas Schwab  <schwab@linux-m68k.org>
1384         * w32uniscribe.c (uniscribe_check_otf): Fix length check.
1386 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
1388         * font.c (font_parse_fcname): Recognize "Book", "Condensed",
1389         "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
1391 2010-02-26  Kenichi Handa  <handa@m17n.org>
1393         * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
1395         * xdisp.c (reseat_to_string): Fix previous change.
1397 2010-02-26  David Reitter  <david.reitter@gmail.com>
1399         * nsfont.m (nsfont_draw): ns_antialias_text should be a
1400         Lisp_Object (Bug#4736).
1402 2010-02-25  Kenichi Handa  <handa@m17n.org>
1404         * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
1406 2010-02-24  Jan Djärv  <jan.h.d@swipnet.se>
1408         * xterm.c (XTflash): Move declarations before statements.
1410         * gtkutil.c (xg_get_gdk_display): Remove (unused).
1411         (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
1412         (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
1413         (xg_create_tool_bar): Remove unused variables.
1414         (x_wm_set_size_hint): Move declarations before statements.
1415         (xg_create_frame_widgets): Remove variable grav.
1417 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
1419         * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
1421 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1423         * term.c (fatal): Add a final \n if needed (bug#5596).
1425 2010-02-18  Chong Yidong  <cyd@stupidchicken.com>
1427         * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
1429 2010-02-18  Glenn Morris  <rgm@gnu.org>
1431         * callint.c (Finteractive): Doc fix.
1433 2010-02-18  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
1435         * coding.c (record_conversion_result):
1436         Handle CODING_RESULT_INSUFFICIENT_DST.
1437         (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
1438         memory allocation error.
1440 2010-02-17  Kenichi Handa  <handa@m17n.org>
1442         * coding.c (decode_coding_ccl): Don't setup ccl program here.
1443         Fix for the case that the output buffer is fullfilled.
1444         (decode_coding): Setup ccl program here.  Keep looping when the
1445         decoder stopped because the output buffer is
1446         fullfilled (bug#5534).
1448         * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
1450 2010-02-13  Jan Djärv  <jan.h.d@swipnet.se>
1452         * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
1453         bug #5571.
1454         (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
1455         overdrawn.
1457 2010-02-10  Jan Djärv  <jan.h.d@swipnet.se>
1459         * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
1460         doing_interact here.
1461         (ice_connection_closed): New function.
1462         (x_session_check_input, smc_die_CB, ice_io_error_handler)
1463         (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
1464         (x_session_check_input): Call IceCloseConnection if IceProcessMessages
1465         returns I/O error.
1466         (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
1467         bug #5512.
1469 2010-02-08  Francis Devereux  <francis@devrx.org>  (tiny change)
1471         * nsfont.m (nsfont_open): The system's value for the font descent
1472         is negative, so round it down to avoid clipping.
1474 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
1476         * charset.c (load_charset_map_from_file)
1477         (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
1478         instead of xmalloc (Bug#5526).  Suggested by Vivek Dasmohapatra.
1480 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
1482         * charset.c (load_charset_map_from_file): Allocate large
1483         charset_map_entries structure on the heap rather than the stack.
1484         (Bug#5526).
1486 2010-01-31  Kenichi Handa  <handa@m17n.org>
1488         * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
1489         size in NAME is invalid, return -1 (Bug#5396).
1491 2010-01-31  Chong Yidong  <cyd@stupidchicken.com>
1493         * nsterm.m (ns_defined_color): Block input.  Suggested by Mike
1494         <deactivated@gmail.com> (Bug#3605).
1496 2010-01-31  David De La Harpe Golden  <david@harpegolden.net>
1498         * fileio.c (Frename_file): Correctly rename symlinks to
1499         directories (Bug#5496).
1501 2010-01-31  Filipe Cabecinhas  <filcab@gmail.com>  (tiny change)
1503         * nsterm.m (ns_ring_bell): Handle visible bell like X.
1505 2010-01-30  Andreas Schwab  <schwab@linux-m68k.org>
1507         * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
1509 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
1511         * frame.c (DEFAULT_ROWS): Change default to 35.
1513         * xfns.c (x_default_font_parameter): Change default XFT font to
1514         monospace-10 (Bug#3643).
1516 2010-01-29  Eli Zaretskii  <eliz@gnu.org>
1518         * w32inevt.c (key_event): Remove unnecessary comparison of
1519         event->uChar.AsciiChar with 128.
1521 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
1523         * fileio.c (Frename_file): Fix last change (Bug#5487).
1525         * m/mips.h: Remove DATA_START.  Suggested by Dan Nicolaescu.
1527         * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
1529 2010-01-28  Jan Djärv  <jan.h.d@swipnet.se>
1531         * xfns.c (Fx_create_frame): Remove window size matching code from
1532         2010-01-15.
1533         (x_get_current_desktop, x_get_desktop_workarea): Remove.
1535 2010-01-27  Jason Rumney  <jasonr@gnu.org>
1537         * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
1538         (key_event): Use unicode for characters 128 and higher (Bug#4567).
1540 2010-01-27  Kenichi Handa  <handa@m17n.org>
1542         * regex.c (analyse_first): Fix setting of fastmap for unibyte
1543         pattern string (Bug#4209).
1545 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
1547         * fileio.c (Frename_file): Call copy-directory and
1548         delete-directory for directories, in order to handle cross-device
1549         renaming (Bug#3353).
1551 2010-01-25  Jan Djärv  <jan.h.d@swipnet.se>
1553         * xfns.c (Fx_create_frame): If frame height is too big, try
1554         sizes 24 and 10.  Bug #3643.
1556 2010-01-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1558         Try and fix bug#788, hopefully for real this time.
1559         * keymap.c (shadow_lookup): Add `remap' arg.
1560         (describe_map, describe_vector): Update calls to shadow_lookup.
1561         (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
1562         `remapped' so this flag is applicable to `sequence'.  Be careful to
1563         perform remapping during shadow_lookup check of remapped_sequences.
1565 2010-01-24  Eric Bélanger  <snowmaniscool@gmail.com>  (tiny change)
1567         * image.c (png_load): Use png_sig_cmp instead of the obsolete
1568         png_check_sig, which has been removed in libpng 1.4.
1570 2010-01-23  Giorgos Keramidas  <keramida@ceid.upatras.gr>  (tiny change)
1572         * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
1573         lacks this header file).
1575 2010-01-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1577         * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
1578         as in Emacs 22.
1580 2010-01-22  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1582         * lisp.h (make_pure_string): String pointer arg now points to const.
1584         * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
1585         args now point to const.
1587 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
1589         * lread.c (Fload): Don't treat files without .elc extension as
1590         byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
1591         them.  (bug#5303)
1593 2010-01-20  Kenichi Handa  <handa@m17n.org>
1595         * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
1596         treat the source as actual byte sequence.
1598 2010-01-19  Alan Mackenzie  <acm@muc.de>
1600         Fix spurious before-change-functions invocation from (insert ?\n).
1601         * textprop.c (set_text_properties): Rename parameter
1602         `signal_after_change_p' to `coherent_change_p', and make the
1603         invocation of `modify_region' conditional on it.
1605 2010-01-19  Jan Djärv  <jan.h.d@swipnet.se>
1607         * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
1608         for debug purpose.
1609         (syms_of_xsettings): Declare xft-settings.
1611 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1613         * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
1615 2010-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1617         * xterm.c (event_handler_gdk): Block input (Bug#5037).
1619 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
1621         * emacs.c (standard_args): Adjust arg priorities to reflect how
1622         they are processed in startup.el.
1624 2010-01-16  Andreas Schwab  <schwab@linux-m68k.org>
1626         * Makefile.in (lisp, shortlisp): Update.
1628 2010-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1630         * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
1631         code, link the new kboard into all_kboard before running Lisp code,
1632         and protect the new terminal with GCPRO (Bug#5365).
1633         (x_term_init): Remove unused var `atom'.
1634         (x_delete_display, x_delete_terminal): Remove unused var `i'.
1636 2010-01-15  Jan Djärv  <jan.h.d@swipnet.se>
1638         * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
1639         (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
1640         to find out usable size of the desktop.  Don't make frames larger than
1641         this.  Bug #3643.
1643 2010-01-15  Kenichi Handa  <handa@m17n.org>
1645         * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS.  Callers changed.
1647 2010-01-15  Chong Yidong  <cyd@stupidchicken.com>
1649         * nsterm.m (Qnone): Define.
1651         * nsfns.m (Qnone): Move definition to nsterm.m.
1653 2010-01-14  Kenichi Handa  <handa@m17n.org>
1655         * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
1656         systems.
1658 2010-01-14  Kenichi Handa  <handa@m17n.org>
1660         Make auto-composition work on all buffers even if they are
1661         fundamental mode.
1663         * composite.c (Vauto_composition_mode): New variable.
1664         (composition_compute_stop_pos): Check Vauto_composition_mode
1665         instead of Vauto_composition_function.
1666         (composition_adjust_point, Ffind_composition_internal): Likewise.
1667         (syms_of_composite): Declare Lisp variable
1668         "auto-composition-mode" here.
1670 2010-01-13  Chong Yidong  <cyd@stupidchicken.com>
1672         * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
1673         during call to vendor-specific-keysyms (Bug#5365).
1675 2010-01-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1677         * keyboard.c (input_available_signal) [SYNC_INPUT]:
1678         Call SIGNAL_THREAD_CHECK (Bug#5333).
1680         * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
1681         Call SIGNAL_THREAD_CHECK.
1683 2010-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1685         Try to fix bug#5314.  This is probably not the final word, tho.
1686         * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
1687         recent-auto-save-p as a side-effect.
1688         * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
1689         * buffer.c (Fkill_buffer, reset_buffer):
1690         * editfns.c (Fsubst_char_in_region):
1691         * fileio.c (Finsert_file_contents, Fdo_auto_save)
1692         (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
1694 2010-01-13  Kenichi Handa  <handa@m17n.org>
1696         Display buffer name, etc. in mode line by composing correctly.
1698         * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
1699         STRING is not nil.
1700         (display_mode_element): Adjust for the change of
1701         decode_mode_spec and display_line.
1702         (decode_mode_spec): Change arg MULTIBYTE to STRING.
1703         (display_string): Handle the case that STRING is non-null and
1704         LISP_STRING is not nil.
1706         * xterm.c (x_draw_composite_glyph_string_foreground):
1707         Pay attention to s->face->overstrike.
1709         * composite.c (composition_reseat_it): Don't check PT if STRING is
1710         non nil.
1712 2010-01-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1714         * keyboard.c (read_char): Don't apply previous change when current
1715         buffer is unchanged by command execution.
1717 2010-01-12  Jan Djärv  <jan.h.d@swipnet.se>
1719         * keyboard.c (read_char): Return after executing from special map.
1721 2010-01-12  Glenn Morris  <rgm@gnu.org>
1723         * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
1724         bug-gnu-emacs rather than emacs-pretest-bug.
1726 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
1728         * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
1729         initializing the Lisp variables that depend on them.
1731 2010-01-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1733         * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
1734         Clear areas that will not be updated after change of menu bar lines.
1735         Clear the menu bar window's current matrix when the window gets empty.
1737 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
1739         * intervals.h, textprop.c (extend_property_ranges): Return value
1740         and args changed.  Discard properties that begin at or after the
1741         new end (Bug#5306).
1743         * editfns.c (Fformat): Caller changed.
1745         * nsterm.m (ns_set_default_prefs): Delete function.
1746         (syms_of_nsterm): Initialize ns_command_modifier,
1747         ns_control_modifier, ns_function_modifier, ns_antialias_text, and
1748         ns_antialias_threshold here, not in ns_term_init (Bug#4113).
1750         * xdisp.c (pos_visible_p): Check for invisible text at the correct
1751         position (Bug#4040).
1753 2010-01-09  Eli Zaretskii  <eliz@gnu.org>
1755         * editfns.c (Ffloat_time): Doc fix.
1757 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
1759         * xfns.c (Fx_create_frame): Don't create frame larger than display
1760         by default bug#3643.
1762 2010-01-09  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1764         * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
1765         (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
1766         windows above internal border.
1768         * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
1769         (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
1770         windows above internal border.
1772         * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
1773         tool bar windows specially.
1775         * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
1777         * xterm.c (x_after_update_window_line): Don't treat tool bar windows
1778         specially.
1779         (XTflash): Take account of menu bar height.
1781         * w32term.c (x_after_update_window_line): Don't treat tool bar windows
1782         specially.
1784 2010-01-08  Jan Djärv  <jan.h.d@swipnet.se>
1786         * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
1787         also be true before we can return early (bug #5339).
1789 2010-01-06  David Reitter  <david.reitter@gmail.com>
1791         * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
1792         (Fns_display_usable_bounds): Rewrite, computing bounds properly
1793         (Bug#3233).
1795 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
1797         * font.c (font_open_entity): Enable chache and call cached_font_ok
1798         for the driver if defined.
1799         (QCuser_spec): New symbol.
1800         (font_spec_from_name): Save name as user-spec.
1801         (font_load_for_lface): Keep user-spec instead of name.
1802         (font_open_by_name): Save name as user-spec.
1803         (syms_of_font): Initialize QCuser_spec.
1804         (font_clear_prop): Clear name if it exists in font (bug#5157).
1806         * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
1807         (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
1808         (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
1810         * font.h (struct font_driver): Add cached_font_ok.
1812         * xterm.c (x_clear_frame): Queue draw for scroll bars.
1814 2010-01-05  Jan Djärv  <jan.h.d@swipnet.se>
1816         * xterm.c (x_new_font): Move code for setting rows/cols before
1817         resizing ...
1818         (x_set_window_size): ... to here.  Bug #2568.
1820         * gtkutil.c (xg_clear_under_internal_border): New function.
1821         (xg_frame_resized, xg_frame_set_char_size):
1822         Call xg_clear_under_internal_border.
1823         (xg_update_scrollbar_pos): Clear under old scroll bar position.
1825 2010-01-05  Chong Yidong  <cyd@stupidchicken.com>
1827         * keyboard.c (read_key_sequence): Catch keyboard switch after
1828         making a new tty frame (Bug#5095).
1830 2010-01-05  Kenichi Handa  <handa@m17n.org>
1832         * fontset.c (fontset_find_font): Fix getting the frame pointer.
1834 2010-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1836         * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
1837         Lisp_Object, preferring to convert a lisp_Object to a void* instead.
1838         (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
1840 2010-01-03  Michael Albinus  <michael.albinus@gmx.de>
1842         * dbusbind.c (xd_add_watch): Improve debug message.
1843         (xd_remove_watch): Improve debug message.  If DATA is the session
1844         bus, unset D-Bus session environment.
1845         (Fdbus_init_bus): Pass the bus as argument to
1846         dbus_connection_set_watch_functions.  (Bug#5283)
1848 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1850         * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
1852         * lread.c (syms_of_lread): Make it clearer that these are the
1853         names of loaded files (Bug#5068).
1855         * eval.c (run_hook_with_args): Handle the case where the global
1856         value has the obsolete single-function form (Bug#5026).
1858 2009-12-27  Chong Yidong  <cyd@stupidchicken.com>
1860         * minibuf.c (Fall_completions): Minor optimization.
1862 2009-12-26  Eli Zaretskii  <eliz@gnu.org>
1864         * .gdbinit (pgx): Fix display of composite glyphs.
1865         Display cmp.from and cmp.to as well.
1866         (pitx): Fix last change.
1868 2009-12-25  Kenichi Handa  <handa@m17n.org>
1870         * composite.h (composition_adjust_point): Update prototype.
1872         * composite.c (composition_reseat_it): Don't make a composition
1873         spanning over point.
1874         (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
1875         composable characters.
1876         (composition_adjust_point): New arg NEW_PT.  Callers changed.
1878         * keyboard.c (command_loop_1): Force redisplay if the last point
1879         was within a composition.
1880         (adjust_point_for_property): Don't adjust point for automatic
1881         composition when called after buffer modification.
1883 2009-12-19  Eli Zaretskii  <eliz@gnu.org>
1885         * .gdbinit (pitx): Don't use enum names, use their values.
1886         Remove reference to non-existing value GET_FROM_COMPOSITION.
1887         (pgx): Don't use enum names, use their values.
1888         (pitmethod): New helper command.
1889         (pitx): Use it to display iteration method.
1890         (pgrowit): New command.
1892         * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
1894         Update dependencies in Makefile.in.
1896         * Makefile.in (alloc.o): Depend on termhooks.h.
1897         (atimer.o): Depend on blockinput.h.
1898         (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
1899         and frame.h.
1900         (callint.o): Depend on systime.h, coding.h, and composite.h.
1901         (callproc.o): Depend on buffer.h.
1902         (casefiddle.o): Don't depend on charset.h.
1903         (casetab.o): Depend on character.h.
1904         (ccl.o): Depend on composite.h.
1905         (chartab.o): Depend on ccl.h.
1906         (cm.o): Depend on dispextern.h.
1907         (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
1908         (coding.o): Don't depend on $(INTERVALS_H).
1909         (composite.o): Don't depend on dispextern.h explicitly (it's in
1910         $(INTERVALS_H)).  Depend on ccl.h.
1911         (data.o): Depend on systime.h, coding.h, composite.h,
1912         dispextern.h, font.h, and ccl.h.
1913         (dired.o): Depend on composite.h.
1914         (dispnew.o): Depend on coding.h.  Don't depend explicitly on
1915         composite.h (it's in $(INTERVALS_H)).
1916         (doc.o): Depend on systime.h, coding.h, and composite.h.
1917         (editfns.o): Don't depend explicitly on dispextern.h.
1918         (emacs.o): Depend on frame.h and coding.h.
1919         (eval.o): Depend on coding.h, composite.h, and xterm.h.
1920         (fileio.o): Depend on frame.h and commands.h.  Don't depend
1921         explicitly on dispextern.h.
1922         (filelock.o): Don't depend on epaths.h and charset.h.  Depend on
1923         composite.h.
1924         (fns.o): Don't depend on termhooks.h.
1925         (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
1926         (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
1927         coding.h, $(INTERVALS_H), window.h, xterm.h.
1928         (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
1929         (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
1930         (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
1931         fontset.h, ccl.h, and ftfont.h.
1932         (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
1933         (gtkutil.o): Depend on dispextern.h and composite.h.
1934         (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
1935         termhooks.h, and ccl.h.
1936         (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
1937         (intervals.o): Depend on systime.h and coding.h.
1938         (keyboard.o): Depend on composite.h and coding.h.
1939         (keymap.o): Depend on coding.h and frame.h.
1940         (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
1941         (macros.o): Depend on systime.h, coding.h, and composite.h.
1942         (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
1943         and atimer.h.
1944         (minibuf.o): Depend on systime.h and coding.h.  Don't depend on
1945         dispextern.h explicitly.
1946         (print.o): Depend on termhooks.h, coding.h, and ccl.h.
1947         Don't depend explicitly on dispextern.h and composite.h.
1948         (process.o): Depend on character.h, xgselect.h, and sysselect.h.
1949         (regex.o): Don't depend on charset.h.
1950         (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
1951         (search.o): Don't depend explicitly on composite.h.
1952         (sound.o): Depend on atimer.h and systime.h.
1953         (syntax.o): Don't depend explicitly on composite.h.
1954         (sysdep.o): Depend on coding.h and composite.h.
1955         (term.o): Depend on xterm.h and buffer.h.
1956         (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
1957         (textprop.o): Don't depend on dispextern.h explicitly.
1958         (undo.o): Depend on dispextern.h.
1959         (window.o): Depend on coding.h and termhooks.h.  Don't depend on
1960         dispextern.h and composite.h explicitly.
1961         (xdisp.o): Depend on ccl.h.
1962         (xfaces.o): Depend on coding.h and ccl.h.
1963         (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
1964         (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
1965         (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
1966         ftfont.h.
1967         (xgselect.o): New dependency.
1968         (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
1969         (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
1970         (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
1971         coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
1972         (xsmfns.o): Depend on frame.h and dispextern.h.
1973         (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
1974         sysselect.h.
1976 2009-12-19  Andreas Schwab  <schwab@linux-m68k.org>
1978         * font.c (Fclear_font_cache): Pass correct cache argument to
1979         font_clear_cache.
1981 2009-12-16  Andreas Schwab  <schwab@linux-m68k.org>
1983         * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
1984         twice.
1986 2009-12-15  Chong Yidong  <cyd@stupidchicken.com>
1988         * xdisp.c (decode_mode_spec): Inhibit garbage collection when
1989         calling file-remote-p.  Reported by Jim Meyering.
1991 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
1993         * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
1994         avoid compiler warnings.  (Bug #5217)
1996 2009-12-14  Kenichi Handa  <handa@m17n.org>
1998         * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
1999         in 8-bit encoding.
2001 2009-12-13  Pat Thoyts  <patthoyts@users.sourceforge.net>  (tiny change)
2003         * xfns.c (x_create_tip_frame): Set the extended window manager hint for
2004         tooltip windows.
2006 2009-12-13  Jan Djärv  <jan.h.d@swipnet.se>
2008         * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
2009         Xatom_net_window_type.
2011         * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
2012         Xatom_net_window_type.
2014         * xterm.c (my_log_handler): New function.
2015         (x_term_init): Set my_log_handler as log handler during gtk_init
2016         so we can filter out buggy messages.  (Bug #5120).
2018         * xterm.c (xg_scroll_callback): Parameter list changed,
2019         use parameter GtkScrollType to determine scroll/line/page.
2020         Only allow dragging if a button < 4 is grabbed (bug #5177).
2021         (xg_end_scroll_callback): New function.
2022         (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
2023         xg_create_scroll_bar.
2025         * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
2026         (scroll_end_callback): Remove.
2027         (xg_create_scroll_bar): Add parameter end_callback, bind it to
2028         button-release-event.  Replace value-changed event with change-value,
2029         bug #5177,
2030         (xg_event_is_for_scrollbar): Only return true if button is less than 4,
2031         bug #5177.
2033         * gtkutil.h (XG_LAST_SB_DATA): Remove.
2034         (xg_create_scroll_bar): Add GCallback end_callback.
2036         * xftfont.c (QClcdfilter): New variable.
2037         (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
2038         (syms_of_xftfont): Initialize QClcdfilter.
2040 2009-12-12  Jan Djärv  <jan.h.d@swipnet.se>
2042         * xsettings.c (struct xsettings): Add member seen.
2043         (parse_xft_settings): Update member seen with what we have read.
2044         Return non-zero if Xft-settings have been parsed, 0 otherwise.
2045         (apply_xft_settings): Only update Xft settings with what member seen
2046         indicates as new.
2048 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
2050         * dispextern.h (struct text_pos): Use EMACS_INT;
2051         (struct glyph): Use EMACS_INT for charpos.
2052         (struct it): Use EMACS_INT for stop_charpos, end_charpos,
2053         region_beg_charpos, region_end_charpos,
2054         redisplay_end_trigger_charpos, and also for
2055         iterator_stack_entry.end_charpos and
2056         iterator_stack_entry.stop_charpos.
2058 2009-12-12  Jan Djärv  <jan.h.d@swipnet.se>
2060         * gtkutil.c (scroll_end_callback): New function (bug #5177).
2061         (xg_create_scroll_bar): Call scroll_end_callback on button release
2062         event (bug #5177).
2063         (xg_event_is_for_scrollbar): != replaced with ==.
2065 2009-12-12  Kenichi Handa  <handa@m17n.org>
2067         * ftfont.c (struct ftfont_info): New member matrix.
2068         (ftfont_open): Setup xftfont_info->matrix.
2069         (MFLTFontFT): New member matrix.
2070         (FLOOR, CEIL, ROUND): New macros.
2071         (ftfont_get_metrics): Handle matrix transformation.
2072         (ftfont_shape_by_flt): New arg matrix.  Callers changed.
2074         * xftfont.c (struct xftfont_info): New member matrix.
2075         (xftfont_open): Setup xftfont_info->matrix.
2077 2009-12-10  Kenichi Handa  <handa@m17n.org>
2079         * xdisp.c (append_space_for_newline): Consider face-remapping.
2081 2009-12-09  Andreas Schwab  <schwab@linux-m68k.org>
2083         * xsettings.c: Include "keyboard.h".
2085         * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
2087         Fix implicit function declarations.
2088         * cmds.c: Include "frame.h".
2089         * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
2090         * frame.h: Move declaration of delete_frame outside of
2091         HAVE_WINDOW_SYSTEM.
2093 2009-12-09  Ken Brown  <kbrown@cornell.edu>  (tiny change)
2095         * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
2097         * emacs.c (main): Set the G_SLICE environment variable for Cygwin
2098         GTK builds.
2100 2009-12-07  Andreas Schwab  <schwab@linux-m68k.org>
2102         * unexelf.c (unexec): Don't search for .data twice.
2104 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
2106         * xdisp.c (push_display_prop): Don't set avoid_cursor_p.  Return 0
2107         if push failed.
2108         (handle_line_prefix): Set avoid_cursor_p here.  Check return value
2109         of push_display_prop (Bug#5000).
2111         * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
2112         value of font_list_entities (Bug#5085).
2114 2009-12-04  Juanma Barranquero  <lekktu@gmail.com>
2116         Fix `string-to-number' to deal consistently with integers and floats.
2117         * lread.c (isfloat_string): New argument ignore_trailing to accept all
2118         trailing characters, not just whitespace.
2119         (read1): Pass new arg 0 to keep old behavior.
2120         * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
2121         trailing chars, as it is already done for integers.  Doc fixes.
2122         * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
2124 2009-12-04  Eli Zaretskii  <eliz@gnu.org>
2126         * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
2127         Delete unused enumeration value.
2129 2009-12-03  Eli Zaretskii  <eliz@gnu.org>
2131         * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
2133 2009-12-03  Daniel Hackney  <dan@haxney.org>  (tiny change)
2135         * process.c (Fmake_network_process): Fix up the tests for
2136         "connectionless socket", so they DTRT for seqpacket sockets as well.
2138 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2140         * process.c (Qseqpacket): New symbol.
2141         (HAVE_SEQPACKET): New macro.
2142         (Fmake_network_process): Accept new :type `seqpacket'.
2143         (init_process): Add `seqpacket' feature when applicable.
2144         (syms_of_process): Initialize Qseqpacket.
2146 2009-12-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2148         * font.c (font_load_for_lface, font_open_by_name): Don't store name
2149         if entity is Qnil.
2151 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2153         * print.c (print_preprocess): Preprocess the key_and_value table of
2154         hashtables, even tho they're "hidden" (bug#5082).
2156 2009-11-29  Jan Djärv  <jan.h.d@swipnet.se>
2158         * frame.c (frame_make_pointer_invisible)
2159         (frame_make_pointer_visible): Declare f before statements.
2161 2009-11-28  Eli Zaretskii  <eliz@gnu.org>
2163         * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
2164         omitted dependencies on lisp.h.
2166 2009-11-27  Jan Djärv  <jan.h.d@swipnet.se>
2168         * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
2169         is NULL.
2171         * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
2173         * frame.c (frame_make_pointer_invisible)
2174         (frame_make_pointer_visible): Just return if there isn't any selected
2175         frame.
2177         * search.c (simple_search): Remove warning by making *p const.
2179 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
2181         * xdisp.c (power_letter): Remove duplicate const.
2183 2009-11-25  Jan Djärv  <jan.h.d@swipnet.se>
2185         * term.c (delete_tty): Remove check for last terminal (bug#4970).
2187         * xsettings.c: Revert changes from 2009-11-23.  Just use Xft
2188         defaults (bug #5025).
2190 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2192         * insdel.c (adjust_markers_for_delete): Move it in the
2193         right direction!  (bug#4803)
2195 2009-11-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2197         * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
2199         * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
2201 2009-11-24  Glenn Morris  <rgm@gnu.org>
2203         * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
2205 2009-11-23  Jan Djärv  <jan.h.d@swipnet.se>
2207         * Makefile.in: Must create deps for ecrt0.o in its rule.
2209         * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
2210         because that is what Gtk+ font dialog understands.
2212         * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
2213         of Fcopy_sequence.
2214         (font_open_by_name): Put name given into QCname for font-object returned.
2216         * frame.c (x_set_font): Save original font name as frame parameter
2217         font-parameter.
2219         * xsettings.c (set_default_xft_settings): New function.
2220         (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
2221         is found.
2223 2009-11-22  Andreas Schwab  <schwab@linux-m68k.org>
2225         * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
2226         searching backwards through multibyte buffer.
2228 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
2230         * xterm.c: #include xgselect.h.
2231         (x_initialize): Call xgselect_initialize.
2233         * xsettings.c (something_changedCB): C++ comments => C comments.
2234         (init_gconf): Do not deal with any GLib file descriptors, xg_select
2235         does that now.
2237         * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
2238         (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
2239         (scroll_bar_button_cb): Remove.
2240         (create_menus): C++ comments => C comments.  Don't bind grab-notify
2241         event.
2242         (xg_create_scroll_bar): Don't bind button-press-event and
2243         button-release-event.
2245         * process.c: Include xgselect.h if defined (USE_GTK) ||
2246         defined (HAVE_GCONF).
2247         (wait_reading_process_output): Call xg_select for the same condition.
2249         * xgselect.c (xg_select): New function to better integrate with
2250         GLib/Gtk event handling.  Needed if GConf daemon dies/restarts.
2252         * xgselect.h: New file, declare xg_select, xgselect_initialize.
2254         * Makefile.in (XOBJ): Add xgselect.o.
2256 2009-11-21  Andreas Schwab  <schwab@linux-m68k.org>
2258         * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
2259         Remove ignored second argument.  All callers changed.
2260         * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
2261         (RE_STRING_CHAR_AND_LENGTH): Likewise.
2262         * xdisp.c (string_char_and_length): Likewise.
2264 2009-11-21  Dan Nicolaescu  <dann@ics.uci.edu>
2266         * xterm.c (x_new_font):
2267         * print.c (print_object):
2268         * cmds.c (Fself_insert_command): Move declarations before statements.
2270 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
2272         * s/cygwin.h: Remove unneeded linker flags.
2274 2009-11-20  Jan Djärv  <jan.h.d@swipnet.se>
2276         * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
2278         * xsettings.h: Declare xsettings_get_system_font.
2280         * xsettings.c (xsettings_get_system_font): New function.
2281         (init_gconf): No use initiating gconf unless we have Xft also.
2282         (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
2283         HAVE_GCONF.
2285         * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
2286         add a blank entry so it doesn't collapse into nothing.
2288 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2290         * lread.c (Funintern): Comment out last change.
2292 2009-11-19  Richard Stallman  <rms@gnu.org>
2294         * lread.c (Funintern): Error if symbol is t or nil.
2296 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2298         * insdel.c (make_gap_larger): Don't make as many assumptions about the
2299         representation of Lisp integers.
2300         Reported by MJ Chan <mjchan.inbox@gmail.com>.
2302 2009-11-17  Andreas Schwab  <schwab@linux-m68k.org>
2304         * lisp.h: Remove declaration of Ffont_get_system_font.
2305         * xfns.c: Move include of "xsettings.h".
2306         * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
2308 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
2310         * xsettings.c (something_changedCB, Ffont_get_system_font):
2311         Check use_system_font.
2312         (syms_of_xsettings): DEFVAR font-use-system-font.
2314 2009-11-17  Andreas Schwab  <schwab@linux-m68k.org>
2316         * xfns.c (x_default_font_parameter): Remove dead assignment.
2318         * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
2320 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
2322         * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
2323         not have FC_LCD_*.  #define them if not there.
2325         * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
2327         * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
2329         * xterm.c (handle_one_xevent): Call xft_settings_event for
2330         ClientMessage, PropertyNotify and DestroyNotify.
2331         (x_term_init): If we have XFT, get DPI from Xft.dpi.
2332         Call xsettings_initialize.
2334         * xftfont.c (xftfont_fix_match): New function.
2335         (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
2336         Call xftfont_fix_match after XftFontMatch.
2338         * xfont.c (xfont_driver): Initialize all members.
2340         * xfns.c (x_default_font_parameter):
2341         Try font from Ffont_get_system_font.
2342         Do not get font from x_default_parameter if we got one from
2343         Ffont_get_system_font.
2344         (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
2346         * w32font.c (w32font_driver): Initialize all members.
2348         * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
2350         * lisp.h: Declare syms_of_xsettings.
2352         * keyboard.c (kbd_buffer_get_event, make_lispy_event):
2353         Handle CONFIG_CHANGED_EVENT.
2355         * ftfont.c (ftfont_filter_properties): New function.
2357         * frame.c (x_set_font): Remove unused variable lval.
2359         * font.h (struct font_driver): Add filter_properties.
2361         * font.c (font_put_extra): Don't return if val is nil, it means
2362         boolean option is off.
2363         (font_parse_fcname): Collect all extra properties in extra_props
2364         and call filter_properties for all drivers with extra_props and
2365         font as parameter.
2366         (font_open_entity): Do not use cache, it does not pick up new
2367         fontconfig settings like hinting.
2368         (font_load_for_lface): If spec had a name in it, store it in entity.
2370         * emacs.c (main): Call syms_of_xsettings.
2372         * config.in: HAVE_GCONF is new.
2374         * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
2375         xsettings.o is new.
2377 2009-11-17  Kenichi Handa  <handa@m17n.org>
2379         * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
2380         back to the default font in case that no suitable font is found.
2382 2009-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2384         * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
2385         Suggested by Chad Brown <yandros@mit.edu>.
2386         (push_menu_item): Use MENU_ITEMS_ITEM_* names.
2388 2009-11-16  Jan Djärv  <jan.h.d@swipnet.se>
2390         * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
2392 2009-11-14  Andreas Schwab  <schwab@linux-m68k.org>
2394         * Makefile.in: Ignore errors from mkdir when creating deps directory.
2396 2009-11-14  Jan Djärv  <jan.h.d@swipnet.se>
2398         * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
2399         has a parent.
2401         * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
2402         dependency files in deps/.  Include those files into Makefile.
2404         * config.in: Generated (AUTO_DEPEND).
2406 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
2408         * dbusbind.c (Vdbus_registered_objects_table): Rename from
2409         Vdbus_registered_functions_table, because it contains also
2410         properties.  Fix docstring.
2411         (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
2413 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2415         * alloc.c (mark_object): Don't reprocess marked strings.
2416         Check vector's markbit earlier.  Adjust calls to mark_vectorlike.
2417         (mark_vectorlike, mark_char_table): Assume the object is unmarked.
2419 2009-11-13  Kenichi Handa  <handa@m17n.org>
2421         * category.c (word_boundary_p): Adjust for the change of the
2422         semantics of Vword_combining_categories.
2423         (Vword_combining_categories): Describe the slight change of the
2424         semantics.
2426 2009-11-13  Eli Zaretskii  <eliz@gnu.org>
2428         * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
2430         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
2432 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2434         * xdisp.c (syms_of_xdisp): Fix typo in last change.
2436 2009-11-12  Juanma Barranquero  <lekktu@gmail.com>
2438         * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
2440 2009-11-11  David Reitter  <david.reitter@gmail.com>
2442         * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
2443         variables to fix 2009-11-09 change.
2445 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
2447         * process.c (ifflag_def): Make flag_sym constant.
2448         (Fnetwork_interface_info): Use a constant pointer.
2449         (ifflag_table):
2450         * xfns.c (cursor_bits):
2451         * xdisp.c (power_letter):
2452         * termcap.c (speeds, esctab):
2453         * sysdep.c (baud_convert):
2454         * keyboard.c (lispy_accent_codes, modifier_names):
2455         * image.c (xbm_format, xpm_format, pbm_format, png_format)
2456         (jpeg_format, tiff_format, gif_format, svg_format)
2457         (interlace_start, interlace_increment, gs_format):
2458         * gtkutil.c (separator_names):
2459         * fringe.c (swap_nibble):
2460         * fns.c (base64_value_to_char, base64_char_to_value):
2461         * fileio.c (make_temp_name_tbl):
2462         * coding.c (suffixes): Make constant.
2464         * frame.c (make_initial_frame):
2465         * buffer.c (init_buffer_once): Use make_pure_c_string instead of
2466         build_string.
2467         * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
2469         * s/freebsd.h:
2470         * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
2472         * Makefile.in: Add dependencies to lisp.h.  Remove dependencies
2473         for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
2475         * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
2476         * xterm.c (syms_of_xterm):
2477         * xfaces.c (syms_of_xfaces):
2478         * xdisp.c (syms_of_xdisp):
2479         * lread.c (syms_of_lread):
2480         * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
2481         build_string.
2483         * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
2485 2009-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2487         * fns.c (Fplist_get): Merge the active and the commented out code.
2489 2009-11-10  Jan Djärv  <jan.h.d@swipnet.se>
2491         * keyboard.h: Declare timer_check.
2493         * keyboard.c (timer_check_2): New function that does what the old
2494         timer_check did.
2495         (timer_check): Call timer_check_2 until -1 or a non-zero time is
2496         returned, i.e. don't return -1 with timers pending.
2498         * process.c: Remove extern declaration of timer_check.
2500         * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
2501         even if timer_check returned -1.
2503         * gtkutil.c (xg_dialog_response_cb): Data is now a struct
2504         xg_dialog_data.
2505         (pop_down_dialog): Destroy widget (if any), cancel timer and unref
2506         the event loop.
2507         (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
2508         (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
2509         Destroy the dialog after xg_dialog_run.
2511 2009-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2513         * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
2515 2009-11-10  Jan Djärv  <jan.h.d@swipnet.se>
2517         * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
2519 2009-11-09  Juanma Barranquero  <lekktu@gmail.com>
2521         * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
2523 2009-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2525         * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
2526         w32menu.c, and nsmenu.m.
2527         Simplify the obsolete case where position is nil.
2528         (cleanup_popup_menu): New function, moved from nsmenu.m.
2529         (struct skp): Remove slot `notreal'.
2530         (single_keymap_panes, keymap_panes): Remove arg `notreal' and
2531         adjust callers.
2532         (single_menu_item): Adjust call to parse_menu_item.
2533         (syms_of_menu): Defsubr x-popup-menu.
2534         * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
2535         (keymap_panes): Don't export any more.
2536         (mouse_position_for_popup, w32_menu_show, ns_menu_show)
2537         (xmenu_show): Declare.
2538         * keyboard.c (parse_menu_item): Remove arg `notreal'.
2539         (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
2540         * keyboard.h (parse_menu_item): Update declaration.
2541         * xmenu.c (Fx_popup_menu): Remove.
2542         (syms_of_xmenu): Don't defsubr x-popup-menu.
2543         * w32menu.c (Fx_popup_menu): Remove.
2544         (syms_of_w32menu): Don't defsubr x-popup-menu.
2545         * nsmenu.m (cleanup_popup_menu): Remove.
2546         (ns_menu_show): Rename from ns_popup_menu and remove all the code
2547         moved to menu.c's Fx_popup_menu.
2548         (Fx_popup_menu): Remove.
2549         (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
2550         menu_items (it's done in menu.c already).
2552 2009-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2554         * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
2555         Use `tem' less.  Make sure KEYEQ holds a string or nil (bug#4879).
2557 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
2559         * xmenu.c (Fx_popup_menu): Extract event timestamp.  Pass it to
2560         xmenu_show.  Hide any tooltip before opening a menu.
2561         (xmenu_show): New arg.  Pass it to create_and_show_popup_menu.
2562         (create_and_show_popup_menu): New arg.  Pass it to gtk_menu_popup.
2564 2009-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2566         Let integers use up 2 tags to give them one extra bit and thus double
2567         their range.
2568         * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
2569         (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
2570         New macros.
2571         (enum Lisp_Type): Use them.  Give explicit values.
2572         (Lisp_Type_Limit): Remove.
2573         (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
2574         (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
2575         Pay attention to USE_2_TAGS_FOR_INTS.
2576         (INTEGERP): Use LISP_INT_TAG_P.
2577         * fns.c (internal_equal): Simplify the default case.
2578         (sxhash): Use case_Lisp_Int.
2579         * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
2580         any more.
2581         (Ftype_of): Use case_Lisp_Int.
2582         (store_symval_forwarding): Take into account the fact that Ints can
2583         now have more than one tag.
2584         * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
2585         buffer_slot_type_mismatch):
2586         * xfaces.c (face_attr_equal_p):
2587         * print.c (print_object):
2588         * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
2589         Use case_Lisp_Int.
2591 2009-11-06  Eli Zaretskii  <eliz@gnu.org>
2593         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
2595         * alloc.c (make_pure_c_string): Fix last change to avoid compiler
2596         warning.
2598 2009-11-06  Jan Djärv  <jan.h.d@swipnet.se>
2600         * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
2602         * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
2604         * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
2605         ButtonPressRelease and MotionNotify (bug#4870).
2607 2009-11-06  Dan Nicolaescu  <dann@ics.uci.edu>
2609         * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
2611         * xterm.c (syms_of_xterm):
2612         * xselect.c (syms_of_xselect):
2613         * xmenu.c (syms_of_xmenu):
2614         * xfns.c (syms_of_xfns):
2615         * xfaces.c (syms_of_xfaces):
2616         * xdisp.c (syms_of_xdisp):
2617         * window.c (syms_of_window):
2618         * w32fns.c (syms_of_w32fns):
2619         * undo.c (syms_of_undo):
2620         * textprop.c (syms_of_textprop):
2621         * terminal.c (syms_of_terminal):
2622         * syntax.c (syms_of_syntax):
2623         * sound.c (syms_of_sound):
2624         * search.c (syms_of_search):
2625         * print.c (syms_of_print):
2626         * minibuf.c (syms_of_minibuf):
2627         * macros.c (syms_of_macros):
2628         * keymap.c (syms_of_keymap, initial_define_key)
2629         (initial_define_lispy_key):
2630         * keyboard.c (syms_of_keyboard):
2631         * insdel.c (syms_of_insdel):
2632         * image.c (syms_of_image):
2633         * fringe.c (syms_of_fringe):
2634         * frame.c (syms_of_frame):
2635         * fontset.c (syms_of_fontset):
2636         * fns.c (syms_of_fns):
2637         * fns.c (syms_of_fns):
2638         * fileio.c (syms_of_fileio):
2639         * fileio.c (syms_of_fileio):
2640         * eval.c (syms_of_eval):
2641         * doc.c (syms_of_doc):
2642         * dispnew.c (syms_of_display):
2643         * dired.c (syms_of_dired):
2644         * dbusbind.c (syms_of_dbusbind):
2645         * data.c (syms_of_data):
2646         * composite.c (syms_of_composite):
2647         * coding.c (syms_of_coding):
2648         * cmds.c (syms_of_cmds):
2649         * charset.c (define_charset_internal, syms_of_character):
2650         * ccl.c (syms_of_ccl):
2651         * category.c (syms_of_category, init_category_once):
2652         * casetab.c (syms_of_casetab):
2653         * casefiddle.c (syms_of_casefiddle):
2654         * callint.c (syms_of_callint):
2655         * bytecode.c (syms_of_bytecode):
2656         * buffer.c (keys_of_buffer, syms_of_buffer):
2657         * alloc.c (syms_of_alloc):
2658         * process.c (syms_of_process, init_process):
2659         * lread.c (syms_of_lread, init_obarray):
2660         * font.c (build_style_table):
2661         * emacs.c (syms_of_emacs, main): Replace calls to intern with
2662         intern_c_string, calls to make_pure_string with
2663         make_pure_c_string.  Use pure_cons instead of Fcons.
2665         * process.c (socket_options): Make it const.
2666         (set_socket_option, init_process): Use a const pointer.
2668         * lread.c (intern_c_string): New function.
2669         (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
2670         (defvar_int): Uset it.  Make the name const char*.
2672         * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
2673         (defvar_int): Update prototypes.
2674         (DEFUN, EXFUN): Support for prototypes is now required.
2675         (intern_c_string): New prototype.
2676         (struct Lisp_Subr): Make symbol_name constant.
2678         * font.c (struct table_entry): Remove unused member.  Make NAMES
2679         constant.
2680         (weight_table, slant_table, width_table): Make constant.
2682         * emacs.c (struct standard_args): Make name and longname constant.
2684         * character.h (DEFSYM): Use intern_c_string.
2686 2009-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2688         * alloc.c (make_pure_c_string): New function.
2690         * eval.c (Fautoload): Purecopy all arguments.
2692 2009-11-05  Kenichi Handa  <handa@m17n.org>
2694         * fileio.c (Finsert_file_contents): Be sure set coding-system of
2695         the buffer in case of replace.
2697 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
2699         * puresize.h (BASE_PURESIZE): Increase to 1620000.
2701 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2703         * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
2704         when applicable (bug#4851).
2706         * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
2707         (P_): Support for prototypes is now required.
2709 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
2711         * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
2712         (Bug#4827).
2714 2009-10-30  Eli Zaretskii  <eliz@gnu.org>
2716         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
2718 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
2720         * puresize.h (BASE_PURESIZE): Increase to 1470000.
2722         * lread.c (Fload): Purecopy the file name when building
2723         Vpreloaded_file_list.
2725 2009-10-29  Jason Rumney  <jasonr@wanchan.jasonrumney.net>
2727         * w32fns.c (syms_of_w32fns): Change default value of
2728         w32-scroll-lock-modifier to nil.  (Bug#2827)
2730 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
2732         * minibuf.c (Fall_completions): Fix typos in docstring.
2734 2009-10-26  Andreas Schwab  <schwab@redhat.com>
2736         * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
2738 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
2740         * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
2741         For delta < 0, skip check that only makes sense when the mini-window
2742         is going to be enlarged.  (Bug#4534)
2744 2009-10-25  Chong Yidong  <cyd@stupidchicken.com>
2746         * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
2747         string in menu maps (Bug#4471).
2749 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
2751         * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
2752         FRAME_NS_VIEW on terminal frames (Bug#4765).
2754 2009-10-24  Andreas Schwab  <schwab@linux-m68k.org>
2756         * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
2757         DBUS_TYPE_UINTnn separately to get proper sign extension.
2759         * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
2760         can properly handle unsigned types.
2761         (make_uid, make_gid): Remove.
2763         * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
2764         types again.
2766         * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
2767         (system_process_attributes): Likewise.
2769 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
2771         * keymap.c (Fmake_sparse_keymap): Purecopy the name.
2773         * eval.c (Fautoload): Purecopy the filename.  Simplify.
2775         * category.c (Fdefine_category): Purecopy docstring.
2777 2009-10-23  Andreas Schwab  <schwab@linux-m68k.org>
2779         * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
2781         * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
2783 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
2785         * window.c (Fwindow_edges, Fwindow_pixel_edges)
2786         (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
2787         (Bug#4775).
2789 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2791         * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
2792         (init_fileio_once):
2793         * lisp.h (init_fileio_once): Remove.
2794         * emacs.c (main): Don't call init_fileio_once.
2796 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
2798         * puresize.h (BASE_PURESIZE): Increase to 1430000.
2800 2009-10-21  Andreas Schwab  <schwab@linux-m68k.org>
2802         * doprnt.c (doprnt): Fix overflow check.
2804 2009-10-21  Jan Djärv  <jan.h.d@swipnet.se>
2806         * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
2808         * xterm.h (x_wait_for_event): Declare it.
2810         * xterm.c (pending_event_wait): New variable.
2811         (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
2812         see pending_event_wait.eventtype.
2813         (handle_one_xevent): Don't change gravity when parent changes.
2814         (x_new_font): Call change_frame_size with new rows/columns before we
2815         try to resize the frame.
2816         (x_wait_for_event): New function.
2817         (x_set_window_size_1): Don't change gravity unless change_gravity
2818         is set.
2819         Call XResizeWindow with FRAME_OUTER_WINDOW.  If we are visible,
2820         don't change frame size, instead wait for the ConfigureNotify.
2821         (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
2822         (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
2823         (x_initialize): Initialize pending_event_wait.
2825         * xmenu.c (set_frame_menubar): Add internal border width to menu bar
2826         size.
2828         * widget.c (EmacsFrameSetValues): Add comment.
2829         (EmacsFrameSetCharSize): Just call x_set_window_size.
2831         * gtkutil.c (xg_frame_set_char_size): Flush events and call
2832         x_wait_for_event.
2833         (flush_and_sync): Remove again.
2834         (xg_get_font_name): Suggest monospace if no previous font is known.
2836 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2838         * character.c (char_resolve_modifier_mask): Don't resolve meta to the
2839         8th bit, since that only made sense in the ASCII world (bug#4751).
2841 2009-10-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2843         * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
2844         processing pending events when event is filtered for input method.
2845         (Bug#3681)
2847 2009-10-20  Juanma Barranquero  <lekktu@gmail.com>
2849         * fns.c: Add #endif accidentally removed in previous change.
2851 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
2853         * fns.c: Remove code for unsupported system: MAC_OS.
2854         * image.c: Likewise.  Include setjmp.h.
2856 2009-10-19  Jan Djärv  <jan.h.d@swipnet.se>
2858         * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
2859         pixel -1 (bug #4742).
2861 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
2863         * process.c (create_pty): Remove conditionals for no longer
2864         supported systems: UNIPLUS and RTU.
2866         * xterm.c:
2867         * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
2869         * alloc.c: Do not define struct catchtag.
2870         * eval.c: Move struct catchtag definition ...
2871         * lisp.h: ... here.
2873         * image.c: Move png.h #include earlier to avoid warnings.
2875         * xterm.c:
2876         * xsmfns.c:
2877         * xselect.c:
2878         * xrdb.c:
2879         * xmenu.c:
2880         * xftfont.c:
2881         * xfont.c:
2882         * xfns.c:
2883         * xfaces.c:
2884         * xdisp.c:
2885         * window.c:
2886         * widget.c:
2887         * w32xfns.c:
2888         * w32uniscribe.c:
2889         * w32term.c:
2890         * w32select.c:
2891         * w32reg.c:
2892         * w32proc.c:
2893         * w32menu.c:
2894         * w32inevt.c:
2895         * w32heap.c:
2896         * w32font.c:
2897         * w32fns.c:
2898         * w32console.c:
2899         * w32.c:
2900         * w16select.c:
2901         * vm-limit.c:
2902         * unexsol.c:
2903         * unexec.c:
2904         * unexcw.c:
2905         * unexaix.c:
2906         * undo.c:
2907         * tparam.c:
2908         * textprop.c:
2909         * terminfo.c:
2910         * terminal.c:
2911         * termcap.c:
2912         * term.c:
2913         * syntax.c:
2914         * sound.c:
2915         * sheap.c:
2916         * search.c:
2917         * scroll.c:
2918         * region-cache.c:
2919         * regex.c:
2920         * ralloc.c:
2921         * process.c:
2922         * print.c:
2923         * nsterm.m:
2924         * nsselect.m:
2925         * nsmenu.m:
2926         * nsimage.m:
2927         * nsfont.m:
2928         * nsfns.m:
2929         * msdos.c:
2930         * minibuf.c:
2931         * menu.c:
2932         * marker.c:
2933         * macros.c:
2934         * keymap.c:
2935         * keyboard.c:
2936         * intervals.c:
2937         * insdel.c:
2938         * indent.c:
2939         * gtkutil.c:
2940         * ftxfont.c:
2941         * ftfont.c:
2942         * fringe.c:
2943         * frame.c:
2944         * fontset.c:
2945         * font.c:
2946         * fns.c:
2947         * floatfns.c:
2948         * filelock.c:
2949         * fileio.c:
2950         * emacs.c:
2951         * editfns.c:
2952         * dosfns.c:
2953         * doprnt.c:
2954         * doc.c:
2955         * dispnew.c:
2956         * dired.c:
2957         * dbusbind.c:
2958         * data.c:
2959         * composite.c:
2960         * coding.c:
2961         * cmds.c:
2962         * cm.c:
2963         * chartab.c:
2964         * charset.c:
2965         * character.c:
2966         * ccl.c:
2967         * category.c:
2968         * casetab.c:
2969         * casefiddle.c:
2970         * callproc.c:
2971         * callint.c:
2972         * bytecode.c:
2973         * buffer.c:
2974         * atimer.c: Include setjmp.h.  (Bug#4643)
2976 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2978         Remove leftover table unibyte_to_multibyte_table.
2979         * character.c (unibyte_to_multibyte_table): Remove.
2980         (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
2981         * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
2982         * character.h (UNIBYTE_TO_CHAR): New macro.
2983         (MAKE_CHAR_MULTIBYTE): Use it.
2984         (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
2985         * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
2986         (message_dolog, set_message_1):
2987         * search.c (Freplace_match):
2988         * editfns.c (Fcompare_buffer_substrings):
2989         * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
2990         (concat):
2991         * insdel.c (copy_text, count_size_as_multibyte):
2992         Use ASCII_CHAR_P and BYTE8_TO_CHAR.
2993         * term.c (produce_glyphs):
2994         * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
2995         * regex.c (RE_CHAR_TO_MULTIBYTE):
2996         * cmds.c (internal_self_insert):
2997         * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
2999         * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
3001 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
3003         * puresize.h (BASE_PURESIZE): Increase to 1310000.
3005 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
3007         * buffer.c (Fbuffer_name): Doc fix.  (Bug#4728)
3009 2009-10-15  Adrian Robert  <Adrian.B.Robert@gmail.com>
3011         * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
3012         still needed under Tiger.
3014         * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
3016         * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
3017         __Apple__.
3019         * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
3021 2009-10-15  Kenichi Handa  <handa@m17n.org>
3023         * print.c (print_object): Escape a symbol like "2E10" too.
3025 2009-10-11  Adrian Robert  <Adrian.B.Robert@gmail.com>
3027         Cleanups and changes for 64-bit compile under Snow Leopard.
3028         Based on suggestions by Erik Charlebois.
3030         * nsfns.m (xw-color-values): Use CGFloat where appropriate.
3032         * nsfont.m (ns_char_width): Replace deprecated call.
3033         (ns_findfonts, nsfont_list_family): Use long format in printf, and
3034         cast argument.
3035         (nsfont_open): Use ns_char_width() everywhere.
3036         (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
3038         * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
3040         * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
3041         where appropriate.
3043         * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
3044         where appropriate.
3045         (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
3046         Use stringWithUTF8String.
3047         (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
3049         * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
3050         Add formal protocol mention to inheritance.
3051         [NS_HAVE_NSINTEGER]: Drop conditional and contents.
3053         * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
3054         Fix printf format.
3055         (ns_query_color): Use CGFloat where appropriate.
3056         (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
3057         (EmacsScroller-mouseDown:): Use long format in printf, and cast
3058         argument.
3060         * config.in (NS_HAVE_NSINTEGER): Drop.
3062         * dbusbind.c (dbus-method-return-internal)
3063         (dbus-method-error-internal): Use long format in printf, and cast
3064         argument.
3066         * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
3067         in printf, and cast argument.
3069         * process.c (list_processes_1): Use long format in printf, and
3070         cast argument.
3072 2009-10-11  Glenn Morris  <rgm@gnu.org>
3074         * frame.c (Fframe_pixel_height): Doc fix.  (Bug#4535)
3076 2009-10-08  Jan Djärv  <jan.h.d@swipnet.se>
3078         * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
3079         menu bar with a small width so it doesn't enlarge the frame.
3081 2009-10-08  Juanma Barranquero  <lekktu@gmail.com>
3083         * fontset.c (Fset_fontset_font): Fix typos in error messages.
3085 2009-10-06  Glenn Morris  <rgm@gnu.org>
3087         * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
3088         SOME_MACHINE_LISP (this enters indirectly via DOC).
3090 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
3092         * dired.c (Ffile_attributes): Doc fix.  (Bug#4638)
3094 2009-10-04  Eli Zaretskii  <eliz@gnu.org>
3096         * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
3097         Doc fix.
3099 2009-10-03  Martin Rudalics  <rudalics@gmx.at>
3101         * window.c (Fdelete_window): Check WINDOW argument.  (Bug#4618)
3103 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
3105         * lisp.h (Qdelete_directory_internal): Remove, because it is not
3106         used anymore outside fileio.c.
3108         * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
3110 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
3112         * lisp.h (Qdelete_directory_internal):
3113         Declare, instead of Qdelete_directory.
3115         * w32fns.c (Fsystem_move_file_to_trash): Use it.
3117 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3119         * eval.c (Fcalled_interactively_p): Add `kind' argument.
3121 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
3123         * fileio.c (Fdelete_directory_internal): Rename from
3124         Fdelete_directory.  It is not a command anymore.  It has no file
3125         name handler.
3127 2009-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3129         * xdisp.c (get_next_display_element): Use an enum in last change.
3131 2009-09-28  Kenichi Handa  <handa@m17n.org>
3133         * xdisp.c (get_next_display_element): Pay attention to
3134         unibyte_display_via_language_environment in handling
3135         Vnobreak_char_display.
3137 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
3139         * nsterm.h (ns_app_name): New extern variable.
3141         * nsterm.m (ns_app_name): New variable.
3142         (ns_term_init): Set and use it.
3143         (ns_term_shutdown): Use it.
3145         * nsmenu.m (ns_update_menubar): Use ns_app_name.  Sync with xmenu.c.
3146         (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
3148         * nsfns.m (ns_set_name_iconic, ns_set_name)
3149         (ns_set_name_as_filename, x-create-frame, ns-get-resource)
3150         (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
3152         * menu.c (find_and_return_menu_selection) [HAVE_NS]:
3153         Remove double-casting in client_data comparison.
3155 2009-09-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3157         * keyboard.c (make_lispy_event): Remember last wheel direction.
3158         (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
3160 2009-09-26  Glenn Morris  <rgm@gnu.org>
3162         * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
3163         internal.elc.  Add term/pc-win.elc.
3164         (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
3165         term/x-win.elc.
3166         (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
3167         term/w32-win.elc.
3168         (NS_SUPPORT): New.
3169         (lisp): Add NS_SUPPORT.
3170         (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
3172 2009-09-25  David Reitter  <david.reitter@gmail.com>
3174         * nsmenu.m (EmacsMenu-clear): Recognize application menu
3175         on Mac OS X 10.6+ (bug#4513).
3177 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
3179         * frame.c (xrdb_get_resource): Return nil for empty string resources;
3180         some parts of Emacs code (like font selection) don't grok them.
3181         See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
3183 2009-09-24  Andreas Schwab  <schwab@redhat.com>
3185         * coding.c (decode_coding_iso_2022): Fix operator precedence.
3187 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
3189         * dired.c (Fdirectory_files): Fix typo in docstring.
3191 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
3193         * nsterm.m (EV_TIMESTAMP, x_set_window_size)
3194         (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
3195         (EmacsScroller-setPosition:portion:whole:): Remove -display call
3196         under GNUstep.
3197         (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
3199         * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
3200         glyph advancement.
3202 2009-09-22  Adrian Robert  <Adrian.B.Robert@gmail.com>
3204         * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
3205         (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
3207         * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
3208         deleted (bug #4492).
3210         * nsfont.m (Vns_reg_to_script): New lisp variable.
3211         (syms_of_nsfont): Declare it.
3212         (ns_registry_to_script): New function.
3213         (ns_get_req_script): Call it.
3214         (ns_findfonts): Don't give up on non-unicode registry.
3216         * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
3218 2009-09-20  Tom Tromey  <tromey@redhat.com>
3220         * eval.c (find_handler_clause): Make stack-trace-on-error work in
3221         batch mode (bug#4228).
3223 2009-09-18  Rob Christie  <robchristie@gmail.com>  (tiny change)
3225         * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
3226         carefully.  (Bug #4339)
3228 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
3230         * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
3232 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
3234         * emacs.c (inhibit_x_resources): Update doc string for NS.
3235         (main) [HAVE_NS]: Don't process --no-init-file option.  Remove
3236         legacy code for -NXHost.  Fix error printf in daemon case.
3238         * nsterm.h (ns_no_defaults): Remove.
3240         * nsterm.m (ns_no_defaults): Remove.
3241         (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
3242         (ns_use_qd_smoothing): Remove legacy variable.
3243         (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
3244         don't update the NSWindow itself.
3245         (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
3246         state detection and store user rect ourselves.  (Bug #3581)
3248         * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
3249         ns_use_qd_smoothing.
3251         * nsfns.m (x_get_string_resource): Ape just-previous changes to other
3252         platform versions.  Drop support for emacs-20-style face specs.
3253         (x-close-connection): Drop PSFlush() under OS X.
3254         (x-focus-frame): Activate the app first.  (Bug #4180)
3256 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
3258         * emacs.c (inhibit_x_resources): New variable.
3259         (main) [HAVE_NS]: Don't process --quick command line option.
3260         (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
3262         * lisp.h (inhibit_x_resources): Declare it extern.
3264         * w32reg.c (x_get_string_resource):
3265         * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
3267 2009-09-17  Eli Zaretskii  <eliz@gnu.org>
3269         * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
3270         Add lisp/term/internal.elc.
3272 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3274         * frame.c (x_get_resource_string): Re-add for non-toolkit builds
3275         (bug#4461).
3277 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
3279         * puresize.h (BASE_PURESIZE): Increase to 1290000.
3281         * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
3282         (OBJECTS_MACHINE): Remove, unused.
3284 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3286         * frame.c (x_get_resource_string): Remove unused.
3288 2009-09-15  Jan Djärv  <jan.h.d@swipnet.se>
3290         * xterm.c (x_new_font): Call change_frame_size before calling
3291         x_set_window_size, in case frame size won't change.
3293         * frame.c (x_set_font): Remove dead code.
3295 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3297         * lread.c (Fload): Also run do-after-load-evaluation while dumping.
3299 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3301         * lread.c (Fload): Don't output a message after loading an obsolete
3302         package any more (done in Lisp now).
3304 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
3306         * fns.c (syms_of_fns): Doc fix (Bug#4227).
3308 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3310         * keymap.c (Fwhere_is_internal): Use nconc2.
3312 2009-09-11  Alan Mackenzie  <acm@muc.de>
3314         * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
3315         batch mode.
3317 2009-09-11  Andreas Schwab  <schwab@linux-m68k.org>
3319         * xdisp.c (display_mode_element): Detect cycles.
3321 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3323         * keymap.c (where_is_internal): Don't erroneously return nil right after
3324         filling the cache.
3325         (where_is_internal_1): Fix up typo.
3327 2009-09-11  Glenn Morris  <rgm@gnu.org>
3329         * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
3330         share a common doc-string.
3332 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3334         * keymap.c (get_keymap): Return the actual keymap symbol rather than
3335         t for autoloaded keymaps when autoloading is not allowed (bug#4393).
3337         * keymap.c (QCadvertised_binding): New constant.
3338         (syms_of_keymap): Initialize it.
3339         (Fwhere_is_internal): Try and use bindings from :advertised-binding
3340         if applicable.
3342 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3344         * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
3345         (parse_menu_item): Streamline since bindings are recomputed all the
3346         time anyway.  Don't bother checking Vdefine_key_rebound_commands any
3347         more and don't support lmenu's menu-alias any more either.
3349         * keymap.c (where_is_internal_data): Make noindirect a boolean.
3350         (where_is_internal): Strip it down to only traverse the keymaps.
3351         Move the cache handling from Fwhere_is_internal to here.
3352         (Fwhere_is_internal): Move the handling of remapping and the choice of
3353         the best binding from where_is_internal to here.
3354         Unify the cached/noncached paths, so remapping is also handled
3355         correctly when the cache is used, and so the cache can be used to
3356         speed up remap-handling when applicable.
3357         Give preference to non-remapped bindings.
3358         * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
3359         non-remapped bindings.
3360         * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
3361         command remapping.
3363         * xdisp.c (display_mode_element): Move list length limit from 50 to
3364         5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
3366 2009-09-09  Adrian Robert  <Adrian.B.Robert@gmail.com>
3368         * nsfont.m (ns_get_family): Don't force first letter to uppercase.
3370 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3372         * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
3373         (Bug#4334)
3375         * keymap.c (where_is_internal): Filter out shadowed remappings.
3376         Assume that where_is_internal returns unshadowed bindings to simplify
3377         the code and get rid of the gotos.  Use ASIZE.
3379 2009-09-04  Jan Djärv  <jan.h.d@swipnet.se>
3381         * xterm.c (x_focus_changed): If we get a focusout and pointer
3382         is invisible, make it visible.
3384         * xterm.h: Remove condition for declaration of
3385         x_*_window_to_frame.
3387 2009-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3389         * dispnew.c (Fsend_string_to_terminal): Make it work again on the
3390         initial terminal as well.
3392 2009-09-02  Jan Djärv  <jan.h.d@swipnet.se>
3394         * xterm.h: Rename x_non_menubar_window_to_frame to
3395         x_menubar_window_to_frame.
3397         * xterm.c: Remove declarations also in xterm.h
3398         (XTmouse_position): Do not return valid positions
3399         for clicks in the menubar and the toolbar for Gtk+.
3401         * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
3402         if the widget for the event has the same top level as a frame,
3403         return the frame.
3404         (x_menubar_window_to_frame): Detect menu bar even with Gtk+
3405         internal windows, bug #4122.
3406         (x_non_menubar_window_to_frame): Remove.
3408 2009-09-02  Glenn Morris  <rgm@gnu.org>
3410         * buffer.c (default-major-mode): Move most of the doc from here...
3411         (major-mode): ... to here.
3413 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
3415         * process.c (wait_reading_process_output): Keep the descriptor
3416         when pty is used by a non-child process, e.g., in I/O buffer of
3417         GDB this allows inferior to be restarted.
3419 2009-08-29  Eli Zaretskii  <eliz@gnu.org>
3421         * xdisp.c (redisplay_internal): Remove redundant test and collapse
3422         both branches into one.
3424 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3426         * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
3427         (main): Use enable-multibyte-characters rather than
3428         default-enable-multibyte-characters.  Output a warning message when
3429         running a unibyte session.
3431 2009-08-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3433         * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
3434         LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
3435         (copy_data_segment): Also copy __program_vars section.
3436         (copy_dyld_info) [LC_DYLD_INFO]: New function.
3437         (dump_it) [LC_DYLD_INFO]: Use it.
3439         * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
3441 2009-08-28  Eli Zaretskii  <eliz@gnu.org>
3443         * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
3444         $(SRC)/buildobj.h.
3445         (buildobj.h): Renamed from $(SRC)/buildobj.h.
3446         (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
3447         $(SRC)/buildobj.h.
3448         (clean): Add buildobj.h.
3450 2009-08-28  Teodor Zlatanov  <tzz@lifelogs.com>
3452         * print.c (print_object): Set escapeflag to 1 when printing
3453         hashtable keys and values.
3455 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3457         * lread.c (read_integer): Use doubles (and potentially return a float
3458         number) as we do in string-to-number.
3459         (read1): Use strtol to read integers, signal errors on strtol's
3460         overflow and use floats if strtol's output is too large for
3461         Elisp integers.
3463 2009-08-27  Eli Zaretskii  <eliz@gnu.org>
3465         * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
3466         (make-buildobj-SH): Fix last change.
3467         (SRC): Move to before where it's first used.
3469 2009-08-27  Kenichi Handa  <handa@m17n.org>
3471         * process.c (send_process): Use encode_coding_object instead of
3472         encode_coding_string to perform eol-conversion even if the string
3473         is unibyte.
3475         * coding.c (encode_coding_utf_16): Fix checking of a Unicode
3476         character.
3478         * cmds.c (Fself_insert_command): Avoid unnecessay
3479         unibyte->multibyte conversion.  (Bug#4240)  (Bug#4037)
3481 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
3483         * callproc.c (Fcall_process): Remove always true #if.
3485         * lisp.h: Replace #if 0 code for checking with text pointing to
3486         the --enable-checking configure flag.
3488         * emacs.c (main): Mention the --enable-profiling configure flag
3489         instead of using CFLAGS.
3491 2009-08-26  Ken Raeburn  <raeburn@raeburn.org>
3493         * Makefile.in (buildobj.h): New target.
3494         (doc.o): Depend on it.
3495         (temacs${EXEEXT}): Don't generate buildobj.lst.
3496         (mostlyclean): Delete buildobj.h, not buildobj.lst.
3497         * makefile.w32-in ($(SRC)/buildobj.h): New target.
3498         ($(BLD)/doc.$(O)): Depend on it.
3499         (make-buildobj-CMD, make-buildobj-SH): New targets.  (Syntax help
3500         provided by Eli Zaretskii.)
3501         ($(TEMACS)): Don't generate buildobj.lst.
3502         * doc.c: Include buildobj.h.
3503         (buildobj): New static variable.
3504         (Fsnarf_documentation): Use it, instead of opening and reading
3505         buildobj.lst.
3507 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
3509         * dbusbind.c (Fdbus_call_method)
3510         (Fdbus_call_method_asynchronously): Use English numeric format for
3511         timeout values in doc string.
3513 2009-08-25  Kenichi Handa  <handa@m17n.org>
3515         * alloc.c (mark_char_table): New function.
3516         (mark_object): Use mark_char_table for a char-table.
3518         * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
3519         (CHAR_TABLE_REF): Use it.
3521 2009-08-23  Ken Raeburn  <raeburn@raeburn.org>
3523         * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
3524         before invoking the newly build emacs to check for load-path
3525         shadowing.
3527 2009-08-22  Glenn Morris  <rgm@gnu.org>
3529         * Makefile.in (bootstrap_exe): New variable.
3530         (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
3531         Use ${bootstrap_exe}.
3533 2009-08-22  Eli Zaretskii  <eliz@gnu.org>
3535         * coding.h (encode_coding_string): Don't encode unibyte strings.
3536         (Bug#4047)
3538 2009-08-22  Michael Albinus  <michael.albinus@gmx.de>
3540         * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
3542         * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove.  It was
3543         intended as hotfix only.
3544         (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
3546 2009-08-21  Adrian Robert  <Adrian.B.Robert@gmail.com>
3548         * nsterm.m (ns_get_color): Update documentation properly for last
3549         change, and clean up loose ends in the code left by it.  Fix
3550         longstanding bug with 16-bit hex parsing, and add support for
3551         yet another X11 format (rgb:r/g/b) for compatibility.
3552         * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
3553         timer_check() to avoid crash on Leopard/PPC.  Bug #2154.
3555 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3557         * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
3559 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
3561         * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
3562         (xd_add_watch, xd_remove_watch): Use it.  Print debug messages.
3563         (xd_initialize, xd_pending_messages): Check, whether
3564         $DBUS_SESSION_BUS_ADDRESS is set.
3566 2009-08-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3568         * nsfns.m (Fxw_color_values): Return 3-element list.  Doc fix.
3570         * nsterm.m (ns_get_color): Remove incompatible color formats again.
3572 2009-08-20  Glenn Morris  <rgm@gnu.org>
3574         * emacs.c (system-type): Doc fix.
3576 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3578         * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
3579         enough for the most common situations.  Avoid SET_SYMBOL_VALUE.
3581 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
3583         * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
3584         New functions.
3585         (xd_initialize): Revert change from 2009-08-16.
3587 2009-08-18  Kenichi Handa  <handa@m17n.org>
3589         * fontset.c (Ffontset_font): If a nil element is found in a
3590         font-group vector, return nil.
3592 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
3594         * process.c (status_notify): Don't perform redisplay.
3595         (Fdelete_process, list_processes_1, process_send_signal):
3596         Expliticly perform redisplay.
3597         (wait_reading_process_output): Always check process status, but
3598         don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
3600 2009-08-17  Ken Raeburn  <raeburn@raeburn.org>
3602         * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
3603         (XFLOAT_INIT): New macro for storing a float value.
3604         * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
3605         * fns.c (sxhash): Copy out the value of a float in order to
3606         examine its bytes.
3607         * dbusbind.c (xd_append_arg): Likewise.
3609         * emacs.c (main): Don't call syms_of_data twice.
3611 2009-08-16  Michael Albinus  <michael.albinus@gmx.de>
3613         * dbusbind.c (xd_initialize): Add connection file descriptor to
3614         input_wait_mask, in order to let select() detect, whether a new
3615         message has been arrived.
3616         (Fdbus_call_method_asynchronously): Allow nil HANDLER.
3618 2009-08-15  Michael Albinus  <michael.albinus@gmx.de>
3620         * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
3621         New functions.
3623         * lisp.h (xd_pending_messages): Declare.
3625         * keyboard.c (readable_events): Call xd_pending_messages.
3627 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
3629         * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
3631         * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
3633         * buffer.c (set_buffer_internal_1)
3634         (swap_out_buffer_local_variables): Check for unbound local
3635         variables (Bug#4138).
3637 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
3639         * process.c (create_pty): Fix last change.
3641 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
3643         * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
3644         (xbm_load_image): Caller changed.
3645         (xbm_file_p): Avoid signalling an image_error (Bug#4107).
3647 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
3649         * process.c (create_pty): New function.
3650         (Fstart_process): Use it to allow Emacs to just associate a pty
3651         with the buffer.  See associated change in gdb-mi.el.
3652         (list_processes_1): Deal with no program name.
3653         (start_process_unwind): Use pid == -2 to mean no process.
3655 2009-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3657         * cmds.c (nonundocount): New global variable.
3658         (keys_of_cmds): Initialize it.
3659         (Fself_insert_command): Use it to combine upto 20 sequential chars
3660         into a single undo entry, just like the Qself_insert_command code in
3661         keyboard.c does.
3662         Call frame_make_pointer_invisible, also like the Qself_insert_command
3663         code in keyboard.c does.
3664         * keyboard.c (command_loop_1): Use the new global nonundocount rather
3665         than its own local replacement for it.
3667 2009-08-10  Ken Raeburn  <raeburn@raeburn.org>
3669         * fns.c (concat): Don't re-set string length to its current value.
3671         * coding.h (decode_coding_string, encode_coding_string):
3672         Use SBYTES macro.
3674         * doprnt.c (doprnt_lisp): Delete unused function.
3675         (doprnt): Merge with doprnt1, discarding lispstrings code.
3676         * lisp.h (doprnt_lisp): Don't declare.
3678 2009-08-07  Juri Linkov  <juri@jurta.org>
3680         * puresize.h (BASE_PURESIZE): Increase to 1270000.
3682 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
3684         * print.c (syms_of_print): Undo previous change.
3686 2009-08-05  Teodor Zlatanov  <tzz@lifelogs.com>
3688         * lread.c (read1, syms_of_lread): Read hashtables back from the
3689         readable format.
3691         * print.c (print_preprocess, print_object): Print hashtables fully
3692         and readably.
3693         (syms_of_print): Provide 'hashtable-print-readable.
3695 2009-08-02  Adrian Robert  <Adrian.B.Robert@gmail.com>
3697         * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
3698         no family set.
3699         (nsfont_open): Handle case when entity has no family.
3701 2009-07-29  Adrian Robert  <Adrian.B.Robert@gmail.com>
3703         * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
3704         element, not a list, for match case.
3706 2009-07-28  Kenichi Handa  <handa@m17n.org>
3708         * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
3709         rigidly.
3711         * xfont.c (xfont_list_pattern): Don't ignore the return value of
3712         font_parse_xlfd.  Check font properties more rigidly.
3714 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
3716         * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
3717         bsd-common.h.
3719 2009-07-27  Kenichi Handa  <handa@m17n.org>
3721         * xfaces.c (face_with_height): Call font_clear_prop.
3723 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
3725         * dispnew.c (init_display): Use Qx, Qw32, and Qns.
3727         * xterm.c (x_term_init): Use Qx.
3729         * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
3731         * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
3732         (ns_get_color): Revert 2009-07-16 change.
3734 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
3736         * lread.c (syms_of_lread) <force_load_messages>: New variable.
3737         (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
3739 2009-07-25  Ken Raeburn  <raeburn@raeburn.org>
3741         * coding.h (decode_coding_string, encode_coding_string):
3742         Use SCHARS macro.
3744         * lread.c: Rewrite 2009-07-21 changes.
3745         (load_depth): Delete.
3746         (Qload_in_progress): New variable.
3747         (load_unwind): Don't reference load_depth or load_in_progress.
3748         (Fload): Likewise; specbind Qload_in_progress instead.
3749         (init_lread): Don't initialize load_depth.
3750         (syms_of_lread): Initialize and protect Qload_in_progress.
3752 2009-07-24  Adrian Robert  <Adrian.B.Robert@gmail.com>
3754         * nsfont.m (ns_findfonts): Correctly return fallback in match case.
3756 2009-07-23  Yavor Doganov  <yavor@gnu.org>
3758         * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
3760 2009-07-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
3762         * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
3763         Bugs 3792, 3720, 2402.
3764         (ns_lookup_indexed_color): Check for bad index.
3765         (ns_index_color): Init unused slot to 0.
3766         (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
3767         Bug 3714, possibly 3082.
3769 2009-07-22  Jason Rumney  <jasonr@gnu.org>
3771         * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
3772         Position IME window at cursor (Bug#2570).
3773         (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
3774         (globals_of_w32fns): Dynamically load functions required above.
3776         * w32term.c (w32_draw_window_cursor): Send message to reposition
3777         any IME window.
3779 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
3781         * fileio.c: Revert 2009-07-16 changes.
3782         (Vauto_save_include_big_deletions): New variable.
3783         (Fdo_auto_save): Disable auto-save only if
3784         auto-save-include-big-deletions is nil.
3786 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
3788         * xdisp.c (move_it_to): For continued lines ending in a tab, take
3789         the overflowed pixels into account (Bug#3879).
3791 2009-07-21  Ken Raeburn  <raeburn@raeburn.org>
3793         * lread.c (load_depth): New variable.
3794         (Fload, load_unwind, init_lread): Set it to the load recursion
3795         depth; set load_in_progress as a simple boolean based on the
3796         current load_depth.  (Bug#3892)
3798 2009-07-20  Adrian Robert  <Adrian.B.Robert@gmail.com>
3800         * nsfont.m (ns_has_attribute): Remove.
3801         (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
3803 2009-07-18  Juri Linkov  <juri@jurta.org>
3805         * process.c (Fset_process_query_on_exit_flag): Mention killing
3806         a buffer in docstring.
3808 2009-07-17  Kenichi Handa  <handa@m17n.org>
3810         * casetab.c (shuffle): Fix the logic of setting up the cycle.
3812 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3814         * nsfns.m (Fns_set_alpha): Remove function.
3815         (syms_of_nsfns): Don't defsubr it.
3817         * nsterm.m (ns_get_color): Remove incompatible color formats.
3818         (ns_color_to_lisp): Generate #rrggbb color format string.
3820 2009-07-16  Richard Stallman  <rms@gnu.org>
3822         * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
3823         (Fset_buffer_auto_saved): Handle save_length = -2.
3825 2009-07-16  Chong Yidong  <cyd@stupidchicken.com>
3827         * xterm.c (Qx_gtk_map_stock): New var.
3829         * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
3830         of calling intern each time.
3832 2009-07-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3834         * nsfont.m (nsfont_draw): Remove code for stippling, which actually
3835         does tiling.
3837         * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
3839 2009-07-14  Kenichi Handa  <handa@m17n.org>
3841         * font.c (font_vconcat_entity_vectors): New function.
3842         (struct font_sort_data): New member font_driver_preference.
3843         (font_compare): Check font_driver_preference.
3844         (font_sort_entities): The format of the first argument changed.
3845         (font_delete_unmatched): Likewise.
3846         (font_list_entities): The return type changed.
3847         (font_select_entity): The format of the second argument changed.
3848         (font_find_for_lface): Adjuste for the above changes.
3849         Don't suppress the checking of C even if the repertory supports it.
3850         (Flist_fonts): Adjust for the above changes.
3852         * ftfont.c (ftfont_spec_pattern): New arg langname.  Change caller.
3853         (ftfont_list): Adjust for the change of ftfont_spec_pattern.
3854         Reject a font who has adstyle property that is different from a
3855         langname derived from registry property.
3856         (ftfont_match): Adjust for the change of ftfont_spec_pattern.
3858 2009-07-13  Eli Zaretskii  <eliz@gnu.org>
3860         * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
3861         local copy of dirfilename.
3863 2009-07-13  Kenichi Handa  <handa@m17n.org>
3865         * chartab.c (sub_char_table_ref_and_range): Fix the range check
3866         against max_char.
3868         * cmds.c (internal_self_insert): Check sym by SYMBOLP before
3869         calling XSYMBOL (sym).
3871 2009-07-11  Eli Zaretskii  <eliz@gnu.org>
3873         * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
3874         New function.
3875         (directory_files_internal) [WINDOWSNT]:
3876         Bind w32-get-true-file-attributes to either t or nil, depending whether
3877         the filesystem of the directory is fast or slow.
3879         * w32.c (logon_network_drive): Don't assume PATH is an absolute
3880         file name.
3881         (is_slow_fs): New function.
3882         (stat): Use it to determine whether to issue more system calls to
3883         get accurate file attributes, when w32-get-true-file-attributes is
3884         `local'.
3886 2009-07-10  Jan Djärv  <jan.h.d@swipnet.se>
3888         * xfns.c (Fx_select_font): Remember last font selected in
3889         x_last_font_name and use that the next time.  Also try the frame
3890         parameter font-parameter as default to the font dialog.
3892 2009-07-10  Kenichi Handa  <handa@m17n.org>
3894         * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
3896 2009-07-09  Eli Zaretskii  <eliz@gnu.org>
3898         * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
3900         * w32.c (stat): Treat UNC file names as residing on remote
3901         drives.  (Bug#3542)
3903 2009-07-09  Kenichi Handa  <handa@m17n.org>
3905         * fontset.c (fontset_find_font): Fix previous change.
3907 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
3909         * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
3910         (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
3911         error flag.
3913 2009-07-08  Kenichi Handa  <handa@m17n.org>
3915         * fontset.c (fontset_find_font): Fix the logic of handling
3916         charset_matched.
3917         (font_for_char): Delete unused var.
3918         (generate_ascii_font_name): Delete it.
3920         * coding.h (JIS_TO_SJIS2): Fix the code range check.
3922         * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
3923         (encode_coding_sjis): Fix the code range check.
3925 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
3927         * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
3928         (Fexpand_file_name): Copy string data properly (Bug#3772).
3930 2009-07-07  Jan Djärv  <jan.h.d@swipnet.se>
3932         * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
3933         first MapNotify.
3935 2009-07-07  Kenichi Handa  <handa@m17n.org>
3937         * character.h (unibyte_has_multibyte_table): Delete extern.
3938         (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
3940         * charset.c (Fset_charset_priority): Update charset_unibyte.
3941         (syms_of_charset): Initialize charset_unibyte.
3943         * character.c (unibyte_has_multibyte_table): Delete it.
3944         (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
3945         charset_unibyte.
3946         (multibyte_char_to_unibyte_safe): Likewise.
3947         (Funibyte_char_to_multibyte): Don't check charset_unibyte.
3949         * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
3950         (x_produce_glyphs): Likewise.
3952         * .gdbinit (xcharset): Fix the treating $arg0.
3954 2009-07-04  Eli Zaretskii  <eliz@gnu.org>
3956         Emulation of `getloadavg' on MS-Windows.
3957         * w32.c: Include float.h
3958         (g_b_init_get_native_system_info, g_b_init_get_system_times)
3959         (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
3960         (get_native_system_info, get_system_times): New functions.
3961         (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
3962         (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
3963         (globals_of_w32): Initialize g_b_init_get_native_system_info,
3964         g_b_init_get_system_times, and num_of_processors.
3966 2009-07-03  Jason Rumney  <jasonr@gnu.org>
3968         * w32term.c (w32_initialize): Use standard types.
3970 2009-07-03  Eli Zaretskii  <eliz@gnu.org>
3972         * dired.c (Ffile_attributes): Decode user and group names by the
3973         locale's encoding.  (Bug#3443)
3975 2009-07-03  Dan Nicolaescu  <dann@ics.uci.edu>
3977         * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
3978         (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
3980         * callproc.c (child_setup): Use #else instead of a separate #ifdef.
3982         * term.c (init_tty): Remove spurious #ifdef.
3984         * m/mips.h: Mention this file is also used for netbsd.
3985         * m/pmax.h: Remove file.
3987 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
3989         * xterm.h (struct x_display_info): Add invisible_cursor.
3990         (struct x_output): Add current_cursor.
3992         * xterm.c (XTtoggle_invisible_pointer): New function.
3993         (x_define_frame_cursor): Don't define cursor if invisible or the
3994         same as before.  Set current_cursor.
3995         (x_create_terminal): Set toggle_invisible_pointer_hook.
3997         * xfns.c (make_invisible_cursor): New function.
3998         (x_set_mouse_color): Call make_invisible_cursor.
3999         Set current_cursor.
4000         (x_window): Set current_cursor.
4002         * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
4004         * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
4005         inserting a character.
4006         (read_avail_input): Call frame_make_pointer_visible.
4008         * frame.c (Vmake_pointer_invisible): New variable.
4009         (frame_make_pointer_invisible, frame_make_pointer_visible):
4010         New functions.
4011         (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
4013         * frame.h: Declare frame_make_pointer_invisible and
4014         frame_make_pointer_visible.
4015         (struct frame): Add pointer_invisible.
4017 2009-07-02  Jan Djärv  <jan.h.d@swipnet.se>
4019         * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
4020         frame isn't visible.
4021         (xg_frame_resized): If width/height is -1, get size of window
4022         from X server.
4024         * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
4025         for MapNotify.
4027         * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
4028         here or call change_frame_size.  Just call flush_and_sync.
4029         (flush_and_sync): Reintroduce.
4031 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
4033         * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
4035         * xterm.c (x_handle_net_wm_state): Also look for sticky.
4036         (x_term_init): Initialize Xatom_net_wm_state_sticky.
4038         * frame.h: Declare Qsticky.
4040         * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
4042         * nsfns.m (ns_frame_parm_handlers): Ditto.
4044         * frame.c: Declare Qsticky.
4045         (frame_parms): Add sticky.
4047         * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
4049         * xterm.h: Declare x_set_sticky.
4051         * xterm.c (x_set_sticky): New function.
4053         * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
4054         (xg_tool_bar_menu_proxy): Attach enter/leave events to
4055         xg_tool_bar_proxy_help_callback.
4057         * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
4059         * frame.c: Qmaximized is new.
4060         (x_set_frame_parameters): Do not handle fullscreen specially.
4061         Only set width and height if explicitly set.
4062         (x_set_fullscreen): Handle Qmaximized.
4063         (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
4064         (syms_of_frame): Initialize Qmaximized.
4066         * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
4067         Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
4069         * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
4070         for Expose event.  Add call to x_check_fullscreen for MapNotify event.
4071         Remove all code w.r.t. fullscreen from ConfigureNotify event.  Do not
4072         set gravity to NorthWestGravity when USE_GTK.
4073         (set_wm_state): New function.
4074         (do_ewmh_fullscreen): Use set_wm_state.  Also handle FULLSCREEN_MAXIMIZED.
4075         (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
4076         (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
4077         or the case when no window manager is running.  That means remove calls
4078         to x_real_positions and x_fullscreen_adjust.
4080         * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
4081         (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
4082         flush_and_sync.
4083         (xg_height_changed): New function.
4084         (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
4085         and gtk_window_set_policy.  Set frame gravity after parsing the
4086         geometry string.
4087         (xg_update_frame_menubar, free_frame_menubar)
4088         (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
4089         (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
4090         Remove calls to xg_frame_set_char_size.
4092 2009-07-01  Kenichi Handa  <handa@m17n.org>
4094         * keyboard.c (decode_keyboard_code): New function.
4095         (tty_read_avail_input): Decode the input bytes if necessary.
4097         * coding.c (setup_coding_system):
4098         Initialize coding->carryover_bytes to 0.
4099         (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
4100         use Qno_conversion.
4102 2009-07-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4104         * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
4106 2009-06-30  Chong Yidong  <cyd@stupidchicken.com>
4108         * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
4110 2009-06-30  Jason Rumney  <jasonr@gnu.org>
4112         * w32term.c (w32_initialize): Use GetModuleHandle for library that
4113         is already loaded.
4114         Set user model ID if supported (bug#1849).
4116 2009-06-29  Jim Meyering  <meyering@redhat.com>
4118         Remove useless if-before-xfree test.
4119         * nsfont.m (nsfont_close): Remove useless test.
4120         * term.c (delete_tty): Likewise.
4121         * w32.c (system_process_attributes): Likewise.
4122         * w32font.c (w32font_close): Likewise.
4123         * xfaces.c (x_free_gc): Likewise.
4124         * xselect.c (buffer): Likewise.
4126 2009-06-28  Andreas Schwab  <schwab@linux-m68k.org>
4128         * process.c (send_process): Keep decoded string in a local
4129         variable and protect it from GC.  (Bug#3521)
4131 2009-06-28  Eli Zaretskii  <eliz@gnu.org>
4133         * term.c (create_tty_output) [MSDOS]: #ifdef away.
4134         (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
4136 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
4138         * xdisp.c (start_display, handle_face_prop)
4139         (move_it_vertically_backward, cursor_row_fully_visible_p)
4140         (redisplay_window, try_window_id, produce_image_glyph):
4141         Delete some #ifdef-ed out code chunks that are now obsolete.
4143         * xterm.c (x_update_window_begin, x_new_focus_frame)
4144         (x_scroll_bar_handle_click, handle_one_xevent)
4145         (handle_one_xevent, XTread_socket, x_focus_on_frame)
4146         (x_make_frame_visible, x_make_frame_invisible)
4147         (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
4148         code chunks that are now obsolete.
4150 2009-06-28  Michael Albinus  <michael.albinus@gmx.de>
4152         * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
4153         xd_symbol_to_dbus_type.  With Solaris 2.11, it was said to compile
4154         for hours, when optimzation is enabled.
4155         (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
4156         (xd_read_message): Make them static.
4158 2009-06-27  Chuck Blake  <cblake@pdos.csail.mit.edu>  (tiny change)
4160         * term.c (turn_on_face): Allow simultaneously bold and dim
4161         terminal faces (Bug#3530).
4163 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
4165         * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
4167         * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
4168         truncation glyphs (Bug#3686).
4170 2009-06-27  Glenn Morris  <rgm@gnu.org>
4172         * m/pmax.h: Restore file, with only netbsd portions.
4174 2009-06-26  David Reitter  <david.reitter@gmail.com>
4176         * nsterm.m (keydown): Avoid infinite loop.
4178 2009-06-26  Peter Jolly  <peter@jollys.org>  (tiny change)
4180         * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
4181         the arg FORCE_SYMBOL.
4183 2009-06-25  Kenichi Handa  <handa@m17n.org>
4185         * fontset.c (fontset_find_font): When a usable rfont_def is found
4186         in a fallback font-group, make it the first element of the group.
4188 2009-06-24  Chong Yidong  <cyd@stupidchicken.com>
4190         * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
4192 2009-06-24  Kenichi Handa  <handa@m17n.org>
4194         * fontset.c (fontset_get_font_group): Return 0 if no font-group is
4195         set for C.
4196         (fontset_font): Record the availability of a font for C both in
4197         the realized fontsets of the current one and the default one.
4199 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
4201         * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
4202         conditional, it is always defined on AIX.
4204 2009-06-23  Miles Bader  <miles@gnu.org>
4206         * window.c (Vrecenter_redisplay): New variable.
4207         (syms_of_window): Initialize it.
4208         (Qtty): New extern declaration.
4209         (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
4211 2009-06-23  Jim Meyering  <meyering@redhat.com>
4213         * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
4214         Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
4215         pointer dereferences are guaranteed to be valid.
4217 2009-06-23  Kenichi Handa  <handa@m17n.org>
4219         * emacs.c (main): Call init_font ().
4221         * font.h (Vfont_log): Extern it.
4222         (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
4224         * font.c (font_sort_entities, font_list_entities)
4225         (font_matching_entity, font_open_entity)
4226         (font_close_object): Change font_add_log to FONT_ADD_LOG.
4227         (Vfont_log): Delete static.
4228         (font_log_env_checked): Delete this variable.
4229         (font_add_log): Don't check font_log_env_checked.
4230         (font_deferred_log): Check Vfont_log.
4231         (init_font): New function.
4233         * ftfont.c: Change font_add_log to FONT_ADD_LOG.
4235         * w32font.c: Change font_add_log to FONT_ADD_LOG.
4237         * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
4239         * xfont.c: Change font_add_log to FONT_ADD_LOG.
4241         * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
4242         (face_for_char): Don't call font_deferred_log here.
4243         (font_for_char): Likewise.
4245 2009-06-22  Chong Yidong  <cyd@stupidchicken.com>
4247         * w32term.c (x_draw_glyph_string): Use the glyph string's width
4248         rather than its background_width for drawing the overline and
4249         underline (Bug#489).
4251         * xterm.c (x_draw_glyph_string): Use the glyph string's width
4252         rather than its background_width for drawing the overline and
4253         underline (Bug#489).
4254         (xg_default_icon_file): New variable.
4255         (syms_of_xterm): Initialize it to the Emacs SVG icon file.
4256         (x_bitmap_icon): Under GTK, use xg_default_icon_file.
4258         * xdisp.c (Qbefore_string, Qafter_string): Add externs.
4259         (load_overlay_strings): Remove externs.
4260         (fast_find_position): Function deleted.
4261         (mouse_face_from_buffer_pos): New function, based on
4262         fast_find_position.  Correctly handle before-strings,
4263         display-strings, and after-strings (Bug#1220).
4264         (note_mouse_highlight): Use mouse_face_from_buffer_pos.
4266 2009-06-21  Chong Yidong  <cyd@stupidchicken.com>
4268         * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
4269         (move_it_in_display_line_to, move_it_in_display_line_to)
4270         (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
4272 2009-06-21  Chong Yidong  <cyd@stupidchicken.com>
4274         * Branch for 23.1.
4276 2009-06-21  Jason Rumney  <jasonr@gnu.org>
4278         * w32term.c (keyboard_codepage): New static variable.
4279         (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
4280         (w32_read_socket) [WM_CHAR]: Use it to decode character
4281         input (bug#3237).
4282         (w32_initialize): Initialize it.
4283         (codepage_for_locale): New function.
4285 2009-06-20  Ken Raeburn  <raeburn@raeburn.org>
4287         * process.c (status_message): Pass Faset index argument as a lisp
4288         object, so as to work with USE_LISP_UNION_TYPE.
4290 2009-06-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4292         * coding.c (Ffind_coding_systems_region_internal):
4293         Cache checked characters.
4295 2009-06-18  Kenichi Handa  <handa@m17n.org>
4297         * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
4299 2009-06-18  Andreas Schwab  <aschwab@redhat.com>
4301         * xdisp.c (redisplay_internal): Check that the frame is still
4302         live after redisplay of its windows.
4303         (redisplay_windows): Check that the window is still live.
4305 2009-06-17  Andreas Schwab  <schwab@linux-m68k.org>
4307         * coding.c (detect_coding_utf_16): Fix previous change.
4309 2009-06-16  Kenichi Handa  <handa@m17n.org>
4311         * coding.c (detect_coding_utf_16): Fix the logic of rejecting
4312         UTF-16 by checking the dispersion of Eth and Oth bytes.
4314 2009-06-15  Andreas Schwab  <schwab@linux-m68k.org>
4316         * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
4318 2009-06-15  Kenichi Handa  <handa@m17n.org>
4320         * process.c (status_message): Fix previous change.  Be sure to
4321         decode a localized string.
4323 2009-06-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4325         * xterm.c (x_delete_terminal): Put previous change in #if 0 and
4326         add comment explaining why.
4328 2009-06-14  Sidney Markowitz  <sidney@sidney.com>
4330         * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
4332 2009-06-14  Adrian Robert  <Adrian.B.Robert@gmail.com>
4334         * nsfont.m (ns_attribute_value): Remove.
4335         (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
4336         (ns_has_attribute): Shrink the normal range.
4337         (ns_findfonts): Don't worry about requested spec in determining
4338         need for synthItal.
4339         (ns_get_covering_families): Retain scriptToFamilies.
4341 2009-06-14  Seiji Zenitani  <zenitani@mac.com>
4343         * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
4345 2009-06-11  Kenichi Handa  <handa@m17n.org>
4347         * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
4348         overhang for the static composition case.
4350 2009-06-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4352         * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
4353         overhang for the automatic composition case.
4355         * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
4356         composition case.
4358 2009-06-10  Chong Yidong  <cyd@stupidchicken.com>
4360         * xdisp.c (get_next_display_element): When handling wrap-prefix
4361         and line-prefix, treat \n as a control character (bug#3502).
4363 2009-06-10  Kenichi Handa  <handa@m17n.org>
4365         * font.c (font_parse_family_registry): Fix for one-char foundry.
4366         (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
4368 2009-06-09  Dmitry Dzhus  <dima@sphinx.net.ru>  (tiny change)
4370         * process.c (status_message): Fix handling of multibyte signal
4371         string (Bug#3499).
4373 2009-06-09  Jim Meyering  <meyering@redhat.com>
4375         * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
4376         color name is missing.
4378 2009-06-09  Kenichi Handa  <handa@m17n.org>
4380         * charset.c (Fmap_charset_chars): In docstring, state clearly that
4381         FROM-CODE and TO-CODE are codepoints of CHARSET.
4383 2009-06-08  Adrian Robert  <Adrian.B.Robert@gmail.com>
4385         * nsterm.m (ns_use_system_highlight_color): Drop, unused.
4387 2009-06-08  Adrian Robert  <Adrian.B.Robert@gmail.com>
4389         Changes to support :script/:lang/:otf in NS font driver.
4390         * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
4391         (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
4392         indicate not part of font driver interface, and change callers.
4393         (ns_get_family): Remove pointless null check.
4394         (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
4395         ns_spec_to_descriptor, ns_descriptor_to_entity.
4396         (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
4397         (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
4398         (ns_spec_to_descriptor, ns_descriptor_to_entity)
4399         (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
4400         (ns_get_req_script, ns_accumulate_script_ranges)
4401         (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
4402         New functions.
4403         (nsfont_list, nsfont_match): Use ns_findfonts.
4404         (nsfont_open): Use font descriptor instead of traits.
4405         (nsfont_draw): Handle "automatic" (lookup-table) compositions.
4406         (dump_glyphstring): Rename to ns_dump_glyphstring.
4408         * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
4410         * nsfns.m (Fns_popup_font_panel): Use shared font manager.
4412         * fontset.c (fontset_from_font): Remove NS-specific code.
4414 2009-06-08  Peter Jones  <pjones@pmade.com>  (tiny change)
4416         * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
4417         nonactive windows.
4419 2009-06-08  Felix Mueller  <felix@enqueue.eu>  (tiny change)
4421         * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
4423 2009-06-08  Wolfgang Lux  <wolfgang.lux@gmail.com>  (tiny change)
4425         * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
4427 2009-06-07  Chong Yidong  <cyd@stupidchicken.com>
4429         * xdisp.c (move_it_in_display_line_to): On text-only terminals,
4430         account for the overflowing of newlines into the last glyph on the
4431         display line (Bug#3482).
4433 2009-06-05  David Reitter  <david.reitter@gmail.com>
4435         * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
4436         (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
4437         Fns_selection_exists_p, Fns_selection_owner_p.
4439 2009-06-03  Jason Rumney  <jasonr@gnu.org>
4441         * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
4442         available.  (Bug#3379)
4444 2009-05-29  Kenichi Handa  <handa@m17n.org>
4446         * coding.c (get_translation_table):
4447         Check Venable_character_translation.
4449 2009-05-26  David Reitter  <david.reitter@gmail.com>
4451         * nsterm.m (ns_raise_frame): Only raise frame if visible.
4452         (x_make_frame_visible): Move frame to front rather than calling
4453         ns_raise_frame().
4454         (keyDown:): Do not swallow events that aren't re-sent if frame
4455         isn't key window.
4456         (drawRect:): Do not set visibility/iconified flags because
4457         drawRect may be called by NSView even if the frame is hidden.
4459         * nsfns.m (Fx_create_frame): Follow other ports in
4460         determining visibility; default to t.  Ensure async_visible is set.
4462 2009-05-23  Eli Zaretskii  <eliz@gnu.org>
4464         * dired.c (Ffile_attributes): Doc fix.
4466 2009-05-22  Chong Yidong  <cyd@stupidchicken.com>
4468         * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
4470 2009-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4472         * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
4473         and xfont_scratch_props.
4474         (syms_of_xfont): Do it here instead.
4475         (xfont_find_ccl_program): Delete, unused.
4476         (xfont_open): Delete unused var `i'.
4478 2009-05-21  Kenichi Handa  <handa@m17n.org>
4480         * fontset.c (Qlatin): Don't make it static.
4482         * xfont.c (xfont_chars_supported, xfont_supported_scripts):
4483         New functions.
4484         (xfont_scripts_cache, xfont_scratch_props): New variables.
4485         (Qlatin, Vscalable_fonts_allowed): Extern it.
4486         (xfont_list_pattern): Argument changed.  Callers changed.
4487         Check Vscalable_fonts_allowed.  Check the support of a script.
4488         (xfont_list): Don't reject a font spec with :script property.
4489         (xfont_has_char): Fix setting of encoding.
4490         (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
4491         xfont_scratch_props.
4493 2009-05-19  Kenichi Handa  <handa@m17n.org>
4495         * font.c (font_sort_entities): Rename from font_sort_entites.
4496         Callers changed.
4498 2009-05-18  Kenichi Handa  <handa@m17n.org>
4500         * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
4502 2009-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4504         * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
4505         (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
4507 2009-05-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4509         * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
4510         (x_delete_terminal): Dissociate resource database from display and
4511         then call XrmDestroyDatabase before closing display.
4513 2009-05-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
4515         * nsterm.m (ns_read_socket): Remove unused variable.
4516         * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
4517         whether selected frame is viable before raising it (based on patch
4518         by David Reitter), and improve commentary.
4519         * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
4521 2009-05-15  Kenichi Handa  <handa@m17n.org>
4523         * font.c (Ffont_spec): Check arguments.
4525 2009-05-14  Chong Yidong  <cyd@stupidchicken.com>
4527         * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
4528         weight when testing attributes (Bug#3282).
4530 2009-05-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4532         * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
4533         what we expect to get in the next ConfigureNotify event.
4535         * xftfont.c (xftfont_open): Make sure that Xrender extension is added
4536         before Xft one (Bug#1696).
4538 2009-05-07  David Reitter  <david.reitter@gmail.com>
4540         * nsfns.m (Fx_display_planes): Compute bitplanes using
4541         NSBitsPerPixelFromDepth (Bug#3207).
4543 2009-05-10  Chong Yidong  <cyd@stupidchicken.com>
4545         * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
4547 2009-05-10  Ulrich Mueller  <ulm@gentoo.org>
4549         * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
4551 2009-05-07  David Reitter  <david.reitter@gmail.com>
4553         * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
4554         Respect mouse face background.
4556 2009-05-07  David Reitter  <david.reitter@gmail.com>
4558         * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
4559         Mouse movement/highlight: bracket drawing operations
4560         in ns_update_begin and ns_update_end.
4562 2009-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4564         * nsfns.m (ns_get_screen): Rewrite.
4565         Don't presume selected-frame is of type `ns'.
4567         * font.c (font_update_drivers): Sanity fallback to avoid disabling
4568         all drivers.
4570         * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
4572 2009-05-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4574         * keyboard.h (add_user_signal): Fix typo in extern.
4576         * lisp.h (add_user_signal): Remove extern.
4578         * unexelf.c (unexec): Consider a section to precede the .bss section
4579         if its addresses overlap that of .bss.
4580         (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
4581         instead of dumping process.
4583 2009-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4585         * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
4587 2009-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
4589         * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
4591 2009-05-02  Dan Nicolaescu  <dann@ics.uci.edu>
4593         * xterm.c (x_handle_net_wm_state): Move declaration of lval before
4594         any statements.
4596 2009-05-02  Andreas Schwab  <schwab@linux-m68k.org>
4598         * process.c (read_process_output): Make sure the current buffer is
4599         always restored.
4601         * coding.c (record_conversion_result): Don't modify
4602         Vlast_code_conversion_error for successful result.
4603         (alloc_destination): Don't clobber conversion result.  (Bug#1650)
4605 2009-05-01  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
4607         * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
4608         (load_charset_map): Remove unnecessary code.
4610 2009-04-30  David Reitter  <david.reitter@gmail.com>
4612         * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
4613         through f24.
4615 2009-04-30  Chong Yidong  <cyd@stupidchicken.com>
4617         * xfaces.c (face_at_buffer_position): New arg base_face_id.
4619         * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
4620         face_at_buffer_position.
4621         (face_before_or_after_it_pos, get_next_display_element)
4622         (note_mouse_highlight): Update face_at_buffer_position call.
4624         * term.c (term_mouse_highlight):
4625         * msdos.c (IT_note_mouse_highlight):
4626         * fontset.c (Finternal_char_font):
4627         * font.c (font_at, font_range): Update face_at_buffer_position call.
4629         * dispextern.h (face_at_buffer_position): Update prototype.
4631 2009-04-30  Kenichi Handa  <handa@m17n.org>
4633         * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
4635 2009-04-29  Andreas Schwab  <schwab@linux-m68k.org>
4637         * callproc.c (Fcall_process): Fix GC protection.  Make sure
4638         current buffer is always restored.
4640 2009-04-29  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4642         * atimer.c (init_atimer): Also clear stopped_atimers.
4644         * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
4646         * process.c (create_process): Clean up merger residues of
4647         2008-07-17 change.
4649 2009-04-29  Ulrich Mueller  <ulm@gentoo.org>
4651         * lread.c (Vread_circle): New variable.
4652         (read1): Disable recursive read if Vread_circle is nil.
4654 2009-04-29  Kenichi Handa  <handa@m17n.org>
4656         * fontset.h (set_default_ascii_font): Delete extern.
4658         * fontset.c (set_default_ascii_font): Delete this unused function.
4660         * frame.c (x_set_font): When ARG is a font-object, check if the
4661         font-object matches with the ASCII font-spec of the frame's
4662         fontset.  If not, create a new fontset for the frame.  (Bug #3075)
4664 2009-04-28  Andreas Schwab  <schwab@linux-m68k.org>
4666         * fns.c (Flocale_info): Protect vector from GC during decoding.
4668         * process.c (Fstart_process): Protect argv strings from GC during
4669         encoding.
4671 2009-04-27  Andreas Schwab  <schwab@linux-m68k.org>
4673         * sysdep.c: Include <ctype.h>.
4675 2009-04-27  David Reitter  <david.reitter@gmail.com>
4677         * nsfont.m (nsfont_open): Remove unused variable shrink.
4678         Remove commented-out code.
4680 2009-04-26  Johan Bockgård  <bojohan@gnu.org>
4682         * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
4684 2009-04-25  Jason Rumney  <jasonr@gnu.org>
4686         * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
4688 2009-04-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4690         * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
4691         Swap bytes in short integer if fringe bitmap width > 8.
4693 2009-04-23  Kenichi Handa  <handa@m17n.org>
4695         * xfaces.c (Fx_list_fonts): If a font size is specified in
4696         PATTERN, set it in returned scalable fonts.
4698 2009-04-22  Chong Yidong  <cyd@stupidchicken.com>
4700         * keyboard.c (Fset_input_meta_mode): Doc fix.
4702         * dispnew.c (Fsend_string_to_terminal): Doc fix.
4704         * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
4706         * coding.c (Fterminal_coding_system): Doc fix.
4708         * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
4709         (Fx_display_pixel_height, Fx_display_planes)
4710         (Fx_display_color_cells, Fx_server_max_request_size)
4711         (Fx_server_vendor, Fx_server_version, Fx_display_screens)
4712         (Fx_display_mm_height, Fx_display_mm_width)
4713         (Fx_display_backing_store, Fx_display_visual_class)
4714         (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
4715         Doc fixes, replacing "terminal id" with "terminal object".
4716         (check_x_display_info): Handle terminal objects instead of
4717         terminal ids.
4719         * term.c (Ftty_display_color_p, Ftty_display_color_cells)
4720         (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
4721         (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
4722         Doc fixes, replacing "terminal id" with "terminal object".
4724 2009-04-21  Kenichi Handa  <handa@m17n.org>
4726         * font.c (font_load_for_lface): Cancel previous change (bug#2994).
4727         (font_score): Check AVGWIDTH too.
4729         * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
4730         worst case.
4731         (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
4732         (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
4734 2009-04-19  Jason Rumney  <jasonr@gnu.org>
4736         The following changes fix Bug#3005 for wide glyphs on each platform,
4737         without reintroducing Bug#1258 for stretch glyphs.
4739         * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
4740         BAR_CURSOR and HBAR_CURSOR.  Calculate width of HBAR_CURSOR using
4741         get_phys_cursor_geometry.
4743         * w32term.c (x_draw_bar_cursor): Limit cursor width differently
4744         for BAR_CURSOR and HBAR_CURSOR.  Calculate width of HBAR_CURSOR
4745         using get_phys_cursor_geometry.
4747         * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
4748         correctly calculated.
4750 2009-04-19  Jan Djärv  <jan.h.d@swipnet.se>
4752         * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
4753         Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
4754         (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
4755         is deprecated.
4757 2009-04-18  Andreas Schwab  <schwab@linux-m68k.org>
4759         * font.c (font_put_frame_data): Use xfree instead of free.
4761 2009-04-17  Juanma Barranquero  <lekktu@gmail.com>
4763         * w32font.c (Qja, Qko): Remove declarations.
4764         (syms_of_w32font): Don't DEFSYM them.
4766 2009-04-17  Chong Yidong  <cyd@stupidchicken.com>
4768         * font.c (Qja, Qko): Move definitions here from ftfont.c.
4770         * font.h (Qja, Qko): Extern them.
4772         * ftfont.c (Qja, Qko): Remove declarations.
4774         * xfont.c (Qja, Qko): Remove declarations.
4776 2009-04-17  Kenichi Handa  <handa@m17n.org>
4778         * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
4779         string from a vector to handle Latin-1 characters correctly.
4781         * ftfont.c (ftfont_pattern_entity): Return a newly allocated
4782         entity even if the cache hits.
4784 2009-04-16  Andreas Schwab  <schwab@linux-m68k.org>
4786         * search.c (boyer_moore): Use zero as marker value for a possible
4787         match instead of depending on overflow behavior.  (Bug#2844)
4789         * search.c: Use EMACS_INT for buffer positions.  Add prototypes.
4790         * lisp.h: Adjust prototypes.
4792 2009-04-16  Chong Yidong  <cyd@stupidchicken.com>
4794         * keyboard.c (adjust_point_for_property): Disable 2009-02-12
4795         change (Bug#3003).
4797 2009-04-16  Kenichi Handa  <handa@m17n.org>
4799         * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
4801         * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
4802         adstyle.
4804         * ftfont.c (Qja, Qko): Don't make them static.
4805         (enum ftfont_cache_for): New enum.
4806         (fc_charset_table): Undo the previous change.
4807         (ftfont_get_latin1_charset): Delete it.
4808         (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
4809         Set FONT_SIZE_INDEX of the entity to 0 for a scalable font.  For a
4810         non-scarable font, try to get AVERAGE_WIDTH.
4811         (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
4812         Change ft_face_cache from a list of a hash-table.  Don't check
4813         `ja' and `ko' adstyle here.
4814         (ftfont_get_fc_charset): Call ftfont_lookup_cache with
4815         FTFONT_CACHE_FOR_CHARET.
4816         (ftfont_get_charset): Undo the previous change.
4817         (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
4818         (ftfont_close): Likewise.
4819         (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
4821         * font.c (font_sort_entites): Change the meaning of the arg
4822         BEST-ONLY.  Don't optimize for VEC of lenght 1.
4823         (font_select_entity): Just return the value of font_sort_entites.
4825         * xfaces.c (merge_face_vectors): Reflect font properties in
4826         to[LFACE_FONT_INDEX] to the other face attributes.  Don't call
4827         font_clear_prop if a face attribute doesn't change.
4829         * charset.h (charset_ksc5601): Extern it.
4831         * charset.c (charset_ksc5601): New variable.
4832         (Fdefine_charset_internal): Set charset_ksc5601.
4833         (init_charset_once): Initialize charset_ksc5601 to -1.
4835 2009-04-15  Dan Nicolaescu  <dann@ics.uci.edu>
4837         * fileio.c (history_delete_duplicates): Remove unused declaration.
4839         * callint.c (history_delete_duplicates): New declaration.
4840         (Fcall_interactively): Remove command history duplicates when
4841         history_delete_duplicates is true.
4843 2009-04-14  Eli Zaretskii  <eliz@gnu.org>
4845         * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
4847 2009-04-14  Kenichi Handa  <handa@m17n.org>
4849         * font.c (Ffont_info): Fix docstring.  Fix the second element of
4850         the returned value (bug#2949).
4852 2009-04-14  Chong Yidong  <cyd@stupidchicken.com>
4854         * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
4856 2009-04-14  Kenichi Handa  <handa@m17n.org>
4858         * xfont.c (xfont_has_char): The font has C if C is ASCII and the
4859         encoding charset is ascii_compatible.
4861         * charset.c (Fdefine_charset_internal): Make charset
4862         ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
4863         code_offset is 0, and covers all ASCII characters.
4865 2009-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4867         * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
4868         (ns_string_to_pasteboard_internal):
4869         * nsmenu.m (process_dialog):
4870         * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
4871         * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
4872         * lisp.h (Fx_load_color_file): Declare.
4874 2009-04-13  Kenichi Handa  <handa@m17n.org>
4876         * font.c (font_delete_unmatched): Preserve the order of list elements.
4877         (font_select_entity): Suppress the code to optimize for the same
4878         kind of fonts.
4879         (font_load_for_lface): Get a font that supports at least ASCII
4880         characters.
4882         * ftfont.c (Qja, Qko): New variables.
4883         (fc_charset_table): Delete uniquifier data for iso8859-1.
4884         (ftfont_get_latin1_charset): New function.
4885         (get_adstyle_property): New function.
4886         (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
4887         bitmap fonts.
4888         (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
4889         Delete iso-8859-1 range from the charset of fonts whose adstyle is
4890         `ko' or `ja'.
4891         (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
4892         (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
4893         (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
4894         property.
4895         (ftfont_open): Call ftfont_lookup_cache with ENTITY.
4896         (syms_of_ftfont): DEFSYM Qja and Qko.
4898 2009-04-09  Kenichi Handa  <handa@m17n.org>
4900         * charset.c (map_charset_chars): For a charset of `superset'
4901         method, fix calculation of code range.
4903         * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
4904         from the list of extra properties.
4905         (font_clear_prop): Be sure to delete `:name' font property.
4907 2009-04-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4909         * dispnew.c (redraw_overlapping_rows): Fix detection of
4910         overlapping for topmost and bottommost rows.
4912         * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
4914 2009-04-06  Jason Rumney  <jasonr@gnu.org>
4916         * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
4918 2009-04-06  Kenichi Handa  <handa@m17n.org>
4920         * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
4922         * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
4924 2009-04-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4926         * ftfont.c (ftfont_open): Fix checking of the return value of
4927         FT_Load_Char.  Fix setting font->underline_thickness.
4929 2009-04-04  Chong Yidong  <cyd@stupidchicken.com>
4931         * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
4932         (Fterminal_parameters, Fterminal_parameter)
4933         (Fset_terminal_parameter): In doc string, refer to terminal
4934         objects rather than terminal ids.
4936 2009-04-04  Eli Zaretskii  <eliz@gnu.org>
4938         * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
4939         ret_lim_data.  (Bug#2867)
4941 2009-04-03  Chong Yidong  <cyd@stupidchicken.com>
4943         * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
4944         so they don't get wider than the window, matching 2006-01-23
4945         change to the partner function in xdisp.c (Bug#2800).
4947 2009-04-03  Kenichi Handa  <handa@m17n.org>
4949         * print.c (print_object): Make each lowest sub_char_table start a
4950         new line (Bug#2866).
4952 2009-04-02  Kenichi Handa  <handa@m17n.org>
4954         * fontset.c (fontset_font): Record no-font when a fontset
4955         explicitly tells not to try another font-specs.
4957 2009-03-30  Pierre Poissinger  <pierre.poissinger@gmail.com>  (tiny change)
4959         * charset.c (map_charset_for_dump): Add missing UNGCPRO.
4961 2009-03-30  Kenichi Handa  <handa@m17n.org>
4963         * fontset.c (fontset_from_font): Specify only registry in a
4964         font-spec for all characters supported by that registry.
4966         * ftfont.c: Fix previous change.  Define ftfont_variation_glyphs
4967         even if HAVE_M17N_FLT is not defined.
4969 2009-03-29  Sebastian Rose  <sebastian_rose@gmx.de>  (tiny change)
4971         * ftfont.c: Conditionalize prototyping and use of
4972         ftfont_variation_glyphs.
4974 2009-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4976         * frame.c (delete_frame): Work around compiler bug.
4978         * editfns.c (general_insert_function): Adjust to insdel.c changes.
4979         * insdel.c (prepare_to_modify_buffer, signal_before_change):
4980         Some more EMACS_INT.
4981         * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
4983         * xdisp.c (dump_glyph): Fix typo.
4985         * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
4986         (adjust_markers_gap_motion, adjust_markers_for_delete)
4987         (adjust_markers_for_insert, adjust_point)
4988         (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
4989         (make_gap, copy_text, count_size_as_multibyte, insert)
4990         (insert_and_inherit, insert_before_markers)
4991         (insert_before_markers_and_inherit, insert_1)
4992         (count_combining_before, count_combining_after, insert_1_both)
4993         (insert_from_string, insert_from_string_before_markers)
4994         (insert_from_string_1, insert_from_gap, insert_from_buffer)
4995         (insert_from_buffer_1, adjust_after_replace)
4996         (adjust_after_replace_noundo, adjust_after_insert, replace_range)
4997         (replace_range_2, del_range, del_range_1, del_range_byte)
4998         (del_range_both, del_range_2, modify_region)
4999         (prepare_to_modify_buffer, signal_before_change)
5000         (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
5001         for buffer positions and sizes.
5002         * lisp.h: Adjust prototypes accordingly.
5004         * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
5005         (non_regular_inserted, non_regular_nbytes, read_non_regular)
5006         (Finsert_file_contents): Use EMACS_INT for buffer positions.
5008         * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
5010 2009-03-27  Jan Djärv  <jan.h.d@swipnet.se>
5012         * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
5013         lines and columns so we keep the same pixel height and width.
5015         * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
5016         the property _NET_WM_STATE has changed.
5017         (x_handle_net_wm_state): New function to update frame parameter
5018         fullscreen.
5019         (x_term_init): Initialize atoms for _NET_WM_STATE.
5021         * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
5023 2009-03-27  Kevin Ryde  <user42@zip.com.au>
5025         * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
5026         Gpm_GetEvent as an error that justifies closing the filedescriptor.
5027         * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
5028         (Fgpm_mouse_stop): Pass that new parameter.
5029         * termhooks.h (close_gpm): Adjust prototype.
5031 2009-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5033         * lisp.h (Fx_focus_frame): Declare.
5035         * callint.c (Fcall_interactively): For '^' just delegate the work to
5036         handle-shift-selection.
5037         (syms_of_callint): Move declaration of shift-select-mode to simple.el.
5039 2009-03-24  Chong Yidong  <cyd@stupidchicken.com>
5041         * editfns.c (Ffloat_time): Doc fix (Bug#2768).
5043         * data.c (Qinteractive_form): New variable.
5044         (Finteractive_form): Use it.
5046         * eval.c (Fcommandp): Use Qinteractive_form.
5048 2009-03-24  Jason Rumney  <jasonr@gnu.org>
5050         * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
5051         Calculate total size precisely.  Decode environment variables
5052         before substituting.  (Bug#38)
5054 2009-03-24  Kenichi Handa  <handa@m17n.org>
5056         * font.c (find_font_encoding): Return Qnil for unsupported
5057         encoding (Bug#2722).
5059 2009-03-23  Jan Djärv  <jan.h.d@swipnet.se>
5061         * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
5062         that gdpy is set.
5064 2009-03-22  Alan Mackenzie  <acm@muc.de>
5066         * callint.c (Finteractive): Clarify the doc string - even
5067         promptless elements need \n separators.
5069 2009-03-22  Jason Rumney  <jasonr@gnu.org>
5071         * w32term.c (syms_of_w32term): Doc fix for
5072         x-use-underline-position-properties.
5074 2009-03-21  Eli Zaretskii  <eliz@gnu.org>
5076         * w32.c (getpwuid): Change argument type to unsigned.
5077         (struct w32_id): Change type of `rid' member to unsigned.
5078         (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
5079         argument ID to unsigned.  All callers changed.
5080         (getuid, geteuid, getgid, getegid): Change return type to unsigned.
5082 2009-03-20  Eli Zaretskii  <eliz@gnu.org>
5084         * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
5085         negative, produce a float value.
5087         * dired.c (make_uid, make_gid): New functions.
5088         (Ffile_attributes): Use them to avoid negative UID and GID.
5090 2009-03-20  Juanma Barranquero  <lekktu@gmail.com>
5092         * keyboard.c (Fcurrent_idle_time): Reflow docstring.
5093         (syms_of_keyboard) <command-hook-internal, input-method-function>:
5094         Fix typos in docstrings.
5096 2009-03-19  Kenichi Handa  <handa@m17n.org>
5098         * fontset.c (Fset_fontset_font): When a spec of ASCII font is
5099         changed, use font_load_for_lface to get a new font object.
5100         Call free_realized_fontset after handling ASCII font change.
5102         * frame.c (x_set_font): Handle the case that ARG is a cons.
5104 2009-03-19  Glenn Morris  <rgm@gnu.org>
5106         * fileio.c (Fsubstitute_in_file_name): Doc fix.
5108 2009-03-19  Chong Yidong  <cyd@stupidchicken.com>
5110         * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
5112 2009-03-19  Kenichi Handa  <handa@m17n.org>
5114         * charset.c (load_charset_map_from_file): When a mapfile can't be
5115         loaded, signal an error.
5117 2009-03-18  Eli Zaretskii  <eliz@gnu.org>
5119         * dired.c (Ffile_attributes): Make sure UID and GID are always
5120         positive, even if the value is too large for a positive EMACS_INT.
5121         Doc fix.
5123         * editfns.c (Fuser_login_name): Support float arguments.  Doc fix.
5125 2009-03-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5127         * xmenu.c (xdialog_show): Move Fredisplay call ...
5128         (Fx_popup_dialog): ... here.
5130 2009-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5132         * dired.c (file_name_completion): Disable the first optimization just
5133         installed, since it is not implemented correctly.
5135 2009-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5137         * dired.c (file_name_completion): Check completion-ignored-extensions
5138         only if the entry can affect bestmatch.
5139         Stop the search early, as Ftry_completion already does.
5141 2009-03-17  Chong Yidong  <cyd@stupidchicken.com>
5143         * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
5145 2009-03-15  Chong Yidong  <cyd@stupidchicken.com>
5147         * keyboard.c (parse_menu_item): Don't display remappings as menu
5148         equivalent bindings (Bug#788).
5150 2009-03-15  Jason Rumney  <jasonr@gnu.org>
5152         * w32term.h (WM_EMACS_PAINT): New message.
5153         * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
5154         * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
5155         before passing to lisp thread.  (Bug#950)
5157 2009-03-14  David Reitter  <david.reitter@gmail.com>
5159         * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
5160         variable as it was never reset.
5161         (ns_term_init): Remove initialization of Lisp-settable defaults
5162         and ns_expand_space.
5163         (-setPanelFromDefaultValues): Remove ns_expand_space.
5164         (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
5165         * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
5166         i.e. no additional spacing, similar to Carbon port.
5168         * nsterm.h: Define KEY_NS_SHOW_PREFS key.
5169         * nsfns.m (ns-popup-prefs-panel): Remove.
5171 2009-03-14  Jan Djärv  <jan.h.d@swipnet.se>
5173         * sound.c (alsa_configure): Remove call to deprecated
5174         snd_pcm_sw_params_set_xfer_align.
5176 2009-03-14  Stephen Berman  <stephen.berman@gmx.net>
5178         * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
5179         after clicking in a detached tool bar.
5180         (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
5182 2009-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5184         * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
5185         int/Lisp_Object mixup).
5187 2009-03-13  Kenichi Handa  <handa@m17n.org>
5189         * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
5190         Handle NAME nil and t correctly.  Callers changed.
5191         (font_def_arg, add_arg, from_arg, to_arg): Delete them.
5192         (set_fontset_font): Change ARG to a vector.  Handle range_list in
5193         ARG correctly.
5194         (Fset_fontset_font): Fix the case that TARGET is both a script
5195         name and charset name.  Adjust the arg to set_fontset_font for
5196         the above change.
5197         (fontset_from_font): Fix previous change.
5198         (Ffontset_info): Adjust for the 2008-07-09 change of fontset
5199         entry.  If FONTSET is the default fontset, don't set the extra
5200         slot of the returning char-table.
5202 2009-03-12  Juanma Barranquero  <lekktu@gmail.com>
5204         * nsfns.m (Fx_close_connection): Doc fix.
5205         (Fns_do_applescript): Reflow docstring.
5206         (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
5207         (Fx_display_pixel_width, Fx_display_pixel_height)
5208         (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
5209         Fix typos in docstrings.
5210         (Fns_set_alpha): Fix typos in error messages.
5212 2009-03-12  David Reitter  <david.reitter@gmail.com>
5214         * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
5215         non-key system events on NS.  Formerly, NON_ASCII_KEYSTROKE_EVENT
5216         were used for such events.
5218         * nsterm.m (newFrame, openFile, fulfillService, changeFont)
5219         (toggleToolbar, performDragOperation, runHelp): Use it.
5221         * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
5222         NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
5224 2009-03-11  Kenichi Handa  <handa@m17n.org>
5226         * font.h (font_open_by_spec): Extern it.
5228         * font.c (font_open_by_spec): New function.
5229         (font_open_by_name): Use font_open_by_spec.
5231         * frame.c (x_set_font): When ARG is a font-object, don't alter the
5232         fontset of the frame.
5234         * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
5235         modify the default font of frames that use this fontset.
5236         (num_auto_fontsets): New variable.
5237         (fontset_from_font): Use num_auto_fontsets to decide a fontset
5238         name.  Be sure to set FONTSET_ASCII to the correct font name.
5239         (update_auto_fontset_alist): New function.
5241 2009-03-11  Juanma Barranquero  <lekktu@gmail.com>
5243         * makefile.w32-in: Update dependencies.
5245 2009-03-06  Adrian Robert  <Adrian.B.Robert@gmail.com>
5247         * nsfns.m (syms_of_nsfns): Remove Qbuffered.
5249 2009-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5251         * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
5253 2009-03-10  Chong Yidong  <cyd@stupidchicken.com>
5255         * lread.c (Feval_buffer): Doc fix.
5257 2009-03-09  Kenichi Handa  <handa@m17n.org>
5259         * charset.c (Qfile_name_handler_alist): Extern it.
5260         (load_charset_map_from_file): Temporarily bind
5261         `file-name-handler-alist' to nil while calling openp.  (Bug#2435)
5263 2009-03-06  Aaron Ecay  <aaronecay@gmail.com>  (tiny change)
5265         * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
5266         not two, and use NSRectFill instead of NSDrawGroove.  (Bug#2352)
5268 2009-03-06  Adrian Robert  <Adrian.B.Robert@gmail.com>
5270         * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
5271         (x_set_window_size): Change back to calculated method of setting
5272         toolbar height under Cocoa.  (Bug#2546)
5273         (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
5274         (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
5276         * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
5278         * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
5279         accelerator in parens under GNUstep.
5281 2009-03-06  Kenichi Handa  <handa@m17n.org>
5283         These changes are to detect incorrect composition sequence without
5284         looking ahead the source.  (Bug#2370)
5286         * coding.h: Include "composite.h".
5287         (enum compisition_state): New enum.
5288         (struct compisition_status): New struct.
5289         (struct iso_2022_spec): New member cmp_status.
5290         (struct emacs_mule_spec): New struct.
5291         (struct coding_system): New members ctext_extended_segment_len and
5292         embedded_utf_8.  Change the union member
5293         spec.emacs_mule_full_support to spec.emacs_mule.
5295         * coding.c (CODING_ISO_CMP_STATUS): New macro.
5296         (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
5297         (MAX_ANNOTATION_LENGTH): Define to 5.
5298         (ADD_COMPOSITION_DATA): New arg nbytes.
5299         (emacs_mule_char): New arg cmp_status.
5300         (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
5301         (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
5302         (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
5303         (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
5304         (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
5305         (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
5306         (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
5307         (EMACS_MULE_COMPOSITION_END): New macro.
5308         (emacs_mule_finish_composition): New function.
5309         (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
5310         (decode_coding_emacs_mule): Avoid long looking ahead while
5311         handling composition.
5312         (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
5313         (ENCODE_COMPOSITION_RULE): New macro.
5314         (finish_composition): New function.
5315         (MAYBE_FINISH_COMPOSITION): Call finish_composition.
5316         (DECODE_COMPOSITION_START): New implementation.
5317         (DECODE_COMPOSITION_END): Likewise.
5318         (STORE_COMPOSITION_RULE): New macro.
5319         (decode_coding_iso_2022): Avoid long looking ahead while handling
5320         composition, CTEXT extended segment, and embedded UTF-8.
5321         (setup_coding_system): For a coding of type iso-2022, reset
5322         CODING_ISO_EXTSEGMENT_LEN (coding) and
5323         CODING_ISO_EMBEDDED_UTF_8 (coding).
5324         (get_translation): Delete arguments last_block, from_nchars,
5325         to_nchars.  Callers changed.
5326         (produce_chars): Don't modify charbuf.  Adjusted for the change of
5327         get_translation.
5328         (produce_composition): Adjust for the new annotation sequence.
5329         (handle_composition_annotation): Likewise.
5330         (consume_chars): Adjust for the change of get_translation.
5332 2009-03-05  Adrian Robert  <Adrian.B.Robert@gmail.com>
5334         * nsterm.m (ns_select): Shortcircuit if reentrant call.  (Bug#2564)
5336 2009-03-05  Kenichi Handa  <handa@m17n.org>
5338         * font.c (font_select_entity): New function.
5339         (font_find_for_lface): Use font_select_entity to select a font.
5341         * fontset.c (fontset_find_font): If a font found without
5342         restricting to the characters C doesn't support C, try to find a
5343         font with C restriction.
5345 2009-03-04  Nikolaj Schumacher  <me@nschum.de>
5347         * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
5349 2009-03-04  Jason Rumney  <jasonr@gnu.org>
5351         * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
5352         characters that have already been read.  (Bug#2569)
5354         * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
5355         Log an error message if check_image_size failed.
5356         (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
5357         (gs_load): Mention max-image-size in size error message.  (Bug#2560)
5359 2009-03-02  Eli Zaretskii  <eliz@gnu.org>
5361         * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
5362         when decoding process output.
5364 2009-03-01  Richard M Stallman  <rms@gnu.org>
5366         * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
5368         * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
5370 2009-02-28  Eli Zaretskii  <eliz@gnu.org>
5372         * coding.c (decode_coding_utf_8, decode_coding_utf_16)
5373         (decode_coding_emacs_mule, decode_coding_iso_2022)
5374         (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
5375         (decode_coding_raw_text, decode_coding_charset)
5376         (setup_coding_system, decode_eol, decode_coding, consume_chars):
5377         Honor inhibit-eol-conversion.  (Bug #2186)
5379 2009-02-28  Jason Rumney  <jasonr@gnu.org>
5381         * coding.c (detect_coding_charset): If not checking latin extra,
5382         fail on characters between 0x80 and 0xA0.  (Bug#2354)
5384 2009-02-28  Eli Zaretskii  <eliz@gnu.org>
5386         * coding.c (detect_coding_charset): Fix change from 2008-10-21.
5387         Also, check iso-latin-*, not only iso-8859-*.  (Bug#2497)
5389 2009-02-27  Glenn Morris  <rgm@gnu.org>
5391         * callint.c (Finteractive): Doc fix.
5393 2009-02-27  Kenichi Handa  <handa@m17n.org>
5395         * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
5397 2009-02-27  Chong Yidong  <cyd@stupidchicken.com>
5399         * font.c (font_style_to_value): Set value for unknown symbols to
5400         100 instead of 255.
5401         (weight_table, slant_table, width_table): Treat "unspecified" as
5402         the default value.
5404 2009-02-26  Juanma Barranquero  <lekktu@gmail.com>
5406         * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
5408 2009-02-25  Juanma Barranquero  <lekktu@gmail.com>
5410         * lread.c (Fload): Stop checking Vloads_in_progress and signal
5411         error as soon as a recursive load is detected.
5413 2009-02-24  Adrian Robert  <Adrian.B.Robert@gmail.com>
5415         * nsterm.m (ns_ring_bell): Convert rect to window coordinates
5416         before caching.
5418 2009-02-24  Kenichi Handa  <handa@m17n.org>
5420         * fontset.c (fontset_find_font): Fix the condition for checking
5421         unavailable font.
5423 2009-02-24  Glenn Morris  <rgm@gnu.org>
5425         * xfaces.c (Finternal_set_font_selection_order): Remove leading
5426         whitespace that confuses documentation.
5428 2009-02-23  Miles Bader  <miles@gnu.org>
5430         * process.c (Flist_system_processes, Fprocess_attributes)
5431         (syms_of_process): Rename `system-process-attributes' to
5432         `process-attributes'.
5434 2009-02-22  Andreas Schwab  <schwab@linux-m68k.org>
5436         * coding.h (struct coding_system): Make safe_charsets a pointer to
5437         unsigned char.
5438         * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
5439         being 255.
5440         (SAFE_CHARSET_P): Likewise.
5441         (setup_iso_safe_charsets): Properly setup safe_charsets.
5442         (Fdefine_coding_system_internal): Likewise.
5443         (setup_coding_system): Likewise.  Remove unneeded casts.
5444         (detect_coding_iso_2022): Compare Viso_2022_charset_list with
5445         CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS.  Remove
5446         unneeded casts.
5448         * insdel.c (del_range_2): Don't modify gap contents when called
5449         from decode_coding_object.  (Bug#1809)
5451 2009-02-21  Chong Yidong  <cyd@stupidchicken.com>
5453         * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
5454         Qfont_object.
5455         (Ftype_of): Recognize font objects.
5457         * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
5459         * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
5460         moved to data.c.
5462 2009-02-20  Adrian Robert  <Adrian.B.Robert@gmail.com>
5464         * nsterm.m (x_make_frame_invisible): Unset async_visible,
5465         async_iconified.  Based on a patch by Christian Lynbech
5466         <christian.lynbech@tieto.com>.
5467         (EmacsView-windowDidMiniaturize:): Unset async_visible.
5469 2009-02-20  Glenn Morris  <rgm@gnu.org>
5471         * syntax.c (Fskip_chars_forward): Fix doc typo.
5473 2009-02-20  Chong Yidong  <cyd@stupidchicken.com>
5475         * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
5477 2009-02-19  Chong Yidong  <cyd@stupidchicken.com>
5479         * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
5481 2009-02-19  Kenichi Handa  <handa@m17n.org>
5483         * coding.c (detect_coding): Preserve coding->mode.
5484         Don't overflow coding->carryover.  (Bug#2370)
5486 2009-02-18  Dan Nicolaescu  <dann@ics.uci.edu>
5488         * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
5490 2009-02-18  Kenichi Handa  <handa@m17n.org>
5492         * font.c (font_check_otf_features): Fix handling of `nil' element.
5493         (Ffont_spec): Describe :lang and :otf in the docstring.
5495 2009-02-16  Andreas Schwab  <schwab@suse.de>
5497         * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
5498         string.
5500 2009-02-16  Kenichi Handa  <handa@m17n.org>
5502         * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
5503         (Bug#1723)
5505 2009-02-14  Chong Yidong  <cyd@stupidchicken.com>
5507         * dispextern.h (struct iterator_stack_entry): New line_wrap member.
5509         * xdisp.c (push_it, pop_it): Save and restore line_wrap.
5510         (handle_line_prefix): Suppress wrapping of wrap prefixes.
5512 2009-02-14  Eli Zaretskii  <eliz@gnu.org>
5514         * msdos.c (MAX_SCREEN_BUF): New macro.
5515         (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
5516         Encode the entire run of glyphs sharing the same face, instead of
5517         doing that one glyph at a time (fixes a bug with displaying
5518         double-size characters).
5520 2009-02-13  Adrian Robert  <Adrian.B.Robert@gmail.com>
5522         * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
5524         * nsmenu.m (pop_down_menu): Check popup_activated_flag.
5525         (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
5526         pop_down_menu do the cleanup work as it is always called.  (Bug#2154)
5528         * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
5529         set fontset font for "mathematical-" sub-scripts.  (Bug #2218)
5531 2009-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5533         * keyboard.c (adjust_point_for_property): Allow stopping between two
5534         invisible areas.
5536 2009-02-12  Jason Rumney  <jasonr@gnu.org>
5538         * w32font.c (check_face_name): Check for fake helv.  (Bug#2275)
5539         (add_font_entity_to_list): Call check_face_name even when family
5540         is unspecified.
5542         * w32term.c (x_display_pixel_height, x_display_pixel_width):
5543         Release DC when finished.  Use NULL window to refer to desktop.
5544         (w32_term_init): Use NULL window to refer to desktop.  (Bug#460)
5546         * w32font.c (add_font_entity_to_list): Fix check for substituted
5547         raster fonts.  (Bug#2219)
5549 2009-02-12  Kenichi Handa  <handa@m17n.org>
5551         * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
5552         (composition_gstring_width): Fix handling of LGLYPH_YOFF.
5553         (autocmp_chars): Use fast_looking_at.  Don't compose more
5554         characters than MAX_COMPOSITION_COMPONENTS.
5555         (find_automatic_composition): While looking forward and backward,
5556         check static composition.  Fix where to stop looking forward.
5557         (composition_adjust_point): Fix checking of static composition.
5558         (Fcomposition_get_gstring): Pay attention to
5559         MAX_COMPOSITION_COMPONENTS.
5561         * lisp.h (fast_looking_at): Extern it.
5563         * search.c (fast_looking_at): New function.
5565         * term.c (encode_terminal_code): Adjust for the change of
5566         <struct glyph>.u.cmp.to.
5567         (append_composite_glyph): Likewise.
5569         * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
5570         <struct glyph>.u.cmp.to.  Check if the glyph belongs to the same
5571         composition.
5572         (append_composite_glyph): Adjust for the change of
5573         <strcut glyph>.u.cmp.to.
5575 2009-02-11  Juanma Barranquero  <lekktu@gmail.com>
5577         * casetab.c (init_casetab_once):
5578         * coding.c (ALLOC_CONVERSION_WORK_AREA):
5579         * font.c (font_update_lface):
5580         * fontset.c (Fnew_fontset):
5581         * ftfont.c (ftfont_drive_otf):
5582         * xfont.c (xfont_open):
5583         * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
5585 2009-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5587         * fileio.c (Fwrite_region): !NILP -> CONSP.
5589 2009-02-10  Andreas Schwab  <schwab@suse.de>
5591         * process.c (send_process): Properly relocate pointer into data
5592         when using encoded data.  (Bug#2272)
5594 2009-02-08  ARISAWA Akihiro  <ari@mbf.sphere.ne.jp>
5596         * coding.c (detect_coding_charset): Fix previous change.
5598 2009-02-08  Jason Rumney  <jasonr@gnu.org>
5600         * w32fns.c (w32_hide_hourglass): Handle case where frame
5601         disappeared while hourglass was displayed.  (Bug #2193)
5603 2009-02-07  Andreas Schwab  <schwab@suse.de>
5605         * unexelf.c (unexec): Fix error message.
5607 2009-02-07  Adrian Robert  <Adrian.B.Robert@gmail.com>
5609         * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
5610         when modal window is active.  (Bug #2152)
5611         (applicationShouldTerminate:): Remove now-unneeded while loop
5612         around NSRunAlertPanel.
5614         * nsmenu.m (popupSession): New file-global variable.
5615         (pop_down_menu): End the popupSession before closing dialog.
5616         (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
5617         (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
5618         don't query NSApp for events (just sleep instead).
5620 2009-02-07  Eli Zaretskii  <eliz@gnu.org>
5622         * coding.c (syms_of_coding) <translation-table-for-input>:
5623         Modify doc string to discourage use for character code unification.
5625 2009-02-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5627         * atimer.c (run_timers): Update pending_atimers.
5629 2009-02-06  Chong Yidong  <cyd@stupidchicken.com>
5631         * image.c (svg_load_image): Fix last change.
5633         * xfns.c (Fx_create_frame): Signal an error if no font is
5634         found (Bug#2147).
5636 2009-02-05  Juanma Barranquero  <lekktu@gmail.com>
5638         * character.c (syms_of_character) <script-representative-chars>:
5639         Fix typo in docstring.
5641 2009-02-04  Adrian Robert  <Adrian.B.Robert@gmail.com>
5643         * nsmenu.m (pop_down_menu): New function.
5644         (ns_popup_dialog): Call it on unwind.
5645         (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
5646         call timer_check() (Bug#2154).
5647         (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
5648         handling_signal is set.
5649         (EmacsMenu-fillWithWidgetValue:): Set submenu title.
5651         * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
5653         * s/darwin.h: Same and NO_SOCK_SIGIO as well.
5655         * nsterm.m (ns_read_socket): Same and don't set handling_signal.
5657         * keyboard.c (poll_for_input_1, handle_async_input):
5658         Set handling_signal under HAVE_NS.
5660 2009-02-04  Glenn Morris  <rgm@gnu.org>
5662         * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
5664 2009-02-04  Kenichi Handa  <handa@m17n.org>
5666         * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
5668         * charset.c (Fchar_charset): New optional arg restriction.
5670         * coding.h (coding_system_charset_list): Extern it.
5672         * coding.c (coding_system_charset_list): New function.
5674         * composite.c: Include coding.h and termhooks.h.
5675         (composition_gstring_p): Fix for the terminal case.
5676         (composition_gstring_width): Likewise.
5677         (fill_gstring_body): Likewise.
5678         (autocmp_chars): For terminal, call Fcomposition_get_gstring with
5679         the frame.
5680         (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
5681         is within a composition.
5682         (Fcomposition_get_gstring): Fix the terminal case.
5684         * term.c (encode_terminal_code): Fix handling of composition.
5685         (produce_composite_glyph): For static composition, get pixel_width
5686         from struct composition.
5688 2009-02-02  Andreas Schwab  <schwab@suse.de>
5690         * unexelf.c (unexec): Handle unaligned bss offset.
5692 2009-02-01  Adrian Robert  <Adrian.B.Robert@gmail.com>
5694         * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
5695         XT,w32read_socket changes to ns_read_socket.
5697         * keyboard.c (handle_interrupt): Don't call
5698         quit_throw_to_read_char() under NS.
5700         * blockinput.h: Remove NS-specific code.
5702 2009-01-30  Dan Nicolaescu  <dann@ics.uci.edu>
5704         * dispnew.c (window_change_signal): Don't try to get the size of a
5705         suspended tty frame.
5706         * term.c (Fresume_tty): Resize if the size has changed while the
5707         tty was suspended.
5709         * alloc.c (mark_stack): Properly conditionalize previous change.
5711 2009-01-30  Juanma Barranquero  <lekktu@gmail.com>
5713         * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
5714         * w32term.c (w32_read_socket) [SYNC_INPUT]:
5715         Remove; this code is not used on Windows.
5717 2009-01-30  Eli Zaretskii  <eliz@gnu.org>
5719         * coding.c (detect_eol, decode_eol): Handle text with DOS-style
5720         EOLs that also has stray ^M characters.
5722 2009-01-30  Juanma Barranquero  <lekktu@gmail.com>
5724         * atimer.c (run_timers, alarm_signal_handler):
5725         * keyboard.c (pending_signals, handle_async_input, init_keyboard):
5726         * w32inevt.c (w32_console_read_socket):
5727         * w32term.c (w32_read_socket):
5728         * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
5730 2009-01-30  Chong Yidong  <cyd@stupidchicken.com>
5732         * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
5733         Initialize it as a relative filename pattern.
5734         (init_callproc): Don't initialize Vtemp_file_name_pattern here.
5735         (Fcall_process_region): Simplify temp file creation using
5736         temporary-file-directory.
5738 2009-01-29  Eli Zaretskii  <eliz@gnu.org>
5740         * msdos.c: Rename pending_signals to msdos_pending_signals.
5741         (sig_suspender, sigprocmask): Adjust.
5743 2009-01-29  Chong Yidong  <cyd@stupidchicken.com>
5745         * keyboard.c (pending_signals): New var.
5746         (poll_for_input, input_available_signal, init_keyboard): Set it.
5747         (process_pending_signals): New function.
5749         * lisp.h (QUIT): Check pending_signals instead of
5750         interrupt_input_pending.  Use process_pending_signals.
5752         * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
5754         * process.c (wait_reading_process_output): Use process_pending_signals.
5756         * sysdep.c (emacs_write): Use process_pending_signals.
5758         * xterm.c (XTread_socket): Update pending_signals.
5760         * w32term.c (w32_read_socket): Update pending_signals.
5762         * w32inevt.c (w32_console_read_socket): Update pending_signals.
5764 2009-01-29  Kenichi Handa  <handa@m17n.org>
5766         * xftfont.c (xftfont_has_char): New function.
5767         (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
5769 2009-01-29  Adrian Robert  <Adrian.B.Robert@gmail.com>
5771         * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
5772         under GNUstep.
5773         (ns_query_color): New declaration.
5775         * nsterm.m (ns_confirm_quit): New variable.
5776         (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
5777         (EmacsApp-applicationShouldTerminate:): Use it.
5778         (EmacsPrefsController): Let user set it.
5779         (ns_query_color): New function.
5780         (ns_defined_color): Use it.
5781         (ns_initialize): Drop.
5782         (ns_term_init): Add two lines from ns_initialize(), and set
5783         input_interrupt_mode to nil.
5785         * image.c (svg_load_image): Don't right-shift background RGB when
5786         obtained from FRAME_BACKGROUND_PIXEL.  Under HAVE_NS use ns_query_color.
5788 2009-01-28  Kenichi Handa  <handa@m17n.org>
5790         * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
5791         (fontset_get_font_group): Remember that no font-group is specified
5792         for C.
5794 2009-01-27  Chong Yidong  <cyd@stupidchicken.com>
5796         * fns.c (concat): Check for string overflow (bug#1787).
5798         * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
5799         Quadruple undo limits (bug#1501).
5801 2009-01-27  Kenichi Handa  <handa@m17n.org>
5803         * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
5804         directly use GT_Get_Char_index.
5806         * xftfont.c (struct xftfont_info): New member `index'.
5808         * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
5809         (Ffontset_font): Adjust for the change of fontset entry.
5811 2009-01-26  Kenichi Handa  <handa@m17n.org>
5813         * fontset.c (fontset_find_font): Fix handling of non-cons return
5814         value of fontset_get_font_group.
5815         (fontset_font): Revert last change.
5817 2009-01-26  Jason Rumney  <jasonr@gnu.org>
5819         * w32font.c (w32font_list_internal): Return quickly if registry is
5820         unknown.  Simplify final return.
5821         (add_font_entity_to_list): Break complex logic down into more
5822         manageable chunks.  Move unknown registry check to
5823         w32font_list_internal.
5825 2009-01-25  Adrian Robert  <Adrian.B.Robert@gmail.com>
5827         Changes to remove Feval calls from GUI under NS.
5829         * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
5830         Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
5831         Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
5833         * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
5834         (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
5835         (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
5836         instead of NON_ASCII_KEYSTROKE_EVENT.
5837         (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
5838         (EmacsApp-applicationShouldTerminate:): Query user.
5839         (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
5840         instead of Feval.
5842         * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
5844         * keyboard.c (kbd_buffer_get_event): Check for it.
5845         (keys_of_keyboard): Define lispy keys for
5846         ns-put/unput-working-text.
5848         * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
5849         versions.
5850         (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
5852 2009-01-25  Chong Yidong  <cyd@stupidchicken.com>
5854         * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
5855         setting current_buffer directly.  (Bug#2044)
5857 2009-01-24  Chong Yidong  <cyd@stupidchicken.com>
5859         * fontset.c (fontset_font): If we know there is no font, don't do
5860         any work.  (Bug#1952, bug#1990).
5862         * font.c (font_parse_xlfd): Handle patterns of length < 2.  (Bug#1802)
5864 2009-01-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
5866         * emacs.c (main): Do fork+exec under --daemon in Cocoa.
5867         (ns_no_defaults): New declaration.
5868         (main): Use it.
5870         * nsterm.h (ns_no_defaults): New declaration.
5872         * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
5874         * nsterm.m (ns_no_defaults): New variable.
5875         (ns_initialize): Don't read defaults when ns_no_defaults.
5876         (EmacsView-readSelectionFromPasteboard:)
5877         (writeSelectionToPasteboard:types:): New stubbed-out methods for
5878         NSServicesRequests protocol.  (Bug#1435)
5879         (ns_dumpglyphs_stretch): New function.
5880         (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
5881         of 2008-11-15 to other terms.  (Bug#615)
5883         * nsimage.m (setPixmapData:): Set to ignore image DPI.
5885 2009-01-23  Giorgos Keramidas  <keramida@freebsd.org>  (tiny change)
5887         * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
5888         call for Sparc64.
5890 2009-01-22  Adrian Robert  <Adrian.B.Robert@gmail.com>
5892         * nsfns.m:
5893         * nsgui.h:
5894         * nsmenu.m:
5895         * nsselect.m:
5896         * nsterm.h:
5897         * nsterm.m: Remove '23' comments that indicated code added during
5898         update from emacs-20 -> emacs-23.
5900 2009-01-22  Adrian Robert  <Adrian.B.Robert@gmail.com>
5902         * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
5903         ns_alternate_modifier.  (Bug#1217)
5905         * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
5906         Display all shortcuts, including those w/o super modifier.
5908         * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
5910 2009-01-22  Chong Yidong  <cyd@stupidchicken.com>
5912         * fileio.c (Vwrite_region_post_annotation_function)
5913         (Vwrite_region_annotation_buffers): New vars.
5914         (build_annotations_unwind): Just reset
5915         Vwrite_region_annotation_buffers.
5916         (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
5917         Call write-region-post-annotation-function.
5918         (build_annotations): Add to Vwrite_region_annotation_buffers if
5919         buffer changes.
5921 2009-01-21  Adrian Robert  <Adrian.B.Robert@gmail.com>
5923         * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
5924         Tiger.
5925         * nsfns.m (ns_do_applescript):
5926         Conditionalize typeUTF16ExternalRepresentation on Tiger.
5928 2009-01-21  Wolfgang Lux  <wolfgang.lux@gmail.com>  (tiny change)
5930         * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
5932 2009-01-21  Adrian Robert  <Adrian.B.Robert@gmail.com>
5934         * nsmenu.m (NSMENUPROFILE): Change #if style.
5936         * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
5938         * nsterm.m (x_set_frame_alpha): Add prototype.
5939         (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
5940         handle Ctrl-tab.  (Bug#1841)
5941         (ns_get_color): Use unsigned long long for scanned hex string value.
5942         (ns_term_shutdown): Abort on non SIGTERM signals.
5943         (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
5944         (EmacsPrefsController-setPanelFromDefaultValues): New function.
5945         (EmacsPrefsController-resetToDefaults:): Use it.  (Bug#1801)
5946         (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
5947         (ns_defined_color): Fix settings of the XColor variable fields:
5948         red,green,blue scale to 2-byte, pixel's parts to 1-byte.  (Bug#1663)
5950         * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
5951         DPI.  (Bug#1316)
5952         (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
5953         values in onTiger section.
5955 2009-01-19  Chong Yidong  <cyd@stupidchicken.com>
5957         * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
5958         Check return value of font_spec_from_name.
5959         (Fx_list_fonts): Doc fix.  (Bug#1951)
5961         * font.c (font_spec_from_name): Return Qnil if font name could not
5962         be parsed.
5963         (font_parse_name): Treat a `?' character as part of an XLFD.
5965         * fns.c (Fsubstring): Doc fix.
5967 2009-01-19  Kenichi Handa  <handa@m17n.org>
5969         * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
5970         (ftfont_list): Likewise.
5972 2009-01-18  Juanma Barranquero  <lekktu@gmail.com>
5974         * dbusbind.c (Fdbus_register_signal):
5975         * process.c (conv_sockaddr_to_lisp):
5976         * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
5978         * callproc.c (Fgetenv_internal): Doc fix.
5980 2009-01-16  Chong Yidong  <cyd@stupidchicken.com>
5982         * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
5983         it is not even used.
5985 2009-01-16  Glenn Morris  <rgm@gnu.org>
5987         * font.c (Ffont_variation_glyphs): Silence compiler.
5989 2009-01-15  Juanma Barranquero  <lekktu@gmail.com>
5991         * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
5992         Reported by David Robinow <drobinow@gmail.com>.
5994 2009-01-15  Kenichi Handa  <handa@m17n.org>
5996         * coding.c (detect_coding_system): Fix handling of null_byte_found.
5998 2009-01-14  Jason Rumney  <jasonr@gnu.org>
6000         * frame.c (x_set_font): Always store a font to the font parameter,
6001         never a fontset.  (Bug#1562)
6003 2009-01-14  Kenichi Handa  <handa@m17n.org>
6005         * coding.c (TWO_MORE_BYTES): New macro.
6006         (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
6008 2009-01-13  Chong Yidong  <cyd@stupidchicken.com>
6010         * font.c (font_clear_prop): If clearing the family, clear the font
6011         width index too.
6013         * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
6015 2009-01-12  Juanma Barranquero  <lekktu@gmail.com>
6017         * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
6018         (do_play_sound): Use it.  Don't pass a hardcoded buffer size to mci
6019         functions, use sizeof.
6021 2009-01-12  Martin Rudalics  <rudalics@gmx.at>
6023         * keyboard.c (read_char): Fix case where last_nonmenu_event
6024         returned a bad value with submenus.  (Bug#447)
6026 2009-01-12  Chong Yidong  <cyd@stupidchicken.com>
6028         * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
6029         family, clear the font width index too.
6031 2009-01-11  Jason Rumney  <jasonr@gnu.org>
6033         * keyboard.c (cmd_error_internal): Exit when errors occur before
6034         frame creation and not in daemon mode.  (Bug#1836)
6036 2009-01-10  Chong Yidong  <cyd@stupidchicken.com>
6038         * xdisp.c (pos_visible_p): When iterator stops on the last glyph
6039         of a display vector, backtrack.
6040         (try_window_reusing_current_matrix): Check glyph type before
6041         referencing charpos member.
6043 2009-01-10  Eli Zaretskii  <eliz@gnu.org>
6045         Fix Bug #876:
6047         * coding.c (inhibit_null_byte_detection): New variable.
6048         (detect_coding, detect_coding_system): Don't pay attention to null
6049         bytes if inhibit_null_byte_detection is non-zero.
6050         (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
6051         <inhibit-iso-escape-detection>: Doc fix.
6053 2009-01-09  Jason Rumney  <jasonr@gnu.org>
6055         * w32font.c (add_font_entity_to_list): Don't report unknown
6056         Windows charset as any unrecognized registry.  (Bug#1548)
6057         Only report Unicode Plane 2 fonts as unicode-sip.
6059 2009-01-09  Chong Yidong  <cyd@stupidchicken.com>
6061         * xfaces.c (Fx_font_family_list): Delete function.
6062         Move compatibility version to faces.el.
6064         * font.c (Ffont_family_list): Return a list of strings, not symbols.
6066 2009-01-09  Martin Rudalics  <rudalics@gmx.at>
6068         * frame.c (x_set_frame_parameters): Remember requested value for
6069         fullscreen before it's reset by the parameter handler.
6071 2009-01-09  Glenn Morris  <rgm@gnu.org>
6073         * keyboard.c (last_command_char): For clarity, rename to...
6074         (last_command_event): ... and update all users.
6075         (last_input_char): For clarity, rename to...
6076         (last_input_event): ... and update all users.
6077         (last-command-char, last-input-char): Move to subr.el as aliases.
6078         * cmds.c, commands.h: Update for last_command_char rename.
6080 2009-01-08  Chong Yidong  <cyd@stupidchicken.com>
6082         * font.c (font_open_for_lface): Handle unspecified height attribute.
6084 2009-01-08  Jason Rumney  <jasonr@gnu.org>
6086         * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
6087         (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
6088         (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
6089         Don't declare.
6090         (syms_of_w32fns): Don't define x-pointer-shape variable.  (Bug#1485)
6091         (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
6093 2009-01-07  Kenichi Handa  <handa@m17n.org>
6095         * fileio.c (Finsert_file_contents): In the case of replace,
6096         remember the coding system used for decoding in
6097         coding_system (Bug#1039).
6099         * coding.c (decode_coding_utf_8): Check byte_after_cr before
6100         breaking the loop.  (Bug#870)
6101         (decode_coding_utf_16, decode_coding_emacs_mule)
6102         (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6103         (decode_coding_charset): Likewise.
6105 2009-01-05  Martin Rudalics  <rudalics@gmx.at>
6107         * frame.c (x_set_frame_parameters): Make sure height (width) get
6108         applied when fullwidth (fullheight) is set.  (Bug#1522)
6110 2009-01-04  Juanma Barranquero  <lekktu@gmail.com>
6112         * w32.c: Use 64-bit arithmetic to do FILETIME conversions.  (Bug#1766)
6113         (utc_base): Declare as ULONGLONG, not long double.
6114         (convert_time_raw): Delete.
6115         (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
6116         (initialize_utc_base): New function.
6117         (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
6118         (convert_from_time_t): Use initialize_utc_base; compute result with
6119         64-bit arithmetic.
6120         (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
6122 2009-01-03  Eli Zaretskii  <eliz@gnu.org>
6124         * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
6125         (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
6126         (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
6127         (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
6128         [!subprocesses]: Define.
6129         (syms_of_process) [!subprocesses]: Intern and staticpro them.
6130         (Flist_system_processes, Fsystem_process_attributes)
6131         [!subprocesses]: Call list_system_processes and
6132         system_process_attributes instead of returning Qnil.
6134         * dosfns.c (system_process_attributes, list_system_processes):
6135         New functions.
6137         * vm-limit.c (ret_lim_data) [MSDOS]: New function.
6139         * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
6140         Don't use the default (no-op) implementation.
6142 2009-01-03  Jason Rumney  <jasonr@gnu.org>
6144         * keyboard.c (parse_modifiers_uncached): Wheel events are
6145         clicks (bug#687).
6147         * w32term.c (x_query_colors, x_query_color): New functions.
6149         * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
6150         (svg_load_image): Cast returned pointers from dynamically loaded
6151         functions.  Eliminate W32 specific code.
6153 2009-01-02  Dan Nicolaescu  <dann@ics.uci.edu>
6155         * nsfns.m (x_set_foreground_color, x_set_background_color)
6156         (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
6157         (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
6158         x_ prefix instead of ns_.  Update references.
6159         (syms_of_nsfns): Add a FIXME comment.
6161         * nsterm.m (x_set_cursor_type): New prototype.
6162         (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
6164         * sysdep.c (system_process_attributes): Provide Qtime and Qctime
6165         for Solaris instead of incorrectly providing Qutime and Qcutime.
6167 2009-01-02  Eli Zaretskii  <eliz@gnu.org>
6169         * w32.c (process_times): Compute sum of utime and stime.
6170         (system_process_attributes): Add Qtime to the alist.
6172         * sysdep.c (system_process_attributes): Compute Qtime and Qctime
6173         and add them to the alist.
6175         * process.c (top level) <Qtime, Qctime>: New variables.
6176         (syms_of_process): staticpro them.
6177         (Fsystem_process_attributes): Add their documentation to the doc
6178         string.
6180         * process.h: Declare Qtime and Qctime.
6182 2009-01-02  Jason Rumney  <jasonr@gnu.org>
6184         * image.c (Qgobject): New symbol.
6185         (syms_of_image): Initialize it.
6186         (init_svg_functions): Load some functions from gobject library.
6188 2009-01-01  Dan Nicolaescu  <dann@ics.uci.edu>
6190         * frame.c (make_terminal_frame): Remove redundant code and useless
6191         block.
6193 2009-01-01  Andreas Schwab  <schwab@suse.de>
6195         * process.c (conv_sockaddr_to_lisp): Add workaround for
6196         getsockname bug on BSD.
6198 2009-01-01  Chong Yidong  <cyd@stupidchicken.com>
6200         * xfns.c (x_create_tip_frame): Set border width of the X window.
6202         * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
6204 2009-01-01  Jason Rumney  <jasonr@gnu.org>
6206         * w32term.c (x_new_font): Return font object, not fontset.  (Bug#119)
6207         Don't block input, as per earlier xterm.c changes.
6209 2008-12-31  Adrian Robert  <Adrian.B.Robert@gmail.com>
6211         * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
6212         (ns_appkit_version_int): New function.
6213         (x-server-version): Use ns_appkit_version_int and follow 21+
6214         convention of returning 3 integers.
6216 2008-12-30  Kenichi Handa  <handa@m17n.org>
6218         * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
6219         (CHAR_SURROGATE_PAIR_P): New macro.
6221         * font.h (struct font_driver): New member get_variation_glyphs.
6223         * font.c (font_range): Don't require a font for a variation selector.
6224         (Ffont_variation_glyphs): New function.
6225         (syms_of_font): Defsubr it.
6227         * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
6228         ftfont_variation_glyphs.
6229         (setup_otf_gstring): New function.
6230         (ftfont_drive_otf): Use it.
6231         (ftfont_shape_by_flt): Handle variation selector.
6232         (ftfont_variation_glyphs): New function.
6234 2008-12-30  Martin Rudalics  <rudalics@gmx.at>
6236         * frame.c (Vemacs_iconified): Remove.
6238 2008-12-30  Jason Rumney  <jasonr@gnu.org>
6240         * frame.c (store_frame_param, x_get_arg): Enable newer code on
6241         WINDOWSNT too, as related changes have already been synced.  (Bug#117)
6243 2008-12-30  Chong Yidong  <cyd@stupidchicken.com>
6245         * indent.c (Fvertical_motion): Don't advance iterator if we have
6246         reseated to the desired position.
6248         * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
6249         checking for pos match.
6251 2008-12-30  Kenichi Handa  <handa@m17n.org>
6253         * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
6254         just get the low 8-bit of the code.
6256         * font.c (font_intern_prop): Validate str as multibyte.
6258 2008-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
6260         * dispextern.h (struct face): Move lface and hash from the middle
6261         of bitfields.
6263         * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
6265 2008-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
6267         * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
6268         (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
6269         instead of intervals.h.
6271 2008-12-26  Andreas Schwab  <schwab@suse.de>
6273         * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
6274         cons.
6276 2008-12-26  Martin Rudalics  <rudalics@gmx.at>
6278         * textprop.c (Qminibuffer_prompt): New variable.
6279         (syms_of_textprop): Initialize it.
6280         * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
6281         in minibuffer-prompt face.  (Bug#1662)
6283 2008-12-25  Jason Rumney  <jasonr@gnu.org>
6285         * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
6287 2008-12-24  Jason Rumney  <jasonr@gnu.org>
6289         * ralloc.c (r_alloc_reset_variable): New function.
6291         * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
6292         record of what points where.  (Bug#716)
6294 2008-12-22  Dan Nicolaescu  <dann@ics.uci.edu>
6296         * minibuf.c (read_minibuf): Follow the non-interactive case when
6297         running as a daemon, before detaching.
6299 2008-12-22  Andreas Schwab  <schwab@suse.de>
6301         * buffer.c (init_buffer): Use realloc instead of xrealloc.
6302         * gtkutil.c (free_widget_value): Use xfree instead of free.
6304 2008-12-22  Martin Rudalics  <rudalics@gmx.at>
6306         * frame.c (delete_frame): New function derived from
6307         Fdelete_frame to handle Qnoelisp value for FORCE argument.
6308         Delete last frame iff FORCE equals Qnoelisp.  (Bug#1450)
6309         (Fdelete_frame): Call delete_frame.  Remove line from doc-string
6310         saying that FORCE non-nil doesn't run `delete-frame-functions'.
6311         * frame.h: Extern delete_frame.
6312         * window.c (window_loop):
6313         * terminal.c (delete_terminal):
6314         * xterm.c (x_connection_closed):
6315         * xfns.c (Fx_hide_tip):
6316         * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
6318 2008-12-21  Jason Rumney  <jasonr@gnu.org>
6320         * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
6321         when character maps to .notdef character.
6323 2008-12-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6325         * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
6327 2008-12-20  Jason Rumney  <jasonr@gnu.org>
6329         * frame.c (Fmake_terminal_frame): Raise an error when called from
6330         a graphical frame on Windows.  (Bug#1325)
6332 2008-12-20  Jan Djärv  <jan.h.d@swipnet.se>
6334         * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
6336 2008-12-20  Chong Yidong  <cyd@stupidchicken.com>
6338         * minibuf.c (Fread_buffer): Doc fix.
6340 2008-12-20  Jason Rumney  <jasonr@gnu.org>
6342         * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
6343         server name in UNC paths.  (Bug#719)
6345         * coding.c (decode_coding): Clear chars_at_source flag when using
6346         charbuf.  (Bug#1035)
6348 2008-12-19  Daniel Engeler  <engeler@gmail.com>
6350         * sysdep.c (serial_configure): Fix typo.
6352 2008-12-19  Dan Nicolaescu  <dann@ics.uci.edu>
6354         * sysdep.c: Include alloca.h.
6355         (system_process_attributes): Add implementation for Solaris.
6357         * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
6359 2008-12-19  Dan Nicolaescu  <dann@ics.uci.edu>
6361         Reorganize implementation of Flist_system_processes and
6362         Fsystem_process_attributes.  No functional changes.
6363         * process.c: Don't #include pwd.h, grp.h and limits.h.
6364         (Flist_system_processes): Just call list_system_processes.
6365         (Fsystem_process_attributes): Just call system_process_attributes.
6366         (procfs_list_system_processes, time_from_jiffies)
6367         (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
6368         (procfs_get_total_memory, procfs_system_process_attributes): Move ...
6370         * sysdep.c: ... here.  Include pwd.h, grp.h and limits.h.
6371         (list_system_processes): Rename from
6372         procfs_list_system_processes.  Enclose in #ifdef HAVE_PROCFS.
6373         Provide a do nothing implementation.
6374         (system_process_attributes): Rename from
6375         procfs_list_system_processes.
6376         (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
6377         (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
6379         * w32.c (list_system_processes): Rename from
6380         w32_list_system_processes.
6381         (system_process_attributes): Rename from
6382         w32_system_process_attributes.
6384         * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
6386         * process.h (w32_list_system_processes)
6387         (w32_system_process_attributes): Remove.
6388         (list_system_processes, system_process_attributes):
6389         New prototypes.
6391 2008-12-19  Kenichi Handa  <handa@m17n.org>
6393         * xfont.c (xfont_decode_coding_xlfd): New function.
6394         (xfont_encode_coding_xlfd): New function.
6395         (xfont_list_pattern): Decode XLFD by iso-8859-1.
6396         (xfont_list): Decode and encode XLFD by iso-8859-1.
6397         (xfont_match): Likewise.
6398         (xfont_list_family): Likewise.
6399         (xfont_open): Likewise.
6401         * ftfont.c (ftfont_open): Generate a multibyte string if given
6402         names are utf-8.
6404         * xftfont.c (xftfont_open): Generate a multibyte string if given
6405         names are utf-8.
6407 2008-12-18  Jan Djärv  <jan.h.d@swipnet.se>
6409         * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
6410         changed.
6411         (xg_tool_bar_proxy_callback): Put focus on the frame after we have
6412         clicked on a detached tool bar button.
6414 2008-12-18  Dan Nicolaescu  <dann@ics.uci.edu>
6416         * emacs.c (main): Print and error and exit when no data is read
6417         from the pipe.
6419 2008-12-17  Jason Rumney  <jasonr@gnu.org>
6421         * w32font.c (w32font_has_char): Always return -1.
6423 2008-12-16  Kenichi Handa  <handa@m17n.org>
6425         * font.c (font_open_entity): Fix previous change.
6427 2008-12-16  Dan Nicolaescu  <dann@ics.uci.edu>
6429         * process.c: Include <limits.h>.
6431 2008-12-16  Chetan Pandya  <pandyacus@sbcglobal.net>  (tiny change)
6433         * font.c (font_update_drivers): Fix mistake in reconstructing the
6434         driver list.
6436 2008-12-16  Chong Yidong  <cyd@stupidchicken.com>
6438         * font.c (font_clear_cache): Fix format of font cache data.
6440 2008-12-15  Chong Yidong  <cyd@stupidchicken.com>
6442         * xftfont.c (xftfont_open): Free Xft font pattern if
6443         XftFontOpenPattern fails.
6445         * xterm.c (x_free_frame_resources): Remove extraneous call to
6446         free_frame_faces.
6448 2008-12-13  Chong Yidong  <cyd@stupidchicken.com>
6450         * xterm.c (x_delete_display): Move xim_close_dpy call to
6451         x_delete_terminal.
6452         (x_delete_terminal): Call xim_close_dpy.
6454 2008-12-13  Jason Rumney  <jasonr@gnu.org>
6456         * w32font.c (intern_font_name): New function.
6457         (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
6458         (w32font_open_internal, Fx_select_font): Decode font name.
6459         (fill_in_logfont, list_all_matching_fonts): Encode font name.
6461         * w32font.h (intern_font_name): Declare new function.
6463         * w32uniscribe.c (add_opentype_font_name_to_list):
6464         Use intern_font_name.
6466 2008-12-13  Chong Yidong  <cyd@stupidchicken.com>
6468         * frame.c (Fdelete_frame): Call free_font_driver_list.
6470         * font.c (free_font_driver_list): Implement missing function.
6472         * w32term.c (w32_term_init): Don't initialize the image cache
6473         here; it will be done in init_frame_faces.
6475         * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
6476         (struct x_display_info): Remove unused member null_pixel.  New
6477         member xim_callback_data.
6479         * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
6480         (xim_initialize): Save pointer to callback function data.
6481         (xim_close_dpy): Free callback function data.  Call XCloseIM,
6482         reverting 2008-11-04 change by David Smith.
6483         (x_term_init): Don't initialize the image cache here; it will be
6484         done in init_frame_faces.  Remove ancient "null_pixel" cruft.
6485         (x_delete_display): Free x_dnd_atoms member.
6487 2008-12-13  Kenichi Handa  <handa@m17n.org>
6489         * font.c (font_rescale_ratio): Moved from xfaces.c.
6490         Argument type changed.  Handle a font-spec too.
6491         (font_score): Check Vface_font_rescale_alist.
6492         (font_open_entity): Likewise.  (Bug#1547)
6494         * xfaces.c (font_rescale_ratio): Moved to font.c.
6496 2008-12-13  Chong Yidong  <cyd@stupidchicken.com>
6498         * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
6500 2008-12-12  Jason Rumney  <jasonr@gnu.org>
6502         * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
6503         Vwindow_system_version to the real w32 major version.
6505 2008-12-12  Dan Nicolaescu  <dann@ics.uci.edu>
6507         * term.c (init_tty): Move setting the terminal name before the
6508         potential user: maybe_fatal.
6510 2008-12-11  Chong Yidong  <cyd@stupidchicken.com>
6512         * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
6513         all callers changed.  Call free_frame_faces to free the face cache.
6515 2008-12-11  Jason Rumney  <jasonr@gnu.org>
6517         * w32font.c (fill_in_logfont): Don't assume symbol script means
6518         SYMBOL_CHARSET.  (Bug#547)
6520         * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
6521         size for surrogates.  (Bug#1096, bug#872)
6523 2008-12-11  Juanma Barranquero  <lekktu@gmail.com>
6525         * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
6527 2008-12-11  Juanma Barranquero  <lekktu@gmail.com>
6529         * process.c (Fsystem_process_attributes, syms_of_process):
6530         Fix typo in name of Ssystem_process_attributes.
6531         Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
6533 2008-12-11  Juanma Barranquero  <lekktu@gmail.com>
6535         * syntax.c (Fmodify_syntax_entry): Doc fix.
6537 2008-12-10  Juanma Barranquero  <lekktu@gmail.com>
6539         * font.c (Ffont_spec): Move usage to end of docstring.
6541 2008-12-10  Jason Rumney  <jasonr@gnu.org>
6543         * w32font.c (Qcham): New symbol.
6544         (font_supported_scripts): Add cham, and comments for other new
6545         scripts in bitfield from OpenType spec.
6546         (add_font_entity_to_list): Limit unicode-sip fonts to those that
6547         contain characters beyond the bmp.
6549 2008-12-10  Kenichi Handa  <handa@m17n.org>
6551         * ftfont.c (fc_charset_table): Add "unicode-sip".
6552         (ftfont_spec_pattern): Lookup fc_charset_table for the registry
6553         Qunicode_sip.
6555 2008-12-10  Juanma Barranquero  <lekktu@gmail.com>
6557         * coding.c (QCdefault_char): Rename from QCdefalut_char.
6558         (Fcoding_system_put): Use QCdefault_char.
6559         (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
6561 2008-12-09  Chong Yidong  <cyd@stupidchicken.com>
6563         * xftfont.c (syms_of_xftfont): Fix typo.
6565         * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
6567 2008-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
6569         * emacs.c (main): Close daemon_pipe on exec.
6571 2008-12-08  Chong Yidong  <cyd@stupidchicken.com>
6573         * termchar.h (struct tty): New members termcap_term_buffer and
6574         termcap_strings_buffer.
6576         * term.c (encode_terminal_code): Free any previous memory blocks
6577         before calling xmalloc for encode_terminal_src or encode_terminal_dst.
6578         (maybe_fatal): Buffer argument deleted.  Don't free buffer here.
6579         All callers changed.
6580         (init_tty): Store termcap data and string buffers in new struct
6581         tty members termcap_term_buffer and termcap_strings_buffer.
6582         (delete_tty): Free them.
6583         (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
6585 2008-12-07  Seiji Zenitani  <zenitani@mac.com>
6587         * nsfns.m (ns_set_background_color): Remove code duplication.
6588         It was a substitute for face-transparency on OS X 10.3.
6590 2008-12-06  Chong Yidong  <cyd@stupidchicken.com>
6592         * coding.c (make_conversion_work_buffer): Disable buffer
6593         modification hooks in the work buffer.
6595 2008-12-05  Eli Zaretskii  <eliz@gnu.org>
6597         * process.c (procfs_system_process_attributes): If `nread' has a
6598         negative value, assign zero to it.
6600 2008-12-05  Chong Yidong  <cyd@stupidchicken.com>
6602         * eval.c (Vdebug_on_error): Doc fix.
6604 2008-12-05  Kenichi Handa  <handa@m17n.org>
6606         * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
6607         second character is a combining character.
6609 2008-12-05  Eli Zaretskii  <eliz@gnu.org>
6611         * process.c (procfs_system_process_attributes): Don't use cmd,
6612         cmdsize, and q without initializing them first.
6614 2008-12-04  Jason Rumney  <jasonr@gnu.org>
6616         * w32font.c (w32font_draw): Initialize orig_clip before getting
6617         it, and delete it when finished.
6619 2008-12-04  Dan Nicolaescu  <dann@ics.uci.edu>
6621         * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
6622         case when running as a daemon before detaching.
6624 2008-12-03  Juanma Barranquero  <lekktu@gmail.com>
6626         * w32.c (init_environment): Don't unload library shell32.dll.
6628 2008-12-03  Kenichi Handa  <handa@m17n.org>
6630         * font.c (font_at): Set `multibyte' at first.
6632         * coding.c (decode_coding_charset): Check type of an element of
6633         vector VALIDS.
6634         (encode_coding_emacs_mule): Be sure to set `code'.
6636         * fontset.c (face_for_char): Handle invalid charset property correctly.
6637         (font_for_char): Likewise.
6639 2008-12-03  Chong Yidong  <cyd@stupidchicken.com>
6641         * font.c (Fopen_font): Compute pixel size correctly.
6642         (font_update_lface): Handle fonts with corrupted size specs,
6643         i.e. non-int and non-float.
6645         * ftfont.c (ftfont_match): Initialize entity variable.
6646         (ftfont_resolve_generic_family): Avoid using uninitialized var.
6647         (ftfont_list_family): Initialize list var earlier.
6649         * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
6651         * xterm.c (x_draw_glyph_string): Fall back on
6652         underline_minimum_offset for underline position.
6654 2008-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
6656         * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
6658         * character.c (c_string_width): Specify the type for LEN.
6660 2008-12-03  Kenichi Handa  <handa@m17n.org>
6662         * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
6663         (decode_coding_utf_8): Likewise.
6664         (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
6665         (produce_chars): Initialize consumed_chars to 0.
6667 2008-12-02  Chong Yidong  <cyd@stupidchicken.com>
6669         * keyboard.c (make_lispy_position): Only use PT if the selected
6670         window is current.
6672 2008-12-02  Andreas Schwab  <schwab@suse.de>
6674         * font.c (font_unparse_fcname): Fix use of uninitialized variable.
6676         * doprnt.c (doprnt1): Fix size of charbuf.
6678 2008-12-02  Chong Yidong  <cyd@stupidchicken.com>
6680         * keyboard.c (timer_check): Revert last change.
6682 2008-12-02  Juanma Barranquero  <lekktu@gmail.com>
6684         * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
6686 2008-12-01  Juanma Barranquero  <lekktu@gmail.com>
6688         * makefile.w32-in: Update dependencies.
6689         (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
6691 2008-12-01  Andreas Schwab  <schwab@suse.de>
6693         * font.c (register_font_driver): Use xmalloc.
6694         (font_put_frame_data): Likewise.
6696 2008-12-01  Chong Yidong  <cyd@stupidchicken.com>
6698         * xfaces.c (realize_x_face): Make abort condition clearer.
6700         * gtkutil.c (update_frame_tool_bar): Initialize variable.
6702 2008-11-30  Chong Yidong  <cyd@stupidchicken.com>
6704         * keyboard.c (timer_check): After a timer runs, ensure that the
6705         selected window's buffer is current.
6707 2008-11-30  Juanma Barranquero  <lekktu@gmail.com>
6709         * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
6710         It was accidentally restored by the Unicode merge.
6712         * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
6714 2008-11-29  Juanma Barranquero  <lekktu@gmail.com>
6716         * w32proc.c: Include "coding.h".
6717         (Fw32_short_file_name): Encode filename passed to Windows API.
6718         (Fw32_long_file_name): Encode filename passed to Windows API and
6719         decode back the result.  (Bug#1433)
6721 2008-11-29  Kenichi Handa  <handa@m17n.org>
6723         * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
6724         not before accessing it.
6726         * charset.c (Fdefine_charset_internal): After calculating
6727         min_char, max_char, and fastmap, copy the charset structure again.
6728         (encode_char): Fix the previous change.
6730 2008-11-28  Seiji Zenitani  <zenitani@mac.com>
6732         * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
6734         * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
6736         * nsterm.m (x_set_frame_alpha): New function.
6738 2008-11-27  Eli Zaretskii  <eliz@gnu.org>
6740         * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
6742 2008-11-27  Juanma Barranquero  <lekktu@gmail.com>
6744         * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
6745         pointer to check_face_name.
6747 2008-11-27  Kenichi Handa  <handa@m17n.org>
6749         * category.h (SET_CATEGORY_SET): Call set_category_set.
6750         (set_category_set): Extern it.
6752         * category.c (hash_get_category_set): New function.
6753         (Fmodify_category_entry): Adjusted for the change of
6754         char_table_ref_and_range.  Call hash_get_category_set to get a
6755         category set to store in the table.
6757         * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
6758         Funify_charset.
6760         * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
6761         (DECODE_CHAR): Check if the decoder vector is ready.
6762         (ENCODE_CHAR): Check if the encoder char-table is ready.
6763         (maybe_unify_char): Extern it.
6765         * charset.c (Vchar_unified_charset_table): Delete it.
6766         (inhibit_load_charset_map): New variable.
6767         (temp_charset_work): New variable.
6768         (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
6769         (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
6770         New macros.
6771         (load_charset_map): Meaning of control_flag changed.  If
6772         inhibit_load_charset_map is nonzero, setup a table in
6773         temp_charset_work.
6774         (load_charset): New argument control_flag.
6775         (map_charset_for_dump): New function.
6776         (map_charset_chars): If inhibit_load_charset_map is nonzero, use
6777         map_charset_for_dump.
6778         (Fdefine_charset_internal): If the charset method is MAP, load
6779         mapping tables by calling load_charset.
6780         (Funify_charset): Don't load a mapping table but directly set
6781         Vchar_unify_table.
6782         (maybe_unify_char): New function.
6783         (decode_char): Don't handle the deleted method MAP_DEFERRED.
6784         Handle the case of inhibit_load_charset_map being nonzero.
6785         (encode_char): Don't handle the deleted method MAP_DEFERRED.
6786         Handle the case of inhibit_load_charset_map being nonzero.
6787         (Fclear_charset_maps): Just free temp_charset_work.
6788         (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
6789         variable.
6791         * chartab.c (sub_char_table_ref_and_range): Adjusted for the
6792         change of char_table_ref_and_range.
6793         (char_table_ref_and_range): Change the meaning of argument FROM
6794         and TO.  Now the caller must provide initial values for *FROM
6795         and *TO.
6797         * fontset.c (fontset_add): Adjusted for the change of
6798         char_table_ref_and_range.
6799         (fontset_get_font_group): Likewise.
6800         (Ffontset_info): Likewise.
6802         * keymap.c (describe_vector): Adjusted for the change of
6803         char_table_ref_and_range.  For char-table, put boundary between
6804         non-ASCII and 8-bit characters.
6806         * print.c (print_object): For bool-vector, delete unnecessary
6807         check of ASCII_BYTE_P.
6809 2008-11-26  Jason Rumney  <jasonr@gnu.org>
6811         * w32font.c (w32font_open_internal): Don't include external
6812         leading in font height.  (Bug#879)
6814 2008-11-26  Glenn Morris  <rgm@gnu.org>
6816         * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
6817         redefinition with ifdef.  (Bug#1383)
6819 2008-11-24  Adrian Robert  <Adrian.B.Robert@gmail.com>
6821         * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
6823 2008-11-24  Wolfgang Lux  <wolfgang.lux@gmail.com>  (tiny change)
6825         * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
6826         New EmacsView methods.
6827         (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
6828         Fixes bug #1048,1357,1414.
6830 2008-11-24  Adrian Robert  <Adrian.B.Robert@gmail.com>
6832         Fix bug #1362.
6833         * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
6834         is not an indexed color.
6835         * nsterm.m (free_indexed_color): Add argument checking.
6836         * nsfns.m: Move config.h to before system includes (advised by Dan N.).
6838 2008-11-24  Chong Yidong  <cyd@stupidchicken.com>
6840         * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
6841         Document confirm-after-completion value for
6842         minibuffer-completion-confirm.
6844 2008-11-24  Jason Rumney  <jasonr@gnu.org>
6846         * w32font.c (check_face_name): Use xstrcasecmp.  Avoid compiler
6847         warning.
6849 2008-11-23  Jason Rumney  <jasonr@gnu.org>
6851         * w32uniscribe.c (uniscribe_encode_char): Ensure context is
6852         restored before returning.
6854         * w32font.c (check_face_name): New function.
6855         (add_font_entity_to_list): Use it to filter out common substituted
6856         fonts.  (Bug#642)
6858 2008-11-22  Martin Rudalics  <rudalics@gmx.at>
6860         * buffer.c (Fswitch_to_buffer): Reword and mention new option
6861         confirm-nonexistent-file-or-buffer in doc-string.
6863 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6865         * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
6866         Fix copy/paste typo.  Add checks.
6868 2008-11-21  Kenichi Handa  <handa@m17n.org>
6870         * coding.c (detect_coding_iso_2022): Reject invalid composition
6871         sequence.
6872         (DECODE_COMPOSITION_START): If the current source is the last
6873         block, and the current composition doesn't end, regard this
6874         sequence as invalid.
6875         (decode_coding_iso_2022): Handle invalid composition sequence.
6877 2008-11-20  Martin Rudalics  <rudalics@gmx.at>
6879         * window.c (coordinates_in_window): Don't return
6880         ON_VERTICAL_BORDER for the rightmost position of a mode/header
6881         line when the window is not the rightmost one.  (Bug#1372)
6883 2008-11-16  Ben North  <ben@redfrontdoor.org>  (tiny change)
6885         * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
6887 2008-11-15  Eli Zaretskii  <eliz@gnu.org>
6889         * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
6890         and bright_bg if noninteractive is non-zero.
6892 2008-11-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6894         * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
6895         x_draw_glyph_string_background.
6897         * w32term.c (x_draw_glyph_string): Likewise.
6899 2008-11-15  Chong Yidong  <cyd@stupidchicken.com>
6901         * xterm.c (x_draw_glyph_string): Stop drawing the background of
6902         the next glyph string once past the overhang width.
6904         * nsterm.m (ns_draw_glyph_string): Likewise.
6906         * w32term.c (x_draw_glyph_string): Likewise.
6908 2008-11-14  Fabrice Popineau  <fabrice.popineau@supelec.fr>  (tiny change)
6910         * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
6911         double file close.
6913 2008-11-14  Martin Rudalics  <rudalics@gmx.at>
6915         * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
6916         dedicated status of window before attempting to display another
6917         buffer in it.
6919 2008-11-14  Juanma Barranquero  <lekktu@gmail.com>
6921         * msdos.c (Fmsdos_long_file_names):
6922         (syms_of_msdos) <dos-unsupported-char-glyph>:
6923         * dosfns.c (Fint86): Fix typos in docstrings.
6925 2008-11-14  Eli Zaretskii  <eliz@gnu.org>
6927         * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
6929 2008-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6931         * puresize.h (BASE_PURESIZE): Increase to 1260000.
6933 2008-11-12  Michal Nazarewicz  <mina86@tlen.pl>  (tiny change)
6935         * frame.c (x_set_alpha): Set alpha to -1 if nil given.
6937         * frame.h: Negative alpha means "don't touch".
6939         * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
6941         * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
6943 2008-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
6945         * hftctl.c:
6946         * chpdef.h:
6947         * acldef.h: Remove files used only for systems no longer supported.
6949         * Makefile.in: Fix .o alphabetical ordering.
6950         (hftctl.o): Remove dependency, file removed.
6951         (keymap.o, print.o): Depend on charset.h.
6953 2008-11-10  Kenichi Handa  <handa@m17n.org>
6955         * character.c (Fget_byte): Fix and make it faster for unibyte target.
6957 2008-11-08  Chong Yidong  <cyd@stupidchicken.com>
6959         * dired.c (file_name_completion): If completion_ignore_case is
6960         enabled, ignore case when checking completion-regexp-list.
6962 2008-11-08  Eli Zaretskii  <eliz@gnu.org>
6964         * vm-limit.c (get_lim_data): Fix last change.
6966 2008-11-08  Kenichi Handa  <handa@m17n.org>
6968         * character.c (Fget_byte): New function.
6969         (syms_of_character): Defsubr Fget_byte.
6971 2008-11-07  Chong Yidong  <cyd@stupidchicken.com>
6973         * xdisp.c (try_window_reusing_current_matrix): Ensure that window
6974         cursor position is valid after scrolling.
6976 2008-11-06  Juanma Barranquero  <lekktu@gmail.com>
6978         * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
6980 2008-11-06  Glenn Morris  <rgm@gnu.org>
6982         * xterm.c (handle_one_xevent): Don't let popup menus cause
6983         mouse-autoselect-window related window switching.  (Bug#1261)
6985 2008-11-04  David Smith  <davidsmith@acm.org>  (tiny change)
6987         * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
6989 2008-11-04  Andreas Schwab  <schwab@suse.de>
6991         * xfns.c (Fx_wm_set_size_hint): Add missing return value.
6993 2008-11-03  Chong Yidong  <cyd@stupidchicken.com>
6995         * xfns.c (Fx_wm_set_size_hint): New function.
6997 2008-11-03  Martin Rudalics  <rudalics@gmx.at>
6999         * textprop.c (Fprevious_single_char_property_change): Return 0
7000         when there's no change in a string.  (Bug#1301)
7002 2008-11-02  Martin Rudalics  <rudalics@gmx.at>
7004         * frame.c (do_switch_frame): New argument NORECORD passed to
7005         Fselect_window.
7006         (Fselect_frame): New argument NORECORD passed to
7007         do_switch_frame.
7008         (Fset_frame_selected_window): New argument NORECORD passed to
7009         Fselect_frame.
7010         (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
7011         in call of do_switch_frame.
7012         (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
7013         Handle NORECORD argument in call of Fselect_frame.
7014         * lisp.h (do_switch_frame, Fselect_frame)
7015         (Fset_frame_selected_window): Adjust declarations.
7016         * window.c (select_frame_norecord): New function.
7017         (run_window_configuration_change_hook): Use it and call
7018         Fselect_frame with NORECORD set.
7019         (Fselect_window): Pass NORECORD to Fselect_frame.
7020         (Fset_window_configuration): Handle NORECORD argument in call of
7021         do_switch_frame.
7022         * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
7023         Fset_frame_selected_window.
7024         * keyboard.c (command_loop_1): Handle NORECORD in call of
7025         Fselect_frame (currently ifdefd).
7027 2008-11-02  Ulrich Mueller  <ulm@kph.uni-mainz.de>
7029         * emacs.c (USAGE2): Untabify.
7031 2008-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7033         * composite.c (fill_gstring_header): Fix copy/paste typo.
7035 2008-10-31  Martin Rudalics  <rudalics@gmx.at>
7037         * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
7038         (Fother_window): Rename argument and rewrite doc-string.
7039         (select_window_norecord): Fix return value.  (Bug#1276)
7041 2008-10-30  Juanma Barranquero  <lekktu@gmail.com>
7043         * w32fns.c (x_create_tip_frame): Prevent default foreground color for
7044         new frames overriding foreground for tooltips.  Based on similar patch
7045         from Martin Rudalics <rudalics@gmx.at>.  (Bug#1032)
7047 2008-10-29  Chong Yidong  <cyd@stupidchicken.com>
7049         * emacs.c (Fdaemon_initialized): Initialize nfd.
7051 2008-10-29  Martin Rudalics  <rudalics@gmx.at>
7053         * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
7054         (Fwindow_text_height): Clarify doc-strings.
7055         * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
7056         doc-string of window-scroll-functions.
7058 2008-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
7060         * category.c (syms_of_category): Fix typo in docstring.
7062 2008-10-28  Juanma Barranquero  <lekktu@gmail.com>
7064         * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
7065         (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
7066         Fix typos in docstrings.
7068 2008-10-28  Dan Nicolaescu  <dann@ics.uci.edu>
7070         * emacs.c (daemon_pipe): Make non-static.
7071         (IS_DAEMON): Move definition ...
7072         * lisp.h (IS_DAEMON): ... here.
7073         (daemon_pipe): Declare.
7074         (is_daemon): Remove.
7075         * dispnew.c (init_display): Use IS_DAEMON.
7077 2008-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7079         * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
7080         (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
7082         * emacs.c (is_daemon): Remove.
7083         (main): Don't set is_daemon.
7084         (IS_DAEMON): New macro.
7085         (Fdaemonp, Fdaemon_initialized): Use it.
7086         (Fdaemon_initialized): Write a char into the pipe to make sure the
7087         parent exits.
7088         (syms_of_emacs): Explicitly initialize daemon_pipe[1].
7090 2008-10-27  Chong Yidong  <cyd@stupidchicken.com>
7092         * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
7093         over-sized glyph, draw it with the default glyph width.
7095         * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
7096         glyph, draw it with the default glyph width.
7098         * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
7099         glyph, draw it with the default glyph width.
7101         * xdisp.c (try_scrolling): When computing the distance from the
7102         scroll margin to PT, try moving some distance past the window
7103         bottom before giving up.
7105 2008-10-27  Martin Rudalics  <rudalics@gmx.at>
7107         * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
7108         (Fset_window_buffer): Explain in doc-string that a window can be
7109         "strongly" dedicated to its buffer.
7111 2008-10-27  Dan Nicolaescu  <dann@ics.uci.edu>
7113         * emacs.c (daemon_name): New variable.
7114         (main): Deal with --daemon=SERVER_NAME.
7115         (Fdaemonp): Return a name if one was passed to --daemon.
7117 2008-10-26  Romain Francoise  <romain@orebokech.com>
7119         * emacs.c (daemon_pipe): New variable.
7120         (main): Create a pipe before forking, make the parent exit only after
7121         the child has closed its end of the pipe.  Move closing the
7122         descriptors ...
7123         (Fdaemon_initialized): ... here.  New function.
7125 2008-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7127         * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
7128         the previous unoptimized table.
7130         * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
7131         the distinction between non-nil and non-t value of `dedicated'.
7133 2008-10-25  Chong Yidong  <cyd@stupidchicken.com>
7135         * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
7136         read_char_minibuf_menu_text is large enough to hold the menu string.
7138 2008-10-25  Martin Rudalics  <rudalics@gmx.at>
7140         * window.c (Fget_buffer_window, Fdelete_windows_on)
7141         (Freplace_buffer_in_windows): Make buffer argument optional and
7142         rename to buffer_or_name.
7144 2008-10-24  Chong Yidong  <cyd@stupidchicken.com>
7146         * xdisp.c (handle_single_display_spec, handle_display_prop):
7147         Undo 2005-05-16 change.
7148         (handle_stop): Pop iterator if it's loaded with an empty string.
7149         (get_overlay_strings_1): Don't save iterator if it's loaded with
7150         an empty string (bug#1201).
7152 2008-10-24  Kenichi Handa  <handa@m17n.org>
7154         * ftfont.c (ftfont_otf_features): Fix previous change.
7155         (ftfont_otf_capability): Check FeatureList.FeatureCount before
7156         calling ftfont_otf_features.
7158 2008-10-24  Kenichi Handa  <handa@m17n.org>
7160         * font.c (font_match_p): Fix for the case that a vector of
7161         characters is in script-representative-chars.
7163 2008-10-24  Michael Albinus  <michael.albinus@gmx.de>
7165         * dbusbind.c (xd_in_read_queued_messages): New variable.
7166         (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros.  Throw Qdbus_error.
7167         (xd_read_queued_messages): Catch Qdbus_error from the macros.
7168         (all): Replace xsignal1, xsignal2, xsignal3 by the respective
7169         macro.  (Bug#1186)
7171 2008-10-23  Ali Bahrami  <ali_gnu@emvision.com>  (tiny change)
7173         * s/sol2-10.h: New file.
7175 2008-10-23  Juanma Barranquero  <lekktu@gmail.com>
7177         * xdisp.c (fill_glyph_string): Fix typo in source (though the
7178         poor beast has survived 9+ years and the jump from xterm.c!).
7180 2008-10-23  Martin Rudalics  <rudalics@gmx.at>
7182         * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
7183         Reword doc-string.
7184         (Fbury_buffer): In doc-string say what happens to the buffer's window.
7186 2008-10-23  Juanma Barranquero  <lekktu@gmail.com>
7188         * character.c (syms_of_character) <script-representative-chars>:
7189         <unicode-category-table>: Doc fixes.
7191 2008-10-23  Noah Friedman  <friedman@splode.com>
7193         * coding.c (make_conversion_work_buffer): Check that
7194         Vcode_conversion_reused_workbuf is a live buffer, otherwise call
7195         Fget_buffer_create.
7197 2008-10-23  Kenichi Handa  <handa@m17n.org>
7199         * font.c (font_add_log): Check the values of extra properties.
7201 2008-10-22  Martin Rudalics  <rudalics@gmx.at>
7203         * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
7204         Reword doc-string.
7205         (Fset_window_parameter): Use NILP.
7206         (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
7207         (Frecenter): Use "selected" instead of "current" window in doc-strings.
7209 2008-10-22  Juanma Barranquero  <lekktu@gmail.com>
7211         * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
7213 2008-10-22  Adrian Robert  <Adrian.B.Robert@gmail.com>
7215         * nsfns.m (ns_appkit_version): New function.
7216         (x-server-version): Use it.
7217         (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
7218         (x-server-vendor): Don't check_ns().
7220         * nsterm.m (syms_of_nsterm): Drop ns-version-string.
7222 2008-10-22  Juanma Barranquero  <lekktu@gmail.com>
7224         * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
7225         Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
7227 2008-10-22  Kenichi Handa  <handa@m17n.org>
7229         * syntax.c (scan_words): Call word_boundary_p instead of comparing
7230         scripts.
7232         * category.c (word_boundary_p): Check scripts instead of charset.
7233         Handle nil value in word-separating-categories and
7234         word-combining-categories.
7235         (syms_of_category): Fix docstrings of word-separating-categories
7236         and word-combining-categories.
7238 2008-10-21  Eli Zaretskii  <eliz@gnu.org>
7240         * coding.c (Fencode_coding_region, Fdecode_coding_region)
7241         (Fdecode_coding_string, Fencode_coding_string): Doc fix.
7243 2008-10-21  Martin Rudalics  <rudalics@gmx.at>
7245         * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
7246         Rename arg "buffer" to "buffer_or_name".
7247         (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
7248         it optional.
7249         (no_switch_window): Remove since the return value is not used.
7250         (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
7251         Consider window as dedicated when Fwindow_dedicated_p returns a
7252         non-nil value.
7253         * lisp.h: Remove prototype for no_switch_window.
7255 2008-10-21  Jan Djärv  <jan.h.d@swipnet.se>
7257         * emacs.c (main): Unconditionally set PER_LINUX32 and exec
7258         temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
7260 2008-10-21  Kenichi Handa  <handa@m17n.org>
7262         * coding.c (detect_coding_charset): For iso-8859-* coding systems,
7263         check Vlatin_extra_code_table.
7265 2008-10-20  Eli Zaretskii  <eliz@gnu.org>
7267         * fileio.c (Fset_file_modes): Doc fix.
7269 2008-10-19  Michael Albinus  <michael.albinus@gmx.de>
7271         * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
7272         in arrays.
7274 2008-10-19  Martin Rudalics  <rudalics@gmx.at>
7276         * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
7277         Mention kill-buffer in doc-string.
7278         (Fset_window_buffer): Reinsert tem check removed in last commit.
7279         (Fenlarge_window, Fshrink_window): Have argument names and
7280         doc-string follow Elisp manual more closely.
7282 2008-10-18  Eli Zaretskii  <eliz@gnu.org>
7284         * fileio.c (Fset_file_modes): Doc fix.
7286 2008-10-18  Martin Rudalics  <rudalics@gmx.at>
7288         * window.c (Fwindow_width, Fset_window_start)
7289         (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
7290         (Fdelete_windows_on, Freplace_buffer_in_windows):
7291         Make doc-strings follow code and Elisp manual more closely.
7292         (Fwindow_dedicated_p): Make window argument optional.
7293         (Fset_window_dedicated_p): Rename argument "arg" to "flag".
7294         (Fset_window_buffer): Respect any non-nil dedicated value for
7295         window.  Rename "buffer" argument to "buffer_or_name".
7297 2008-10-18  Ulrich Mueller  <ulm@gentoo.org>
7299         * m/sh3.h: New file, machine description for SuperH.
7301 2008-10-17  Martin Rudalics  <rudalics@gmx.at>
7303         * window.c (Fsplit_window): Rename arg horflag to horizontal.
7305 2008-10-17  Kenichi Handa  <handa@m17n.org>
7307         * ftfont.c (ftfont_otf_features): Fix indexing
7308         gsub_gpos->FeatureList.Feature.  Check the validity of indices.
7310 2008-10-16  Magnus Henoch  <mange@freemail.hu>
7312         * dbusbind.c (Fdbus_call_method): Unbreak usage line.
7313         (Fdbus_call_method_asynchronously): Ditto.
7314         This change makes C-h f display the argument list.
7316 2008-10-16  Chong Yidong  <cyd@stupidchicken.com>
7318         * fileio.c (Fexpand_file_name): Doc fix.
7320         * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
7321         of :foreground and :background equivalent to unspecified (20.x
7322         compatibility).
7324 2008-10-15  Eli Zaretskii  <eliz@gnu.org>
7326         * buffer.c (syms_of_buffer): Doc fix.
7328 2008-10-14  Kenichi Handa  <handa@m17n.org>
7330         * font.c (font_clear_prop): When clearing font width, clear the
7331         average width field too.
7333 2008-10-12  Andreas Schwab  <schwab@suse.de>
7335         * ftfont.c (ftfont_shape_by_flt): Make static.
7336         * ftfont.h (ftfont_shape_by_flt): Don't declare.
7338         * font.c: Don't include <m17n-flt.h>.
7340 2008-10-10  Eli Zaretskii  <eliz@gnu.org>
7342         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
7344 2008-10-09  Eli Zaretskii  <eliz@gnu.org>
7346         * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
7347         away code.
7349 2008-10-09  Chong Yidong  <cyd@stupidchicken.com>
7351         * dispnew.c (update_text_area): Avoid looping due to large glyph
7352         overhangs (bug#1070).
7354 2008-10-09  Kenichi Handa  <handa@m17n.org>
7356         * fontset.c (face_for_char): If face->fontset is negative, just
7357         return ascii_face.
7359         * font.c (font_delete_unmatched): Fix previous change.
7360         Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
7362 2008-10-09  Martin Rudalics  <rudalics@gmx.at>
7364         * frame.c (Fraise_frame): On text-only terminals select frame in
7365         order to make it visible.  (Bug#1061)
7367 2008-10-08  Chong Yidong  <cyd@stupidchicken.com>
7369         * fontset.c (fontset_find_font): Check frame validity.
7371 2008-10-07  Chong Yidong  <cyd@stupidchicken.com>
7373         * gtkutil.c (xg_display_open): Reset default display if none exists.
7374         (xg_display_close): Allow Emacs to close all displays (bug#985).
7376 2008-10-06  Andreas Schwab  <schwab@suse.de>
7378         * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
7380 2008-10-06  Chong Yidong  <cyd@stupidchicken.com>
7382         * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
7384         * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
7386         * gtkutil.c (x_wm_set_size_hint): Return immediately if called
7387         during initialization.
7389 2008-10-04  Eli Zaretskii  <eliz@gnu.org>
7391         * xdisp.c (redisplay_internal): If frame switched, redisplay the
7392         whole thing on MSDOS frames as well as on a TTY.
7394         * dispnew.c (update_frame): Flush termscript for MSDOS frames as
7395         well as for TTY.
7396         (Fopen_termscript): Allow opening a termscript on MSDOS frames as
7397         well as on a TTY.
7399         * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
7400         as well as for TTY.
7402         * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
7404         * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
7405         MSDOS frames as well.
7407 2008-10-02  Adrian Robert  <Adrian.B.Robert@gmail.com>
7409         * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
7410         correct arguments.
7411         * menu.c (find_and_return_menu_selection): Add cast.
7413 2008-10-03  Glenn Morris  <rgm@gnu.org>
7415         * emacs.c (USAGE1): Add --daemon.
7417 2008-10-02  Eli Zaretskii  <eliz@gnu.org>
7419         * process.c (procfs_system_process_attributes): Multiply `pcpu' by
7420         100, so it's in percents as advertised.
7422 2008-10-02  Adrian Robert  <Adrian.B.Robert@gmail.com>
7424         * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
7425         (ns_output.current_cursor, ns_output.desired_cursor)
7426         (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
7427         (FRAME_NEW_CURSOR_COLOR): Remove.
7429         * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
7430         (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
7431         enumeration (HOLLOW_BOX_CURSOR, etc.).
7433         * nsterm.m (ns_frame_rehighlight): Remove commented code.
7434         (draw_window_cursor): Simplify code.
7435         (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
7436         Don't change cursor type.  In latter, call rehighlight instead of doing
7437         updates manually.
7438         (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
7439         Use core Emacs cursor types.
7441         * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
7443 2008-10-02  Martin Rudalics  <rudalics@gmx.at>
7445         * process.c (Faccept_process_output): Fix doc-string.
7447 2008-10-02  Dan Nicolaescu  <dann@ics.uci.edu>
7449         * gmalloc.c (__sbrk): Also define for uClibc.
7451         * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
7452         for uClibc.
7454 2008-10-01  Adrian Robert  <Adrian.B.Robert@gmail.com>
7456         * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
7457         styles.
7458         (nsfont_open): Reenable the cache.
7460 2008-10-01  Adrian Robert  <Adrian.B.Robert@gmail.com>
7462         * font.c (font_matching_entity): Reflect ATTRS in font selection.
7463         (font_find_for_lface) [HAVE_NS]: Don't ignore case.
7465 2008-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7467         * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
7468         a suspended terminal.
7470 2008-09-30  Michael Albinus  <michael.albinus@gmx.de>
7472         * dbusbind.c (xd_signature): Use strcat instead of sprintf.
7474 2008-09-30  Eli Zaretskii  <eliz@gnu.org>
7476         * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
7478 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
7480         * xdisp.c (move_it_to): Don't advance the iterator if the last tab
7481         in a continued line coincides with a line beginning.
7483 2008-09-29  Adrian Robert  <Adrian.B.Robert@gmail.com>
7485         * nsfont.m (nsfont_trait_distance): Fix bug.
7486         (nsfont_list): Return a list rather than a vector (syncs with Handa
7487         changes of 2008-05-14).
7488         (nsfont_open): Improve logging.
7490 2008-09-29  Andreas Schwab  <schwab@suse.de>
7492         * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
7494 2008-09-28  Martin Rudalics  <rudalics@gmx.at>
7496         * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
7497         name as char-resolve-modifiers.
7498         Reported by: Markus Triska <markus.triska@gmx.at>
7500 2008-09-28  Dan Nicolaescu  <dann@ics.uci.edu>
7502         * dispnew.c (init_display): Return earlier when running as a daemon.
7504 2008-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
7506         * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
7508 2008-09-27  Eli Zaretskii  <eliz@gnu.org>
7510         * composite.c (Fcomposition_get_gstring)
7511         (Fcompose_region_internal, Fcompose_string_internal)
7512         (Ffind_composition_internal): Doc fix.
7513         (syms_of_composite) <compose-chars-after-function>: Doc fix.
7514         (syms_of_composite) <auto-composition-function>: Doc fix.
7515         (syms_of_composite) <composition-function-table>: Doc fix.
7517 2008-09-25  Chong Yidong  <cyd@stupidchicken.com>
7519         * search.c (wordify): New argument for lax word-ends.
7520         (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
7522 2008-09-24  Dan Nicolaescu  <dann@ics.uci.edu>
7524         * lisp.h (is_daemon): Declare.
7525         * dispnew.c (init_display): Do not try to initialize the terminal
7526         when running as a daemon.
7528 2008-09-22  Chong Yidong  <cyd@stupidchicken.com>
7530         * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
7531         x_display_pixel_height.
7533 2008-09-22  Martin Rudalics  <rudalics@gmx.at>
7535         * undo.c (record_point): Don't call Fundo_boundary for first
7536         change.  (Bug#731)
7538 2008-09-22  Juanma Barranquero  <lekktu@gmail.com>
7540         * emacs.c (Fdaemonp): Doc fix.
7542 2008-09-22  Dan Nicolaescu  <dann@ics.uci.edu>
7544         * emacs.c (main): Place #ifdef in the proper place.
7546 2008-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
7548         * emacs.c (standard_args): Add --daemon.
7549         (main): Disconnect from the terminal when --daemon is passed.
7550         (is_daemon): New variable.
7551         (Fdaemonp): New function.
7552         (syms_of_emacs): Defsubr it.
7554 2008-09-20  Chong Yidong  <cyd@stupidchicken.com>
7556         * xdisp.c (get_next_display_element): Handle string display
7557         correctly when checking for the end of a box run.
7559 2008-09-20  Glenn Morris  <rgm@gnu.org>
7561         * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
7562         (syms_of_fileio): Add Qdelete_by_moving_to_trash.
7563         (Frename_file): Avoid copying to trash if a rename involves
7564         a delete.  (Bug#964).
7566 2008-09-20  Eli Zaretskii  <eliz@gnu.org>
7568         * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
7569         (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
7570         frames as well as termcap frames.
7571         (handle_interrupt): Remove "#ifndef MSDOS" around the call to
7572         get_named_tty.
7574 2008-09-19  Eli Zaretskii  <eliz@gnu.org>
7576         * process.c (procfs_system_process_attributes): Fix cmdline in
7577         case /proc/PID/cmdline is empty.
7579         * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
7580         x_display_pixel_height.
7582 2008-09-19  Juanma Barranquero  <lekktu@gmail.com>
7584         * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
7586         * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
7587         (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
7589 2008-09-19  Dan Nicolaescu  <dann@ics.uci.edu>
7591         * dispextern.h (struct it): Move line_wrap away from the middle of
7592         bitfields.  Move voffset in struct iterator_stack_entry after the
7593         bitfields.  Move tab_width near after another short.
7595 2008-09-18  Dan Nicolaescu  <dann@ics.uci.edu>
7597         * frame.h (struct frame): Move alpha from the middle of bitfields.
7599         * window.h (struct window): Move frozen_window_start_p after the
7600         rest of the bitfields to reduce padding.
7602 2008-09-18  Chong Yidong  <cyd@stupidchicken.com>
7604         * xterm.h (x_display_info): Remove `height' and `width' members.
7606         * nsterm.h (ns_display_info): Remove `height' and `width' members.
7608         * w32term.h (w32_display_info): Remove `height', `width',
7609         `height_in', and `width_in' members.
7611         * xterm.c (x_display_pixel_height, x_display_pixel_width):
7612         New functions.
7613         (x_calc_absolute_position): Use them.
7614         (x_term_init): Omit removed `height' and `width' members.
7616         * w32term.c (x_display_pixel_height, x_display_pixel_width):
7617         New functions.
7618         (w32_read_socket, x_calc_absolute_position): Use them.
7619         (w32_initialize_display_info, w32_term_init): Omit removed members
7620         of w32_display_info.
7622         * nsterm.m (x_display_pixel_height, x_display_pixel_width):
7623         New functions.
7624         (ns_initialize_display_info): Omit removed members of ns_display_info.
7626         * xterm.c (x_display_pixel_height, x_display_pixel_width):
7627         New functions.
7628         (x_calc_absolute_position): Use them.
7629         (x_term_init): Omit removed `height' and `width' members.
7631         * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
7632         (compute_tip_xy):
7633         * frame.c (x_fullscreen_adjust):
7634         * xmenu.c (menu_position_func): Use x_display_pixel_height and
7635         x_display_pixel_width.
7637 2008-09-18  Kenichi Handa  <handa@m17n.org>
7639         * composite.c (fill_gstring_header): Don't check FROM and TO here.
7640         (composition_compute_stop_pos): Fix handling of static composition.
7641         (Fcomposition_get_gstring): Check FROM and TO at first.
7643 2008-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7645         * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
7646         mixup (YAILOM).
7648 2008-09-17  Chong Yidong  <cyd@stupidchicken.com>
7650         * indent.c (Fvertical_motion): Use position reported by iterator
7651         instead of PT for determining screen motion (bug#943).
7653 2008-09-17  Romain Francoise  <romain@orebokech.com>
7655         * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
7657 2008-09-17  Kenichi Handa  <handa@m17n.org>
7659         * ftfont.c (ftfont_shape_by_flt): Downcase family name.
7661         * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
7662         if necessary.
7664 2008-09-16  Kenichi Handa  <handa@m17n.org>
7666         * coding.c (make_conversion_work_buffer): Avoid calling
7667         Fget_buffer_create if it is not necessary.
7669 2008-09-15  Martin Rudalics  <rudalics@gmx.at>
7671         * window.c (Fselect_window): Don't update window_select_count and
7672         use_time when norecord is not nil.
7674 2008-09-14  Kenichi Handa  <handa@m17n.org>
7676         * fileio.c (Finsert_file_contents): Delete incorrect decrement of
7677         specpdl_ptr.
7679 2008-09-12  Kenichi Handa  <handa@m17n.org>
7681         * indent.c (scan_for_column): Don't handle automatic composition
7682         if the current buffer is not associated with a window.
7684         * composite.c (composition_reseat_it): If the current buffer is
7685         not associated with a window, ignore the automatic composition.
7686         (find_automatic_composition): Likewise.
7688 2008-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7690         * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
7691         (Fgpm_mouse_stop): Use it.
7692         * termhooks.h (close_gpm): Declare.
7693         * keyboard.c (tty_read_avail_input): Forcefully close the gpm
7694         connection if Gpm_GetEvent fails.
7696         * window.c (set_window_buffer): Always preserve current-buffer.
7698 2008-09-12  Glenn Morris  <rgm@gnu.org>
7700         * charset.c (init_charset): Warn if etc/charsets not found.  (Bug#909)
7702 2008-09-11  Glenn Morris  <rgm@gnu.org>
7704         * charset.c (charset-map-path): Doc fix.
7706 2008-09-10  Kenichi Handa  <handa@m17n.org>
7708         * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
7710         * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
7711         compose a grapheme cluster with the preceding base glyph.
7713         * composite.c (composition_compute_stop_pos): Fix previous change.
7714         Reset cmp_it->id to -1 at first.
7716 2008-09-10  Glenn Morris  <rgm@gnu.org>
7718         * Makefile.in (character.o, chartab.o): Fix config.h typo.
7720 2008-09-09  Chong Yidong  <cyd@stupidchicken.com>
7722         * keyboard.c (read_key_sequence): Reapply translation maps when
7723         switching keyboards.
7725 2008-09-09  Kenichi Handa  <handa@m17n.org>
7727         * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
7728         characters.
7730         * composite.c (FORWARD_CHAR): Fix calculation
7731         of (POSITION).pos_byte.
7732         (composition_compute_stop_pos): Limit the search of composition to
7733         at most 500 characters ahead.  If we reach the limit or find a
7734         newline, set cmp_it->ch to -2 and return 0.
7735         (composition_reseat_it): Handle the case that cmp_it->ch is -2.
7737 2008-09-08  Kenichi Handa  <handa@m17n.org>
7739         * indent.c (Fvertical_motion): Be sure to set
7740         it_overshoot_expected if it.cmp_it.id is non-negative.
7742 2008-09-07  Andreas Schwab  <schwab@suse.de>
7744         * callproc.c (Fcall_process): Don't hold references to string data
7745         across garbage collection.  Move initialisation of new_argv down
7746         to avoid compiler bug.
7748 2008-09-07  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7750         * process.c (Fsystem_process_attributes): Doc fix.
7752 2008-09-07  Chong Yidong  <cyd@stupidchicken.com>
7754         * callproc.c (Fcall_process): Canonicalize current directory name.
7756         * xdisp.c (move_it_to): When moving by vpos, ensure that the
7757         iterator advances to the next line if the current line ends in a
7758         continued tab.
7760 2008-09-07  Teodor Zlatanov  <tzz@lifelogs.com>
7762         * nsfont.m (nsfont_draw): Fix the references to missing gidx data
7763         member to point to cmp_from.
7765         * xdisp.c: Doc fix for references to gidx data member.
7767 2008-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7769         * buffer.c (Fbuffer_swap_text): Reset window->point markers.
7771 2008-09-07  Kenichi Handa  <handa@m17n.org>
7773         * composite.c (FORWARD_CHAR): Check STOP after
7774         incrementing (POSITION).pos.
7776 2008-09-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7778         * process.c (Fsystem_process_attributes): Doc fix.
7780 2008-09-06  Chong Yidong  <cyd@stupidchicken.com>
7782         * keyboard.c (Ftop_level): Doc fix.
7784 2008-09-06  Eli Zaretskii  <eliz@gnu.org>
7786         * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
7787         minibuffer, don't let lower part of menu invade the echo area.
7789         * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
7790         "char *q" to access menu text and advance through it.  Revert the
7791         change that displayed ">" instead of ASCII character 0x10.
7793 2008-09-05  Eli Zaretskii  <eliz@gnu.org>
7795         * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
7796         toggle boxes and radio buttons on MS-DOS as well.
7798 2008-09-05  Kenichi Handa  <handa@m17n.org>
7800         * composite.c (autocmp_chars): Check lookback count.
7801         (composition_compute_stop_pos): Set cmp_it->lookback.
7802         (composition_reseat_it): Check lookback count.
7803         (struct position_record): New struct.
7804         (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
7805         (find_automatic_composition): New function.
7806         (composition_adjust_point): Use find_automatic_composition.
7808         * dispextern.h (struct composition_it): New member lookback.
7810 2008-09-02  Chong Yidong  <cyd@stupidchicken.com>
7812         * indent.c (Fvertical_motion): Don't call move_it_by_lines again
7813         if moving by a single line.
7815 2008-09-02  Andreas Schwab  <schwab@suse.de>
7817         * xterm.c (x_delete_display): Fix merge error.
7819         * fileio.c (Fexpand_file_name): Remove unused variables.
7821 2008-09-02  Eli Zaretskii  <eliz@gnu.org>
7823         * fileio.c (Fexpand_file_name): Copy argument `name' into local
7824         storage on all platforms, not just on DOS_NT.
7826 2008-09-02  Jason Rumney  <jasonr@gnu.org>
7828         * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
7829         Ensure mouse is not grabbed after menu is finished.
7831 2008-09-01  Chong Yidong  <cyd@stupidchicken.com>
7833         * xfaces.c (Finternal_set_alternative_font_family_alist)
7834         (Finternal_set_alternative_font_registry_alist): Properly copy
7835         entire alist structure.
7837 2008-09-01  Kenichi Handa  <handa@m17n.org>
7839         * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
7840         representative chars of the script is a vector.
7841         (ftfont_list): Handle the case where the representative chars of
7842         the script is a vector.
7844         * character.c (syms_of_character): Docstring of
7845         script-representative-chars fixed.
7847 2008-08-31  Eli Zaretskii  <eliz@gnu.org>
7849         * msdos.c (BUILD_CHAR_GLYPH): New macro.
7850         (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
7851         the menu.  Allocate larger buffer for `text', to account for
7852         possible ^C characters.
7854 2008-08-31  Martin Rudalics  <rudalics@gmx.at>
7856         * xdisp.c (prepare_menu_bars): Don't call
7857         Vwindow_size_change_functions with arg Qt.
7859 2008-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7861         * font.h (font_range):
7862         * fileio.c (report_file_error):
7863         * composite.c (composition_update_it): Yet another int/Lisp_Object
7864         mixup (YAILOM).
7866 2008-08-30  Glenn Morris  <rgm@gnu.org>
7868         * data.c (Fmake_variable_frame_local): Doc fix.
7870         * frame.c (Fmodify_frame_parameters): Doc fix.
7872 2008-08-30  Eli Zaretskii  <eliz@gnu.org>
7874         * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
7875         needed by GetTokenInformation.
7876         (w32_system_process_attributes): Check return values of all system
7877         APIs.
7879         * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
7880         only when the state changes.
7881         (IT_update_begin, IT_update_end): Add termscript trace.
7883         * w16select.c (Fw16_set_clipboard_data): Don't encode text if
7884         clipboard is unavailable.  Set dst to NULL if it doesn't point to
7885         malloc'ed data.
7886         (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
7887         passing random values to xfree.
7889         * dispnew.c (init_display): Set `tty's association in frame's
7890         parameters alist to the name of the terminal device, if that is known.
7892 2008-08-29  Jason Rumney  <jasonr@gnu.org>
7894         * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
7896 2008-08-29  Eli Zaretskii  <eliz@gnu.org>
7898         * composite.c (fill_gstring_body): Avoid compiler warnings.
7900         * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
7901         LGLYPH_SET_CODE to avoid compiler warnings.
7903         * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
7905         * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
7907         * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
7908         LGLYPH_SET_CODE.
7910 2008-08-29  Kenichi Handa  <handa@m17n.org>
7912         * fileio.c (report_file_error): Don't downcase the first character
7913         of errstring if it is still unibyte.
7915 2008-08-29  Kenichi Handa  <handa@m17n.org>
7917         These changes are to re-implement the automatic composition so
7918         that it doesn't use text properties.
7920         * Makefile.in (ftfont.o): Depend on composite.h.
7921         (composite.o): Depend dispextern.h, font.h, frame, and window.h.
7923         * character.h (Vunicode_category_table): Extern it.
7925         * character.c (Vunicode_category_table): New variable.
7926         (syms_of_character): DEFVAR_LISP Vunicode_category_table.
7928         * chartab.c (optimize_sub_char_table): Perform more greedy
7929         optimization.
7931         * composite.h (enum composition_method):
7932         Delete COMPOSITION_WITH_GLYPH_STRING.
7933         (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
7934         (Vcomposition_function_table): Extern it.
7935         (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
7936         (composition_gstring_put_cache, composition_gstring_from_id)
7937         (composition_gstring_p, composition_gstring_width)
7938         (composition_compute_stop_pos, composition_reseat_it)
7939         (composition_update_it, composition_adjust_point): Extern them.
7940         (Fcomposition_get_gstring): EXFUN it.
7942         * composite.c: Include window.h, frame.h, dispextern.h, font.h.
7943         (Vcomposition_function_table)
7944         (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
7945         (gstring_hash_table, gstring_work, gstring_work_headers):
7946         New variables.
7947         (gstring_lookup_cache, composition_gstring_put_cache)
7948         (composition_gstring_from_id, composition_gstring_p)
7949         (composition_gstring_width, fill_gstring_header)
7950         (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
7951         (composition_reseat_it, composition_update_it)
7952         (composition_adjust_point, Fcomposition_get_gstring): New functions.
7953         (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
7954         and gstring_work_headers.  DEFVAR_LISP composition-function-table.
7955         Defsubr composition_get_gstring.
7957         * dispextern.h (struct glyph): New union u.cmp.  Delete the member
7958         cmp_id.
7959         (struct glyph_string): Delete the member gidx.  New members
7960         cmp_id, cmp_from, and cmp_to.
7961         (enum it_method): Delete GET_FROM_COMPOSITION.
7962         (struct composition_it): New struct.
7963         (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
7964         Delete c, len, cmp_id, cmp_len in u.comp.
7966         * font.h (enum lgstring_indices): Delete it.
7967         (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
7968         (enum lglyph_indices): Likewise.
7969         (font_range): Adjust extern.
7970         (font_fill_lglyph_metrics): Extern it.
7972         * font.c (QCf): New variable.
7973         (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
7974         (font_prepare_composition): Delete this function.
7975         (font_range): Type and arguments changed.
7976         (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
7977         (font_fill_lglyph_metrics): New function.
7978         (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
7979         (syms_of_font): DEFSYM QCf.  Delete defsubr for
7980         Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
7981         Defsubr Sfont_shape_gstring.
7983         * fontset.h (font_for_char): Extern it.
7985         * fontset.c (font_for_char): New function.
7987         * ftfont.c: Include composite.h.
7988         (ftfont_resolve_generic_family): Add langset "en" to pattern.
7989         (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
7991         * indent.c: Include composite.h and dispextern.h.
7992         (check_composition): Delete this function.
7993         (scan_for_column): Handle composition by
7994         composition_compute_stop_pos, composition_reseat_it, and
7995         composition_update_it.
7996         (compute_motion): Likewise.
7997         (Fvertical_motion): Fix checking of composition.
7999         * keyboard.c (adjust_point_for_property): Check composition by
8000         composition_adjust_point.
8002         * nsterm.m (ns_draw_glyph_string): Adjust for the change of
8003         struct glyph_string.
8005         * term.c (encode_terminal_code): Adjust for the change of struct glyph.
8006         (append_composite_glyph): Adjust for the change of struct it and
8007         struct glyph.
8008         (produce_composite_glyph): Likewise.
8010         * w32term.c (x_draw_composite_glyph_string_foreground):
8011         Adjust for the change of struct glyph_string.
8012         (x_draw_glyph_string): Likewise.
8014         * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
8015         (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8017         * xdisp.c: Include font.h.
8018         (it_props): Delete the entry for Qauto_composed.
8019         (init_iterator): Initialize it->cmp_it.id to -1.
8020         (compute_stop_pos): Call composition_compute_stop_pos.
8021         (face_before_or_after_it_pos): Adjust for the change of struct it.
8022         (handle_auto_composed_prop): Delete it.
8023         (handle_composition_prop): Handle only static composition.
8024         (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
8025         from xassert.  Initialize it->cmp_it.stop_pos.
8026         (push_it): Adjust for the change of struct it.
8027         (pop_it): Likewise.
8028         (get_next_element): Delete next_element_from_composition.
8029         (CHAR_COMPOSED_P): New macro.
8030         (get_next_display_element): For automatic composition, get a face
8031         from the font in the glyph-string.
8032         (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
8033         check composition by it->cmp_it.id.  Delete GET_FROM_COMPOSITION case.
8034         (next_element_from_string): Check if the character at the current
8035         position is composed by CHAR_COMPOSED_P.
8036         (next_element_from_buffer): Likewise.
8037         (next_element_from_composition): Adjust for the change of struct it.
8038         Update it->cmp_it.
8039         (dump_glyph): Adjust for the change of struct glyph.
8040         (fill_composite_glyph_string): Adjust for the change of struct
8041         it and struct glyph.  Don't handle automatic composition here.
8042         (fill_gstring_glyph_string): New function.
8043         (x_get_glyph_overhangs): Handle automatic composition.
8044         (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
8045         (BUILD_GSTRING_GLYPH_STRING): New macro.
8046         (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
8047         automatic composition.
8048         (append_composite_glyph): Adjust for the change of struct it and
8049         struct glyph.
8050         (x_produce_glyphs): Adjust for the change of struct it.
8052         * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
8053         the change of struct glyph_string.
8054         (x_draw_glyph_string): Likewise.
8056 2008-08-29  Glenn Morris  <rgm@gnu.org>
8058         * buffer.c (word-wrap): Doc fix.
8059         * xdisp.c (truncate-partial-width-windows): Doc fix.
8060         Increase default to 50.
8062 2008-08-29  Chong Yidong  <cyd@stupidchicken.com>
8064         * xdisp.c (update_tool_bar_unwind): New function.
8065         (update_tool_bar): Temporarily set selected frame before building
8066         tool-bar items.
8068 2008-08-28  Michael Albinus  <michael.albinus@gmx.de>
8070         * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
8071         snprintf, respectively.
8072         (xd_append_arg): Convert strings with Fstring_make_unibyte.
8074 2008-08-28  Chong Yidong  <cyd@stupidchicken.com>
8076         * Makefile.in: Revert (undocumented) 2008-08-20 change adding
8077         LDFLAGS to GNUstep CC invocation.
8079 2008-08-27  Chong Yidong  <cyd@stupidchicken.com>
8081         * indent.c (Fvertical_motion): Revert last change.  Handle the
8082         general case where we are moving forward, and PT spans multiple
8083         screen lines.
8085         * eval.c (find_handler_clause): Temporarily increase
8086         max-lisp-eval-depth while printing the backtrace buffer, to
8087         guarantee that help-mode code can run.
8089 2008-08-27  Eli Zaretskii  <eliz@gnu.org>
8091         * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
8092         colors under -rv.
8093         (IT_set_frame_parameters): Don't swap foreground and background
8094         colors if `(reverse . t)' is present in the frame properties.
8095         (internal_terminal_init): Call init_frame_faces only for the
8096         initial frame.
8098 2008-08-27  Andreas Schwab  <schwab@suse.de>
8100         * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
8102 2008-08-27  Andreas Schwab  <schwab@suse.de>
8104         * search.c (search_buffer): Set char_base to zero only at the end.
8106 2008-08-27  Kenichi Handa  <handa@m17n.org>
8108         * fileio.c (report_file_error): Fix handling of multibyte error string.
8110 2008-08-27  Andreas Seltenreich  <seltenreich@gmx.de>
8112         * xterm.c (x_term_init): Temporarily hide the partially
8113         initialized terminal while calling vendor-specific-keysyms.
8115 2008-08-26  Eli Zaretskii  <eliz@gnu.org>
8117         * msdos.c (internal_terminal_init): Most initializations done only
8118         once, especially initial_screen_colors[] and termscript open.
8120 2008-08-26  Chong Yidong  <cyd@stupidchicken.com>
8122         * eval.c (Fcondition_case): Doc fix.
8124         * widgetprv.h (EmacsFramePart): Change font member to the new font
8125         struct.
8127         * widget.c: Include character.h and font.h for XSETFONT.
8128         (setup_frame_gcs): Compute X font id from font struct, just once.
8130 2008-08-26  Eli Zaretskii  <eliz@gnu.org>
8132         * term.c (get_named_tty): Fix last change.
8134 2008-08-26  Chong Yidong  <cyd@stupidchicken.com>
8136         * indent.c (Fvertical_motion): If moving forward starting from a
8137         multi-line string, move the iterator to the last line of that string.
8139 2008-08-25  Eli Zaretskii  <eliz@gnu.org>
8141         * frame.c (do_switch_frame): Mark previously displayed frame as
8142         obscured for FRAME_MSDOS_P frames as well.
8144 2008-08-24  Eli Zaretskii  <eliz@gnu.org>
8146         * frame.c (make_terminal_frame): Initialize f->terminal,
8147         f->terminal->reference_count, and scroll bars on MS-DOS as well.
8148         Set the top frame to newly created frame.
8149         (Fmake_terminal_frame): Reuse the_only_display_info.
8151         * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
8152         estimating available memory.
8154 2008-08-23  David Reitter  <david.reitter@gmail.com>
8156         * nsterm.m (ns_draw_window_cursor): Don't call
8157         NSDisableScreenUpdates and NSEnableScreenUpdates on
8158         non-NS_IMPL_COCOA systems.
8160 2008-08-23  Andreas Schwab  <schwab@suse.de>
8162         * process.c (procfs_system_process_attributes): Fix use of
8163         uninitialized variables.
8165 2008-08-23  Eli Zaretskii  <eliz@gnu.org>
8167         * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
8169         * dispnew.c (init_display): Remove MS-DOS specific conditions for
8170         calling tty-set-up-initial-frame-faces.
8172         * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
8173         Allow MSDOS frames along with X frames.
8175         * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
8176         addition to output_termcap.
8178         * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
8180         * termchar.h (FRAME_TTY): Support output_msdos_raw.
8181         (struct tty_display_info) [MSDOS]: Add fields related to mouse
8182         highlight.
8184         * process.c [!subprocesses]: Define QCname.
8185         (syms_of_process): Intern and staticpro it.
8187         * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
8188         Adjust for changes in encoding/decoding routines.
8189         Use encode_coding_object and decode_coding_object instead of
8190         encode_coding and decode_coding.
8192         * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
8194         * dosfns.c: Include frame.h before termhooks.h.
8195         (dos_cleanup): Use CURTTY ()->termscript instead of a global
8196         variable termscript.
8198         * s/msdos.h (USER_FULL_NAME): Define.
8199         (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
8201         * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
8202         (Fuser_full_name): Use USER_FULL_NAME instead of a literal
8203         pw->pw_gecos.
8205         * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
8206         SELECTED_FRAME as additional (1st) argument.
8207         (tty_read_avail_input): Handle output_msdos_raw in
8208         addition to output_termcap.
8210         * msdos.c: Include frame.h before termhooks.h.
8211         (mouse_on, mouse_off, mouse_moveto, mouse_init)
8212         (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
8213         (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
8214         (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
8215         (IT_set_terminal_modes, IT_reset_terminal_modes)
8216         (IT_set_frame_parameters): Use tty->termscript instead of a global
8217         variable termscript.
8218         (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
8219         global variable terminal_coding.  Don't refer to
8220         Vnonascii_translation_table.
8221         (internal_terminal_init): Set Vwindow_system in current_kboard.
8222         Don't use TTY_CHAR_INS_DEL_OK.  Set Vinitial_window_system.
8223         Announce date and time of session start, if termscript is open.
8224         Don't zero out the_only_display_info (it is done in
8225         term.c:init_tty).  Open termscript only of not already open.
8226         Log "SCREEN SAVED" here, instead of IT_set_terminal_modes.  Init mouse
8227         here instead of dos_ttraw.  Don't initialize display if this is an
8228         initial tty.  Don't set FRAME_FONT.
8229         (Vwindow_system_version): Bump to 23.
8230         (dos_ttraw): Accept a TTY argument; all callers fixed.  If mouse
8231         is available, set up mouse_position_hook.
8232         (dos_ttraw, IT_set_terminal_modes): If called with initial
8233         terminal, do nothing.
8234         (IT_set_frame_parameters): Handle the Qtty_type frame
8235         parameter by calling internal_terminal_init.
8236         (dos_set_window_size, show_mouse_face)
8237         (clear_mouse_face, IT_note_mode_line_highlight)
8238         (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
8239         (dos_rawgetc): Use tty_display_info instead of x_display_info.
8240         (initialize_msdos_display): New function.
8241         (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
8242         (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
8243         (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
8244         (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
8245         Accept additional argument: a pointer to a frame.  Update all callers.
8246         (request_sigio, unrequest_sigio): Don't define, now defined on
8247         sysdep.c.
8248         (IT_write_glyphs): Rewrite to use encode_terminal_code.
8250         * term.c [MSDOS]: Include msdos.h.
8251         (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch.  Change cpp
8252         conditional to DOS_NT.  Allow only one call to this function in a
8253         session.  Don't allocate a new struct tty_display_info; instead,
8254         reuse the_only_display_info.  Call get_tty_size to get screen
8255         dimensions.  Call init_baud_rate to set bad_rate.
8256         (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
8257         (Fsuspend_tty) [MSDOS]: Don't close input and output.
8258         (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
8259         (get_tty_terminal, get_named_tty, Ftty_type)
8260         (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
8261         output_termcap.
8262         (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
8263         Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
8264         only when subprocesses are supported.
8266         * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
8267         f->output_data.x.
8268         (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
8269         terminal devices.
8271         * msdos.h: Remove definition of struct x_display_info and struct
8272         x_output.
8273         (FRAME_FONT): Use output_data.tty.
8274         (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
8275         (struct x_display_info): Rename from display_info.  Update all users in
8276         msdos.c.
8277         (struct x_output): Remove background_pixel and foreground_pixel.
8278         (the_only_display_info): Rename from the_only_x_display.
8279         (dos_ttraw): Update prototype.
8281         * Makefile.in (MSDOS_OBJ): Add xmenu.o.
8282         (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
8284 2008-08-23  Jason Rumney  <jasonr@gnu.org>
8286         * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
8287         (fn_TIFFSetDirectory): New library function used.
8288         (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
8289         (tiff_load): Use :index to select among multiple images.  Set count
8290         property when multiple images exist.
8291         (gif_format): Use :index, not :image.
8293 2008-08-23  Chong Yidong  <cyd@stupidchicken.com>
8295         * xdisp.c (try_scrolling): Check INT_MAX instead of
8296         MOST_POSITIVE_FIXNUM for maximum integer value.  Include limits.h
8297         to obtain INT_MAX.
8299 2008-08-21  İsmail Dönmez  <ismail@namtrac.org>  (tiny change)
8301         * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
8303 2008-08-21  Christian Faulhammer  <opfer@gentoo.org>  (tiny change)
8305         * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
8306         GNUstep library location.
8308 2008-08-21  Chong Yidong  <cyd@stupidchicken.com>
8310         * xfaces.c (x_update_menu_appearance): Check validity of menu font
8311         before using it.
8313         * puresize.h (BASE_PURESIZE): Increase to 1250000.
8315 2008-08-20  Adrian Robert  <Adrian.B.Robert@gmail.com>
8317         * nsfns.m (ns-read-file-name): Add casts to avoid warning.
8318         (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
8319         * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
8320         * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
8321         (EmacsApp-cursor_blink_handler): Remove declaration.
8322         * nsterm.m (ns_draw_glyph_string): Update first conditional body to
8323         match 01 Feb 2008 changes in xterm.c.
8324         (ns_read_socket): Add cast to avoid warning.
8325         (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
8326         GNUstep.
8328 2008-08-20  Chong Yidong  <cyd@stupidchicken.com>
8330         * xselect.c (x_get_foreign_selection): Return nil if desired
8331         selection could not be obtained, instead of signalling an error.
8333 2008-08-20  David Reitter  <david.reitter@gmail.com>
8335         * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
8336         * nsterm.m: Remove ns-specific code for cursor blinking.
8337         (ns_draw_window_cursor): Clear cursor properly rather than
8338         redrawing the area.  Respect width of bar cursors.
8339         These changes enable the use of generic blink-cursor-mode and
8340         generic cursor types in NS and support smooth cursor movements (do
8341         not blink off after command).
8342         * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
8343         Nextstep, too.
8345 2008-08-19  Kenichi Handa  <handa@m17n.org>
8347         * font.c (Vfont_log_deferred): New variable.
8348         (font_add_log): Check Vfont_log_deferred.
8349         (font_deferred_log): New function.
8351         * font.h (font_deferred_log): Extern it.
8353         * fontset.c (reorder_font_vector): Use encoding charset of fonts
8354         for sorting.
8355         (face_for_char): Use deferred log.
8357 2008-08-18  Kenichi Handa  <handa@m17n.org>
8359         * fontset.c (face_for_char): Add font log.
8361         * font.c (font_add_log): Add the font properties :script, :lang,
8362         and :otf in the log.
8364 2008-08-17  Chong Yidong  <cyd@stupidchicken.com>
8366         * xdisp.c: Remove dead code.
8367         (handle_invisible_prop, next_overlay_string): Defer call to
8368         setup_for_ellipsis.
8369         (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
8371 2008-08-15  Chong Yidong  <cyd@stupidchicken.com>
8373         * xfaces.c (lookup_derived_face): Properly handle possible zero
8374         return value of get_lface_attributes.
8375         (merge_faces): Don't tell lookup_derived_face to signal an error
8376         if face is not found.
8378         * dired.c (Fdirectory_files): Doc fix.
8380         * process.c (make_process): Initialize kill_without_query struct
8381         member.
8383 2008-08-15  Eli Zaretskii  <eliz@gnu.org>
8385         * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
8386         Alternative calculation of totphys for Visual Studio 6.
8388         * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
8390         * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
8391         Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
8392         All users changed.
8393         (stat): Only root directory passed to GetDriveType.  Allow RAM
8394         disk as well as local fixed disk when w32-get-true-file-attributes
8395         is set to `local'.
8396         (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
8397         (equal_sid, get_length_sid, copy_sid): New wrapper functions.
8398         (w32_cached_id, w32_add_to_cache): New functions.
8399         (get_name_and_id): Look account names in the cache before calling
8400         lookup_account_sid.
8401         (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
8402         New initialization flags.
8403         (globals_of_w32): Initialize them to zero.
8404         (w32_system_process_attributes): Use w32_cached_id and
8405         w32_add_to_cache.
8407 2008-08-14  Lawrence Mitchell  <wence@gmx.li>
8409         * lread.c (Fread_char, Fread_char_exclusive): If no character
8410         event is read before timeout is reached, return nil, rather than
8411         converting to a number.
8413 2008-08-14  Chong Yidong  <cyd@stupidchicken.com>
8415         * fns.c (use_dialog_box): Doc fix.
8417         * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
8418         on OS X.
8420 2008-08-13  Chong Yidong  <cyd@stupidchicken.com>
8422         * frame.c (Qns_parse_geometry): New var.
8423         (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
8425 2008-08-11  Chong Yidong  <cyd@stupidchicken.com>
8427         * xdisp.c (x_produce_glyphs): Handle the case when font has no
8428         space character in calculating tabs.
8430 2008-08-11  Dan Nicolaescu  <dann@ics.uci.edu>
8432         * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
8434 2008-08-10  Glenn Morris  <rgm@gnu.org>
8436         * process.c (procfs_system_process_attributes): Use EMACS_INTs to
8437         silence gcc "limited range of data type" warnings in some
8438         make_fixnum_or_float calls.
8440 2008-08-09  Eli Zaretskii  <eliz@gnu.org>
8442         * w32.c (w32_system_process_attributes): If the process does not
8443         exist, return nil.
8445         * w32.c: Include thelp32.h, psapi.h and coding.h.
8446         (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
8447         declarations.
8448         (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
8449         (Process32Next_Proc): New typedefs.
8450         (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
8451         (g_b_init_process32_next, g_b_init_open_thread_token)
8452         (g_b_init_impersonate_self, g_b_init_revert_to_self)
8453         (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
8454         (g_b_init_get_process_working_set_size)
8455         (g_b_init_global_memory_status_ex): New static variables.
8456         (globals_of_w32): Initialize them.
8457         (create_toolhelp32_snapshot, process32_first, process32_next)
8458         (open_thread_token, impersonate_self, revert_to_self)
8459         (get_process_memory_info, get_process_working_set_size)
8460         (global_memory_status, global_memory_status_ex): New wrapper
8461         functions.
8462         (w32_list_system_processes, w32_system_process_attributes)
8463         (enable_privilege, restore_privilege, ltime, process_times):
8464         New functions.
8465         (convert_time_raw): New function.
8466         (convert_time): Remove conversion of FILETIME into time in 100
8467         nsec units, call convert_time_raw instead.
8469         * process.h (w32_list_system_processes, w32_system_process_attributes):
8470         Add prototypes.
8471         (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
8472         (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
8473         (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
8474         (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
8476         * process.c (Fsystem_process_attributes): Doc fix.
8478 2008-08-08  Chong Yidong  <cyd@stupidchicken.com>
8480         * xdisp.c (move_it_to): When stopping at a charpos, check if that's
8481         a continued multi-char glyph; if so, advance to the actual glyph.
8483 2008-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
8485         * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
8487         * Makefile.in (ALL_OBJC_CFLAGS): New variable.
8488         (.m.o): Use it.
8489         * config.in: Regenerate.
8491 2008-08-07  Chong Yidong  <cyd@stupidchicken.com>
8493         * xdisp.c (redisplay_window): Revert last change.
8494         (try_window): Check bottom scroll margin too.
8496 2008-08-06  Adrian Robert  <Adrian.B.Robert@gmail.com>
8498         * config.in: Regenerate.
8500         * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
8501         -list-load-path-shadows'.
8502         (nsgui.h): Reduce number of things depending on it.
8504 2008-08-06  Chong Yidong  <cyd@stupidchicken.com>
8506         * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
8507         instead of window-end which does the wrong thing at eob.
8508         (try_cursor_movement): Minor optimization.
8509         (redisplay_window): If scroll margin is defined, don't assume
8510         window doesn't need scrolling.
8512 2008-08-06  Adrian Robert  <Adrian.B.Robert@gmail.com>
8514         * config.in: Regenerate.
8516         * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
8517         (mostlyclean): Don't delete *.d under NS.
8519         * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
8521 2008-08-06  Kenichi Handa  <handa@m17n.org>
8523         * xfont.c (xfont_list_family): Return a list of symbols, not strings.
8525 2008-08-06  Andreas Schwab  <schwab@suse.de>
8527         * config.in: Regenerate.
8529 2008-08-05  Chong Yidong  <cyd@stupidchicken.com>
8531         * xdisp.c (redisplay_window): Don't enforce scroll-margin when
8532         forcing a window start.
8534         * fileio.c (Vauto_save_list_file_name): Move here from file.el.
8535         (auto_save_1): Update modtime when auto-save-list-file-name is on.
8537 2008-08-04  Adrian Robert  <Adrian.B.Robert@gmail.com>
8539         * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
8540         argument.
8542 2008-08-05  Juanma Barranquero  <lekktu@gmail.com>
8544         * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
8545         <scroll-down-aggressively, before-change-functions>:
8546         <after-change-functions>: Reflow docstrings.
8548 2008-08-04  Adrian Robert  <Adrian.B.Robert@gmail.com>
8549             Ken Raeburn  <raeburn@gnu.org>
8551         Dock menu customization, based on a patch by Ken Raeburn, plus some
8552         other fixes.
8553         * nsmenu.m (dockMenu): New variable.
8554         (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
8556         * nsterm.h (dockMenu): Declare.
8558         * nsterm.m (KEY_NS_NEW_FRAME): New definition.
8559         (ns_term_init): Initialize dockMenu.
8560         (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
8561         (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
8562         left.
8564         * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
8566 2008-08-04  Chong Yidong  <cyd@stupidchicken.com>
8568         * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
8570         * config.in: Regenerate.
8572 2008-08-04  Seiji Zenitani  <zenitani@mac.com>
8574         * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
8576 2008-08-04  Chong Yidong  <cyd@stupidchicken.com>
8578         * nsterm.h (find_and_call_menu_selection): Fix prototype.
8580 2008-08-04  Adrian Robert  <Adrian.B.Robert@gmail.com>
8582         * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
8584         * keyboard.h: Comment an #endif.
8586         * lisp.h (have_menus_p): Adjust comment.
8588         * menu.c (find_and_return_menu_selection): Fix comparison with
8589         client_data.
8591         * nsmenu.m (popup_activated_flag): New variable.
8592         (popup_activated): New function.
8593         (menu-or-popup-active-p): New exported lisp definition.
8594         (ns_popup_menu): Set popup_activated_flag.  Call discard_menu_items()
8595         when popup done.
8596         (ns_popup_dialog): Set popup_activated_flag.
8598         * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
8599         version for GNUstep (handled by conditional typedef in nsterm.m).
8600         (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
8601         in rgb.txt).
8603         * process.c (init_process): Use DARWIN_OS, not DARWIN.
8605         * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
8607         * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
8609         * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
8610         shortcircuit if popup_activated like GTK and X toolkit.
8612         * m/inter386.h: Change DARWIN to DARWIN_OS.
8614         * s/darwin.h: Add #define DARWIN_OS.  Get rid of C_SWITCH_SYSTEM def.
8615         Change LIBS_MACGUI to LIBS_NSGUI.  Move temacs-conditionalized defs
8616         closer to C_SWITCH_SYSTEM_TEMACS so usage is understood.  Expand
8617         comment on NO_SOCK_SIGIO.
8619 2008-08-03  Chong Yidong  <cyd@stupidchicken.com>
8621         * nsterm.m (windowDidResize): Remove stopModal call.
8623 2008-08-03  Andreas Schwab  <schwab@suse.de>
8625         * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
8626         (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
8628 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
8630         * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
8631         Don't use uninitialized pointer variable when using getrlimit.
8633 2008-08-02  Jason Rumney  <jasonr@gnu.org>
8635         * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
8637 2008-08-02  Eli Zaretskii  <eliz@gnu.org>
8639         * alloc.c (NSTATICS): Bump to 0x640.
8641         * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
8643         * lisp.h: Add prototype for directory_files_internal.
8645         * process.c (Fsystem_processes_list, Fsystem_process_attributes):
8646         New functions.
8647         (syms_of_process): Defsubr them.  Add initializations for various
8648         Q* symbols used in procfs_system_process_attributes.
8649         (procfs_list_system_processes, procfs_system_process_attributes)
8650         [HAVE_PROCFS]: New functions.
8651         (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
8652         (procfs_get_total_memory): New functions.
8654 2008-08-01  Juanma Barranquero  <lekktu@gmail.com>
8656         * xfaces.c (Fx_load_color_file): Fix previous change;
8657         it is #ifdef WINDOWSNT, not WINDOWS_NT.
8659 2008-08-01  Michael Albinus  <michael.albinus@gmx.de>
8661         * dbusbind.c (xd_read_message): Handle D-Bus error messages.
8663 2008-08-01  Adrian Robert  <Adrian.B.Robert@gmail.com>
8665         * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
8667 2008-08-01  Chong Yidong  <cyd@stupidchicken.com>
8669         * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
8671         * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
8672         define NSApplicationDelegateReplySuccess.
8673         (EmacsView -converstationIdentifier): Use long instead of
8674         NSInteger for GNUstep, since it doesn't have NSInteger.
8676         * xmenu.c: Revert last change.
8678         * keyboard.h: Fix last change.
8680 2008-08-01  Juanma Barranquero  <lekktu@gmail.com>
8682         * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
8683         on Windows.
8685 2008-08-01  Adrian Robert  <Adrian.B.Robert@gmail.com>
8687         Warning clearing and clean-up in NS port.
8688         * keyboard.h (xmalloc_widget_value, digest_single_submenu):
8689         Add prototypes.
8690         * nsgui.h (FACE_DEFAULT): Remove, unused.
8691         (XGCValues): Change colors to unsigned long.
8692         * nsterm.h (EmacsApp): Add declaration of all methods implemented in
8693         nsterm.m.
8694         (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
8695         (ns_list_fonts): Remove, unused.
8696         (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
8697         * nsfns.m (interpret_services_menu): Use NSMenuItem class.
8698         * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
8699         (nsfont_draw): Compare face colors to 0, not nil.
8700         * nsmenu.m (struct widget_value): Drop unneeded declaration.
8701         (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
8702         (-addSubmenuWithTitle:): Use NSMenuItem class.
8703         (ns_popup_menu): Use NO, not NULL, for enabled setting.
8704         * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
8705         (ns_clip_to_row): Make gc arg a BOOL.
8706         (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
8707         ns_clip_to_row() call.
8708         (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
8709         used).  Cast FRAME_FONT assignments.
8710         (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
8711         (ns_string_to_lispmod): Change arg to const char.
8712         (ns_term_init): Use NSMenuItem class.
8713         (EmacsApp -openFile:): Move to different section of file.
8714         (EmacsApp -application:openFiles:): Don't return a value, call
8715         -replyToOpenOrPrint:.
8716         (EmacsView -keyDown:): Fix up cast.
8717         (EmacsView -converstationIdentifier): Use NSInteger instead of long.
8718         (EmacsView -menuDown:): Cast tag in call to
8719         find_and_call_menu_selection().
8720         (ns_list_fonts): Remove, unused.
8721         (ns_font_to_xlfd): Make static.  Cast result of UTF8String.
8722         (ns_fontname_to_xlfd): Make static.
8723         * w32menu.c (xmalloc_widget_value, digest_single_submenu):
8724         Remove prototypes (now in keyboard.h).
8725         (next_menubar_widget_id): Remove, unused.
8726         * xmenu.c (xmalloc_widget_value, digest_single_submenu):
8727         Remove prototypes (now in keyboard.h).
8728         * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
8730 2008-08-01  Dan Nicolaescu  <dann@ics.uci.edu>
8732         * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
8733         (floatfns.o): Depend on syssignal.h.
8734         (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
8736         * systty.h: Fix previous change that removed BSD_TERMIOS.
8737         Add comments to #ifdefs.
8739 2008-08-01  Adrian Robert  <Adrian.B.Robert@gmail.com>
8741         * w32fns.c (w32-load-color-file): Remove.
8742         (x-open-connection): Use renamed Fx_load_color_file.
8743         * xfaces.c (x-load-color-file): Add.
8744         * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
8745         Emacs.clr.
8746         (hide_hourglass): BLOCK_INPUT before UNBLOCK.
8748 2008-07-31  Michael Albinus  <michael.albinus@gmx.de>
8750         * dbusbind.c (Fdbus_call_method_asynchronously)
8751         (Fdbus_method_error_internal): New defuns.
8752         (xd_read_message): Handle also reply messages.
8753         (Vdbus_registered_functions_table): Extend docstring.
8755 2008-07-31  Juanma Barranquero  <lekktu@gmail.com>
8757         * keyboard.c (gobble_input): Fix previous change.
8759 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
8761         * bitmaps/README:
8762         * xfns.c:
8763         * termcap.c:
8764         * term.c:
8765         * syswait.h:
8766         * systty.h:
8767         * systime.h:
8768         * syssignal.h:
8769         * sysdep.c:
8770         * process.h:
8771         * process.c:
8772         * print.c:
8773         * ndir.h:
8774         * lread.c:
8775         * keyboard.c:
8776         * getpagesize.h:
8777         * floatfns.c:
8778         * fileio.c:
8779         * emacs.c:
8780         * doc.c:
8781         * dispnew.c:
8782         * dired.c:
8783         * data.c:
8784         * callproc.c:
8785         * buffer.c:
8786         * README:
8787         * Makefile.in:
8788         * s/template.h:
8789         * s/msdos.h:
8790         * m/vax.h: Remove VMS support.
8791         * s/vms.h:
8792         * vlimit.h:
8793         * uaf.h:
8794         * temacs.opt:
8795         * param.h:
8796         * ioctl.h: Remove file.
8798 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
8800         * s/ms-w32.h (MULTI_KBOARD): Remove.
8801         * xterm.c:
8802         * xselect.c:
8803         * xfns.c:
8804         * window.c:
8805         * w32term.c:
8806         * w32fns.c:
8807         * terminal.c:
8808         * termhooks.h:
8809         * term.c:
8810         * sysdep.c:
8811         * keyboard.h:
8812         * keyboard.c:
8813         * frame.h:
8814         * frame.c:
8815         * frame.c: Remove references to MULTI_KBOARD, it is now the default.
8816         * config.in: Regenerate.
8818 2008-07-30  Jason Rumney  <jasonr@gnu.org>
8820         * w32font.h (struct w32font_info): Use unicode version of textmetrics.
8822         * w32font.c (w32font_encode_char): Leave as unicode if in range.
8823         (w32font_open_internal): Get unicode version of textmetrics.
8824         Don't enable or disable glyph indices here.
8825         (w32font_open): Disable use of glyph indices.
8827         * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
8829 2008-07-30  Chong Yidong  <cyd@stupidchicken.com>
8831         * minibuf.c (Vread_buffer_function): Doc fix.
8833 2008-07-30  John Paul Wallington  <jpw@pobox.com>
8835         * minibuf.c (read_buffer_completion_ignore_case): New var.
8836         (Fread_buffer): Use it.
8838 2008-07-30  Dan Nicolaescu  <dann@ics.uci.edu>
8840         * systty.h (sensemode): Remove empty #if.  Remove reference to
8841         BSD_TERMIOS, unused.
8843         * sysdep.c: Remove reference to DGUX.
8844         (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
8846         * config.in: Regenerate.
8848 2008-07-30  Jason Rumney  <jasonr@gnu.org>
8850         * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
8852 2008-07-29  Jason Rumney  <jasonr@gnu.org>
8854         * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
8855         is populated.
8856         (uniscribe_encode_char): Always use uniscribe.
8857         Avoid using context if cache is populated.
8859 2008-07-29  Jan Djärv  <jan.h.d@swipnet.se>
8861         * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
8862         open menu.
8864         * gtkutil.c (menu_nav_ended): Remove.
8865         (create_menus): Remove signal connect for menu_nav_ended.
8867 2008-07-28  Chong Yidong  <cyd@stupidchicken.com>
8869         * xdisp.c (redisplay_window): Check return value of
8870         compute_window_start_on_continuation_line before forcing a window
8871         start.
8873 2008-07-28  Jason Rumney  <jasonr@gnu.org>
8875         * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
8877         * w32term.c (w32_enable_unicode_output, cleartype_active):
8878         Remove obsolete display options.
8879         (x_draw_glyph_string_background): Don't use old cleartype_active
8880         workaround.
8881         (w32_initialize): Remove cleartype_active initialization.
8882         (syms_of_w32term): Remove w32_enable_unicode_output initialization.
8884 2008-07-28  Andreas Schwab  <schwab@suse.de>
8886         * lisp.h (init_weak_hash_tables, syms_of_font)
8887         (xd_read_queued_messages, syms_of_dbusbind): Declare.
8888         (remove_hash_entry): Don't declare.
8889         * eval.c (maybe_call_debugger): Make static and move before use.
8890         * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
8891         * xdisp.c: Include "gtkutil.h" if USE_GTK.
8892         * xterm.h (x_set_frame_alpha): Declare.
8894 2008-07-28  Jan Djärv  <jan.h.d@swipnet.se>
8896         * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
8897         (create_menus): Connect selection-done to menu_nav_ended.
8899 2008-07-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
8901         * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
8902         Set Vx_resource_name to a fallback.  Replace read of 'buffered'
8903         parameter with read of 'alpha' one.
8904         (Qns_frame_parameter): Remove.
8905         * nsselect.m (selection-coding-system)
8906         (next-selection-coding-system, Vselection_coding_system)
8907         (Vnext_selection_coding_system): Drop.
8909 2008-07-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
8911         * nsfns.m (do-applescript, do_applescript): Rename to
8912         ns-do-applescript, ns_do_applescript, and move within file.
8914 2008-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
8916         Remove support for Mac Carbon.
8917         * mactoolbox.c:
8918         * macterm.h:
8919         * macterm.c:
8920         * macselect.c:
8921         * macmenu.c:
8922         * macgui.h:
8923         * macfns.c:
8924         * mac.c: Remove file.
8925         * s/darwin.h:
8926         * m/intel386.h:
8927         * xfaces.c:
8928         * xdisp.c:
8929         * window.c:
8930         * tparam.c:
8931         * termhooks.h:
8932         * termcap.c:
8933         * term.c:
8934         * syssignal.h:
8935         * sysselect.h:
8936         * sysdep.c:
8937         * process.c:
8938         * lread.c:
8939         * lisp.h:
8940         * keyboard.c:
8941         * image.c:
8942         * fringe.c:
8943         * frame.h:
8944         * frame.c:
8945         * fontset.c:
8946         * font.h:
8947         * font.c:
8948         * fns.c:
8949         * fileio.c:
8950         * emacs.c:
8951         * dispnew.c:
8952         * dispextern.h:
8953         * config.in:
8954         * atimer.c:
8955         * Makefile.in: Remove code for Carbon.
8957 2008-07-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8959         * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
8961 2008-07-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8963         * macterm.h (kCGBitmapByteOrder32Host): New define for
8964         non-universal SDKs.
8966         * image.c (mac_create_cg_image_from_image, image_load_image_io)
8967         [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
8969         * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
8970         [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
8972 2008-07-26  David Robinow  <drobinow@gmail.com>  (tiny change)
8974         * w32inevt.c: Include dispextern.h.
8976 2008-07-26  Andreas Schwab  <schwab@suse.de>
8978         * print.c (print_object): Fix off-by-one in last change.
8980 2008-07-25  Juanma Barranquero  <lekktu@gmail.com>
8982         * term.c (syms_of_term): Don't initialize default_orig_pair,
8983         default_set_foreground and default_set_background on Windows.
8985 2008-07-25  Jason Rumney  <jasonr@gnu.org>
8987         * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
8988         ScriptItemize.  Clean up return value checking.  Remove unused
8989         variables.
8990         (uniscribe_encode_char): Encode non-BMP characters with uniscribe
8991         shaping engine.
8993         * w32font.c (w32font_has_char): Handle the case where we can't
8994         determine the script for a character.
8996 2008-07-25  Chong Yidong  <cyd@stupidchicken.com>
8998         * term.c (syms_of_term): Initialize default_orig_pair,
8999         default_set_foreground, and default_set_background.
9001         * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
9002         clash (bug#86).
9003         (getloadavg): Callers changed.
9005         * image.c (svg_load_image): Fix last change.
9006         (svg_load_image): Use rsvg_handle_get_dimensions to check that
9007         image size is valid.  Use g_object_unref instead of deprecated
9008         rsvg_handle_free to free rsvg handle.
9009         (x_from_xcolors): Don't initialize pixmap (silence compiler).
9011 2008-07-25  Jason Rumney  <jasonr@gnu.org>
9013         * w32font.c (w32font_encode_char): Encode characters outside BMP as
9014         surrogates before looking up glyph index.
9015         (w32font_text_extents): Encode as surrogates if falling back to
9016         functions that need UTF-16 wide chars.
9018         * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
9019         BMP as surrogates before looking up glyph index.
9021 2008-07-25  Chong Yidong  <cyd@stupidchicken.com>
9023         * image.c (svg_load_image): Check for failure in return value of
9024         rsvg_handle_get_pixbuf.  Free rsvg handle when done.
9026 2008-07-25  Jason Rumney  <jasonr@gnu.org>
9028         * w32font.c (Fx_select_font): Reverse sense of second arg.
9030 2008-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9032         * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
9033         (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
9035         * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
9036         (PURESIZE): Use it.
9038 2008-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
9040         * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
9041         * m/alpha.h (TEXT_END):
9042         * m/ibmrs6000.h (TEXT_END):
9043         * m/macppc.h (TEXT_END):
9044         * s/darwin.h (TEXT_END):
9045         * s/msdos.h (TEXT_END): Remove, unused.
9046         * s/gnu-linux.h (BSD_PGRPS): Add a comment.
9047         * s/cygwin.h: Remove comment.
9049         * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
9050         (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
9051         * m/intel386.h (DOT_GLOBAL_START):
9052         * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
9053         (USG): Remove, file not used on USG platforms.
9055         * Makefile.in (HAVE_X11): Remove empty #else.
9057 2008-07-24  Andreas Schwab  <schwab@suse.de>
9059         * fileio.c (Finsert_file_contents): Properly adjust undo list
9060         after format conversion.
9062 2008-07-24  Jan Djärv  <jan.h.d@swipnet.se>
9064         * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
9065         (menu_nav_ended): Remove.
9066         (create_menus): Remove signal connect for menu_nav_ended.
9067         (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
9068         create_menus.
9069         (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
9071 2008-07-23  Jason Rumney  <jasonr@gnu.org>
9073         * w32font.c (w32_enumfont_pattern_entity): Return height consistent
9074         with opened font.
9075         (w32font_open): Set font type to gdi.
9077         * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
9079 2008-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
9081         * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
9082         * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
9083         defines it.
9084         * unexec.c (ADDR_CORRECT): Define unconditionally.
9086         * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
9088         * unexec.c: Remove code depending on !COFF and USG, the file is
9089         not used for such systems.
9091         * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
9092         * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
9093         (LD_SWITCH_SYSTEM_1): Remove, update users.
9095         * s/darwin.h (DATA_END):
9096         * m/intel386.h (DATA_END):
9097         * m/ibmrs6000.h (DATA_END):
9098         * m/alpha.h (DATA_END): Remove, unused.
9100         * config.in: Regenerate.
9101         * s/ms-w32.h (subprocesses): Define unconditionally.
9102         * s/template.h (subprocesses): Update comment.
9103         * s/vms.h (subprocesses):
9104         * s/usg5-4.h (subprocesses):
9105         * s/hpux10-20.h (subprocesses):
9106         * s/gnu-linux.h (subprocesses):
9107         * s/cygwin.h (subprocesses):
9108         * s/bsd-common.h (subprocesses):
9109         * s/aix4-2.h (subprocesses):
9110         * s/darwin.h (subprocesses): Do not define, defined by default now.
9112         * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
9113         Remove all references.
9114         (temacs): Add GNUstep specific ld flags.
9116         * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
9117         similarly to what X does.
9119 2008-07-22  Adrian Robert  <Adrian.B.Robert@gmail.com>
9121         * nsfns.m (x-list-fonts): Remove.
9122         (syms_of_nsfns): Drop the x-list-fonts declaration.
9123         * nsterm.m: Get rid of remaining "//" comments.
9125 2008-07-22  Chong Yidong  <cyd@stupidchicken.com>
9127         * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
9129         * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
9130         (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
9131         (Fns_own_selection_internal, Fx_disown_selection_internal)
9132         (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
9134         * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
9135         ... */' style of docstrings.  Doc fixes.
9137 2008-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
9139         * terminfo.c (UP, BC, PC): Undo previous change.
9141         * nsfns.m: Rename ns prefixed functions/variables to the
9142         corresponding x versions.  Update references.
9144 2008-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9146         * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
9148 2008-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
9150         * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
9151         Remove forwarding functions.
9152         (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
9153         non-static.
9154         (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
9155         non-static.
9156         (ns_frame_parm_handlers): Use the new names.
9157         (syms_of_nsfns): Move to the end of file.
9159         * nsterm.m (syms_of_nsterm): Move to the end of file.
9161         * dispnew.c (init_display): Remove code for X10.
9163 2008-07-22  Jason Rumney  <jasonr@gnu.org>
9165         * w32proc.c (Fw32_long_file_name): Don't append dir separator to
9166         bare drive.
9168 2008-07-22  Adrian Robert  <Adrian.B.Robert@gmail.com>
9170         * nsterm.m (syms_of_nsterm): Remove debugging println.
9172 2008-07-22  David Reitter  <david.reitter@gmail.com>
9174         * nsfns.m (do_applescript, F_do_applescript): NS version of the
9175         Carbon implementation of the same functionality: execute arbitrary
9176         AppleScript code.
9178 2008-07-21  Adrian Robert  <Adrian.B.Robert@gmail.com>
9180         * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
9181         (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
9182         (Fx_server_vendor, Fx_server_version, Fx_display_screens)
9183         (Fx_display_mm_height, Fx_display_mm_width)
9184         (Fx_display_backing_store, Fx_display_visual_class)
9185         (Fx_display_save_under, Fx_open_connection)
9186         (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
9187         (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
9188         (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
9189         (Fx_display_pixel_width, Fx_display_pixel_height)
9190         (Fx_display_usable_bounds, Fx_display_planes)
9191         (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
9192         ... */' style of docstrings.
9194 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
9196         * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
9197         on this platform.
9198         (mips):
9199         * m/iris4d.h (mips): Do not define.
9200         * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
9202         * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
9204         * image.c:
9205         * nsfns.m:
9206         * nsselect.m:
9207         * nsterm.h:
9208         * nsterm.m: Rename ns prefixed functions/variables to the
9209         corresponding x versions.  Update references.
9211         * m/ibms390x.h (NO_REMAP): Do not undefine.
9213         * m/amdx86-64.h: Use SOLARIS2 instead of sun.
9215 2008-07-21  Chong Yidong  <cyd@stupidchicken.com>
9217         * nsfns.m: Change NS to Nextstep in docstrings and error messages.
9218         (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
9219         (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
9220         (Fns_server_vendor, Fns_server_version, Fns_display_screens)
9221         (Fns_display_mm_height, Fns_display_mm_width)
9222         (Fns_display_backing_store, Fns_display_visual_class)
9223         (Fns_display_save_under, Fns_open_connection)
9224         (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
9225         (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
9226         (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
9227         (Fns_display_pixel_width, Fns_display_pixel_height)
9228         (Fns_display_usable_bounds, Fx_display_planes)
9229         (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
9231 2008-07-21  Ami Fischman  <ami@fischman.org>  (tiny change)
9233         * print.c (print_object): Check print_depth before searching for
9234         circularities.
9236 2008-07-21  Michael Albinus  <michael.albinus@gmx.de>
9238         * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
9239         only sprintf.
9241 2008-07-21  Kenichi Handa  <handa@m17n.org>
9243         * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
9245 2008-07-20  Andreas Schwab  <schwab@suse.de>
9247         * syntax.c (find_start_pos, find_start_value)
9248         (find_start_value_byte, find_start_begv, find_defun_start)
9249         (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
9251 2008-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
9253         * s/sol2-3.h: Insert contents of s/sol2.h.
9254         (LD_SWITCH_SYSTEM): Remove redundant definition.
9255         * s/sol2.h: Remove, unused.
9257 2008-07-20  Adrian Robert  <Adrian.B.Robert@gmail.com>
9259         * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
9261 2008-07-20  Adrian Robert  <Adrian.B.Robert@gmail.com>
9263         * Makefile.in (ns_appdir): Fix typo in find command.
9265 2008-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
9267         * m/intel386.h (NO_REMAP): Do no define for USG, not used.
9269         * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
9270         added not supported anymore.
9272         * s/usg5-4-2.h (LIBS_SYSTEM):
9273         * s/sol2.h (LIBS_SYSTEM): Do not undefine.
9275         * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
9276         * s/lynxos.h (GETPGRP_NO_ARG):
9277         * s/hpux10-20.h (NO_SIOCTL_H):
9278         * s/gnu.h (GETPGRP_NO_ARG):
9279         * s/gnu-linux.h (NO_SIOCTL_H):
9280         * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
9281         * s/cygwin.h (GETPGRP_NO_ARG):
9282         * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
9283         (C_DEBUG_SWITCH): Remove duplicate definition.
9285         * m/ibms390.h: Remove boilerplate comments.
9287         * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
9289         * process.c (HAVE_SERIAL): Consolidate ifdefs.
9290         (wait_reading_process_output): Remove code for SunOS, platform not
9291         supported anymore.  Use SOLARIS2 instead of sun.
9293 2008-07-19  Adrian Robert  <Adrian.B.Robert@gmail.com>
9295         * font.c (font_open_by_name): Under NS, default lface height to zero.
9296         (font_open_for_lface): Under NS, set size based on frame fontsize.
9297         * nsterm.m (EmacsView-changeFont:): Remove some commented code.
9298         * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
9300 2008-07-19  Adrian Robert  <Adrian.B.Robert@gmail.com>
9302         * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
9303         (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
9304         DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
9305         YES/NO.
9306         * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
9307         * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
9308         * Makefile.in (clean): Clear out build destination dir.
9310 2008-07-19  Adrian Robert  <Adrian.B.Robert@gmail.com>
9312         * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
9313         xterm, xselect.
9314         * lisp.h: Remove declaration of hash_remove.
9315         * nsgui.h: Remove redefinitions of hash_remove.
9316         * fns.c (hash_remove): Rename to hash_remove_from_table.
9318 2008-07-19  Seiji Zenitani  <zenitani@mac.com>
9320         * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
9321         strdup() the family UTF8String before modifying it.
9323 2008-07-19  Adrian Robert  <Adrian.B.Robert@gmail.com>
9325         * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
9326         NS_FACE_BACKGROUND with 0 instead of nil.
9327         * nsfont.m (nsfont_draw): Same.
9329 2008-07-19  Chong Yidong  <cyd@stupidchicken.com>
9331         * nsfns.m (ns_set_background_color): Fix crash.
9333 2008-07-18  Chong Yidong  <cyd@stupidchicken.com>
9335         * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
9337 2008-07-18  Dan Nicolaescu  <dann@ics.uci.edu>
9339         * puresize.h (BASE_PURESIZE): Increase to 1240000.
9341 2008-07-17  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9343         * gtkutil.c: Include <config.h> instead of "config.h".
9345         * lisp.h (Foverlay_buffer): Add EXFUN.
9347         * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
9348         child process to complete child_setup.  Undo 2005-09-21 change.
9350         * s/darwin.h: Mention setsid after vfork.
9352 2008-07-17  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9354         * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
9355         Depend on macgui.h.
9357         * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
9358         gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
9360         * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
9361         and f19.
9362         [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
9364         * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
9365         (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
9366         Remove enumerators.
9368         * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
9369         Check if FACE_FROM_ID returns NULL.
9371 2008-07-17  David Robinow  <drobinow@gmail.com>  (tiny change)
9373         * w32inevt.c (change_frame_size): Remove extern declaration.
9374         (resize_event, maybe_generate_resize_event): Pass SAFE arg to
9375         change_frame_size.
9377 2008-07-17  Adrian Robert  <Adrian.B.Robert@gmail.com>
9379         * getloadavg.c: Revert last change (2008-07-15).
9381 2008-07-17  Adrian Robert  <Adrian.B.Robert@gmail.com>
9383         * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
9384         set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
9385         from configure.
9387 2008-07-17  Dan Nicolaescu  <dann@ics.uci.edu>
9389         * s/sol2.h:
9390         * s/sol2-4.h: Reorganize conditionals.
9392         * ecrt0.c: Remove code depending on m68000, not used anymore.
9394         * fns.c (hash_remove): Make static.
9395         * lisp.h (hash_remove): Don't prototype.
9397         * m/ibmrs6000.h:
9398         * m/ibms390x.h:
9399         * m/macppc.h: Remove boilerplate comments.
9401         * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
9402         Solaris, which does not need them.
9404         * m/vax.h: Remove comments about unsupported systems.
9406         * s/darwin.h: Reorganize ifdefs.
9408 2008-07-17  Andreas Schwab  <schwab@suse.de>
9410         * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
9412 2008-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9414         Use SDATA.  Follow coding convention of placing operators at
9415         beginning of next line rather than end of previous line, and placing
9416         spaces around infix operators.
9418         * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
9419         in case it was defined already.
9420         USE @GNUSTEP_MAKEFILES@ rather than envvars.
9421         * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
9422         ns_default.
9423         (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
9424         Lisp_Objects.
9425         * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
9426         (ns_defined_color, ns_color_to_lisp): Declare.
9427         * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
9428         (Fns_own_selection_internal): Make the big ugly hack more explicit, so
9429         it's accepted even with USE_LISP_UNION_TYPE.
9430         * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
9431         (update_frame_tool_bar): Remove apparently obsolete tests for
9432         non-integerness of f->tool_bar_lines.
9433         (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
9434         hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
9435         * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
9436         (nsfont_open): Don't confuse NULL for Qnil.
9437         * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
9438         * menu.h (find_and_call_menu_selection):
9439         * menu.c (find_and_call_menu_selection): Use just int for vector size.
9440         (find_and_return_menu_selection): Always return something.
9441         * frame.h: Include dispextern.h for Display_Info.
9442         (display_x_get_resource): Declare.
9444 2008-07-16  Adrian Robert  <Adrian.B.Robert@gmail.com>
9446         * syntax.c: Remove stdio.h include accidentally introduced in
9447         Emacs.app commit.
9448         * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
9449         NS_IMPL_COCOA.
9450         * keyboard.c (handle_async_input, input_available_signal): Remove
9451         BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
9453 2008-07-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9455         * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
9456         (ns_lisp_to_color): Don't mess with internal Lisp data fields.
9457         (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
9458         Use SDATA.
9460         * keymap.c: Remove all NS-specific code.
9461         (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
9462         (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
9463         where_is_preferred_modifier, return a different value depending on how
9464         preferred is the binding.
9465         (where_is_internal): Adjust accordingly.
9466         (Fwhere_is_internal): Refresh where_is_preferred_modifier.
9467         Adjust to new preferred_sequence_p.
9468         (syms_of_keymap): Declare `where-is-preferred-modifier'.
9469         * keyboard.c (parse_solitary_modifier): Not static any more.
9470         * keyboard.h (parse_solitary_modifier): Declare.
9472 2008-07-16  Andreas Schwab  <schwab@suse.de>
9474         * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
9475         of easymenu.
9477 2008-07-16  Chong Yidong  <cyd@stupidchicken.com>
9479         * xdisp.c (move_it_in_display_line): Account for word wrap, so
9480         that we don't move off the line.
9482 2008-07-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9484         * keyboard.c (Qsuper): Remove.
9485         (parse_menu_item): Don't call where_is_internal specially for NS.
9487 2008-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
9489         * s/gnu-linux.h: Remove boilerplate comments.
9491         * m/alpha.h (__ELF__): Consolidate conditions.
9493         * m/m68k.h (linux): Use GNU_LINUX instead.
9494         Remove boilerplate comments.
9496         * m/intel386.h: Undo refactoring from previous change.
9497         (LIB_STANDARD): All systems that define USG define LIB_STANDARD
9498         too, remove dead code.
9499         (linux): Use GNU_LINUX instead.
9501 2008-07-16  Jason Rumney  <jasonr@gnu.org>
9503         * w32gui.h: Repeat 26 June changes lost by last change.
9505 2008-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
9507         * systty.h: Remove code for Aix on 386, unsupported platform.
9509         * s/ms-w32.h: Remove boilerplate comments.
9510         (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
9512         * s/gnu-linux.h (TERM): Remove support.
9513         (HAVE_SYSVIPC): Remove, unused.
9514         (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
9515         for this system.
9517         * process.c: Remove support for IRIS, unused.
9518         Remove support for TERM, not relevant anymore.
9520         * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
9521         used with the definition.
9523         * s/aix4-2.h (static): Do not undef.
9525         * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
9526         only used on Aix.
9527         (HAVE_SYSVIPC): Remove, unused.
9529         * m/hp800.h (CANNOT_DUMP): Do not undef.
9531         * m/alpha.h: Fix comment.
9533         * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
9534         (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
9535         used by this configuration.
9536         * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
9537         * unexec.c: Remove code depending on HPUX and
9538         USG_SHARED_LIBRARIES, not used with this file.  Remove code
9539         depending on IRIS, unused.  Remove if 0-ed code.
9541         * s/template.h: Remove comments about static.
9543         * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
9544         Remove if 0-ed code.
9545         (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
9546         were the same as the default.
9547         * s/vms.h (BAUD_CONVERT): Remove, same as the default.
9548         Remove boilerplate comments.
9549         * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
9550         (HAVE_SYSVIPC): Remove, unused.
9551         (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
9553         * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
9554         Remove boilerplate comments.
9555         * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
9556         Remove boilerplate comments.
9557         * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
9558         Remove boilerplate comments.
9559         * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
9561         * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
9562         USG systems which do not use DATA_SEG_BITS.
9563         Refactor code.  Remove boilerplate comments.
9565         * m/ibms390.h:
9566         * m/m68k.h:
9567         * s/bsd-common.h:
9568         * s/cygwin.h:
9569         * s/darwin.h:
9570         * s/freebsd.h:
9571         * s/gnu.h:
9572         * s/msdos.h: Remove boilerplate comments.
9574         * m/iris4d.h: Remove boilerplate comments and code for systems that
9575         do not use this file.
9576         (IRIS_4D): Remove, unused.
9578         * m/mips.h: Remove boilerplate comments and code for systems that
9579         do not use this file.
9580         (SIGN_EXTEND_CHAR):
9581         * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
9582         * unexmips.c: Remove file, unused.
9584         * editfns.c (Fuser_full_name): Replace the only use of
9585         USER_FULL_NAME with its value.
9586         * config.in: Regenerate.
9588 2008-07-16  David Reitter  <david.reitter@gmail.com>
9590         * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
9591         easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
9593 2008-07-16  Glenn Morris  <rgm@gnu.org>
9595         * emacs.c (system-type): Doc fix.
9597 2008-07-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9599         * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
9600         If the cache doesn't work, let's fix it, rather than work around it.
9602 2008-07-15  Adrian Robert  <Adrian.B.Robert@gmail.com>
9604         * Makefile.in: Correct additions for nsfont.o in last commit.
9605         * nsfont.m: New file (forgot last commit).
9607 2008-07-15  Chris Hall  <chris@web.workinglinux.com>  (tiny change)
9609         * callproc.c (set_initial_environment): Initialize
9610         Vprocess_environment under CANNOT_DUMP (fixes crash when
9611         batch-compiling for bootstrap).
9613 2008-07-15  Chris Hall  <chris@web.workinglinux.com>  (tiny change)
9614             YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9616         (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
9617         fix crash due to different init order.
9619 2008-07-15  Adrian Robert  <Adrian.B.Robert@gmail.com>
9621         Changes and additions for NeXTstep windowing system (Cocoa and
9622         GNUstep) support.
9624         * Makefile.in:
9625         * config.in: Support defines and build commands for NS port.
9626         * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
9627         (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
9628         * dispextern.h: Include nsgui.h and add needed typedefs under NS
9629         windowing.
9630         (struct face): Add synth_ital field.
9631         * dispnew.c: Include nsterm.h when compiling under NS windowing.
9632         (init_display): Initialize Vinitial_window_system to "ns" when so
9633         compiled.
9634         * emacs.c: Include GSConfig.h when compiling under GNUstep.
9635         (display_arg): Use under NS.
9636         (main): Under NS, allocate autorelease pool and handle command line
9637         args.  Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
9638         (standard_args): Add NS-specific args.
9639         (shut_down_emacs): Shut down NS terminal if compiled under NS.
9640         * font.c (DEFAULT_ENCODING): New variable.
9641         (font_find_for_lface): Use it.
9642         (syms_of_font): Load syms_of_nsfont under NS.
9643         * font.h: Declare nsfont_driver when compiled under NS.
9644         * fontset.c: When compiling under NS, include nsterm.h.
9645         (fontset_from_font): Autoconstruct fontset under NS.
9646         * frame.c (various): Under NS, include nsterm.h, add Qns window system
9647         symbol, document and use it.
9648         (do_switch_frame): When for_deletion under Cocoa, add
9649         Fraise_frame(Qnil).
9650         (x_set_frame_parameters): Ensure font attribute changes are picked up.
9651         (x_get_arg): Allow "yes" and "no" as boolean values.
9652         (syms_of_frame): Declare Qns.  Init Vdefault_frame_scroll_bars to
9653         Qright under Cocoa.
9654         (focus-follows-mouse): Default to 0 under NS.
9655         * frame.h (enum output_method): Add output_ns.
9656         (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
9657         (FRAME_EXTERNAL_MENU_BAR): Use under NS.
9658         (FRAME_WINDOW_P): NS-specific definition.
9659         * fringe.c (max_used_fringe_bitmap): Make public.
9660         * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
9661         (getloadavg): Use NeXT code under descendant OS's.
9662         * image.c (includes and header section, x_create_bitmap_from_data)
9663         (x_create_bitmap_from_file, free_bitmap_record, image_background)
9664         (image_background_transparent, x_clear_image_1)
9665         (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
9666         (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
9667         (x_to_xcolors, x_from_xcolors, x_disable_image)
9668         (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
9669         other GUIs, including XPM support using code originally written for
9670         Carbon GUI.
9671         (png_load, jpeg_load, tiff_load, gif_load): Add implementations
9672         using NS API.
9673         (image_ascent): Use font metrics macros instead of direct struct field
9674         access.
9675         * keyboard.c (includes): Add nsterm.h when compiling under NS.
9676         (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
9677         Also, handle NS as GTK for menu bar purposes.
9678         (make_lispy_event): Handle NS as other GUI windowing systems, and as X
9679         toolkit where they differ.
9680         (parse_menu_item): Prefer keybindings using 'super' modifier.  Also,
9681         use cachelist, still needed under NS.
9682         * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
9683         (struct widget_value): Define it here for menu.c.
9684         * keymap.c (includes): Include modifier internals.
9685         (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
9686         NS.
9687         (where_is_internal, Fwhere_is_internal): When compiled under NS, add
9688         support for preferring sequences using certain modifiers, specified by
9689         the FIRSTONLY argument.
9690         * lisp.h (hash_remove): Rename to avoid name clash when compiling
9691         under NS GNUstep implementation.
9692         (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
9693         * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
9694         * menu.c: Include nsterm.h under NS.
9695         (single_menu_item, parse_single_submenu, xmalloc_widget_value)
9696         (free_menubar_widget_tree_value, update_submenu_strings)
9697         (find_and_call_menu_selection): Treat NS as X and NT.
9698         (find_and_return_menu_selection): New function, used for popup menus.
9699         * nsgui.h:
9700         * nsterm.h:
9701         * nsfns.m:
9702         * nsimage.m:
9703         * nsmenu.m:
9704         * nsselect.m:
9705         * nsterm.m: New files.
9706         * process.c (wait_reading_process_output): Under NS, call ns_select()
9707         instead of plain select().
9708         * syntax.c (char_quoted): Under NS, avoid a crash when called near
9709         beginning of buffer.
9710         * sysselect.h (init_process): Rename when compiling under Cocoa to
9711         avoid name conflict.
9712         * termhooks.h (display_info): Add ns_display_info to union.
9713         * terminal.c (Fterminal_live_p): Add ns to terminal types.
9714         * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
9715         COCOA environment.
9716         * unexnext.c: Update to work with mach API on Mac OS X, and to use new
9717         unexec() signature.  (Note, this will dump, but the resulting file
9718         crashes; unexosx is used instead; keeping around for reference and
9719         possible aid in getting dump working under GNUstep.)
9720         * w32gui.h (button_type, widget_value): Remove definitions (now in
9721         keyboard.h).
9722         * window.c: Include nsterm.h when compiling under NS.
9723         * xdisp.c (includes): Include nsterm.h when compiling under NS.
9724         (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
9725         other GUI windowing systems.
9726         (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
9727         GTK.
9728         (x_consider_frame_title): Under NS, set icon type and frame
9729         modified-state indicator; use ns_set_name_as_filename() when using
9730         formatted title.
9731         (update_window_cursor): Make public when compiling under NS.
9732         (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
9733         (hourglass_atimer, Vhourglass_delay
9734         * xfaces.c (header section, init_frame_faces, clear_font_table)
9735         (defined_color, unload_color, x_face_list_fonts)
9736         (prepare_face_for_display): Add NS support parallel to other GUIs.
9737         Emulate GCs like other non-X GUIs.
9738         (split_font_name): Don't lowercase font name under NS.
9739         (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
9740         under NS.
9741         * s/darwin.h: Add support for compilation under NS.
9743 2008-07-15  Jason Rumney  <jasonr@gnu.org>
9745         * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
9746         (w32_show_hourglass): Rename from show_hourglass.
9747         (w32_hide_hourglass): Rename from hide_hourglass.
9748         (DEFAULT_HOURGLASS_DELAY): Revert from last change.
9749         (Vhourglass_delay): Declare extern.
9750         (hourglass_started): Remove.
9752         * xdisp.c (Vhourglass_delay): Remove static.
9753         (hourglass_started, start_hourglass, cancel_hourglass):
9754         Don't include these versions on WINDOWSNT.
9756 2008-07-15  Adrian Robert  <Adrian.B.Robert@gmail.com>
9758         * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
9759         variables (formerly in xfns.c).
9760         (show_hourglass, hide_hourglass): New prototypes (same).
9761         * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
9762         (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
9763         in xfns.c).
9764         (syms_of_xdisp): Declare/initialize display-hourglass,
9765         hourglass-delay.  Initialize hourglass_atimer, hourglass_shown_p.
9766         (hourglass_started, start_hourglass, cancel_hourglass): New functions,
9767         formerly in xfns.c.
9768         * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
9769         (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
9770         (start_hourglass, cancel_hourglass): Remove.
9771         (show_hourglass, hide_hourglass): Remove prototypes and static
9772         modifiers.
9773         (syms_of_xfns): Remove display-hourglass, hourglass-delay,
9774         hourglass_atimer, hourglass_shown_p declaration/initialization.
9775         * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
9776         (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
9777         (start_hourglass, cancel_hourglass): Remove.
9778         (show_hourglass, hide_hourglass): Remove prototypes and static
9779         modifiers.
9780         (syms_of_macfns): Remove display-hourglass, hourglass-delay,
9781         hourglass_atimer, hourglass_shown_p declaration/initialization.
9782         * w32fns.c (display_hourglass_p, Vhourglass_delay)
9783         (DEFAULT_HOURGLASS_DELAY): Remove.
9784         (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
9785         hourglass_shown_p declaration/initialization.
9787 2008-07-14  Jason Rumney  <jasonr@gnu.org>
9789         * w32fns.c (w32_get_arg): Remove wrapper function.
9790         (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
9791         directly.
9792         (Fx_create_frame): Sync with xfns.c.  Use x_get_arg directly.
9794 2008-07-14  Kenichi Handa  <handa@m17n.org>
9796         * xfont.c (xfont_open): Add workaround for X's bug.
9798 2008-07-14  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
9800         * fontset.c: Include <stdio.h> unconditionally.
9802 2008-07-13  Michael Albinus  <michael.albinus@gmx.de>
9804         * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
9805         for filtering.
9807 2008-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
9809         * s/vms.h: Use __GNUC__ instead of _GNUC_.
9811         * m/macppc.h:
9812         * m/alpha.h: Use GNU_LINUX instead of LINUX.  Reorganize conditionals.
9814         * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
9815         (SPECIAL_EMACS_INT):
9816         * m/ia64.h (SPECIAL_EMACS_INT):
9817         * m/amdx86-64.h (SPECIAL_EMACS_INT):
9818         * s/gnu.h (NLIST_STRUCT):
9819         * s/aix4-2.h (X11R5_INHIBIT_I18N):
9820         * s/gnu-linux.h (LINUX):
9821         * s/msdos.h (HAVE_FACES):
9822         * s/ms-w32.h (HAVE_FACES): Don't define, unused.
9824         * systty.h:
9825         * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
9826         anymore.
9828 2008-07-12  Dan Nicolaescu  <dann@ics.uci.edu>
9830         * syswait.h: Remove old if 0 code.  Do not define WAITTYPE, it was
9831         always defined as int.
9833         * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
9834         * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
9835         * s/gnu-linux.h (HAVE_WAIT_HEADER):
9836         * s/freebsd.h (HAVE_WAIT_HEADER):
9837         * s/bsd-common.h (HAVE_UNION_WAIT):
9838         * s/aix4-2.h (HAVE_WAIT_HEADER):
9839         * m/mips.h (HAVE_UNION_WAIT):
9840         * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
9841         (COFF, static): Do not define, they are undefined later in the file.
9843         * process.c (update_status): Don't use a union.
9844         (status_convert):
9845         (sigchld_handler): Use int instead of WAITTYPE.
9847 2008-07-12  Chong Yidong  <cyd@stupidchicken.com>
9849         * indent.c (Fvertical_motion): Restore hscroll before moving to
9850         goal column.
9852 2008-07-11  Dan Nicolaescu  <dann@ics.uci.edu>
9854         * lisp.h: Remove left over code.
9856 2008-07-11  Andreas Schwab  <schwab@suse.de>
9858         * lisp.h: Fix logic in last change.
9860         * menu.h: New file.
9861         * menu.c: Include it.
9862         * xmenu.c: Likewise.
9863         * Makefile.in: Update dependencies.
9865 2008-07-11  Kenichi Handa  <handa@m17n.org>
9867         * fontset.c (fontset_from_font): Cancel the previous change.
9869 2008-07-11  Dan Nicolaescu  <dann@ics.uci.edu>
9871         * lisp.h:
9872         * w32heap.c:
9873         * emacs.c:
9874         * alloc.c: Replace all references of NO_UNION_TYPE with
9875         USE_LISP_UNION_TYPE.
9877         * m/xtensa.h (NO_UNION_TYPE):
9878         * m/vax.h (NO_UNION_TYPE):
9879         * m/template.h (NO_UNION_TYPE):
9880         * m/sparc.h (NO_UNION_TYPE):
9881         * m/mips.h (NO_UNION_TYPE):
9882         * m/macppc.h (NO_UNION_TYPE):
9883         * m/m68k.h (NO_UNION_TYPE):
9884         * m/iris4d.h (NO_UNION_TYPE):
9885         * m/intel386.h (NO_UNION_TYPE):
9886         * m/ibms390x.h (NO_UNION_TYPE):
9887         * m/ibms390.h (NO_UNION_TYPE):
9888         * m/ibmrs6000.h (NO_UNION_TYPE):
9889         * m/ia64.h (NO_UNION_TYPE):
9890         * m/hp800.h (NO_UNION_TYPE):
9891         * m/arm.h (NO_UNION_TYPE):
9892         * m/amdx86-64.h (NO_UNION_TYPE):
9893         * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
9894         defining it the same.
9896 2008-07-10  Chong Yidong  <cyd@stupidchicken.com>
9898         * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
9900 2008-07-10  Dan Nicolaescu  <dann@ics.uci.edu>
9902         * fileio.c:
9903         * sysdep.c
9904         * systty.h:
9905         * m/ibmrs6000.h:
9906         * m/iris4d.h:
9907         * s/aix4-2.h:
9908         * s/freebsd.h:
9909         * s/gnu-linux.h:
9910         * s/hpux10-20.h:
9911         * s/hpux11.h:
9912         * s/netbsd.h:
9913         * s/sol2-3.h:
9914         * s/sol2-4.h:
9915         * s/sol2.h:
9916         * s/usg5-4.h:
9917         * s/vms.h: Remove references to unused variables.
9919 2008-07-10  Andreas Schwab  <schwab@suse.de>
9921         * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
9922         pattern before matching the generic family.
9924 2008-07-10  Dan Nicolaescu  <dann@ics.uci.edu>
9926         * unexec.c:
9927         * s/vms.h:
9928         * s/usg5-4-2.h:
9929         * s/sol2-5.h:
9930         * s/freebsd.h:
9931         * s/darwin.h: Remove dead code.
9933         * m/template.h:
9934         * m/sparc.h:
9935         * m/mips.h:
9936         * m/m68k.h:
9937         * m/iris4d.h:
9938         * m/intel386.h:
9939         * m/ibms390x.h:
9940         * m/ibms390.h:
9941         * m/ia64.h:
9942         * m/hp800.h:
9943         * m/arm.h:
9944         * m/amdx86-64.h: Remove dead code and references to unused
9945         and compiler defined symbols.
9947         * unexmips.c:
9948         * unexelf.c: Remove references to desupported systems.
9950         * m/powermac.h: Remove file, it is now identical to m/macppc.h.
9952         * m/powermac.h: Remove boilerplate comments.
9953         (NO_REMAP): Remove unused definition.
9955         * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
9956         define them.
9958 2008-07-10  Kenichi Handa  <handa@m17n.org>
9960         * xfont.c (xfont_open): Log the reason of failure.
9962 2008-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9964         * fontset.c (fontset_get_font_group):
9965         * font.c (font_check_otf): Specify argument types.
9967 2008-07-09  Kenichi Handa  <handa@m17n.org>
9969         * coding.c (detect_coding_utf_8): Set detect_info->found only when
9970         non-ASCII char is found.
9972         * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
9973         (reorder_font_vector): Change the arg preferred_family to font.
9974         Prefer the spec matching with font.
9975         (fontset_get_font_group): New function.
9976         (fontset_find_font): Change the format of an element of a realized
9977         fontset.  Use fontset_get_font_group.
9978         (fontset_font): Try the current fontset, the default fontset, the
9979         fallbacks of the current fontset, and the fallbacks of the default
9980         fontset in this order.
9981         (face_for_char): Delete the shortcut to use the current font.
9982         (fontset_from_font): Don't set fonts for Latin in the fontset.
9984         * font.h (font_make_object, font_match_p): Adjust prototypes.
9986         * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
9988         * font.c (font_make_object): New arg entity and pixelsize.
9989         (font_check_otf_features, font_check_otf): New functions.
9990         (font_match_p): Check :lang, :script, and :otf properties.
9992         * xfont.c (xfont_open): Adjust it for the change of
9993         font_make_object.
9994         (xfont_text_extents): Fix initial setting of metrics.
9996         * ftfont.c (struct ftfont_info): New member index, delete member
9997         fc_charset_idx.  Make the member order compatible with struct
9998         xftfont_info.
9999         (fc_charset_table): Change charset names to registry names.
10000         (ftfont_pattern_entity): Delete the args registry and
10001         fc_charset_idx.  Change the value of :font-entity property
10002         to (FONTNAME . INDEX).  Always set :registry property to
10003         `iso10646-1'.
10004         (struct ftfont_cache_data): New struct.
10005         (ftfont_lookup_cache): New arg for_face.
10006         (ftfont_get_fc_charset, ftfont_get_otf): New functions.
10007         (ftfont_driver): Set the member otf_capability.
10008         (ftfont_get_charset): Adjust it for the change of
10009         fc_charset_table.
10010         (OTF_TAG_SYM): New macro.
10011         (ftfont_spec_pattern): Delete the arg fc_charset_idx.  Adjust it
10012         for the change of fc_charset_table.
10013         (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
10014         ftfont_pattern_entity.  Add FC_INDEX to objset.
10015         (ftfont_match): Adjust it for the change of ftfont_spec_pattern
10016         and ftfont_pattern_entity.
10017         (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
10018         font_make_object, struct ftfont_info.
10019         (ftfont_has_char): Use ftfont_get_fc_charset.
10020         (ftfont_otf_features, ftfont_otf_capability): New functions.
10021         (ftfont_shape): Use ftfont_get_otf.
10022         (ftfont_text_extents): Fix initial setting of metrics.
10024         * xftfont.c (struct xftfont_info): New member ft_size.  Make the
10025         member order compatible with struct ftfont_info.
10026         (xftfont_open): Add FC_CHARSET to the pattern.  Set
10027         xftfont_info->ft_size.  Don't unlock the face.  Check BDF
10028         properties if appropriate.
10029         (xftfont_close): Unlock the face.
10030         (xftfont_anchor_point, xftfont_shape): Deleted.
10031         (syms_of_xftfont): Don't set members anchor_point and shape of
10032         xftfont_driver.
10034         * w32uniscribe.c (uniscribe_open): Adjust it for the change of
10035         font_make_object.
10037         * w32font.c (w32font_open): Adjust it for the change of
10038         font_make_object.
10039         (w32font_open_internal): Don't set properties of font_object here.
10041 2008-07-08  Chong Yidong  <cyd@stupidchicken.com>
10043         * macfns.c (x_create_tip_frame):
10044         * w32fns.c (x_create_tip_frame):
10045         * xfns.c (x_create_tip_frame): Pass parameter argument to
10046         face-set-after-frame-default.
10048         * xfaces.c (Finternal_merge_in_global_face): Save merged
10049         attributes for the default face back into the face vector.
10051 2008-07-08  Andreas Schwab  <schwab@suse.de>
10053         * fontset.h: Declare fontset_from_font.  Don't declare
10054         new_fontset_from_font and fontset_from_font_name.
10055         * xterm.c: Include "fontset.h".
10056         * Makefile.in (xterm.o): Update dependencies.
10058 2008-07-08  Glenn Morris  <rgm@gnu.org>
10060         * m/sparc.h: Define __sparc__ rather than sparc.  (Bug#507.)
10061         * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
10063 2008-07-07  Chong Yidong  <cyd@stupidchicken.com>
10065         * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
10066         (x_set_frame_parameters): Don't bind it.
10068 2008-07-07  Juanma Barranquero  <lekktu@gmail.com>
10070         * w32fns.c (map_w32_filename): Declare extern.
10072 2008-07-07  Jason Rumney  <jasonr@gnu.org>
10074         * w32term.c (WS_EX_LAYERED): Define if not already.
10076 2008-07-06  Chong Yidong  <cyd@stupidchicken.com>
10078         * xfaces.c (set_font_frame_param): Don't try to set the font
10079         parameter if it is still unspecified in the lface.
10081 2008-07-05  Chong Yidong  <cyd@stupidchicken.com>
10083         * xfaces.c (Finternal_merge_in_global_face): Don't realize default
10084         face if it didn't already exist.
10086         * xdisp.c (try_window_id): Give up if word-wrapping is on.
10088 2008-07-05  Andreas Schwab  <schwab@suse.de>
10090         * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
10092 2008-07-05  Chong Yidong  <cyd@stupidchicken.com>
10094         * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
10095         word-wrapping.
10096         (IT_DISPLAYING_WHITESPACE): New macro.
10097         (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
10098         when word-wrapping.  Simplify word-wrapping logic.  Use correct
10099         pixel positions when saving copies of the iterator.
10100         (display_line): Use proper wrap point if the last character on a
10101         line was preceded by whitespace.
10103 2008-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10105         * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
10107 2008-07-04  Kenichi Handa  <handa@m17n.org>
10109         * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
10111         * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
10113 2008-07-02  Jason Rumney  <jasonr@gnu.org>
10115         * xfns.c (syms_of_xfns): Only define x-select-font when both
10116         HAVE_FREETYPE and USE_GTK.
10118         * xdisp.c (next_element_from_display_vector): Move assignment out
10119         of if statement.
10121 2008-07-02  Toru Tsuneyoshi  <t_tuneyosi@hotmail.com>
10123         * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
10125         * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
10126         (syms_of_fileio): Initialize and export them.
10127         (Fdelete_directory, Fdelete_file): Optionally delete via trash.
10129         * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
10130         (Fsystem_move_file_to_trash): New function.
10131         (syms_of_w32fns): Export it to lisp.
10133 2008-07-01  Jason Rumney  <jasonr@gnu.org>
10135         * w32font.c (w32font_text_extents): Don't count overhang as part
10136         of width.
10138 2008-06-30  Miles Bader  <miles@gnu.org>
10140         * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
10141         Add `avoid_cursor_p' field.
10143         * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
10144         (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
10145         (append_glyph, append_composite_glyph, produce_image_glyph)
10146         (append_stretch_glyph): Initialize avoid_cursor_p.
10147         (get_it_property): Rename from `get_line_height_property'.
10148         (x_produce_glyphs): Use get_it_property.
10149         (handle_line_prefix, push_display_prop): New functions.
10150         (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
10151         (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
10152         New variables.
10153         (syms_of_xdisp): Initialize them.
10155 2008-06-30  Kenichi Handa  <handa@m17n.org>
10157         * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
10158         XftDefaultSubstitute (they are called in XftFontMatch).
10159         (xftfont_open): Fix args to ftfont_font_format.
10161         * ftfont.c (fc_charset_table): New member lang.
10162         (ftfont_resolve_generic_family): New arg pattern.
10163         (ftfont_spec_pattern): Check fc_charset_table[]->lang.
10164         (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
10165         (ftfont_open): Fix args to ftfont_font_format.
10166         (ftfont_font_format): New arg filename.
10168 2008-06-30  Chong Yidong  <cyd@stupidchicken.com>
10170         * xfaces.c (Finternal_merge_in_global_face): If default face was
10171         modified, realize it again.  Update the font face attribute.
10173 2008-06-29  Jason Rumney  <jasonr@gnu.org>
10175         * w32term.c (x_set_frame_alpha): Fix logic.
10177 2008-06-29  Kenichi Handa  <handa@m17n.org>
10179         * fontset.c (Finternal_char_font): Return font-object instead of
10180         font-name.
10182         * composite.c (get_composition_id): Fix the width calculation for TAB.
10184 2008-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
10186         * indent.c (Fvertical_motion): Properly handle float column arg.
10188 2008-06-28  Jason Rumney  <jasonr@gnu.org>
10190         * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
10191         (pfnSetLayeredWindowAttributes): New function pointer.
10192         (w32_initialize): Initialize it when supported.
10193         (x_set_frame_alpha): New function.
10195         * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
10196         (w32_frame_parm_handlers): Set alpha handler.
10198         * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
10200 2008-06-27  Jason Rumney  <jasonr@gnu.org>
10202         * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
10203         (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
10204         (w32_to_x_charset, x_to_w32_charset)
10205         (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
10206         (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
10207         (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
10208         (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
10209         (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
10210         (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
10211         (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
10212         (Qw32_charset_unicode): Remove.
10213         (syms_of_w32fns): Update for above changes.
10215         * w32font.c (w32_to_x_charset, x_to_w32_charset)
10216         (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
10217         (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
10218         (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
10219         (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
10220         (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
10221         (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
10222         (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
10223         (syms_of_w32font): Update for above changes.
10225 2008-06-27  Dan Nicolaescu  <dann@ics.uci.edu>
10227         * s/usg5-4.h: Fix previous change: keep the correct branch of a
10228         removed #if.
10229         (USG_SHARED_LIBRARIES): Remove duplicate definition.
10231 2008-06-26  Juanma Barranquero  <lekktu@gmail.com>
10232             Eli Zaretskii  <eliz@gnu.org>
10234         * makefile.w32-in (LOCAL_FLAGS):
10235         Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
10237         * sysdep.c (_spawnlp, _getpid):
10238         Declare with explicit _cdecl instead of _CRTAPI1.
10240         * editfns.c (Fget_internal_run_time):
10241         Check for WINDOWSNT with #ifdef, not #if.
10243 2008-06-26  Jason Rumney  <jasonr@gnu.org>
10245         * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
10247         * w32term.c (x_draw_glyph_string_foreground)
10248         (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
10249         Use FONT_HANDLE macro.
10250         (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
10252         * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
10253         (uniscribe_encode_char): Use FONT_HANDLE macro.
10255         * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
10256         (w32font_text_extents): Use precast w32_font.
10257         (w32font_close): Free cached metrics.
10258         (w32font_open_internal): Allocate space for name on stack.
10260 2008-06-26  Chong Yidong  <cyd@stupidchicken.com>
10262         * xdisp.c (extend_face_to_end_of_line): Fix last change.
10264 2008-06-26  Jason Rumney  <jasonr@gnu.org>
10266         * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
10267         (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
10269 2008-06-26  Juanma Barranquero  <lekktu@gmail.com>
10271         * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
10273 2008-06-26  Jason Rumney  <jasonr@gnu.org>
10275         * w32bdf.c, w32bdf.h: Remove obsolete files.
10277         * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
10279         * w32gui.h: Don't include w32bdf.h.
10280         (XCharStruct, enum w32_char_font_type, W32FontStruct):
10281         Remove obsolete font support.
10283         * w32font.h (struct w32font_info): Remove compat_w32_font.
10284         Add hfont member.
10285         (FONT_COMPAT): Remove obsolete macro.
10287         * w32font.c (w32font_close): Remove compat code.  Delete hfont member.
10288         (w32font_encode_char, w32font_text_extents): Use new hfont member.
10289         (w32font_open_internal): Remove compat code.  Set new hfont member.
10290         (Fx_select_font): Use new hfont member.
10292         * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
10293         (uniscribe_encode_char): Use new hfont member.
10295         * w32term.c (x_draw_glyph_string_foreground)
10296         (x_draw_composite_glyph_string_foreground): Use new hfont member.
10297         (x_draw_glyph_string): Use metrics in w32font_info.
10299 2008-06-26  Kenichi Handa  <handa@m17n.org>
10301         * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
10303 2008-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
10305         * unexnext.c:
10306         * m/ews4800.h:
10307         * m/hp9000s300.h:
10308         * m/ibm370aix.h:
10309         * m/mips-siemens.h:
10310         * m/ncr386.h:
10311         * m/next.h:
10312         * m/pmax.h:
10313         * m/powerpcle.h:
10314         * m/tandem-s2.h:
10315         * s/386bsd.h:
10316         * s/bsd386.h:
10317         * s/bsd4-1.h:
10318         * s/bsd4-2.h:
10319         * s/bsdos2-1.h:
10320         * s/bsdos2.h:
10321         * s/bsdos3.h:
10322         * s/bsdos4.h:
10323         * s/nextstep.h:
10324         * s/ultrix4-3.h:
10325         * s/usg5-0.h:
10326         * s/usg5-2-2.h:
10327         * s/usg5-2.h:
10328         * s/usg5-4-3.h:
10329         * s/ux4800.h:
10330         * s/uxpds.h:
10331         * s/uxpv.h: Remove support for obsolete systems.
10332         * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
10333         Remove, insert contents in s/hpux10-20.h.
10334         * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
10335         Remove, insert contents in s/aix4-2.h.
10336         * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
10337         * s/bsd4-3.h: Rename to ...
10338         * s/bsd-common.h: ... this.
10339         * data.c:
10340         * doc.c:
10341         * ecrt0.c:
10342         * emacs.c:
10343         * fileio.c:
10344         * floatfns.c:
10345         * keyboard.c:
10346         * mem-limits.h:
10347         * print.c:
10348         * process.c:
10349         * sysdep.c:
10350         * syssignal.h:
10351         * systty.h:
10352         * syswait.h:
10353         * term.c:
10354         * unexec.c:
10355         * unexelf.c:
10356         * unexhp9k800.c:
10357         * m/hp800.h:
10358         * m/ibmrs6000.h:
10359         * m/mips.h:
10360         * m/vax.h:
10361         * s/darwin.h:
10362         * s/freebsd.h:
10363         * s/gnu.h:
10364         * s/ms-w32.h:
10365         * s/msdos.h:
10366         * s/netbsd.h:
10367         * s/template.h: Remove references to obsolete variables.
10369         * Makefile.in: Add dependencies for all unexec files.
10370         (admindir): Remove unused variable.
10371         (UNEXEC_SRC): Remove references.
10373 2008-06-25  Chong Yidong  <cyd@stupidchicken.com>
10375         * xfns.c (x_default_font_parameter): If Xft is available, first
10376         try Monospace-12 for the default font.
10378 2008-06-25  Jason Rumney  <jasonr@gnu.org>
10380         * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
10382 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10384         * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
10386         * buffer.c (syms_of_buffer): Remove default-word-wrap.
10388 2008-06-25  Juanma Barranquero  <lekktu@gmail.com>
10390         * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
10391         <scroll-conservatively>: Fix typo in docstring.
10393         * xselect.c (Fx_send_client_event): Doc fix.
10395 2008-06-25  Kenichi Handa  <handa@m17n.org>
10397         * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
10399         * font.c (font_parse_fcname): Remove unused variables.
10400         (font_sort_entites): Delete the arg SPEC.  Caller changed.
10401         Fix for the case of ! best_only.
10402         (font_delete_unmatched): Check DPI and AVGWIDTH too.
10404         * lisp.h (Fstring_to_unibyte): EXFUN it.
10406         * character.h (str_to_unibyte): Extern it.
10408         * character.c (str_to_unibyte): New function.
10410         * fns.c (Fstring_to_unibyte): New function.
10411         (syms_of_fns): Defsubr it.
10413 2008-06-24  Kenichi Handa  <handa@m17n.org>
10415         * font.c (font_score): Even if the PIXEL_SIZE is the same, check
10416         DPI too.
10417         (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
10419 2008-06-24  Andreas Schwab  <schwab@suse.de>
10421         * Makefile.in (${lispsource}loaddefs.el): Rename from
10422         ../lisp/loaddefs.el.
10423         (bootstrap-clean): Do what distclean does but don't remove
10424         Makefile.
10425         (distclean): Depend on bootstrap-clean and remove Makefile.
10427 2008-06-24  Chong Yidong  <cyd@stupidchicken.com>
10429         * buffer.h (struct buffer): New member word_wrap.
10431         * buffer.c (syms_of_buffer): New variables default-word-wrap and
10432         word-wrap.
10433         (init_buffer_once): Initialize them.
10435         * dispextern.h (struct it): Replace bool truncate_lines_p with a
10436         line_wrap enum possessing three possible values.
10438         * termopts.h: Replace truncate_partial_width_windows with
10439         Vtruncate_partial_width_windows.
10441         * dispnew.c (direct_output_for_insert): Avoid direct output when
10442         inserting a space with word wrap on.
10444         * indent.c (compute_motion): Obey integer values of
10445         truncate-partial-width-windows.
10447         * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
10448         replacing truncate_partial_width_windows.
10449         (init_iterator): If Vtruncate_partial_width_windows is an integer,
10450         truncate only if the window width is below that integer.
10451         (start_display, resize_mini_window, produce_stretch_glyph)
10452         (display_string, move_it_in_display_line_to): Use line_wrap.
10453         (back_to_previous_visible_line_start, reseat_1): Reset
10454         string_from_display_prop_p.
10455         (display_line): Extend default face to end of line when wrapping.
10457 2008-06-24  Kim F. Storm  <storm@cua.dk>
10459         * xdisp.c (display_line, move_it_in_display_line_to): Add ability
10460         to wrap continued lines at word boundaries.
10462 2008-06-24  Jason Rumney  <jasonr@gnu.org>
10464         * font.c (Ffont_face_attributes): Multiply pixel size before point
10465         conversion to avoid multiplying rounding error.
10467 2008-06-23  Jason Rumney  <jasonr@gnu.org>
10469         * w32term.c (x_draw_glyph_string_background)
10470         (x_draw_glyph_string): Remove old bdf font code.
10472         * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
10474 2008-06-22  Kenichi Handa  <handa@m17n.org>
10476         * font.c (font_find_for_lface): Try the adstyle specified in
10477         the property of LFACE_FONT of LFACE (if any).
10479 2008-06-21  Seiji Zenitani  <zenitani@mac.com>
10480             Ryo Yoshitake  <ryo@shiftmode.net>
10482         * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
10484 2008-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10486         * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
10487         Use $(BOOTSTRAPEMACS) rather than witness-emacs.
10488         (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
10489         (witness-emacs): Remove.
10490         (lisp, shortlisp): Move loaddefs.el earlier.
10491         (mostlyclean): Forget about witness-emacs.
10493 2008-06-22  Glenn Morris  <rgm@gnu.org>
10495         * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
10496         (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
10498 2008-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10500         * Makefile.in (PRECOMP): Remove.
10501         (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
10502         (witness-emacs): Run `compile-first'.
10503         (.el.elc): Use the new compile-onefile target.
10505 2008-06-21  Kenichi Handa  <handa@m17n.org>
10507         * xftfont.c (xftfont_open): Handle QCembolden only when
10508         FC_EMBOLDEN is defined.
10510 2008-06-21  Andreas Schwab  <schwab@suse.de>
10512         * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
10513         (.el.elc): Likewise.
10515 2008-06-21  Miles Bader  <miles@gnu.org>
10517         * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
10518         build dir, not the lisp source dir.
10520 2008-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10522         * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
10523         (bootstrapclean): Remove.
10524         (.el.elc): New rule.
10525         (PRECOMP): New var.
10526         (../lisp/subdirs.el): Remove.
10527         (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
10528         (witness-emacs): New target.
10529         (mostlyclean): Remove witness-emacs as well.
10530         (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
10531         Add witness-emacs dependency.
10533 2008-06-20  Chong Yidong  <cyd@stupidchicken.com>
10535         * font.c (Ffont_face_attributes): Omit key-attribute pairs not
10536         defined by the font.
10538 2008-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10540         * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
10541         (bootstrap-clean): New target that keeps TAGS around.
10542         (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
10543         (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
10545 2008-06-20  Jason Rumney  <jasonr@gnu.org>
10547         * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
10548         Remove obsolete font code.
10550         * w32font.c (font_matches_spec): Use csb bitfield from font signature
10551         to determine language support.
10553 2008-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10555         * sysdep.c (cfsetspeed): New fun extracted from the code.
10556         (cfmakeraw): Move before first use.
10558 2008-06-20  Angelo Graziosi  <angelo.graziosi@alice.it>  (tiny change)
10560         * sysdep.c (cfmakeraw): Provide fallback implementation.
10561         (serial_configure): Provide fallback implementation of cfsetspeed.
10563 2008-06-20  Kenichi Handa  <handa@m17n.org>
10565         * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
10566         the pattern.
10568         * fontset.c (fontset_from_font): Copy font_spec before changing
10569         the elements.
10571         * xfns.c (x_default_font_parameter): Try "monospace-12" too.
10573 2008-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10575         * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
10576         for explicit `font' parameters.
10578         * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
10580 2008-06-19  Kenichi Handa  <handa@m17n.org>
10582         * frame.c: Include <ctype.h>.
10583         (x_set_font_backend): Allow spacing characters in the X resource
10584         for FontBackend.
10586 2008-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10588         * w32fns.c, xfns.c (Qfont_param): New var.
10589         (syms_of_w32fns): Initialize it.
10590         (x_default_font_parameter): Record explicit `font' into
10591         `font-parameter'.
10593 2008-06-18  Kenichi Handa  <handa@m17n.org>
10595         * font.c (font_parse_xlfd): Fix previous change.
10596         (font_parse_fcname): Don't use :fc-unknown-spec.
10597         (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
10598         (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
10599         (font_add_log): Prepend the driver name to the resulting fonts.
10601         * ftfont.c (ftfont_pattern_entity): New arg extra.  Caller changed.
10602         (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
10603         (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
10605         * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
10606         (QCembolden): New variables.
10607         (syms_of_xftfont): DEFSYM them.
10608         (xftfont_open): Call XftFontMatch.  Don't trust the result of
10609         XftTextExtents8 if the pixel_size is less than 5.
10611 2008-06-18  Andreas Schwab  <schwab@suse.de>
10613         * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
10614         (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
10616 2008-06-18  Jason Rumney  <jasonr@gnu.org>
10618         * w32font.c (w32font_list, w32font_match): Add logging.
10620         * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
10622 2008-06-17  Chong Yidong  <cyd@stupidchicken.com>
10624         * font.c (font_parse_fcname): Store divider characters for
10625         unknown-spec list.  For known key symbols, intern using correct
10626         symbol name.
10628 2008-06-17  Kenichi Handa  <handa@m17n.org>
10630         * xfaces.c (realize_default_face): If the frame is not on window
10631         system, set the fontset of face to nil.
10633 2008-06-17  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
10635         * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
10637 2008-06-16  Juanma Barranquero  <lekktu@gmail.com>
10639         * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
10640         (build_font_name_from_vector): Delete externs.
10642         * xfaces.c (struct font_name): Don't declare.
10644 2008-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10646         * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
10648 2008-06-16  Chong Yidong  <cyd@stupidchicken.com>
10650         * font.c (font_parse_fcname): Fix handling of unknown-spec string.
10652 2008-06-16  Juanma Barranquero  <lekktu@gmail.com>
10654         * font.c (Ffont_spec): Fix usage in docstring.
10655         (Ffont_face_attributes): Doc fix.
10657 2008-06-16  Andreas Schwab  <schwab@suse.de>
10659         * font.c (Ffont_face_attributes): Fix definition.
10661 2008-06-16  Jason Rumney  <jasonr@gnu.org>
10663         * font.h (font_style_symbolic_from_value): Remove.
10665         * font.c (font_style_symbolic_from_value): Remove.
10666         (font_style_symbolic): Revert to pre 2008-06-13 version.
10668         * w32font.c (w32_to_fc_weight): New function.
10669         (w32font_full_name, logfont_to_fcname): Use it.
10671 2008-06-16  Kenichi Handa  <handa@m17n.org>
10673         * font.c (font_check_object): Delete it.
10674         (font_clear_cache): Check if a font-object is alive.
10675         (font_open_entity): Likewise.  Set FONT_OBJLST_INDEX of a
10676         font-object to nil.
10677         (font_close_object): Don't check FONT_CLOSE_OBJECT.
10678         (font_at): Don't call font_check_object.
10679         (Ffont_get): Return a symbol for :weight, :slant, and :width.
10681 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10683         * puresize.h (BASE_PURESIZE): Increase to 1230000.
10685 2008-06-16  Chong Yidong  <cyd@stupidchicken.com>
10687         * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
10689 2008-06-15  Chong Yidong  <cyd@stupidchicken.com>
10691         * font.c (font_parse_fcname): Only one decimal point.
10692         (font_unparse_fcname): Handle data in family and foundry indices
10693         as symbols, not strings.
10694         (font_unparse_gtkname, Ffont_face_attributes): New functions.
10696         * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
10698         * font.h (font_unparse_gtkname): Add prototype.
10700 2008-06-15  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
10702         * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
10704 2008-06-15  Andreas Schwab  <schwab@suse.de>
10706         * font.c (font_update_drivers): Fix crash when no drivers match.
10708 2008-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10710         * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
10711         * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
10713 2008-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10715         * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
10717 2008-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10719         * process.c (Fserial_process_configure, Fprocess_send_eof):
10720         Use EQ to compare Lisp_Objects.
10722 2008-06-13  Jason Rumney  <jasonr@gnu.org>
10724         * w32fns.c (Fw32_select_font): Remove old font API function.
10726         * w32font.c (logfont_to_fcname): New function.
10727         (Fx_select_font): New font dialog function compatible with
10728         GTK/fontconfig version.
10730         * font.c (font_style_symbolic_from_value): New function.
10731         (font_style_symbolic): Use it.
10733         * font.h (font_style_symbolic_from_value): Declare new function.
10735 2008-06-13  Juanma Barranquero  <lekktu@gmail.com>
10737         * font.c (syms_of_font) <font-weight-table, font-slant-table>:
10738         <font-width-table>: Fix typos in docstrings.
10740 2008-06-13  Daniel Engeler  <engeler@gmail.com>
10742         These changes add serial port access.
10743         * process.c: Add HAVE_SERIAL.
10744         (Fdelete_process, Fprocess_status, Fset_process_buffer)
10745         (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
10746         (list_processes_1, select_wrapper, Fstop_process)
10747         (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
10748         (status_notify): Modify to handle serial processes.
10749         [HAVE_SERIAL] (Fserial_process_configure)
10750         [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
10751         New functions.
10752         * process.h (struct Lisp_Process): Add `type'.
10753         * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
10754         New functions.
10755         * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
10756         serial ports.
10757         (serial_open, serial_configure): New functions.
10758         * w32.h: Add FILE_SERIAL.
10759         (struct _child_process): Add ovl_read, ovl_write.
10761 2008-06-13  Kenichi Handa  <handa@m17n.org>
10763         * dispextern.h (enum lface_attribute_index): New member
10764         LFACE_FOUNDRY_INDEX.
10766         * font.c (font_score): Delete arg alternate_families.  Check only
10767         weight, slant, width, and size.  Ignore the difference of alias
10768         style symbols.
10769         (font_sort_entites): Adjust for the above change.  Reflect the
10770         order of font-driver to scores.
10771         (font_list_entities): Don't check alternate_familes here.
10772         (font_clear_prop): Handle foundry.
10773         (font_update_lface): Don't parse "foundry-family" form here.
10774         Handle FONT_FOUNDRY_INDEX.
10775         (font_find_for_lface): Likewise.  Handle alternate families here.
10776         If registry is nil, try iso8859-1 and ascii-0.
10777         (font_open_for_lface): Pay attention to size in ENTITY.
10778         (font_open_by_name): Simplify by calling font_load_for_lface.
10779         (free_font_driver_list): Delete it.
10780         (font_update_drivers): Preserve the order of backends.
10781         (syms_of_font): Setting of sort_shift_bits adjusted for the change
10782         of font_score and font_sort_entites.
10783         (font_update_sort_order): Likewise.
10785         * xfaces.c (LFACE_FOUNDRY): New macro.
10786         (check_lface_attrs): Check foundry.
10787         (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
10788         (merge_face_vectors): Check foundry.
10789         (merge_face_ref): Likewise.
10790         (Finternal_set_lisp_face_attribute): Likewise.
10791         (x_update_menu_appearance): Likewise.
10792         (Finternal_get_lisp_face_attribute): Likewise.
10793         (lface_hash): Likewise.
10794         (lface_same_font_attributes_p): Likewise.
10795         (x_supports_face_attributes_p): Likewise.
10796         (tty_supports_face_attributes_p): Likewise.
10797         (Finternal_set_alternative_font_family_alist): Intern strings.
10798         (Finternal_set_alternative_font_registry_alist): Downcase strings.
10799         (realize_default_face): Set LFACE_FOUNDRY (lface).
10801         * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
10802         font-driver at first.
10804         * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
10806 2008-06-12  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
10808         * lread.c (Fload): Use xfree, not free on saved_doc_string.
10810 2008-06-12  Jim Meyering  <meyering@redhat.com>
10812         Make unexec_free handle NULL the same way free does.
10813         * unexmacosx.c (unexec_free): Ignore a NULL argument.
10815 2008-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10817         * character.h (CHAR_TO_BYTE_SAFE): New macro.
10818         * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
10819         * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
10820         (WEAK_ALIAS): Simplify.
10821         * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
10822         when searching a unibyte buffer.
10824 2008-06-12  Chong Yidong  <cyd@stupidchicken.com>
10826         * xfns.c (Fx_select_font): Rename from x-font-dialog.
10828 2008-06-12  Juanma Barranquero  <lekktu@gmail.com>
10830         * w32font.c: Include ctype.h.
10832 2008-06-11  Jason Rumney  <jasonr@gnu.org>
10834         * w32font.c (w32font_encode_char): Detect missing glyphs that are
10835         misreported as space.
10836         (add_font_entity_to_list): Support unicode-bmp and unicode-sip
10837         as aliases for registry iso10646-1.
10839 2008-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10841         * buffer.c (clone_per_buffer_values): Skip `name'.
10843 2008-06-11  Chong Yidong  <cyd@stupidchicken.com>
10845         * font.c (font_parse_fcname): Fix last change; accept decimal
10846         points in font size.
10848 2008-06-10  Jason Rumney  <jasonr@gnu.org>
10850         * w32uniscribe.c (add_opentype_font_name_to_list):
10851         Skip non unicode fonts.
10853 2008-06-10  Chong Yidong  <cyd@stupidchicken.com>
10855         * xfns.c (Fx_font_dialog): New function.
10857         * gtkutil.c (xg_dialog_response_cb): Rename from
10858         xg_file_response_callback.
10859         (pop_down_dialog): Rename from pop_down_file_dialog.
10860         (xg_get_file_name): Callers changed.
10861         (xg_get_font_name): New function.
10863         * gtkutil.h (xg_get_font_name): Insert prototype.
10865 2008-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10867         * xdisp.c (underline_minimum_offset): Rename from xterm.c's
10868         x_underline_minimum_display_offset.
10869         (syms_of_xdisp): Declare it here rather than in xterm.c.
10870         * dispextern.h (underline_minimum_offset): Declare it.
10871         * w32term.c (x_draw_glyph_string): Use it.
10872         * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
10873         (syms_of_xterm): Don't declare it any more.
10874         (x_draw_glyph_string): Adjust to the new name.
10876 2008-06-10  David De La Harpe Golden  <david@harpegolden.net>
10878         * xterm.c (x_underline_minimum_display_offset): New var.
10879         (x_draw_glyph_string): Use it.
10880         (syms_of_xterm): Declare it.
10882 2008-06-10  Chong Yidong  <cyd@stupidchicken.com>
10884         * font.c (font_parse_fcname): Accept GTK-style font names too.
10886 2008-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10888         * dired.c (file_name_completion): Don't return t if the match is exact
10889         but with different capitalization.
10890         * minibuf.c (Ftry_completion): Simplify.
10892         * window.c (Vwindow_point_insertion_type): New var.
10893         (set_window_buffer): Use it.
10894         (syms_of_window): Init and export it to Lisp.
10896 2008-06-10  Kenichi Handa  <handa@m17n.org>
10898         * font.h (font_intern_prop): Prototype adjusted.
10900         * font.c (font_intern_prop): New arg force_symbol.
10901         (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
10902         Adjust for the change of font_intern_prop.
10904         * ftfont.c (ftfont_pattern_entity):
10905         * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
10906         (w32_registry):
10907         * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
10908         the change of font_intern_prop.
10910 2008-06-09  Juanma Barranquero  <lekktu@gmail.com>
10912         * w32menu.c (digest_single_submenu): Declare extern.
10914 2008-06-09  Jason Rumney  <jasonr@gnu.org>
10916         * w32term.c (x_make_frame_visible): Use alternate restore flags.
10918         * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
10919         (parse_single_submenu): Remove.
10920         (digest_single_submenu): Remove.
10921         (syms_of_w32menu): Don't initialise variables that have moved
10922         to menu.c.
10923         (set_frame_menubar): Sync with version in xmenu.c.
10924         (w32_menu_show): Sync with xmenu_show in xmenu.c.
10926         * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
10927         Make static again.
10929 2008-06-09  Jason Rumney  <jasonr@gnu.org>
10931         Changes to w32 files related to the move of common menu code
10932         to menu.c on 2008-06-08 by Chong Yidong.
10934         * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
10935         defs to w32gui.h.
10936         (single_keymap_panes, push_menu_item, push_menu_pane):
10937         Make globally visible.
10939         * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
10940         (local_free, malloc_widget_value, free_widget_value)
10941         (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
10942         (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
10943         (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
10944         (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
10945         (menu_items, menu_items_allocated, menu_items_used)
10946         (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
10947         (init_menu_items, finish_menu_items, discard_menu_items)
10948         (grow_menu_items, push_submenu_start, push_submenu_end)
10949         (push_left_right_boundary, push_menu_pane, push_menu_item)
10950         (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
10951         (free_menubar_widget_tree_value, parse_single_submenu)
10952         (update_submenu_strings): Remove functions.
10953         (xmalloc_widget_value): Remove and declare extern.
10955         * makefile.w32-in ($(SRC)/menu.$(O)): New target.
10956         (OBJ1): Build it.
10958         * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
10959         (local_heap, local_alloc, local_free, malloc_widget_value)
10960         (free_widget_value): Define here.
10962 2008-06-09  Kenichi Handa  <handa@m17n.org>
10964         * font.h (Qascii_0): Extern it.
10966         * font.c (Qascii_0): New variable.
10967         (syms_of_font): DEFSYM it.
10968         (font_open_by_name): If the registry "iso8859-1" fails, try also
10969         "ascii-0".
10971         * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
10973 2008-06-08  Kenichi Handa  <handa@m17n.org>
10975         * .gdbinit (xfont): New command.
10977 2008-06-08  Andreas Schwab  <schwab@suse.de>
10979         * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
10980         * Makefile.in (menu.o): Update dependencies.
10982         * Makefile.in (obj): Always add menu.o.
10983         * emacs.c (main): Always call syms_of_menu.
10984         * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
10986 2008-06-08  Chong Yidong  <cyd@stupidchicken.com>
10988         * Makefile.in: Compile menu.c.
10990         * lisp.h: Declare syms_of_menu.
10992         * emacs.c (main): Call syms_of_menu.
10994         * keyboard.h: Relocate platform-independent menu definitions from
10995         xmenu.c.
10997         * menu.c: New file.  Relocate platform-independent menu
10998         definitions from xmenu.c.  Suggested by Adrian Robert.
11000         * xmenu.c: Remove platform-independent menu definitions.
11001         (menu_items menu_items_inuse, menu_items_allocated)
11002         (menu_items_used, menu_items_n_panes)
11003         (menu_items_submenu_depth): Move to keyboard.h.
11004         (init_menu_items, finish_menu_items, unuse_menu_items)
11005         (discard_menu_items, restore_menu_items, save_menu_items)
11006         (grow_menu_items, push_submenu_start, push_submenu_end)
11007         (push_left_right_boundary, push_menu_pane, push_menu_item)
11008         (keymap_panes, single_keymap_panes, single_menu_item)
11009         (list_of_panes, list_of_items, find_and_call_menu_selection)
11010         (xmalloc_widget_value, free_menubar_widget_value_tree)
11011         (parse_single_submenu, digest_single_submenu)
11012         (update_submenu_strings): Move to menu.c.
11014 2008-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11016         * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
11018 2008-06-06  Miles Bader  <miles@gnu.org>
11020         * xdisp.c (x_produce_glyphs): Calculate tab width based on current
11021         face, not frame default.
11023 2008-06-05  Martin Rudalics  <rudalics@gmx.at>
11025         * window.c (pop_up_windows, pop_up_frames)
11026         (display_buffer_reuse_frames, Vpop_up_frame_function)
11027         (Vdisplay_buffer_function, Veven_window_heights)
11028         (Vspecial_display_buffer_names, Vspecial_display_regexps)
11029         (Vspecial_display_function, Vsame_window_buffer_names)
11030         (Vsame_window_regexps, split_height_threshold)
11031         (Vsplit_window_preferred_function): Move those vars to window.el.
11032         (display_buffer_1, Fspecial_display_p, Fsame_window_p)
11033         (Fdisplay_buffer): Move those functions to window.el.
11034         (syms_of_window): Remove corresponding declarations.
11035         (display_buffer): New function.
11036         (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
11037         * dispnew.c (Flast_nonminibuf_frame): New function.
11038         * buffer.c (Fpop_to_buffer): Move to window.el.
11040 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11042         * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
11044 2008-06-05  Kenichi Handa  <handa@m17n.org>
11046         * coding.c (detect_coding): Fix previous change.
11047         (detect_coding_system): Likewise.
11049 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11051         * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
11053         * keymap.c (Vminibuffer_local_filename_must_match_map):
11054         Rename from Vminibuffer_local_must_match_filename_map.
11055         (syms_of_keymap):
11056         * minibuf.c (Fcompleting_read): Adjust accordingly.
11057         * commands.h: Rename declaration as well.
11059 2008-06-05  Kenichi Handa  <handa@m17n.org>
11061         * font.c (Ffont_spec): Don't use font_parse_family_registry for
11062         family name.
11063         (Ffont_put): Likewise.
11065         * fontset.c (fontset_find_font): Call font_open_for_lface with the
11066         current font-spec.
11068         * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
11069         is unspecified.
11071         * xfaces.c (realize_x_face): If the font-related face attributes
11072         are the same as those of default face, realize a new fontset from
11073         default->fontset.
11074         (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
11076 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11078         * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
11079         (move_it_in_display_line): New wrapper.
11081         * window.c (window_scroll_pixel_based_preserve_x)
11082         (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
11083         (window_scroll_pixel_based, window_scroll_line_based):
11084         Use them to preserve column positions.
11085         (syms_of_window): Initialize them.
11087         * indent.c (Fvertical_motion): Extend first arg to allow passing an
11088         (HPOS . VPOS) pair.
11090         * dispextern.h (move_it_in_display_line): Declare.
11092 2008-06-05  Juanma Barranquero  <lekktu@gmail.com>
11094         * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
11095         (Fwindow_parameters): Return copy of parameter alist.  Doc fix.
11096         (Fset_window_parameter): Return VALUE, not parameter alist.  Doc fix.
11098 2008-06-04  Juanma Barranquero  <lekktu@gmail.com>
11100         * window.c (Fset_window_parameter): Doc fix.
11101         (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
11103 2008-06-04  Joakim Verona  <joakim@verona.se>
11105         * window.h (struct window): Add new member window_parameters.
11107         * window.c (Fwindow_parameters, Fwindow_parameter)
11108         (Fset_window_parameter): New defuns.
11109         (syms_of_window): Defsubr the new defuns.
11110         (make_window): Initialize window_parameters to nil.
11112 2008-06-04  John Paul Wallington  <jpw@pobox.com>
11114         * eval.c (Fdefmacro): Doc fix.
11116 2008-06-04  Kenichi Handa  <handa@m17n.org>
11118         * coding.c (detect_coding): Fix handling of coding->head_ascii.
11119         Be sure to call setup_coding_system when we find a proper coding system.
11120         (detect_coding_system): Fix handling of coding->head_ascii.
11122 2008-06-03  Andreas Schwab  <schwab@suse.de>
11124         * font.c (font_prop_validate_spacing): Fix last change.
11126 2008-06-03  Kenichi Handa  <handa@m17n.org>
11128         * font.c (font_prop_validate_spacing): Handle uppercase symbols.
11129         (font_parse_fcname): Fix handling of unknown key.
11131         * xfont.c (xfont_list): Try an alias.
11133         * charset.c (char_charset): Return NULL if the arg charset_list is
11134         specified and C doesn't belong to any of them.
11136 2008-06-02  Chip Coldwell  <coldwell@redhat.com>
11138         * font.c (font_pixel_size): Don't take cdr of an integer.
11140 2008-06-02  Jim Meyering  <meyering@redhat.com>
11142         Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
11143         * alloc.c (xfree): Return right away for a NULL arg.
11144         * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
11145         * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
11146         * mac.c (create_apple_event_from_event_ref): Likewise.
11147         (create_apple_event_from_drag_ref, cfstring_create_normalized):
11148         Likewise.
11149         * doprnt.c (doprnt1): Likewise.
11150         * frame.c (frame): Likewise.
11151         * keyboard.c (wipe_kboard): Likewise.
11152         * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
11153         (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
11154         * term.c (tty_default_color_capabilities, maybe_fatal)
11155         (delete_tty): Likewise.
11156         * w16select.c (string): Likewise.
11157         * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
11158         * w32bdf.c (w32_free_bdf_font): Likewise.
11159         * w32fns.c (w32_unload_font): Likewise.
11160         * w32font.c (w32font_close): Likewise.
11161         * window.c (size_window): Likewise.
11162         * xselect.c (receive_incremental_selection): Likewise.
11163         * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
11164         * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
11165         * w32.c (stat): Likewise.
11167         Remove useless if-before-free tests.
11168         * editfns.c (Fset_time_zone_rule): Likewise.
11169         * lread.c (nosuffix): Likewise.
11170         * ralloc.c (get_bloc): Likewise.
11171         * regex.c (reg_free): Likewise.
11172         * xftfont.c (xftfont_open, xftfont_close): Likewise.
11173         * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
11174         * xsmfns.c (smc_save_yourself_CB): Likewise.
11176 2008-06-02  Kenichi Handa  <handa@m17n.org>
11178         * font.c (font_find_for_lface): Handle float font size.
11179         (font_open_for_lface): Likewise.
11181         * xfaces.c (x_supports_face_attributes_p): Check face->font before
11182         comparing the properties.
11184 2008-06-01  Jason Rumney  <jasonr@gnu.org>
11186         * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
11187         Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
11188         Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
11189         Don't add empty script list.
11190         (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
11192 2008-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
11194         * Makefile.in (dot, dotdot): Remove, update users.
11195         ".." has been used elsewhere in the file for a long time.
11196         (LIBXT_STATIC): Remove conditional based on unused variable.
11198 2008-06-01  Miles Bader  <miles@gnu.org>
11200         * xfaces.c (Vface_remapping_alist): New variable.
11201         (syms_of_xfaces): Initialize it.
11202         (enum named_merge_point_kind): New type.
11203         (struct named_merge_point): Add `named_merge_point_kind' field.
11204         (push_named_merge_point): Make cycle detection respect different
11205         named-merge-point kinds.
11206         (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
11207         Remove face-name alias resolution.
11208         (lface_from_face_name): New definition using
11209         `lface_from_face_name_no_resolve'.
11210         (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
11211         Call lface_from_face_name_no_resolve instead of lface_from_face_name.
11212         (get_lface_attributes): New definition that layers face-remapping on
11213         top of get_lface_attributes_no_remap.  New arg `named_merge_points'.
11214         (lookup_basic_face): New function.
11215         (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
11216         (realize_named_face): Call `get_lface_attributes_no_remap' instead of
11217         `get_lface_attributes'.
11218         (face_at_buffer_position): Use `lookup_basic_face' to lookup
11219         DEFAULT_FACE_ID if necessary.  When optimizing the default-face case,
11220         return default_face's face-id instead of the constant DEFAULT_FACE_ID.
11222         * xdisp.c (init_iterator): Pass base_face_id through
11223         `lookup_basic_face' when we actually use it as a face-id.
11224         (handle_single_display_prop): Use `lookup_basic_face' to lookup
11225         DEFAULT_FACE_ID.
11227         * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
11228         lookup the initial face-id.
11230         * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
11232 2008-06-01  Juanma Barranquero  <lekktu@gmail.com>
11234         * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
11235         (Fremove_text_properties): Fix typos in docstrings.
11237 2008-05-31  Kenichi Handa  <handa@m17n.org>
11239         * font.c (font_list_entities): Fix the car part of data to be
11240         stored in the cache.
11242         * ftfont.c (ftfont_font_format): Don't use strcasestr.
11244 2008-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11246         * chartab.c (Foptimize_char_table, optimize_sub_char_table):
11247         Add a `test' argument so another predicate than `equal' can be used.
11248         (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
11249         (map_char_table): Remove unused vars `c' and `i'.
11250         * lisp.h (Foptimize_char_table): Adjust declaration.
11251         * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
11253 2008-05-30  Kenichi Handa  <handa@m17n.org>
11255         * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
11256         (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
11257         defined.
11259 2008-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11261         * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
11262         (Fmake_variable_frame_local): Disallow mixing buffer-local and
11263         frame-local settings for the same variable.
11265 2008-05-30  Kenichi Handa  <handa@m17n.org>
11267         * fontset.c (Ffont_info): Move to font.c.
11268         (syms_of_fontset): Delete defsubr of Sfont_info.
11270         * font.c (font_style_to_value, font_score): Delete casting of the
11271         args to xstcasecmp.
11272         (register_font_driver): Increment num_font_drivers only when
11273         registering the driver globally.
11274         (Ffont_info): Move from fontset.c.  Handle a font object too.
11275         (syms_of_font): Defsubr Sfont_info.
11277 2008-05-29  Kenichi Handa  <handa@m17n.org>
11279         * coding.h (enum define_coding_utf8_arg_index): New enum.
11280         (enum coding_attr_index): Change coding_attr_utf_16_bom to
11281         coding_attr_utf_bom.
11282         (enum utf_bom_type): Rename from utf_16_bom_type.
11283         (struct utf_16_spec): Adjust for the above change.
11284         (struct coding_system): Add utf_8_bom in `spec' union.
11286         * coding.c (CODING_UTF_8_BOM): New macro.
11287         (enum coding_category): Delete coding_category_utf_8, add
11288         coding_category_utf_8_auto, coding_category_utf_8_nosig, and
11289         coding_category_utf_8_sig.
11290         (CATEGORY_MASK_UTF_8): Delete it.
11291         (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
11292         (CATEGORY_MASK_UTF_8_SIG): New macros.
11293         (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
11294         CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
11295         CATEGORY_MASK_UTF_8_SIG.
11296         (CATEGORY_MASK_UTF_8): New macro.
11297         (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
11298         (detect_coding_utf_8): Check BOM.
11299         (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
11300         (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
11301         (encode_coding_utf_16): Likewise.
11302         (setup_coding_system): Likewise.  Set CODING_UTF_8_BOM (coding).
11303         (detect_coding, detect_coding_system): Handle utf-8-auto.
11304         (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
11305         (syms_of_coding): Fix setting up of Vcoding_category_table.
11307 2008-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11309         * process.c (Faccept_process_output): If `millisec' is non-nil,
11310         `seconds' default to 0.
11311         (wait_reading_process_output): Also return non-nil if we read output
11312         from a non-running process.
11314 2008-05-29  Jason Rumney  <jasonr@gnu.org>
11316         * w32font.c (w32font_open_internal): Prefer truetype fonts unless
11317         `raster' specified.
11318         (add_font_entity_to_list): Allow non-opentype truetype fonts back
11319         in the uniscribe backend, but disallow any font that has no
11320         unicode subrange support.
11322 2008-05-29  Juanma Barranquero  <lekktu@gmail.com>
11324         * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
11325         Fix typos in docstrings.
11327 2008-05-29  Kenichi Handa  <handa@m17n.org>
11329         * xfaces.c (Fx_list_fonts): Make it return a list of font names.
11330         (Fx_family_fonts): Set frame correctly.
11332 2008-05-28  Jason Rumney  <jasonr@gnu.org>
11334         * w32term.c (x_draw_glyph_string): Use clipmask if specified.
11336 2008-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11338         * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
11339         calling build_annotations.
11341 2008-05-28  Juanma Barranquero  <lekktu@gmail.com>
11343         * coding.c (Fdecode_coding_region, Fencode_coding_region)
11344         (Fencode_coding_string):
11345         (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
11346         <latin-extra-code-table>: Fix typos in docstrings.
11347         (syms_of_coding) <coding-system-alist>: Doc fix.
11348         (syms_of_coding) <translation-table-for-input>: Reflow docstring.
11350 2008-05-28  Kenichi Handa  <handa@m17n.org>
11352         * fontset.c (Ffont_info): Don't call font_close_object.
11354         * font.c (font_parse_family_registry): Use Ffont_put to validate
11355         foundry and family.
11356         (font_delete_unmatched): Don't check spacing.
11357         (font_list_entities): Add spacing to the spec to list fonts.
11359         * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
11360         (ftfont_list): Check spacing here.  Don't include FC_CHARSET in objset.
11362         * coding.c (encode_coding_raw_text): Fix previous change.
11363         (encode_coding_object): When the dst_object is a buffer and is
11364         different from src_object, move gap to PT.
11366 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
11368         * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
11370 2008-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
11372         * coding.c (encode_coding_raw_text): Set coding->produced_char for
11373         all branches.  Compute it differently.
11375         * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
11377 2008-05-27  Juanma Barranquero  <lekktu@gmail.com>
11379         * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
11380         into "else if () ... else ...".
11382 2008-05-27  Jason Rumney  <jasonr@gnu.org>
11384         * w32font.c (w32font_open_internal): Determine if glyph indices
11385         are likely to work here.
11387 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
11389         * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
11390         draw overlap glyphs with appropriate highlighting.
11392 2008-05-27  Kenichi Handa  <handa@m17n.org>
11394         * xfont.c (xfont_open): Fix calculation of font->average_width.
11396 2008-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
11398         * casefiddle.c (casify_object): Try to guess better whether the
11399         argument is a byte or a char.
11401 2008-05-26  Andreas Schwab  <schwab@suse.de>
11403         * xselect.c (x_reply_selection_request): Properly handle format == 32.
11404         Always send multiples of format size.
11406         * xterm.c (x_set_frame_alpha): Fix type mismatch.
11408 2008-05-26  Jason Rumney  <jasonr@gnu.org>
11410         * w32font.c (w32font_text_extents): Zero whole metrics struct first.
11411         (compute_metrics): Don't set failure if we just cleared the cache.
11412         (w32_weight_table): Remove unused variable.
11413         (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
11414         backwards compatibility.
11416 2008-05-25  Kenichi Handa  <handa@m17n.org>
11418         * w32term.c (x_draw_glyph_string):
11419         * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
11421         * xfaces.c: Delete unused function prototypes.
11422         (xstrlwr, font_frame): Delete them.
11423         (clear_face_cache): Delete unused variable.
11425         * xftfont.c (xftfont_open): Delete unused variable.
11426         If underline_thickness is not 1, adjust underline_position.
11428         * ftxfont.c (ftxfont_open): Delete unused variable.
11430         * fontset.c (face_for_char): Optimize for the case of no charset
11431         property.
11433         * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
11434         (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
11435         (otf_open, font_otf_capability, generate_otf_features)
11436         (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
11437         Comment out by surrounding "#if 0" and "#endif" for the moment.
11438         (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
11439         (syms_of_font): Codes for accessing above commented out.
11441 2008-05-24  Eli Zaretskii  <eliz@gnu.org>
11443         * w32proc.c: Include dispextern.h.
11445         * w32.c: Include dispextern.h.
11447 2008-05-23  Juanma Barranquero  <lekktu@gmail.com>
11449         * charset.c (Fencode_char, Fsplit_char): Doc fixes.
11450         (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
11451         Fix typos in docstrings.
11453 2008-05-23  Jason Rumney  <jasonr@gnu.org>
11455         * xsmfns.c: Remove includes that are already included by config.h.
11457 2008-05-23  Kenichi Handa  <handa@m17n.org>
11459         * charset.c (Qemacs, charset_emacs): New variables.
11460         (char_charset): Fix for non-Unicode characters.
11461         (syms_of_charset): Define charset_emacs.
11463         * w32term.c (x_draw_glyph_string): Be sure to update
11464         s->underline_thickness and s->underline_position.  Be sure to draw
11465         underline within the current line area.
11467         * xterm.c (x_draw_glyph_string): Be sure to update
11468         s->underline_thickness and s->underline_position.  Be sure to draw
11469         underline within the current line area.
11471         * fontset.c: Delete unused variables and add casting for char *
11472         throughout the file.
11473         (fontset_font): Try the fallback fonts of the current fontset
11474         before consulting the default fontset.
11476         * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
11478         * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
11480 2008-05-22  Jason Rumney  <jasonr@gnu.org>
11482         * font.c: Don't include strings.h.
11484         * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
11486         * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
11487         * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
11488         * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
11489         to call xstrcasecmp.
11491         * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
11493         * fontset.c (fs_query_fontset): Use xstrcasecmp.
11495         * font.c (font_style_to_value, font_score): Use xstrcasecmp.
11497         * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
11499 2008-05-22  Kenichi Handa  <handa@m17n.org>
11501         * puresize.h (BASE_PURESIZE): Increase to 1220000.
11503         * font.c (font_prop_validate_style): Adjust for the format
11504         change of font_style_table.
11506         * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
11507         two args.
11509         * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
11510         two args.
11512 2008-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11514         * minibuf.c (keys_of_minibuf): Delete.
11515         * lisp.h (keys_of_minibuf): Delete.
11516         * emacs.c (main): Don't call keys_of_minibuf.
11518 2008-05-22  Kenichi Handa  <handa@m17n.org>
11520         * ftfont.c (ftfont_resolve_generic_family): Rename from
11521         ftfont_list_generic_family.  Return a single family for each
11522         generic family.
11523         (ftfont_spec_pattern): Add FC_FAMILY to pattern.
11524         (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
11525         Call font_add_log.
11526         (ftfont_match): Call font_add_log.
11528         * font.h (Ffont_xlfd_name): EXFUN adjusted.
11529         (FONT_DEBUG): Define it.
11530         (font_add_log): Extern it.
11531         (font_assert): Rename from xassert.
11533         * xfont.c (xfont_get_pcm): Change xassert to font_assert.
11534         (xfont_list_family): Call font_add_log.
11535         (xfont_match): Likewise.
11536         (memq_no_quit): Delete.
11538         * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
11539         call of Ffont_xlfd_name.
11541         * xfaces.c (struct table_entry, slant_table, weight_table)
11542         (swidth_table): Move to font.c.
11544         * font.c: Checking of FONT_DEBUG is moved to font.h.  All calls of
11545         xassert are changed to font_assert.  Delete many unused variables.
11546         (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
11547         New variables.
11548         (struct table_entry): Move from xfaces.c and modified.
11549         (weight_table, slant_table, width_table): Move from xfaces.c and
11550         contents adjusted for the change of struct table_entry.
11551         (font_style_to_value, font_style_symbolic): Adjust for the
11552         format change of font_style_table.
11553         (font_parse_family_registry): Don't overwrite existing foundry and
11554         family of font_spec.
11555         (font_score): Fix calculation of diff for sizes.
11556         (font_sort_entites): Call font_add_log.
11557         (font_delete_unmatched): Return a newly created list.
11558         (font_list_entities): Fix previous change.  Call font_add_log.
11559         (font_matching_entity, font_open_entity, font_close_entity):
11560         Call font_add_log.
11561         (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
11562         (Finternal_set_font_style_table): Delete.
11563         (BUILD_STYLE_TABLE): New macro.
11564         (build_style_table): New function.
11565         (Vfont_log, font_log_env_checked): New variables.
11566         (font_add_log): New function.
11567         (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
11568         Declare Lisp variables "font-weight-table", "font-slant-table",
11569         "font-width-table", and "font-log".  Initialize font_style_table.
11571 2008-05-21  Dan Nicolaescu  <dann@ics.uci.edu>
11573         * xterm.c (x_set_frame_alpha): Move declarations before statements.
11575 2008-05-21  Seiji Zenitani  <zenitani@mac.com>
11576             Ryo Yoshitake  <ryo@shiftmode.net>
11578         * frame.c (Qalpha): Add a new frame parameter `alpha'.
11579         (Vframe_alpha_lower_limit): New variable.
11580         (x_set_alpha): New function.
11582         * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
11584         * xfns.c (x-create-frame, Qalpha):
11585         Initialize the frame parameter `alpha'.
11586         * xterm.c (OPAQUE, OPACITY): New.
11587         (x_set_frame_alpha): New function.
11588         (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
11590         * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
11591         * w32fns.c (w32_frame_parm_handlers): Likewise.
11593 2008-05-20  Jason Rumney  <jasonr@gnu.org>
11595         * w32font.c (add_font_entity_to_list): Don't add non-opentype
11596         truetype fonts to opentype list.
11598 2008-05-20  Juanma Barranquero  <lekktu@gmail.com>
11600         * fontset.c (Ffontset_info): Doc fix.
11601         (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
11602         <ignore-relative-composition>: Fix typos in docstrings.
11604         * font.c (syms-of-font) <font-encoding-alist>:
11605         (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
11606         (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
11607         (Ffont_otf_alternates): Doc fixes.
11609 2008-05-20  Kenichi Handa  <handa@m17n.org>
11611         * Makefile.in (FONTSRC): Delete it.  Change all $(FONTSRC) to
11612         font.h through out the file.
11613         (FONT_DRIVERS): Rename from FONTOBJ.
11614         (obj): Change $(FONTOBJ) to $(FONT_DRIVERS).  Add font.o.
11615         (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
11617         * emacs.c (main): Call syms_of_font unconditionally.
11619         * font.h (find_font_encoding): Extern it.
11621         * font.c (Vfont_encoding_alist, find_font_encoding): Move from
11622         fontset.c.
11623         (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
11624         (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
11625         FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
11626         only when HAVE_WINDOW_SYSTEM is defined.
11627         (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
11628         when HAVE_WINDOW_SYSTEM is defined.
11630         * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
11631         (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
11633         * xfaces.c: Include font.h unconditionally.
11634         (merge_face_ref, merge_face_vectors)
11635         (Finternal_set_lisp_face_attribute): Cancel the previous change.
11637 2008-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11639         * xdisp.c (select_frame_for_redisplay): Adjust for last change to
11640         indirect_variable.
11641         * eval.c (lisp_indirect_variable): New fun.
11642         (Fuser_variable_p): Use it.
11644 2008-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11646         * lisp.h (indirect_variable):
11647         * data.c (indirect_variable, let_shadows_buffer_binding_p):
11648         Use Lisp_Symbol pointers rather than Lisp_Object.
11649         Adjust callers.
11650         * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
11651         To this end, change calling-convention.
11653         * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
11654         if some non-hidden buffers are selected by string&pred.
11656 2008-05-19  Chong Yidong  <cyd@stupidchicken.com>
11658         * process.c (wait_reading_process_output): Always check status
11659         when in batch mode.
11661 2008-05-19  Kenichi Handa  <handa@m17n.org>
11663         * font.c (font_list_entities): Fix handling of cache.
11664         (font_matching_entity): Likewise.
11666         * ftfont.c (cs_iso8859_1): Delete.
11667         (ft_face_cache): New variable.
11668         (struct ftfont_info): New member fc_charset_idx.
11669         (ftfont_build_basic_charsets): Delete.
11670         (fc_charset_table): New variable.
11671         (ftfont_pattern_entity): New arg fc_charset_idx.  Store (FILENAME
11672         . FC_CHARSET_IDX) as :font-entity property in the font entity.
11673         Callers changed.
11674         (ftfont_lookup_cache, ftfont_get_charset): New functions.
11675         (ftfont_spec_pattern): New argument fc_charset_idx.
11676         Check registry more rigidly.  Change callers.
11677         (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
11678         change of :font-entity property of the font.
11680         * xftfont.c (xftfont_open): Adjust for the change of :font-entity
11681         property of the font.
11683 2008-05-18  Juanma Barranquero  <lekktu@gmail.com>
11685         * coding.c (Fcoding_system_p): Rename argument to match docstring.
11686         (Funencodable_char_position, Fcheck_coding_systems_region)
11687         (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
11688         (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
11689         (Ffind_operation_coding_system, Fset_coding_system_priority)
11690         (Fcoding_system_eol_type): Doc fixes.
11692 2008-05-17  Glenn Morris  <rgm@gnu.org>
11694         * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
11696 2008-05-16  Eli Zaretskii  <eliz@gnu.org>
11698         * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
11699         and st_gid.
11701         * frame.c (Fdelete_frame): Don't call font_update_drivers if
11702         HAVE_WINDOW_SYSTEM is not defined.
11704         * xfaces.c (merge_face_ref, merge_face_vectors)
11705         (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
11706         HAVE_WINDOW_SYSTEM is defined.
11707         (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
11709 2008-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11711         * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
11713 2008-05-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11715         * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
11717 2008-05-15  Kenichi Handa  <handa@m17n.org>
11719         * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
11720         preference.
11722 2008-05-15  Glenn Morris  <rgm@gnu.org>
11724         * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
11726 2008-05-15  Chong Yidong  <cyd@stupidchicken.com>
11728         * fns.c (init_fns): Don't initialize weak_hash_tables here.
11729         (init_weak_hash_tables): New fun.  Initialize weak_hash_tables.
11731         * alloc.c (init_alloc_once): Call init_weak_hash_tables.
11733 2008-05-15  Kenichi Handa  <handa@m17n.org>
11735         * ftfont.c (ftfont_list): Downcase family name to check generic
11736         families.
11738         * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
11739         font-spec for QCfont value.
11741         * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
11742         buffer.  Check the return value of it.
11744 2008-05-14  Jason Rumney  <jasonr@gnu.org>
11746         * w32term.c (w32_get_glyph_overhangs): Remove.
11747         (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
11749 2008-05-14  Kenichi Handa  <handa@m17n.org>
11751         * font.c (font_prop_validate): Make nil a valid value.
11752         (font_clear_cache): Check if the cached vector of entities is nil
11753         or not.
11755 2008-05-14  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11757         * emacs.c (main_thread): Conditionalize on
11758         FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
11759         (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
11761         * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
11762         (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
11763         FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
11765 2008-05-14  Kenichi Handa  <handa@m17n.org>
11767         * coding.c (detect_coding_iso_2022): Ignore a coding category that
11768         has no corresponding coding system.
11770 2008-05-14  Jason Rumney  <jasonr@gnu.org>
11772         * font.h (struct font) [WINDOWSNT]: Remove codepage member.
11774         * w32font.h (w32font_open_internal): Update declaration.
11776         * w32font.c (w32font_open_internal): Change last argument from
11777         w32font_info struct to font object.  Fill in font object from
11778         font_entity.  Get Outline metrics if possible.  Use them to
11779         calculate underline position and thickness.  Use xlfd name as name
11780         property.  Don't set codepage.
11781         (w32font_open): Pass font_object to w32font_open_internal.  Don't
11782         update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
11783         (w32font_draw): Use s->font.
11784         (clear_cached_metrics): Don't clear non-existent blocks.
11786         * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
11787         font was not found.
11788         (x_draw_glyph_string): Use underline position and thickness from font.
11790         * w32uniscribe.c (uniscribe_open): Pass font_object to
11791         w32font_open_internal.
11793 2008-05-14  Kenichi Handa  <handa@m17n.org>
11795         These changes are to delete all legacy font-handling codes, and
11796         make Emacs use only font-backends.
11798         * Makefile.in: Delete USE_FONT_BACKEND conditionals.
11799         (frame.o, image.o, print.o): Depend on $(FONTSRC).
11801         * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
11803         * charset.h (Vcharset_non_preferred_head)
11804         (Vcurrent_iso639_language): Extern them.
11806         * charset.c (Vcharset_non_preferred_head): New variable.
11807         (Vcurrent_iso639_language): New variable.
11808         (syms_of_charset): Declare it as a Lisp variable.
11809         (char_charset): Don't check non preferred charsets.  As a last
11810         resort, return charset_unicode.
11811         (Fset_charset_priority): Update Vcharset_non_preferred_head.
11813         * composite.c: Throughout the file, delete all USE_FONT_BACKEND
11814         conditionals.  Don't check enable_font_backend.  Delete all codes
11815         used only when USE_FONT_BACKEND is not defined.
11817         * dispextern.h (struct glyph_string): Change type of `font' to
11818         `struct font *'.
11819         (struct glyph_string): New member underline_position and
11820         underline_thickness.
11821         (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
11822         (struct face): Change type of `font' to `struct font *'.  Remove
11823         members `font_name', `font_info_id'.
11824         (per_char_metric, encode_char): Delete externs.
11825         (calc_pixel_width_or_height): Adjust the prototype.
11827         * emacs.c (enable_font_backend): Delete extern.
11828         (main): Don't set enable_font_backend.  Don't check the command
11829         line argument "-disable-font-backend".
11831         * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
11832         (enum font_property_index): New members FONT_DPI_INDEX,
11833         FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
11834         FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
11835         FONT_OBJECT_MAX.  Delete FONT_FRAME_INDEX.
11836         (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
11837         (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
11838         (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
11839         (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
11840         (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
11841         (struct font_spec, struct font_entity): New structs.
11842         (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
11843         (struct font): Many members from old "struct font_info" moved to
11844         here.  Members font and entity deleted.
11845         (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
11846         the new font-related objects.
11847         (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
11848         (CHECK_FONT_GET_OBJECT): Likewise.
11849         (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
11850         (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
11851         (struct font_driver): New members case_sensitive anc check.  Type
11852         of the member list and open changed.
11853         (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
11854         (font_symbolic_width, font_find_object, font_get_spec)
11855         (font_set_lface_from_name): Delete extern.
11856         (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
11858         * font.c: Include <strings.h>.
11859         (enable_font_backend): Delete it.
11860         (Qfont_spec, Qfont_entity, Qfont_object): New variables.
11861         (CHECK_VALIDATE_FONT_SPEC): Delete it.
11862         (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
11863         (null_string): Delete it.
11864         (null_vector): Make it static.
11865         (font_family_alist): Delete it.
11866         (Qnormal): Extern it.
11867         (QCextra, QClanguage): Delete it.
11868         (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
11869         (font_make_spec, font_make_entity, font_make_object)
11870         (font_intern_prop): Renamed from intern_downcase.  Don't downcase
11871         the string.  Callers changed.
11872         (font_pixel_size): Adjusted for the format change of font-related
11873         objects.
11874         (prop_name_to_numeric, prop_numeric_to_name): Delete them.
11875         (font_style_to_value, font_style_symbolic): New function.
11876         (build_font_family_alist): Delete it.
11877         (font_registry_charsets): Use Fassoc_string instead of
11878         assq_no_quit.
11879         (font_prop_validate_symbol): Don't return null_string.
11880         (font_prop_validate_style): Adjusted for the change of
11881         style-related values in a font vector.
11882         (font_property_table): Delete entries for QClanguage and
11883         QCantialias, add entries for QCavgwidth.
11884         (get_font_prop_index): Delete the 2nd argument FROM.
11885         (font_prop_validate): Arguments changed.
11886         (font_put_extra): Adjusted for the change of font-related objects.
11887         (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
11888         (font_parse_fcname, font_unparse_fcname)
11889         (font_prepare_composition): Likewise.
11890         (font_parse_family_registry): Renamed from font_merge_old_spec.
11891         (otf_open): Delete the 1st arg entity.
11892         (font_otf_capability): Adjusted for the above change.
11893         (font_score): New arg alternate_families.  Adjusted for the change
11894         of font-related objects.
11895         (font_sort_entites): New arg best_only.
11896         (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
11897         Delete them.
11898         (font_match_p): Check alternate families.
11899         (font_find_object): Delete it.
11900         (font_check_object): New function.
11901         (font_clear_cache): Adjusted for the change of font-related objects.
11902         (font_delete_unmatched): New arg.
11903         (font_list_entities): Call font_driver->list with a spec that
11904         doesn't specify style-related properties.
11905         (font_matching_entity): Arguments changed.  Caller changed.
11906         (font_open_entity): Adjusted for the change of font-related objects.
11907         (font_close_object, font_has_char, font_encode_char)
11908         (font_get_name, font_get_spec): Likewise.
11909         (font_spec_from_name, font_clear_prop, font_update_lface):
11910         New functions.
11911         (font_find_for_lface, font_open_for_lface, font_load_for_lface)
11912         (font_prepare_for_face, font_done_for_face, font_open_by_name)
11913         (font_at): Adjusted for the change of font-related objects.
11914         (font_range): New function.
11915         (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
11916         (Ffont_xlfd_name): Adjusted for the change of font-related objects.
11917         (Fcopy_font_spec, Fmerge_font_spec): New function.
11918         (Ffont_family_list): Renamed from list-families.
11919         (Finternal_set_font_style_table): Arguments changed.
11920         (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
11921         (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
11922         change of font-related objects.
11923         (syms_of_font): Delete "ifdef USE_FONT_BACKEND".  DEFSYM new symbols.
11925         * fontset.h (struct font_info): Delete it.  Most members go to
11926         struct font.
11927         (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
11928         (enum FONT_SPEC_INDEX): Delete it.
11929         (font_info, list_fonts_func, load_font_func, query_font_func)
11930         (set_frame_fontset_func, find_ccl_program_func)
11931         (get_font_repertory_func, new_fontset_from_font_name): Delete
11932         externs.
11933         (fontset_from_font_name): Extern it.
11934         (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
11935         (FONT_INFO_FROM_FACE): Deleted.
11936         (face_for_font): Adjust prototype.
11938         * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
11939         conditionals.  Don't check enable_font_backend.  Delete all codes
11940         used only when USE_FONT_BACKEND is not defined.
11941         (get_font_info_func, list_font_func, load_font_func)
11942         (query_font_func, set_frame_fontset_func, find_ccl_program_func)
11943         (get_font_repertory_func): Delete them.
11944         (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
11945         (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
11946         (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
11947         (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
11948         (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
11949         (fontset_compare_rfontdef): New function.
11950         (reorder_font_vector): Remove the argument CHARSET-ID.  Sort
11951         rfont-defs by qsort.  Adjusted for the change of font-group vector.
11952         (load_font_get_repertory): Deleted.
11953         (fontset_find_font): Use new macros to ref/set elements of
11954         font-def and rfont-def.
11955         (fontset_font): Fix the timing of remembering that no font for C.
11956         (free_face_fontset): Do nothing if the face has no fontset.
11957         (face_suitable_for_char_p): Use new macros to ref/set elements of
11958         rfont-def.
11959         (face_for_char): Likewise.  Call face_for_char with font_object.
11960         (fs_load_font): Delete.  Delete #pragma surrounding it.
11961         (fs_query_fontset): Use strcasecmp instead of strcmp.
11962         (generate_ascii_font_name): Adjusted for the format change of
11963         font-spec.
11964         (Fset_fontset_font): Likewise.  Use new macros to set elements of
11965         font-def.
11966         (Fnew_fontset): Use font_unparse_xlfd to generate
11967         FONTSET_ASCII (fontset).
11968         (new_fontset_from_font_name): Deleted.
11969         (fontset_from_font): Renamed from new_fontset_from_font.  Check if
11970         a fontset is already created for the font.  FIx updating of
11971         Vfontset_alias_alist.
11972         (fontset_ascii_font): Deleted.
11973         (Ffont_info): Adjusted for the format change of font-spec.
11974         (Finternal_char_font): Likewise.
11975         (Ffontset_info): Likewise.
11976         (syms_of_fontset): Don't check load_font_func.
11978         * fns.c (internal_equal): Handle PREV_FONT.
11980         * frame.h: Delete USE_FONT_BACKEND conditional.
11982         * frame.c: Throughout the file, delete all USE_FONT_BACKEND
11983         conditionals.  Don't check enable_font_backend.  Delete all codes
11984         used only when USE_FONT_BACKEND is not defined.
11985         (x_set_font): Call x_new_font, not x_new_fontset2.
11986         (x_set_font_backend): Use FRAME_FONT macro to check if a font is
11987         already set for the frame.
11989         * ftfont.c (ftfont_pattern_entity): Argument FRAME removed.  Make
11990         a font-entity by font_make_entity.  Use font_intern_prop instead
11991         of intern_downcase.  Use FONT_SET_STYLE to set a style-related
11992         font property.  If a font is scalable, set avgwidth property to 0.
11993         Set font-entity property by font_put_extra.
11994         (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
11995         (ffont_driver): Adjusted for the change of struct font_driver.
11996         (ftfont_spec_pattern): New function.
11997         (ftfont_list): Return a list, not vector.
11998         (ftfont_match): Use ftfont_spec_pattern to get a pattern.
11999         (ftfont_list_family): Don't downcase names.
12000         (ftfont_free_entity): Deleted.
12001         (ftfont_open): Return a font-object.  Adjusted for the change of
12002         struct font.  Get underline_thickness and underline_position from
12003         font property.  Don't update dpyinfo->smallest_font_height and
12004         dpyinfo->smallest_char_width.
12005         (ftfont_close): Don't free `struct font'.
12006         (ftfont_has_char): Adjusted for the format change of font-entity.
12007         (ftfont_encode_char, ftfont_text_extents): Likewise.
12009         * ftxfont.c (ftxfont_list): Return a list, not vector.
12010         (ftxfont_open): Return a font-object.  Adjusted for the change of
12011         struct font.  Get underline_thickness and underline_position from
12012         font property.  Don't update dpyinfo->smallest_font_height and
12013         dpyinfo->smallest_char_width.
12014         (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
12015         (ftxfont_draw): Adjusted for the change of struct font.
12017         * image.c (image_ascent): Don't include "charset.h".  Include
12018         "character.h" and "font.h".
12020         * lisp.h (enum pvec_type): New member PREV_FONT.
12021         (Fassoc_string): EXFUN it.
12023         * print.c: Include font.h.
12024         (print_object): Handle font-related objects.
12026         * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
12027         conditionals.  Don't check enable_font_backend.  Delete all codes
12028         used only when USE_FONT_BACKEND is not defined.
12029         (handle_auto_composed_prop): Do nothing if it->f is not on a
12030         window system.  Check how many following characters can be
12031         displayed by the same font.
12032         (calc_pixel_width_or_height): Type of the 4th arg is changed to
12033         'struct font *'.
12034         (get_char_face_and_encoding): Assign the whole encoding task to
12035         the `encode-char' method of a font driver.
12036         (fill_composite_glyph_string): Adjusted for the change of `struct
12037         face' and `struct glyph_string'.
12038         (fill_glyph_string): Likewise.
12039         (get_per_char_metric): Arguments changed.
12040         (x_get_glyph_overhangs): Adjusted for the change of `struct face'
12041         and `struct glyph_string'.
12042         (produce_stretch_glyph, calc_line_height_property)
12043         (x_produce_glyphs): Likewise.
12045         * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
12046         conditionals.  Don't check enable_font_backend.  Delete all codes
12047         used only when USE_FONT_BACKEND is not defined.  Use
12048         FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
12049         (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
12050         (Qp): Extern them.
12051         (clear_font_table, load_face_font, xlfd_lookup_field_contents):
12052         Deleted.
12053         (struct font_name): Deleted.
12054         (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
12055         (compare_fonts_by_sort_order): New function.
12056         (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
12057         (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
12058         Deleted.
12059         (Fx_family_fonts): Use font_list_entities, and sort fonts by
12060         compare_fonts_by_sort_order.
12061         (Fx_font_family_list): Call Ffont_family_list.
12062         (face_numeric_value, face_numeric_weight, face_numeric_slant)
12063         (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
12064         (face_symbolic_slant, face_symbolic_swidth)
12065         (split_font_name_into_vector, build_font_name_from_vector)
12066         (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
12067         (font_rescale_ratio, split_font_name, build_font_name)
12068         (free_font_names, sort_fonts, x_face_list_fonts)
12069         (face_font_available_p, sorted_font_list, cmp_font_names)
12070         (font_list_1, concat_font_list, font_list, remove_duplicates):
12071         Deleted.
12072         (Fx_list_fonts): Use Ffont_list.
12073         (LFACE_AVGWIDTH): Deleted.
12074         (check_lface_attrs): Don't check LFACE_AVGWIDTH.  Check LFACE_FONT
12075         by FONTP.
12076         (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
12077         (set_lface_from_font_name): Delete it.
12078         (set_lface_from_font): Renamed from
12079         set_lface_from_font_and_fontset.  Caller changed.  Don't set
12080         LFACE_AVGWIDTH.  Use FONT_XXX_FOR_FACE to get a symbol suitable
12081         for face.
12082         (merge_face_vectors): Copy font-spec if necessary.
12083         Clear properties of the font-spec if necessary.
12084         (merge_face_ref): Clear properties of the font-spec if necessary.
12085         (Finternal_set_lisp_face_attribute): Likewise.
12086         (set_font_frame_param): Use font_load_for_lface to load a
12087         font-object, and call Fmodify_frame_parameters with it.
12088         (x_update_menu_appearance): Don't check LFACE_AVGWIDTH.  Get XLFD
12089         font name by Ffont_xlfd_name.
12090         (Finternal_lisp_face_attribute_values): Don't check QCweight,
12091         QCslant, and QCwidth.
12092         (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
12093         (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
12094         Compare fonts by EQ.
12095         (lookup_non_ascii_face): Deleted.
12096         (face_for_font): The 2nd argument changed.
12097         (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
12098         Check atomic font properties by case insensitive.
12099         (realize_non_ascii_face): Set face->overstrike correctly.
12100         (realize_x_face): Likewise.  Check if LFACE_FONT is a font_object.
12101         (dump_realized_face): Get font name from
12102         font->props[FONT_NAME_INDEX].  Don't print font_info_id.
12104         * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
12105         conditionals.  Don't check enable_font_backend.  Delete all codes
12106         used only when USE_FONT_BACKEND is not defined.
12107         (xic_create_xfontset): Original code deleted and renamed from
12108         xic_create_xfontset2.  Use FRAME_FONT, not FRAME_FONT_OBJECT.
12109         (x_make_gc): Don't set GCFont in GCs.
12110         (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
12111         opened by "fixed".
12112         (syms_of_xfns): Don't set get_font_info_func, load_font_func,
12113         find_ccl_program_func, query_font_func, set_frame_fontset_func,
12114         get_font_repertory_func.
12116         * xfont.c: Include <stdlib.h> and "ccl.h".
12117         (struct xfont_info): New structure.
12118         (xfont_query_font): Deleted.
12119         (xfont_find_ccl_program): Renamed from x_find_ccl_program and
12120         moved from xterm.c.
12121         (xfont_driver): Adjusted for the change of struct font_driver.
12122         (compare_font_names): New function.
12123         (xfont_list_pattern): Sort font names case insensitively.  Make
12124         font_entity by calling font_make_entity.  Avoid auto-scaled fonts.
12125         (xfont_list): Return a list, not vector.
12126         (xfont_match): If the font doesn't have QCname property, generate
12127         a name from the other font properties.
12128         (xfont_open): Return a font-object.  Adjusted for the change of
12129         struct font.  Get underline_thickness and underline_position from
12130         font property.  Don't update dpyinfo->smallest_font_height and
12131         dpyinfo->smallest_char_width.
12132         (xfont_close): Don't free struct font.
12133         (xfont_prepare_face): Adjusted for the change of struct font.
12134         (xfont_done_face): Deleted.
12135         (xfont_has_char): Adjusted for the change of struct font.
12136         (xfont_encode_char, xfont_draw): Likewise.
12137         (xfont_check): New function.
12139         * xftfont.c (xftfont_list): Adjusted for the change of `list'
12140         callback function.
12141         (xftfont_match): Adjusted for the format change of font-entity.
12142         (xftfont_open): Adjusted for the format change of font-entity and
12143         font-object.  Adjusted for the change of struct font.  Return a
12144         font-object.  Don't update dpyinfo->smallest_font_height and
12145         dpyinfo->smallest_char_width.
12146         (xftfont_close): Block input while calling XftFontClose.
12147         (xftfont_prepare_face): Don't block input while calling
12148         xftfont_get_colors.  Adjusted for the change of struct font.
12149         (xftfont_shape): Return value of error case fixed.
12151         * xrdb.c (x_load_resources): Don't setup a fontset resource.
12153         * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
12154         conditionals.
12155         (FONT_WIDTH): Return (f)->max_width.
12156         (struct x_display_info): Delete member `font'.
12157         (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
12158         (x_find_ccl_program, x_get_font_repertory): Delete externs.
12159         (struct x_output): Change type of `font' to `struct font *'.
12161         * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
12162         conditionals.  Don't check enable_font_backend.  Delete all codes
12163         used only when USE_FONT_BACKEND is not defined.  Don't include ccl.h.
12164         (x_per_char_metric, x_encode_char): Deleted.
12165         (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
12166         (x_compute_glyph_string_overhangs): Adjusted for the change of
12167         `struct face'.
12168         (x_draw_glyph_string_foreground)
12169         (x_draw_composite_glyph_string_foreground): Likewise.
12170         (x_draw_glyph_string): Likewise.  Use font->underline_position and
12171         font->underline_thickness.
12172         (x_new_font): Renamed from x_new_fontset2.
12173         (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
12174         (x_check_font): Call `check' method of a font driver.
12175         (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
12176         (x_query_font, x_get_font_repertory): Deleted.
12177         (x_find_ccl_program): Renamed and moved to xfont.c.
12178         (x_redisplay_interface): Adjusted for the change of `struct
12179         redisplay_interface'.
12181         * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
12182         conditionals.  Don't check enable_font_backend.  Delete all codes
12183         used only when USE_FONT_BACKEND is not defined.  Surround non-used
12184         code by "#ifdef OLD_FONT" and "endif".
12185         (Fw32_select_font): Use FONT_COMPAT to get old font structure.
12187         * w32font.h (struct w32font_info): New member.
12188         (FONT_COMPAT): New macro.
12189         (w32font_open_internal): Prototype adjusted.
12191         * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
12192         OLD_FONT" and "endif".
12194         * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
12195         conditionals.  Don't check enable_font_backend.  Delete all codes
12196         used only when USE_FONT_BACKEND is not defined.
12197         (w32font_open): Return a font-object.  Make a font-object by
12198         font_make_object.  Adjusted for the change of struct w32font_info.
12199         (w32font_close): Don't free struct font.  Adjusted for the change
12200         of struct w32font_info.
12201         (w32font_encode_char, w32font_text_extents, w32font_draw):
12202         Adjusted for the change of struct w32font_info.
12203         (w32font_draw): Likewise.
12204         (w32font_list_internal): Return a list, not vector.
12205         (w32font_open_internal): Change the 4th arg to font-object.
12206         Adjusted for the change of struct w32font_info and font-object format.
12207         (add_font_name_to_list): Don't downcase names.
12208         (w32_enumfont_pattern_entity): Make a font-entity by
12209         font_make_entity.  Adjusted for the format change of font-entity.
12210         Use FONT_SET_STYLE to set a style-related font property.  If a
12211         font is scalable, set avgwidth property to 0.  Set font-entity
12212         property by font_put_extra.
12213         (font_matches_spec): Adjusted for the format change of font-entity.
12214         (w32_weight_table, w32_decode_weight): New variables.
12215         (w32_encode_weight): New function.
12216         (fill_in_logfont): Adjusted for the format change of font-spec.
12217         (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
12218         weight value.
12219         (w32font_driver): Adjusted for the change of struct font_driver.
12221         * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
12222         conditionals.  Don't check enable_font_backend.  Surround non-used
12223         code by "#ifdef OLD_FONT" and "endif".
12224         (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
12225         (FONT_AVG_WIDTH): Adjusted for the change of struct font.
12227         * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
12228         conditionals.  Don't check enable_font_backend.  Delete all codes
12229         used only when USE_FONT_BACKEND is not defined.  Surround non-used
12230         code by "#ifdef OLD_FONT" and "endif".
12232         * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
12233         (uniscribe_open): Return value changed to font-object.
12234         Adjusted for the format change of font-object.
12235         (uniscribe_otf_capability): Adjusted for the change of struct font.
12236         (add_opentype_font_name_to_list): Don't downcase names.
12237         (uniscribe_font_driver): Adjusted for the change of struct
12238         font_driver.
12240 2008-05-13  Chong Yidong  <cyd@stupidchicken.com>
12242         * dispnew.c (update_frame_1): Check if tty output is still valid
12243         before flushing it.
12245 2008-05-13  Jan Djärv  <jan.h.d@swipnet.se>
12247         * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
12248         to Gtk+ menus.
12250 2008-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12252         * dired.c (file_name_completion): Tweak the code so as to always do it
12253         in a single pass.  Tighten the scope of some variables.
12255         * dired.c (Qdefault_directory): New var.
12256         (file_name_completion): Use it instead of Fexpand_file_name.
12257         (syms_of_dired): Initialize it.
12259 2008-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12261         * fileio.c (double_dollars): Remove dead code.
12263 2008-05-10  Eli Zaretskii  <eliz@gnu.org>
12265         * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
12266         Mention w32-get-true-file-attributes in doc string.
12268         * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
12270 2008-05-09  Glenn Morris  <rgm@gnu.org>
12272         * fileio.c (Fread_file_name): Remove reference to insdef, deleted
12273         2008-04-23.
12275 2008-05-09  Eli Zaretskii  <eliz@gnu.org>
12277         Support for reporting owner and group of each file on MS-Windows:
12278         * dired.c (stat_uname, stat_gname): New functions, with special
12279         implementation for w32.
12280         (Ffile_attributes): Use them instead of getpwuid and getgrgid.
12282         * w32.c: Rename the_passwd_* to dflt_passwd_*.
12283         (dflt_group_name): New static variable.
12284         (dflt_group): Rename from the_group.
12285         (init_user_info): Init dflt_group fields.  Get user's group name
12286         from LookupAccountSid.
12287         (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
12288         (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
12289         New initialization states.
12290         (globals_of_w32): Initialize them to zero.  Initialize the default
12291         group name to "None".
12292         (GetFileSecurity_Name): New global var, the name of the function
12293         to call for GetFileSecurity.
12294         (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
12295         (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
12296         (get_file_security, get_security_descriptor_owner)
12297         (get_security_descriptor_group, is_valid_sid)
12298         (get_file_security_desc, get_rid, get_name_and_id)
12299         (get_file_owner_and_group): New functions.
12300         (stat): Use get_file_security_desc and get_file_owner_and_group to
12301         report the owner and primary group of each file.  Don't ignore the
12302         high 32 bits of file's size, now that st_size is 64-bit wide.
12303         Fix test when to get true file attributes.
12304         (init_user_info): Use get_rid instead of equivalent inline code.
12305         (fstat): Don't ignore the high 32 bits of file's size.
12307 2008-05-09  Chong Yidong  <cyd@stupidchicken.com>
12309         * image.c (png_load): Use correct bit-depth for setting background
12310         color.
12312 2008-05-08  Eli Zaretskii  <eliz@gnu.org>
12314         * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
12315         epa-hook.elc.
12317 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
12319         * font.c (Ffont_match_p): Don't use `iff' in docstring.
12321 2008-05-07  Dan Nicolaescu  <dann@ics.uci.edu>
12323         * macfns.c (Fx_create_frame): Make a copy of frame parameters
12324         because the original parameters are in pure storage now.
12325         (mac_window): Remove unused params.  Update callers.
12327 2008-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12329         * lread.c (substitute_object_recurse): Use lower-level primitives.
12330         Don't signal errors when traversing sub-char-tables.
12331         Don't loop over all the possible characters when traversing char-tables.
12333         * print.c (print_preprocess): Add sub-char-tables to the print-table,
12334         just like we do in print.c.
12336 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12338         * minibuf.c (Ftry_completion): Remove code left over from when we used
12339         scmp instead of Fcompare_strings.
12341 2008-05-04  Juanma Barranquero  <lekktu@gmail.com>
12343         * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
12345 2008-05-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12347         * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
12348         Create bitmap context in native byte order.
12350         * macterm.c (XDrawLine)
12351         (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
12352         context in native byte order.
12354 2008-05-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12356         * config.in: Regenerate.
12358         * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
12359         New definitions for Image I/O support.
12360         (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
12361         (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
12362         [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
12363         (mac_data_provider_release_data, image_load_image_io)
12364         [USE_MAC_IMAGE_IO]: New functions.
12365         (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
12366         (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
12367         (init_image_func_pointer) [MAC_OSX]: Remove function.
12368         (image_load_quartz2d) [MAC_OSX]: Check availability of
12369         CGImageCreateWithPNGDataProvider at compile time.
12370         Use lowercase `false' for boolean constant.
12371         (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
12372         Use image_load_image_io.
12373         (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
12374         Don't check MyCGImageCreateWithPNGDataProvider.
12375         (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
12376         Don't call init_image_func_pointer.
12378         * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
12380         * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
12381         Make variable non-static.
12382         (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
12383         [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
12385         * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
12386         (RED_FROM_ULONG): Mask off higher bits.
12387         (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
12389         * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
12390         Include AvailabilityMacros.h.
12391         (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
12392         (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
12394 2008-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12396         * chartab.c (Fset_char_table_range): If range is t, really set all
12397         chars to that value.
12399 2008-05-03  Eli Zaretskii  <eliz@gnu.org>
12401         * dired.c (Ffile_attributes): Don't allow the device number become
12402         negative.
12404 2008-05-02  Daiki Ueno  <ueno@unixuser.org>
12406         * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
12408 2008-05-02  Juri Linkov  <juri@jurta.org>
12410         * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
12411         (Fread_variable, Fread_buffer, Fcompleting_read): Document the
12412         DEFAULT argument as a list of default values in docstrings.
12414 2008-05-01  Chong Yidong  <cyd@stupidchicken.com>
12416         * puresize.h (BASE_PURESIZE): Increase to 1210000.
12418 2008-05-01  Martin Rudalics  <rudalics@gmx.at>
12420         * dispnew.c (change_frame_size_1): Preserve small windows when
12421         shrinking frames by calling set_window_height|width with third
12422         arg 2.
12424         * window.h (struct window): Replace field too_small_ok by field
12425         resize_proportionally.
12427         * window.c (make_window): Initialize resize_proportionally.
12428         (enlarge_window): Temporarily set resize_proportionally to make
12429         sure that shrink_windows does scale the window proportionally.
12430         (shrink_windows): When window has resize_proportionally set try
12431         to shrink it proportionally by stealing from other windows.
12432         (struct saved_window, Fset_window_configuration)
12433         (compare_window_configurations): Handle resize_proportionally.
12434         (WINDOW_TOTAL_SIZE): New macro.
12435         (window_min_size, shrink_windows, size_window): Use it.
12436         (check_min_window_sizes): Remove.  Invalid values of
12437         window-min-height|width are handled by window_min_size_2 now.
12438         (size_window, Fsplit_window, enlarge_window)
12439         (adjust_window_trailing_edge, grow_mini_window): Don't call
12440         check_min_window_sizes.
12441         (window_min_size_2, window_min_size_1, window_min_size):
12442         New argument safe_p for retrieving "safe" minimum sizes.
12443         (Fdisplay_buffer, Fsplit_window, enlarge_window)
12444         (adjust_window_trailing_edge, grow_mini_window):
12445         Adjust arguments of window_min_size... functions.
12446         (shrink_windows): Argument min_size removed.  New argument
12447         safe_p allows shrinking windows to their safe minimum sizes.
12448         Calculate minimum size and decide whether a window shall be
12449         deleted for each window individually.
12450         (size_window): When nodelete_p equals 2, tell shrink_windows to
12451         delete windows only if their new minimum size is no more safe.
12452         (shrink_window_lowest_first): Call window_min_size_1 to make
12453         sure to preserve modeline of bottom-most window when resizing
12454         the minibuffer.
12455         (Fset_window_configuration, Fcurrent_window_configuration)
12456         (compare_window_configurations): Do not handle
12457         window-min-height|width any more.
12458         (syms_of_window): Clarify window-min-height|width doc-strings.
12460 2008-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12462         * dired.c (file_name_completion): Fix up the encoding/decoding issue
12463         some more.  Copy some of the code from Ftry_completions.
12464         Remove special case code that dates back to revision 1.1 when the
12465         slash was only added when necessary and that can't trigger nowadays.
12467 2008-04-27  Kenichi Handa  <handa@m17n.org>
12469         * font.c (font_prop_validate): Signal `error' instead of `font'.
12471 2008-04-29  Jason Rumney  <jasonr@gnu.org>
12473         * w32fns.c (Fw32_battery_status): New defun.
12474         (syms_of_w32fns): Defsubr it.
12476 2008-04-28  Andreas Schwab  <schwab@suse.de>
12478         * dired.c (file_name_completion): Fix another mixing of encoded
12479         and decoded names.
12481 2008-04-28  Juanma Barranquero  <lekktu@gmail.com>
12483         * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
12485 2008-04-27  Juanma Barranquero  <lekktu@gmail.com>
12487         * fringe.c (Fdefine_fringe_bitmap): Doc fix.
12489 2008-04-27  Andreas Schwab  <schwab@suse.de>
12491         * dired.c (file_name_completion): Fix inappropriate mixing of
12492         encoded and decoded names.
12494         * xterm.c (XTread_socket): Fix use of uninitialized variable.
12496         * puresize.h (BASE_PURESIZE): Increase to 1200000.
12498 2008-04-26  Eli Zaretskii  <eliz@gnu.org>
12500         * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
12501         2008-03-31, it's not needed anymore with `struct stat' definition
12502         on nt/inc/sys/stat.h.  Undo changes from 2007-01-12 and 2007-01-13
12503         for the same reasons.
12505 2008-04-25  Dennis Gilmore  <ausil@fedoraproject.org>  (tiny change)
12507         * m/sparc.h: Additional redefinitions for GNU/Linux.
12509 2008-04-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12511         * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
12512         (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
12513         (Qmouse_drag_overlay) [MAC_OSX]: New variable.
12514         (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
12515         (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
12516         (mac_ax_selected_text_range) [MAC_OSX]: New functions.
12517         (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
12518         Likewise.
12520         * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
12521         (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
12522         (mac_ax_number_of_characters): Add externs.
12523         (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
12524         [USE_MAC_TSM]: Likewise.
12525         (mac_handle_text_input_event) [MAC_OSX]:
12526         Handle kEventTextInputOffsetToPos for no active input area case.
12527         Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
12528         (mac_handle_document_access_event)
12529         [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
12530         (install_application_handler) [MAC_OSX]: Register handlers for
12531         kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
12532         (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
12533         Register mac_handle_document_access_event.
12535         * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
12536         Make functions non-static.
12538 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12540         * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
12541         (read_file_name_completion_ignore_case, insert_default_directory)
12542         (Qdefault_directory): Move to minibuffer.el.
12543         (Fread_file_name): Call the new `read-file-name' instead.
12545 2008-04-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12547         * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
12548         Make function non-static.
12549         (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
12550         Remove function.
12551         (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
12552         Move to mactoolbox.c.
12553         (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
12555         * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
12556         (mac_rect_make): New macro.
12558         * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
12559         instead of float.
12560         (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
12561         (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
12562         (XSetBackground) [USE_CG_DRAWING]: Likewise.
12563         (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
12564         CGRectMake.
12565         (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
12566         (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
12567         (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
12568         (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
12569         instead of WindowRef in argument type.
12570         (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
12571         (mac_invert_rectangle): Use CGContextSetBlendMode if available.
12572         (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
12573         instead of DISPLAY.  All uses changed.
12574         (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
12575         (x_calc_absolute_position): Simplify so as not to use
12576         FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
12578         * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
12579         instead of WindowRef in argument type.
12580         (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
12581         [TARGET_API_MAC_CARBON]: Remove externs.
12582         (create_apple_event, mac_event_parameters_to_lisp)
12583         [TARGET_API_MAC_CARBON]: Add externs.
12585         * mactoolbox.c (Vmac_ts_script_language_on_focus)
12586         (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
12587         (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
12588         is clicked.
12589         (x_activate_menubar): Remove extern for saved_menu_event_location.
12590         (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
12591         Move from mac.c.
12593 2008-04-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12595         * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
12596         [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
12598 2008-04-23  Jason Rumney  <jasonr@gnu.org>
12600         * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
12601         attributes only for local files.
12603         * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
12604         default to Qlocal.
12606 2008-04-22  Juri Linkov  <juri@jurta.org>
12608         * buffer.c (Fswitch_to_buffer): Change interactive spec to call
12609         read-buffer-to-switch instead of using the letter "B".
12611 2008-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12613         * fileio.c (Qdefault_directory): New variable.
12614         (Fread_file_name): Use it to pass `dir' to the completion functions.
12616 2008-04-20  Chong Yidong  <cyd@stupidchicken.com>
12618         * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
12620 2008-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
12622         * keyboard.c (Vpre_help_message): Remove.
12623         (show_help_echo): Remove default C code.
12625         * dired.c (directory_files_internal, file_name_completion):
12626         Only call ENCODE_FILE if the string is indeed decoded.
12628 2008-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
12630         * Makefile.in (TOOLKIT_DEFINES): Remove.
12631         (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
12633 2008-04-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12635         * Makefile.in (MAC_OBJ): Add mactoolbox.o.
12636         (mactoolbox.o): New target.
12638         * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
12639         Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
12641         * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
12642         Use mac_set_frame_window_background instead of XSetWindowBackground.
12643         (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
12644         Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
12645         (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
12646         instead of SetWindowTitleWithCFString.
12647         (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
12648         Move function to mactoolbox.c.
12649         (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
12650         Use mac_set_window_modified instead of SetWindowModified.
12651         Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
12652         (mac_window, x_create_tip_frame): Use mac_create_frame_window.
12653         (Fx_focus_frame): Use mac_front_non_floating_window instead of
12654         FrontNonFloatingWindow.  Use mac_activate_window instead of
12655         ActivateWindow.  Use mac_active_non_floating_window instead of
12656         ActiveNonFloatingWindow.
12657         (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
12658         Use mac_show_hourglass and mac_hide_hourglass.
12659         (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
12660         instead of GetGlobalMouse.
12661         (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
12662         instead of MoveWindow/SizeWindow/ShowWindow, respectively.
12663         Use mac_bring_window_to_front instead of BringToFront.
12664         (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
12665         mactoolbox.c.
12666         (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
12667         mac_file_dialog in mactoolbox.c.  Use mac_file_dialog.
12668         (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
12669         mactoolbox.c.
12671         * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
12672         (XtPointer): Move typedef from macmenu.c.
12673         (enum button_type): Move enum from macmenu.c.
12674         (widget_value): Move typedef from macmenu.c.
12675         (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
12676         (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
12677         (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
12678         (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
12679         (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
12680         (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
12681         (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
12682         (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
12683         (Selection): Move typedef from macselect.c.
12684         (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
12685         macterm.c.
12686         (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
12687         (mac_is_window_collapsed, mac_bring_window_to_front)
12688         (mac_send_window_behind, mac_hide_window, mac_show_window)
12689         (mac_collapse_window, mac_front_non_floating_window)
12690         (mac_active_non_floating_window, mac_activate_window)
12691         (mac_move_window_structure, mac_move_window, mac_size_window)
12692         (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
12694         * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
12695         (enum mac_menu_kind): Move enum to mactoolbox.c.
12696         (min_menu_id): Move variable to mactoolbox.c.
12697         (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
12698         (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
12699         (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
12700         (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
12701         [TARGET_API_MAC_CARBON]: Likewise.
12702         (XtPointer): Move typedef to macgui.h.
12703         (enum button_type): Move enum to macgui.h.
12704         (widget_value): Move typedef to macgui.h.
12705         (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
12706         (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
12707         (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
12708         (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
12709         (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
12710         (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
12711         (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
12712         (popup_activated_flag): Make variable non-static.
12713         (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
12714         (add_menu_item, fill_menu, dispose_menus):
12715         Move functions to mactoolbox.c.
12716         (restore_show_help_function, menu_target_item_handler)
12717         (install_menu_target_item_handler, mac_handle_dialog_event)
12718         (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
12719         [TARGET_API_MAC_CARBON]: Likewise.
12720         (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
12721         (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
12722         (find_and_call_menu_selection, name_is_separator): Make function
12723         non-static.
12724         (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
12725         to mactoolbox.c.
12726         (set_frame_menubar): Don't call install_menu_quit_handler.
12727         (menu_item_selection): New variable.
12728         (mac_menu_show): Use create_and_show_popup_menu.
12729         (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
12730         selection but set variable menu_item_selection.  All uses changed.
12731         (mac_fill_menubar): Rename from fill_menubar.  All uses changed.
12732         Call install_menu_quit_handler.  Move to mactoolbox.c.
12734         * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
12735         (Selection): Move typedef to macgui.h.
12736         (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
12737         (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
12738         Make variables non-static.
12739         (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
12740         (mac_handle_apple_event, cleanup_all_suspended_apple_events):
12741         Make functions non-static.
12742         (Vmac_service_selection) [MAC_OSX]: Likewise.
12743         (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
12744         (mac_valid_selection_target_p, mac_clear_selection)
12745         (mac_get_selection_ownership_info, mac_valid_selection_value_p)
12746         (mac_put_selection_value, mac_selection_has_target_p)
12747         (mac_get_selection_value, mac_get_selection_target_list)
12748         (init_apple_event_handler, install_drag_handler, remove_drag_handler):
12749         Move functions to mactoolbox.c.
12750         (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
12751         Likewise.
12752         (copy_scrap_flavor_data, mac_handle_service_event)
12753         (install_service_handler) [MAC_OSX]: Likewise.
12754         (syms_of_macselect) <Vmac_dnd_known_types>:
12755         Use mac_dnd_default_known_types.
12757         * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
12758         Move to mactoolbox.c.
12759         (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
12760         (Fx_selection_owner_p): Add EXFUN.
12761         (install_window_handler, remove_window_handler, XSetWindowBackground):
12762         Remove externs.
12763         (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
12764         (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
12765         (x_raise_frame, x_lower_frame, mac_alert_sound_play)
12766         (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
12767         (mac_convert_frame_point_to_global, mac_set_frame_window_background)
12768         (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
12769         (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
12770         (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
12771         (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
12772         (create_and_show_popup_menu, mac_get_selection_from_symbol)
12773         (mac_valid_selection_target_p, mac_clear_selection)
12774         (mac_get_selection_ownership_info, mac_valid_selection_value_p)
12775         (mac_put_selection_value, mac_selection_has_target_p)
12776         (mac_get_selection_value, mac_get_selection_target_list): Add externs.
12777         (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
12778         (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
12779         (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
12780         (mac_run_loop_run_once) [MAC_OSX]: Likewise.
12781         (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
12782         (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
12783         (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
12784         (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
12786         * mactoolbox.c: New file.
12788 2008-04-18  Jason Rumney  <jasonr@gnu.org>
12790         * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
12792 2008-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
12794         * character.c (Fmultibyte_char_to_unibyte):
12795         Return latin1 chars unchanged.
12797         * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
12798         relocated if it points to `name'.
12800 2008-04-17  Kenichi Handa  <handa@m17n.org>
12802         * data.c (Faset): Allow setting a multibyte character in an
12803         ASCII-only unibyte string.
12805         * lisp.h (STRING_SET_MULTIBYTE): New macro.
12807 2008-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12809         * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
12810         done in config.h.
12812 2008-04-16  Juanma Barranquero  <lekktu@gmail.com>
12814         * character.c (Fchar_bytes, Fchar_width, Fstring_width)
12815         (Fchar_direction): Add usage in the docstring.
12817 2008-04-15  Chong Yidong  <cyd@stupidchicken.com>
12819         * keyboard.c (read_key_sequence): Remove always-true checks.
12821 2008-04-14  Jason Rumney  <jasonr@gnu.org>
12823         * w32font.c (w32font_open_internal): Set max_bounds.descent in
12824         compatibility struct, for better underline positioning.
12826 2008-04-13  David Hansen  <david.hansen@gmx.net>
12828         * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
12829         string.
12831 2008-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
12833         * m/hp800.h (XUINT, XSET): Remove.
12835 2008-04-12  Juanma Barranquero  <lekktu@gmail.com>
12837         * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
12838         previous change.
12840 2008-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12842         * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
12843         Relocate `nm' after calling DECODE_FILE, in case the GC was run.
12845 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12847         * keymap.h (map_keymap_canonical): Declare.
12848         * xmenu.c (single_keymap_panes): Use it.
12850 2008-04-11  Glenn Morris  <rgm@gnu.org>
12852         * eval.c (Fdefvaralias): If the alias is bound and the target is not,
12853         set the target's value to that of the alias.
12855 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12857         * term.c (set_tty_color_mode): Left over typo.
12859 2008-04-10  Michael Albinus  <michael.albinus@gmx.de>
12861         * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
12862         only after check for file name handler functions.  Signal, when
12863         native functionality is not supported.
12864         (syms_of_fileio): Declare it unconditionally.
12866 2008-04-10  Jason Rumney  <jasonr@gnu.org>
12868         * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
12869         (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
12871         * w32.c (logon_network_drive): Also logon to remote drives that
12872         are mapped to drive letters.
12874 2008-04-10  Glenn Morris  <rgm@gnu.org>
12876         * xdisp.c (truncate-partial-width-windows): Doc fix.
12878 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12880         * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
12881         Move functions to minibuffer.el.
12882         (syms_of_fileio): Don't declare them.
12884 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12886         * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
12887         (syms_of_minibuf): Remove its initialization.
12889         * minibuf.c (temp_echo_area_glyphs): Remove unused function.
12891 2008-04-09  Juanma Barranquero  <lekktu@gmail.com>
12893         * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
12895 2008-04-09  Jason Rumney  <jasonr@gnu.org>
12897         * makefile.w32-in (distclean): Delete makefile too.
12898         (maintainer-clean): New target.
12900         * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
12902         * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
12903         for new font backend and composite cases.
12905 2008-04-09  Jan Djärv  <jan.h.d@swipnet.se>
12907         * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
12908         Most of the code moved to run_timers.
12909         (do_pending_atimers): Call run_timers.
12910         (run_timers): New function.
12912         * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
12913         run atimers.
12915         * process.c (wait_reading_process_output): The same as above.
12917 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12919         * minibuf.c (last_exact_completion): Remove variable.
12920         (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
12921         (complete_and_exit_1, complete_and_exit_2)
12922         (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
12923         (Fdisplay_completion_list, display_completion_list_1)
12924         (Fminibuffer_completion_help, Fself_insert_and_exit)
12925         (Fexit_minibuffer, Fminibuffer_message): Move functions to
12926         minibuffer.el.
12927         (syms_of_minibuf): Remove corresponding initializations.
12929         * keyboard.c (Qdeactivate_mark): New var.
12930         (command_loop_1): Use it to call `deactivate-mark'.
12931         (syms_of_keyboard): Initialize it.
12933         * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
12934         to another frame.
12935         * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
12936         Don't call set_tty_color_mode.
12937         (store_frame_param): Reset previous_frame rather than call
12938         set_tty_color_mode.
12939         * term.c (set_tty_color_mode): Rewrite.
12940         * dispextern.h (set_tty_color_mode): New type.
12941         * termchar.h (struct tty_display_info): Add `previous_color_mode'.
12943 2008-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12945         * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
12946         for generic chars, which do not exist any more in emacs-unicode.
12948 2008-04-08  Michael Albinus  <michael.albinus@gmx.de>
12950         * coding.c (detect_coding_emacs_mule)
12951         (Ffind_operation_coding_system): Fix typo.
12953 2008-04-08  Jason Rumney  <jasonr@gnu.org>
12955         * w32uniscribe.c (SNAME): Extract only symbol name.
12957         * w32font.h (struct w32_metric_cache): New struct.
12958         (w32font_info): Use it.
12959         (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
12960         (CACHE_BLOCKSIZE): New constants.
12962         * w32font.c (Qja, Qko, Qzh): New symbols.
12963         (syms_of_w32font): Initialise them.
12964         (font_matches_spec): Use them to filter by language.
12965         (recompute_cached_metrics): Remove function.
12966         (compute_metrics, clear_cached_metrics): New functions.
12967         (w32font_encode_char): Use them to manage metric cache.
12968         (w32font_text_extents): Cache metrics for all glyphs on demand.
12969         Delay converting glyph indices to WORD until needed.
12970         (w32font_open_internal): Initialize metric cache to empty.
12971         (registry_to_w32_charset): Charset should always be a symbol.
12972         (fill_in_logfont, list_all_matching_fonts): Family should
12973         always be a symbol.
12975 2008-04-06  Jason Rumney  <jasonr@gnu.org>
12977         * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
12978         Give up if glyph indices not supported.  Use uniscribe obtained
12979         ABC widths for individual metrics.  Map glyph clusters back to
12980         characters using fClusterStart flag.  Return number of glyphs
12981         produced, not chars processed.
12982         (uniscribe_shape): Map char at FROM to current glyph.
12984 2008-04-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12986         * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
12987         Use SetMenuItemHierarchicalMenu.
12989 2008-04-05  Jason Rumney  <jasonr@gnu.org>
12991         * image.c (pbm_load): Allow color values up to 65535.
12992         Throw an error if max_color_idx is outside the supported range.
12993         Report an error when image size is invalid.
12994         Read two bytes at a time when raw images have max_color_idx above 255.
12996 2008-04-05  Eli Zaretskii  <eliz@gnu.org>
12998         * w32.c (readdir): If FindFirstFile/FindNextFile return in
12999         cFileName a file name that includes `?' characters, use the 8+3
13000         alias in cAlternateFileName instead.
13002 2008-04-05  Kenichi Handa  <handa@ni.aist.go.jp>
13004         * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
13005         append "CCL: Quitted" when the CCL program is quitted.
13006         (setup_ccl_program): Initialize ccl->quit_silently to zero.
13008         * ccl.h (struct ccl_program): New member quit_silently.
13010 2008-04-05  Chong Yidong  <cyd@stupidchicken.com>
13012         * search.c (compile_pattern_1): Treat non-nil and non-string of
13013         search-spaces-regexp as nil.
13015         * minibuf.c (Fassoc_string): Tweak docstring.
13017 2008-04-05  Eli Zaretskii  <eliz@gnu.org>
13019         * dired.c (Ffile_attributes): Support inode numbers wider than 32
13020         bits.  Remove ugly WINDOWSNT-specific kludge introduced on
13021         2008-03-14 to force inode be positive.
13023         * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
13024         _S_* ones, since we now use our own sys/stat.h.
13025         (stat, fstat): Don't mangle the inode number.
13026         (init_user_info): Don't restrict UID and GID to 0-60000 range.
13028 2008-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
13030         * frame.h (struct frame): Give one more bit to `visible' since we use
13031         values larger than 1 to indicate obscured frames on ttys.
13033         * keymap.c (Qkeymap_canonicalize): New var.
13034         (Fmap_keymap_internal): New fun.
13035         (describe_map): Use keymap-canonicalize.
13037         * undo.c (last_boundary_buffer, last_boundary_position): New vars.
13038         (Fundo_boundary): Set them.
13039         (syms_of_undo): Initialize them.
13040         (record_point): Use them instead of last_point_position*.
13041         (last_undo_buffer): Change type.
13043 2008-04-04  Jason Rumney  <jasonr@gnu.org>
13045         * w32font.c (w32font_text_extents): Use font's ascent and descent.
13046         (recompute_cached_metrics): Don't set ascent and descent per char.
13048         * w32uniscribe.c (uniscribe_check_otf): Fix last change.
13049         (uniscribe_check_otf): Add GC protection before consing.
13050         Rearrange loop for counting features.
13052 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13054         * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
13055         buffer with byte-size of source buffer.
13057 2008-04-03  Chong Yidong  <cyd@stupidchicken.com>
13059         * callint.c (Fcall_interactively): Handle temporary region even
13060         when shift-select-mode is off.
13062 2008-04-03  Jason Rumney  <jasonr@gnu.org>
13064         * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
13066 2008-04-03  Kenichi Handa  <handa@m17n.org>
13068         * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
13069         (CATEGORY_MASK_UTF_16): Likewise.
13070         (detect_coding_utf_16): Add heuristics to reject utf-16 for a
13071         binary file.
13072         (detect_coding): Add null-byte detection for a binary file.
13073         (detect_coding_system): Likewise.
13075 2008-04-03  Jason Rumney  <jasonr@gnu.org>
13077         * w32uniscribe.c: New file.
13079         * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
13081         * w32font.h (uniscribe_check_otf): Declare for w32font.c.
13083         * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
13084         (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
13085         (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
13086         (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
13087         (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
13088         (Qphonetic): New symbols.
13089         (syms_of_w32font): Initialize them.
13090         (font_supported_scripts): Use them.
13091         (w32font_list_family): List all charsets.
13092         (w32font_text_extents, recompute_cached_metrics): Fix metric
13093         calculations.
13094         (w32_enumfont_pattern_entity): Make full_type a DWORD.
13095         Give opentype fonts their own format.
13096         (font_matches_spec): New arguments backend and logfont.
13097         Handle :otf spec for uniscribe backend.
13098         (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
13099         (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
13101         * w32fns.c (Fx_create_frame): Conditionally register uniscribe
13102         font backend.
13103         (globals_of_w32fns): Initialize uniscribe font backend.
13105         * makefile.w32-in (CONFIG_H): New variable.  Use it to clean up
13106         dependencies.
13107         (w32uniscribe.$(O)): New file to build.
13108         (FONT_OBJ): Include w32uniscribe.$(O).
13109         (LIBS): Add uniscribe libraries.
13111         * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
13113 2008-04-02  Chong Yidong  <cyd@stupidchicken.com>
13115         * callint.c (Vshift_select_mode): New var.
13116         (Finteractive): Document new ^ spec.
13117         (Fcall_interactively): Call handle-shift-selection if the ^ spec
13118         is present.
13120         * keyboard.c (Vthis_command_keys_shift_translated): New var.
13121         (command_loop_1): Avoid running the direct display versions of
13122         forward-char and backward-char if shift-selection may occur.
13123         (read_key_sequence): Set Vthis_command_keys_shift_translated if
13124         shift-translation takes place.
13126         * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
13127         avoid clobbering by define-minor-mode.
13129         * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
13130         (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
13132         * syntax.c (Fforward_word): Add ^ interactive spec.
13134         * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
13135         (Fscroll_right): Add ^ interactive spec.
13137 2008-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13139         * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
13141         * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
13143         * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
13145 2008-03-31  Juri Linkov  <juri@jurta.org>
13147         * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
13149 2008-03-30  Jan Djärv  <jan.h.d@swipnet.se>
13151         * gtkutil.c (xg_set_geometry): Fix indentation.
13152         (xg_resize_outer_widget): Remove.
13153         (x_wm_size_hint_off): Fix indentation.
13154         (xg_frame_set_char_size): Call flush_and_sync after
13155         gtk_window_resize.
13156         (x_wm_set_size_hint): Pass NULL as geometry window to
13157         gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
13158         Add menu bar and tool bar height to base height.
13159         (xg_update_frame_menubar, free_frame_menubar)
13160         (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
13161         (update_frame_tool_bar, free_frame_tool_bar):
13162         Change xg_resize_outer_widget to xg_frame_set_char_size.
13164 2008-03-30  Michael Albinus  <michael.albinus@gmx.de>
13166         * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
13167         (Fdbus_call_method): New parameter TIMEOUT.
13168         (dbus-send-signal): Optimize UNGCPRO call.
13170 2008-03-29  Juri Linkov  <juri@jurta.org>
13172         * window.c (Fdisplay_buffer): Move call to
13173         Vsplit_window_preferred_function out of conditions that check
13174         if window is eligible for vertical splitting.
13175         When Vsplit_window_preferred_function is non-nil, call it and use
13176         its non-nil return value as window.  Otherwise, continue doing
13177         vertical splitting using Fsplit_window with arg horflag=nil.
13178         (syms_of_window) <Vsplit_window_preferred_function>: Change the
13179         default value from `split-window' to nil.
13181 2008-03-29  Juri Linkov  <juri@jurta.org>
13183         * callint.c (Fcall_interactively): Revert 2008-03-16 change
13184         for interactive code letters 'b' and 'B'.
13186 2008-03-29  Eli Zaretskii  <eliz@gnu.org>
13188         * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
13189         multibyte string.
13191 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13193         * keyboard.c (pending_funcalls): New var.
13194         (timer_check): Run it.
13195         (syms_of_keyboard): Initialize it.
13196         * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
13197         (Vdelete_terminal_functions): New vars.
13198         (syms_of_terminal): Initialize them.
13199         (Fdelete_terminal): Run delete-terminal-functions.
13200         * xdisp.c (safe_eval): Rewrite.
13201         (safe_call2): New fun.
13202         * frame.c (Qdelete_frame_functions): New var.
13203         (syms_of_frame): Initialize it.
13204         (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
13205         * lisp.h (safe_call2, pending_funcalls): Declare.
13207 2008-03-28  Andreas Schwab  <schwab@suse.de>
13209         * indent.c (Fmove_to_column): Move declaration before statements.
13211 2008-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13213         * frame.h (enum fullscreen_type): Give it a name.  Move it before use.
13214         (struct frame): Use bit fields for boolean vars.
13216         * process.c (server_accept_connection): Simplify naming.
13217         (emacs_get_tty_pgrp): Use SDATA.
13219         * coding.c (decode_coding_object): Fix last change.
13221 2008-03-27  Jason Rumney  <jasonr@gnu.org>
13223         * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
13225 2008-03-27  Kenichi Handa  <handa@ni.aist.go.jp>
13227         * charset.c (Fdefine_charset_internal): Change the way of
13228         registering charsets in Vcharset_order_list.
13229         (syms_of_charset): Make the charset `eight-bit' supplementary.
13231 2008-03-26  Alexandre Oliva  <aoliva@redhat.com>  (tiny change)
13233         * regex.c (EXTEND_BUFFER): Change order of pointer addition
13234         operations, to avoid having the difference between pointers
13235         overflow.
13237 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
13239         * indent.c (check_display_width): New fun.
13240         (scan_for_column): Use it.
13242         * data.c (syms_of_data): Mark most-positive-fixnum and
13243         most-negative-fixnum as constants.
13245         * xdisp.c (redisplay_internal): Reset selected_frame earlier.
13247         * indent.c (scan_for_column): Extract from current_column_1.
13248         Merge with the same code from Fmove_to_column.
13249         (current_column_1, Fmove_to_column): Use it.
13251 2008-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13253         * keymap.c (map_keymap_internal): New fun.
13254         (map_keymap): Use it.
13255         (Fmap_keymap_internal): New fun.
13256         (Fmap_keymap): Remove left-out test from before make_save_value.
13258         * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
13260         * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
13261         Use XCAR/XCDR.
13263         * process.h (struct Lisp_Process): Remove filter_multibyte.
13264         * process.c (QCfilter_multibyte): Remove.
13265         (setup_process_coding_systems): Don't use filter_multibyte.
13266         (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
13267         (read_process_output): Don't adjust multibyteness to filter_multibyte.
13268         (Fset_process_filter_multibyte): Change the coding-system to
13269         approximate the previous behavior.
13270         (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
13271         coding-system.
13273         * coding.c (decode_coding_object): When not decoding into a buffer,
13274         obey the coding system's preference of (uni|multi)byte.
13276 2008-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13278         * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
13279         every char is changed and has a different byte-length.
13280         (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
13281         Fix int -> EMACS_INT.
13283 2008-03-23  David Hansen  <david.hansen@gmx.net>
13285         * dbusbind.c (xd_read_message): Remove extra copying of message
13286         strings.  Check for NULL `interface' or `member'.
13288 2008-03-22  Eli Zaretskii  <eliz@gnu.org>
13290         * w32.c (readdir): If FindFirstFile/FindNextFile return in
13291         cFileName a file name that includes `?' characters, use the 8+3
13292         alias in cAlternateFileName instead.
13294 2008-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13296         * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
13298 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13300         * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
13301         (set_point, set_point_both): Use EMACS_INT.  Remove `buffer' arg,
13302         work on current_buffer only instead (that was already the case
13303         for some of the code anyway).
13304         * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
13305         (temp_set_point, temp_set_point_both): Use EMACS_INT.
13306         (SET_PT, SET_PT_BOTH): Adjust.
13307         * intervals.h (set_point, temp_set_point, set_point_both)
13308         (temp_set_point_both): Remove redundant declarations.
13310 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13312         * fileio.c (Finsert_file_contents):
13313         * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
13314         * buffer.h (BUF_SET_PT): Remove.  set_point_both doesn't work right
13315         when buffer != current_buffer anyway.
13317 2008-03-20  Andreas Schwab  <schwab@suse.de>
13319         * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
13320         as default.
13322 2008-03-19  Jason Rumney  <jasonr@gnu.org>
13324         * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
13325         (syms_of_w32fns): Initialize them.
13326         (HOURGLASS_ID): New constant.
13327         (x_window_to_frame): Don't check hourglass_window.
13328         (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
13329         (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
13330         (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
13331         (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
13332         Only change the cursor if hourglass is not active.
13333         (Fx_create_frame): Initialize frame's current_cursor.
13334         (hourglass_atimer): Remove.
13335         (hourglass_started): New function.
13336         (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
13337         (show_hourglass): Adapt to w32, changing argument to frame.
13339         * w32term.h (struct w32_output): Remove hourglass_window.
13340         Add current_cursor.
13342         * eval.c (call_debugger, Fsignal):
13343         * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
13344         (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
13345         (Fexecute_extended_command, cancel_hourglass_unwind):
13346         * minibuf.c (read_minibuf):
13347         * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
13349 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13351         * window.c (run_funs): New fun.
13352         (run_window_configuration_change_hook): Use it to run the buffer-local
13353         and the global part of the hook.
13355         * xdisp.c (format_mode_line_unwind_data): Add window argument.
13356         (unwind_format_mode_line): Restore selected window.
13357         (x_consider_frame_title, Fformat_mode_line): Set selected window.
13359 2008-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13361         * editfns.c (Fchar_equal): Check they are valid characters.
13363         * buffer.h (Fbuffer_list): Declare (for use in callint.c).
13365 2008-03-17  Andreas Schwab  <schwab@suse.de>
13367         * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
13368         against a charset.
13370         * lisp.h (Fbuffer_list): Declare.
13372 2008-03-17  Jan Djärv  <jan.h.d@swipnet.se>
13374         * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
13375         handlebox_widget is != 0.
13377 2008-03-16  Juri Linkov  <juri@jurta.org>
13379         * callint.c (Fcall_interactively): For interactive code letters
13380         'b' and 'B' put the buffer list into the list of default "future"
13381         values of the minibuffer.
13383 2008-03-16  Andreas Schwab  <schwab@suse.de>
13385         * keyboard.c (read_key_sequence): Fix downcasing of letters with
13386         modifiers.
13388         * regex.c (re_match_2_internal): Correct matching of a charset
13389         against latin-1 characters.
13391 2008-03-16  Kenichi Handa  <handa@m17n.org>
13393         * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
13394         (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
13395         (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
13396         (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
13397         (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
13398         CHAR_STRING_ADVANCE.
13399         (produce_chars): Fix for the case that the source and the
13400         destination are the same buffer.  Use CHAR_STRING_ADVANCE_NO_UNIFY
13401         instead of CHAR_STRING_ADVANCE.
13402         (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
13403         STRING_CHAR_ADVANCE.
13405 2008-03-15  Andreas Schwab  <schwab@suse.de>
13407         * regex.c (re_match_2_internal): Correct matching of eight bit
13408         characters in unibyte strings.
13410 2008-03-15  Martin Rudalics  <rudalics@gmx.at>
13412         * buffer.c (overlays_in, Foverlays_in): Include empty overlays
13413         at end of range when it coincides with the end of the buffer.
13415 2008-03-14  Eli Zaretskii  <eliz@gnu.org>
13417         * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
13419         * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
13421 2008-03-14  Jason Rumney  <jasonr@gnu.org>
13423         * editfns.c (initial_tz): New variable.
13424         (syms_of_editfns): Initialize it.
13425         (Fset_time_zone_rule): Set it when first called.
13426         Use it when TZSTRING is nil.
13428         * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
13429         (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
13430         (monitor_from_point_fn, get_monitor_info_fn): New globals.
13431         (globals_of_w32fns): Initialize them.
13432         (compute_tip_xy): Use them to position tooltips.
13434 2008-03-14  Glenn Morris  <rgm@gnu.org>
13436         * emacs.c (main): Revert previous change.
13437         (standard_args): Revert -internal-script back to -scriptload,
13438         and remove the long-option form.
13440 2008-03-13  Glenn Morris  <rgm@gnu.org>
13442         * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
13443         Remove option -enable-font-backend.
13445 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13447         * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
13449 2008-03-11  Jan Djärv  <jan.h.d@swipnet.se>
13451         * xterm.c (x_connection_closed): For GTK: If this is the last
13452         terminal just exit without closing the display.
13454 2008-03-11  Jason Rumney  <jasonr@gnu.org>
13456         * w32font.c (w32font_full_name): Use floor to round.
13458 2008-03-10  Dhruva Krishnamurthy  <dhruvakm@gmail.com>  (tiny change)
13460         * sound.c (alsa_configure): Declare vol at beginning of block.
13462         * fontset.c (Ffontset_info): Remove extra semicolon.
13464 2008-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13466         * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
13467         size of resulting string.
13469 2008-03-10  Jason Rumney  <jasonr@gnu.org>
13471         * dispnew.c (adjust_glyph_matrix): Initialize window_height.
13473 2008-03-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
13475         * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
13476         Don't pretend as if characters with display property haven't been
13477         consumed for string-replacing-string case.
13479 2008-03-08  Kim F. Storm  <storm@cua.dk>
13481         * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
13482         (get_next_display_element, next_element_from_string)
13483         (next_element_from_ellipsis, next_element_from_buffer): Use it.
13485 2008-03-08  Andreas Schwab  <schwab@suse.de>
13487         * process.h (struct Lisp_Process): Declare bit fields as unsigned.
13489 2008-03-06  Jason Rumney  <jasonr@gnu.org>
13491         * w32font.c (w32_registry): Take font_type argument.  Use ANSI
13492         when charset not specified.  Only translate ANSI to unicode when
13493         font_type is truetype.
13494         (w32font_coverage_ok): New function.
13495         (add_font_entity_to_list): Use it to filter unsuitable fonts.
13497 2008-03-05  Kenichi Handa  <handa@ni.aist.go.jp>
13499         * lread.c (Fread_char): Resolve modifiers.
13500         (Fread_char_exclusive): Likewise.
13502         * character.c (char_resolve_modifier_mask): New function.
13503         (char_string): Use char_resolve_modifier_mask.
13504         (Fchar_resolve_modifiers): New function.
13505         (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
13506         function.
13508 2008-03-04  Jason Rumney  <jasonr@gnu.org>
13510         * makefile.w32-in: Always include w32font.c in the build.
13511         * w32font.c: Wrap in USE_FONT_BACKEND conditional.
13513 2008-03-04  Andreas Schwab  <schwab@suse.de>
13515         * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
13516         (versionclean): Likewise.
13518 2008-03-04  Juanma Barranquero  <lekktu@gmail.com>
13520         * .cvsignore: Add oo.
13522 2008-03-03  Andreas Schwab  <schwab@suse.de>
13524         * coding.c (decode_coding_object): Inhibit gap shrinking while
13525         decoding in place.
13527 2008-03-03  Dan Nicolaescu  <dann@ics.uci.edu>
13529         * w32term.c: Remove unused include "gnu.h".
13530         * makefile.w32-in (w32term.o): Don't depend on gnu.h.
13532         * gnu.h: Rename to ...
13533         * emacs-icon.h: ... this.
13534         * xterm.c: Use emacs-icon.h instead of gnu.h.
13535         * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
13537 2008-03-03  Juanma Barranquero  <lekktu@gmail.com>
13539         * w32font.c: Include math.h.
13541 2008-03-03  Jason Rumney  <jasonr@gnu.org>
13543         * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
13544         Compute options separately.
13545         (w32font_open_internal): Set glyph_idx before caching metrics.
13547         * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
13548         Define if system headers don't.
13549         (struct w32font_info): Enlarge ascii_metrics.  Add glyph_idx.
13550         (w32font_encode_char): Don't declare here.
13552         * w32font.c (Quniscribe, QCformat): New symbols.
13553         (syms_of_w32font): Define them.
13554         (w32font_has_char): Indicate uncertainty.
13555         (w32font_encode_char): Encode as glyph point.  Make static.
13556         (recompute_cached_metrics): New function.
13557         (w32font_open_internal): Use it.  Set font to use glyph points
13558         initially.  Set format based on type of font.
13559         (w32font_text_extents, w32font_draw): Optionally use glyph points.
13560         (w32_enumfont_pattern_entity): Accept backend arg.  Set type based
13561         on it.  Set format based on information available here.
13562         (add_font_entity_to_list): Identify backend based on opentype_only.
13564 2008-03-02  Andreas Schwab  <schwab@suse.de>
13566         * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
13568         * coding.c (decode_coding_big5, produce_chars):
13569         Fix typos in last change.
13571 2008-03-02  Kentaro Ohkouchi  <nanasess@fsm.ne.jp>
13573         * gnu.h: New icon.
13575 2008-03-02  Kenichi Handa  <handa@m17n.org>
13577         * coding.c (decode_coding_utf_8): When eol-type of CODING is
13578         `dos', don't decode '\r' if that is the last in the source.
13579         (decode_coding_utf_16, decode_coding_emacs_mule)
13580         (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
13581         (decode_coding_raw_text, decode_coding_charset): Likewise.
13582         (produce_chars): Don't decode EOL here.  Use EMACS_INT.
13584 2008-03-01  Jason Rumney  <jasonr@gnu.org>
13586         * w32font.c (w32font_full_name): Report point size for scalable fonts.
13588 2008-03-01  Kim F. Storm  <storm@cua.dk>
13590         * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
13592 2008-03-01  Jason Rumney  <jasonr@gnu.org>
13594         * w32font.c (w32font_full_name): New function.
13595         (w32font_open_internal): Use it.
13597 2008-03-01  Kim F. Storm  <storm@cua.dk>
13599         * dispnew.c (line_draw_cost): Fix invalid glyph check.
13601 2008-03-01  Jason Rumney  <jasonr@gnu.org>
13603         * font.c (font_unparse_fcname): Increase len when style is a symbol.
13605 2008-03-01  Jan Djärv  <jan.h.d@swipnet.se>
13607         * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
13608         xg_frame_resized when the event is for the edit widget.
13610         * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
13612         * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
13613         set_char_size.
13614         (xg_frame_resized): Renamed from xg_resize_widgets.  Remove all
13615         operations on widgets here.  Just set frame size if needed.
13616         (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
13617         (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
13618         (x_wm_set_size_hint): Set size hints on the edit widget only, not
13619         the whole frame.
13620         (xg_create_tool_bar): Move attachment of the tool bar to
13621         xg_pack_tool_bar.  Do not attach the tool bar if there are no items.
13622         (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
13624 2008-03-01  Jason Rumney  <jasonr@gnu.org>
13626         * w32fns.c (w32_msg_pump): Disable debug code.
13628 2008-03-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
13630         * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
13632 2008-02-29  Chong Yidong  <cyd@stupidchicken.com>
13634         * xdisp.c (next_overlay_string): Don't set
13635         overlay_strings_at_end_processed_p if we're currently reading from
13636         a display string.
13638 2008-02-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13640         * xdisp.c (get_overlay_strings_1): Fix typo.
13642 2008-02-29  Chong Yidong  <cyd@stupidchicken.com>
13644         * xdisp.c (get_overlay_strings_1): Add missing argument type.
13646 2008-02-28  Kenichi Handa  <handa@ni.aist.go.jp>
13648         * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
13650         * xdisp.c (display_mode_element): Cancel the previous change.
13651         (decode_mode_spec): Likewise.
13652         (handle_auto_composed_prop): Don't make composition if it->string
13653         is a string.
13655 2008-02-27  Kim F. Storm  <storm@cua.dk>
13657         * lisp.h (GLYPH): Change type from int to struct with separate char
13658         and face_id members.
13659         (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
13660         (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
13661         (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
13662         (GLYPH_CHAR, GLYPH_FACE): ... these.  Change users.
13663         (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove.  Rewrite users to use ...
13664         (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
13665         (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
13666         (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
13667         handle new Lisp glyph code encoding, either an integer or a cons.
13669         * disptab.h (GLYPH_SIMPLE_P): Rewrite.
13670         (GLYPH_ALIAS): Delete.
13671         (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
13672         (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
13673         (GLYPH_FROM_CHAR): Replace macro by ...
13674         (SET_GLYPH_FROM_CHAR): ... this macro.  Change users.
13676         * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
13677         (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
13678         (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro.  Change users.
13679         (GLYPH_INVALID_P): New macro.
13680         (spec_glyph_lookup_face): Update prototype.
13682         * dispnew.c (line_draw_cost): Adapt to new glyph type.
13683         (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
13684         new glyph code encoding.
13685         (spec_glyph_lookup_face): No return value; update passed glyph instead.
13686         (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
13688         * xdisp.c (get_next_display_element, next_element_from_display_vector):
13689         Adapt to new glyph type and new glyph code encoding.
13691         * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
13693         * indent.c (current_column, current_column_1, Fmove_to_column)
13694         (compute_motion): Adapt to new glyph code encoding.
13696         * msdos.c (IT_write_glyphs): Adapt to new glyph type.
13698 2008-02-27  Chong Yidong  <cyd@stupidchicken.com>
13700         * process.c (wait_reading_process_output): Check for window
13701         changes caused by timers.
13702         Suggested by Johan Bockgård.
13704 2008-02-27  Glenn Morris  <rgm@gnu.org>
13706         * emacs.c (USAGE1): Add `--disable-font-backend'.
13708 2008-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13710         * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
13711         is made to the buffer.
13713 2008-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
13715         * dispextern.h (face_at_buffer_position, face_for_overlay_string)
13716         (face_at_string_position):
13717         * xfaces.c (face_at_buffer_position, face_for_overlay_string)
13718         (face_at_string_position):
13719         * xdisp.c (display_string, next_overlay_change):
13720         * buffer.h (overlays_at):
13721         * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
13722         Update callers.
13724 2008-02-26  Chong Yidong  <cyd@stupidchicken.com>
13726         * editfns.c (Fformat): Doc fix.
13728 2008-02-26  Juanma Barranquero  <lekktu@gmail.com>
13730         * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
13731         (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
13732         (Ffont_otf_alternates, Fquery_font): Doc fixes.
13734 2008-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13736         * buffer.c (Fbuffer_swap_text): New function.
13737         (syms_of_buffer): Defsubr it.
13739 2008-02-25  Chong Yidong  <cyd@stupidchicken.com>
13741         * keyboard.c (command_loop_1): Revert 2006-10-09 change.
13743 2008-02-25  Jason Rumney  <jasonr@gnu.org>
13745         * w32font.c (w32font_draw): Draw one character at a time when padding.
13747 2008-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13749         * window.c (Fdelete_window, Fadjust_window_trailing_edge):
13750         Handle a nil arg.  Use run_window_configuration_change_hook.
13751         (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
13752         (Fenlarge_window, Fshrink_window, Fset_window_configuration):
13753         Use run_window_configuration_change_hook.
13755 2008-02-25  Kenichi Handa  <handa@ni.aist.go.jp>
13757         * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
13758         1-pixel width.
13760 2008-02-25  Kenichi Handa  <handa@ni.aist.go.jp>
13762         * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
13763         (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
13764         if the glyph in the font is zero pixel with.
13766         * dispextern.h (struct glyph_string): New member padding_p.
13768         * w32font.c (w32font_draw): Pay attention to s->padding_p.
13770         * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
13772         * xfont.c (xfont_draw): Pay attention to s->padding_p.
13774         * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
13776         * font.c: If the font driver doesn't have `shape' function, return Qnil.
13778 2008-02-25  Jason Rumney  <jasonr@gnu.org>
13780         * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
13782 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13784         Allow fine-grained image-cache flushing.
13785         * dispextern.h (struct image): Add `dependencies' field.
13786         (clear_image_caches): Change arg to Lisp_Object.
13787         * image.c (make_image): Initialize `dependencies' field.
13788         (clear_image_cache): Change arg to allow fine-grained flushing.
13789         Perform the flush even if image-cache-eviction-delay is nil.
13790         (clear_image_caches): Change arg to Lisp_Object.
13791         (Fclear_image_cache): Expand meaning of the argument.
13792         (mark_image): Mark `dependencies' field.
13793         * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
13794         (lface_hash): Use XHASH rather than XFASTINT.
13795         (face_at_buffer_position): Fix int -> EMACS_INT position.
13796         * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
13797         (select_frame_for_redisplay): Remove code duplication.
13798         (redisplay_internal): Adapt arg to call to clear_image_caches.
13800 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
13802         * s/vms4-0.h:
13803         * s/vms4-2.h:
13804         * s/vms4-4.h:
13805         * s/vms5-5.h: Remove, unused.
13807         * s/irix5-2.h:
13808         * s/irix6-0.h:
13809         * s/riscos5.h:
13810         * s/mach-bsd4-3.h:
13811         * m/mips4.h: Remove files for obsolete systems.
13813         * Makefile.in:
13814         * filelock.c:
13815         * unexmips.c:
13816         * m/hp9000s300.h:
13817         * m/iris4d.h:
13818         * s/aix3-1.h:
13819         * s/hpux.h:
13820         * s/msdos.h:
13821         * s/usg5-0.h:
13822         * s/usg5-2-2.h:
13823         * s/usg5-2.h:
13824         * s/usg5-3.h: Remove references to obsolete variables.
13826         * s/irix5-0.h: Remove, move all the contents ...
13827         * s/irix6-5.h: ... here.  Simplify.
13828         * config.in: Regenerate.
13830 2008-02-24  Jason Rumney  <jasonr@gnu.org>
13832         * w32term.c (x_draw_glyph_string_background): Clear the background
13833         manually when cleartype is in use.
13834         (x_draw_glyph_string_foreground): Draw text transparently when
13835         cleartype is in use.
13837         * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
13838         a font into it unless we have to.
13840 2008-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13842         * intervals.h (INT_LISPLIKE): Remove.  It may misfire.
13843         (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
13845 2008-02-18  Jason Rumney  <jasonr@gnu.org>
13847         * w32fns.c (Fw32_shell_execute): Encode parameters.
13849 2008-02-09  Eli Zaretskii  <eliz@gnu.org>
13851         * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
13853 2008-02-05  Juanma Barranquero  <lekktu@gmail.com>
13855         * unexhp9k800.c (read_header): Replace `legal' with `valid'.
13857 2008-02-24  Ulrich Neumerkel  <ulrich@complang.tuwien.ac.at>  (tiny change)
13859         * xterm.c (x_set_offset): Don't change the gravity if
13860         CHANGE_GRAVITY is -1.
13862 2008-02-23  Chong Yidong  <cyd@stupidchicken.com>
13864         * fileio.c (auto_save_error_occurred): New var.
13865         (auto_save_error): Set it.
13866         (Fdo_auto_save): Don't overwrite the error message if an auto-save
13867         error occurred.
13869 2008-02-23  Eli Zaretskii  <eliz@gnu.org>
13871         * w32.c (globals_of_w32): Add initializations for
13872         g_b_init_get_sid_sub_authority and
13873         g_b_init_get_sid_sub_authority_count.
13875 2008-02-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13877         * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
13878         (font_parse_xlfd): Use them for sanity check.
13879         (Finternal_set_font_style_table): Make sure the table is bijective.
13881         Consolidate the image_cache to the terminal struct.
13882         * termhooks.h (P_): Remove redundant def.
13883         (struct terminal): New field `image_cache'.
13884         * frame.h (FRAME_IMAGE_CACHE): New macro.  Use it everywhere in place
13885         of FRAME_X_IMAGE_CACHE.
13886         * xterm.h (struct x_display_info): Remove image_cache field.
13887         (FRAME_X_IMAGE_CACHE): Remove.  Use FRAME_IMAGE_CACHE instead.
13888         * w32term.h (struct w32_display_info): Remove image_cache field.
13889         (FRAME_X_IMAGE_CACHE): Remove.  Use FRAME_IMAGE_CACHE instead.
13890         * macterm.h (struct mac_display_info): Remove image_cache field.
13891         (FRAME_X_IMAGE_CACHE): Remove.  Use FRAME_IMAGE_CACHE instead.
13892         * xterm.c (x_term_init):
13893         * w32term.c (w32_term_init):
13894         * macterm.c (mac_term_init): Set the image_cache in the terminal.
13895         * dispextern.h (clear_image_cache, forall_images_in_image_cache):
13896         Remove declarations.
13897         (clear_image_caches, mark_image_cache): New declarations.
13898         * xfaces.c (clear_face_cache):
13899         * xdisp.c (redisplay_internal): Use clear_image_caches.
13900         * image.c (clear_image_cache): Don't check that a frame is on
13901         a window-system before checking if it shares the same cache.
13902         (clear_image_caches): New function.
13903         (Fclear_image_cache): Use it.
13904         (mark_image): Move from allo.c.
13905         (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
13906         * alloc.c (mark_image, mark_image_cache): Move to image.c.
13907         (mark_object): Don't call mark_image_cache for frames.
13908         (mark_terminals): Call mark_image_cache.
13910         * lisp.h (Fdelete_terminal): Declare.
13912         * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
13913         (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
13914         wrong_type_argument.
13916 2008-02-22  Kenichi Handa  <handa@ni.aist.go.jp>
13918         * Makefile.in (lisp): Remove devanagari.el, kannada.el,
13919         malayalam.el, and tamil.el.  Add sinhala.el.
13921 2008-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13923         * xterm.c (x_connection_closed): Consolidate identical tests.
13924         (x_delete_terminal): Don't crash if called via x_connection_closed.
13926 2008-02-21  Kenichi Handa  <handa@ni.aist.go.jp>
13928         * xdisp.c (decode_mode_spec): New arg string.
13929         (display_mode_element): Adjust for the above change.
13931 2008-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13933         * callint.c (Fcall_interactively): Use AREF.
13935 2008-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
13937         * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
13939 2008-02-18  Jan Djärv  <jan.h.d@swipnet.se>
13941         * xfns.c (Fx_show_tip): Set string to " " if empty.
13943 2008-02-17  Dan Nicolaescu  <dann@ics.uci.edu>
13945         * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
13946         with Qt.
13948 2008-02-17  Kenichi Handa  <handa@m17n.org>
13950         * ftfont.c (ftfont_shape): Return Lispy number.
13952         * xfaces.c (prepare_face_for_display): Use display_info->font->fid
13953         for GCs.
13954         (Finternal_set_font_selection_order): Call font_update_sort_order
13955         only when enable_font_backend is set.
13956         (realize_x_face): Set face->font_info to that of default face only
13957         when enable_font_backend is set.
13959         * xdisp.c (handle_composition_prop): Set it->c to the fist
13960         character of the composed region.
13961         (fill_composite_glyph_string): Set base_face->font_info to
13962         s->font_info.  Get a face for ascii from base_face->ascii_face.
13963         (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
13964         with a face already decided.
13965         (x_produce_glyphs): Be sure to set it->ascent and it->descent to
13966         non-negative.
13967         (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
13968         call font_prepare_composition unconditionally.
13970         * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
13972         * xterm.h (struct x_display_info): New member font.
13974         * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
13975         (x_set_mouse_face_gc, x_new_font): Likewise.
13976         (x_term_init): Setup display_info->font.
13977         (x_delete_terminal): Free display_info->font.
13979         * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
13981         * ftxfont.c (ftxfont_default_fid): Delete it.
13982         (ftxfont_open): Set xfont->fid to 0.
13983         (ftxfont_end_for_frame): Clear data specific to the frame and the
13984         font-driver.
13986         * xftfont.c (xftfont_default_fid): Delete it.
13987         (xftfont_open): Set xfont->fid to 0.
13989         * fontset.c (FONTSET_OBJLIST): New macro.
13990         (fontset_find_font): Update font-object list of the fontset.
13991         (free_realized_fontset): New function.
13992         (free_face_fontset): Call free_realized_fontset.
13993         (Ffont_info): Call font_close_object only when enable_font_backend
13994         is set.
13996         * font.c [HAVE_X_WINDOWS]: Include xterm.h.
13997         [HAVE_NTGUI]: Include w32term.h.
13998         [MAC_OS]: Include macterm.ch.
13999         (font_otf_ValueRecord): Use make_number.
14000         (font_finish_cache): Fix handling of reference count.
14001         (font_clear_cache): Update num_fonts.
14002         (font_open_entity): Update smallest_char_width and
14003         smallest_font_height of the frame.
14004         (font_close_object): Update num_fonts.
14005         (Fclear_font_cache): Fix finding the target cache data.
14007 2008-02-16  Glenn Morris  <rgm@gnu.org>
14009         * fontset.c (Finternal_char_font): Fix compilation warning.
14011 2008-02-16  Eli Zaretskii  <eliz@gnu.org>
14013         * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
14014         instead of char arrays.  Enlarge the size of array passed to
14015         get_token_information.
14017         * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
14018         warnings.
14020 2008-02-15  Dan Nicolaescu  <dann@ics.uci.edu>
14022         * .gdbinit: Don't set `args', it breaks gdb --args.
14024 2008-02-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14026         * fileio.c (Finsert_file_contents): Adjust offsets when replacing
14027         within a narrowed buffer.
14029 2008-02-14  Kenichi Handa  <handa@ni.aist.go.jp>
14031         * coding.c (decode_coding_object, encode_coding_object):
14032         Preserve Vdeactivate_mark.  Delete unnecessary call of Fcurrent_buffer.
14034 2008-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14036         * coding.c (coding_set_destination): Use BEG_BYTE rather than
14037         hardcoding 1.
14038         (detect_coding_system):
14039         * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
14040         (string_char_to_byte, string_byte_to_char, insert_from_gap):
14041         * insdel.c (insert_from_gap):
14042         * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
14043         (string_char_to_byte, string_byte_to_char, string_make_multibyte)
14044         (string_to_multibyte):
14045         * character.c (chars_in_text, multibyte_chars_in_text):
14046         * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
14048         * character.h (FETCH_STRING_CHAR_ADVANCE)
14049         (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
14050         (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
14051         (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
14053         * casefiddle.c (casify_region): Only call after-change and composition
14054         functions on the part of the region that was changed.
14056         * keyboard.c (read_avail_input):
14057         * frame.c (Fdelete_frame): Call Fdelete_terminal.
14059 2008-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14061         * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
14062         (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
14064 2008-02-11  Juanma Barranquero  <lekktu@gmail.com>
14066         * w32menu.c (push_submenu_start, push_submenu_end)
14067         (push_left_right_boundary, push_menu_pane, push_menu_item):
14068         * keyboard.c (read_key_sequence): Don't pass args with side effects
14069         to AREF, it fails when compiling with -DENABLE_CHECKING.
14071 2008-02-11  Kenichi Handa  <handa@ni.aist.go.jp>
14073         * Makefile.in (${lispsource}international/charprop.el):
14074         Delete this target.
14076         * search.c (boyer_moore): Fix incorrect synching of the trunk and
14077         emacs-unicode-2.
14079 2008-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14081         * terminal.c (Fdelete_terminal): Clean up the `force' path.
14083 2008-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14085         * frame.c (Qnoelisp): New symbol.
14086         (syms_of_frame): Initialize it.
14087         (Fdelete_frame): Use it to distinguish a mere `force' passed from some
14088         harmless Elisp code, from a strong `force' from x_connection_closed.
14089         * frame.h (Qnoelisp): Declare.
14090         * xterm.c (x_connection_closed): Pass `noelisp'.
14092         * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
14093         (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
14094         (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
14095         rather than `int' for the type of `type'.
14097 2008-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
14099         * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
14101         * Makefile.in (GNUC): Remove support for gcc-1.x.
14103 2008-02-10  Richard Stallman  <rms@gnu.org>
14105         * lisp.h (ASET): Use AREF, not ASLOT.
14107 2008-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14109         * lisp.h (ASET): Check bounds.
14111 2008-02-10  Glenn Morris  <rgm@gnu.org>
14113         * buffer.c (mode-name): Doc fix.
14115 2008-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
14117         * Makefile.in:
14118         * emacs.c:
14119         * gmalloc.c:
14120         * keyboard.c:
14121         * lisp.h:
14122         * m/ibm370aix.h:
14123         * process.c:
14124         * regex.c:
14125         * s/hpux.h:
14126         * sysdep.c:
14127         * sysselect.h:
14128         * systty.h:
14129         * unexec.c:
14130         * w32term.c:
14131         * xsmfns.c:
14132         * xterm.c: Remove code that deals with obsolete variables.
14134         * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
14136         * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
14137         nothing else needs it anymore.
14139 2008-02-09  Eli Zaretskii  <eliz@gnu.org>
14141         * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
14142         instead of unibyte_char_to_multibyte.
14144 2008-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
14146         * s/gnu-linux.h: Remove commented out code.
14148         * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
14150         * Makefile.in: Update what RMS says about using autoconf.
14151         (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
14152         (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
14153         (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
14154         (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
14156 2008-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14158         * keymap.c (Fkey_description): Move side effect outside of macro call.
14160         * xfaces.c (Finternal_make_lisp_face):
14161         * keyboard.c (add_command_key, parse_menu_item): Use ASET.
14163         * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
14164         (syms_of_fontset): Use ASET.
14166         * fns.c (concat): Move side effect outside of macro call.
14167         (hash_clear): Use ASET.
14169 2008-02-08  Richard Stallman  <rms@gnu.org>
14171         * frame.c (Fdelete_frame): If FORCE, don't call hooks.
14172         If FORCE, and frame has a surrogate minibuffer for another frame,
14173         delete the other frame first.
14175 2008-02-07  Timo Savola  <timo.savola@iki.fi>
14177         * xterm.c (x_detect_focus_change): Handle embed client message.
14178         (handle_one_xevent): Ditto.
14179         (handle_one_xevent): If embedded and we get a button press/release,
14180         request focus.
14181         (xembed_set_info, xembed_send_message): New functions.
14182         (x_make_frame_visible): Call xembed_set_info if embedded.
14183         (x_make_frame_invisible): Call xembed_set_info if embedded.
14184         (x_term_init): Initialize Xatom_XEMBED.
14185         (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
14186         (x_iconify_frame): Ditto.
14188         * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
14189         (enum xembed_info, enum xembed_message, enum xembed_focus)
14190         (enum xembed_modifier, enum xembed_accelerator): New.
14191         (xembed_set_info, xembed_send_message): Declare.
14192         (FRAME_X_EMBEDDED_P): New.
14194         * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
14195         gtk_plug_new.
14197         * xfns.c (Fx_create_frame): Do not override the explicitly set parent
14198         window ID of a frame.
14199         (x_window): Reparent frame if embedded.
14200         (Fx_create_frame): Don't set border width if embedded.
14202         * emacs.c (USAGE3): Add --parent-id.
14203         (standard_args): Ditto.
14205 2008-02-07  Jan Djärv  <jan.h.d@swipnet.se>
14207         * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
14209 2008-02-07  Jim Meyering  <meyering@redhat.com>
14211         Use "do...while (0)", not "if (1)...else" in macro definitions.
14212         The latter provokes a warning from gcc about the empty else, when
14213         followed by ";".  Also, without that trailing semicolon, it would
14214         silently swallow up any following statement.
14215         * syntax.h (SETUP_SYNTAX_TABLE)
14216         (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
14217         * buffer.h (DECODE_POSITION): Likewise.
14218         * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
14219         (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
14220         (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
14221         (FETCH_CHAR_ADVANCE): Likewise.
14222         (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
14224 2008-02-07  Jim Meyering  <meyering@redhat.com>
14226         * lread.c [lint]: Don't include <sys/inode.h>.
14228 2008-02-07  Stefan Monnier  <monnier@iro.umontreal.ca>
14230         * xselect.c (x_handle_dnd_message):
14231         * xmenu.c (digest_single_submenu, xmenu_show):
14232         * xdisp.c (with_echo_area_buffer_unwind_data)
14233         (format_mode_line_unwind_data, unwind_format_mode_line)
14234         (display_menu_bar):
14235         * eval.c (Ffetch_bytecode):
14236         * doc.c (store_function_docstring):
14237         * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
14238         (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
14239         * buffer.c (add_overlay_mod_hooklist): Use ASET.
14241 2008-02-07  Kenichi Handa  <handa@m17n.org>
14243         * ftxfont.c (ftxfont_open): Don't set
14244         dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
14246         * ftfont.c (ftfont_open): Fix previous change.
14248 2008-02-06  Jason Rumney  <jasonr@gnu.org>
14250         * w32font.c (w32font_text_extents): Fill in lbearing metric.
14251         Use cached metrics for ASCII characters.
14252         (w32font_open_internal): Don't set font's owning_frame.
14253         Cache metrics for ASCII characters.
14255         * w32font.h (struct w32font_info): Add ascii_metrics.
14256         Remove owning_frame.
14258 2008-02-06  Kenichi Handa  <handa@ni.aist.go.jp>
14260         * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
14261         to negative value.
14263         * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
14265         * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
14267         * charset.c (syms_of_charset): Set QCtest and Qeq.
14269 2008-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
14271         * process.c (Fstart_process):
14272         * callproc.c (Fcall_process): Handle the case where
14273         Funhandled_file_name_directory returns nil.
14275         * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
14276         (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
14277         * font.c (check_gstring): Use them and AREF to access the vector before
14278         we know it's really a gstring.
14279         (Ffont_shape_text): Fix typo.
14280         (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
14282         * composite.h (Fcompose_region_internal, Fcompose_string_internal):
14283         Declare.
14285         * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
14287 2008-02-05  Jason Rumney  <jasonr@gnu.org>
14289         * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
14290         Set smallest_font_height and smallest_char_width in display info.
14292 2008-02-05  Kenichi Handa  <handa@ni.aist.go.jp>
14294         * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
14296 2008-02-05  Miles Bader  <miles@gnu.org>
14298         * xfaces.c (get_lface_attributes, merge_named_face)
14299         (lookup_named_face, lookup_derived_face, realize_named_face):
14300         Revert 2008-02-01 change by cyd@stupidchicken.com.
14302 2008-02-04  Kenichi Handa  <handa@ni.aist.go.jp>
14304         * fontset.c (Ffontset_info): Handle the case of inhibitting the
14305         fallback fonts.
14306         (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
14308 2008-02-04  Jason Rumney  <jasonr@gnu.org>
14310         * w32font.c (w32font_open_internal): Use font_unparse_fcname to
14311         set full_name.
14312         (w32font_open_internal): Use xmalloc, xrealloc, xfree.
14314 2008-02-03  Jason Rumney  <jasonr@gnu.org>
14316         * makefile.w32-in (OBJ1): Include font.o here.
14317         (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
14319 2008-02-02  Jason Rumney  <jasonr@gnu.org>
14321         * makefile.w32-in (temacs): Bump EMHEAP to 21.
14323 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14325         * s/cygwin.h: Define VIRT_ADDR_VARIES.
14327         * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
14329 2008-02-01  Andreas Schwab  <schwab@suse.de>
14331         * Makefile.in (shortlisp, lisp): Update for rename of
14332         ../lisp/language/myanmar.el.
14334 2008-02-01  Chong Yidong  <cyd@stupidchicken.com>
14336         * xfaces.c (get_lface_attributes): Delete function.
14337         (merge_named_face, lookup_named_face, lookup_derived_face)
14338         (realize_named_face): Call lface_from_face_name directly, and use
14339         the fact that merge_face_vectors does not alter its FROM argument.
14341 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14343         * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
14344         input in the default locale.  Handle non-Unicode multibyte input.
14346 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14348         * fontset.c (reorder_font_vector): Exclude nil elements from the
14349         font group.  Don't try multiple fonts.
14350         (fontset_font): Adjust for the above change.
14351         (Finternal_char_font): Return nil if the found font doesn't
14352         contain the character ch.
14354         * Makefile.in (lisp, shortlisp): Add cham.el.
14356 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14358         * font.h (FONTP): Make it return 1 also for a font-object.
14360         * .gdbinit (xfontset): New function.
14362         * font.c (font_find_for_lface): Check if the character C is
14363         supported or not only for the first font.
14365         * fontset.c (reorder_font_vector): Fix typo.
14366         (fontset_find_font): Don't add a font-spec specifying a script.
14367         Use 0 (not Qt) for the indication of empty font-group.  Change the
14368         format of RFONT-DEF.  Return Qt if no font in the font-group
14369         support the character.
14370         (fontset_font): Adjust for the above change.  If no font was
14371         found the character, remember that.
14372         (face_for_char): Adjust for the change of RFONT-DEF.
14373         (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
14374         no font for the target.
14375         (Finternal_char_font): Adjust for the change of RFONT-DEF.
14377 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14379         * font.c (font_load_for_face): Handle the case that the font in
14380         face->lface is a string.
14382 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14384         * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
14386 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14388         * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
14389         Fix previous change.  If the frame is not on a window system,
14390         signal an error.
14392 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14394         * coding.c (decode_coding_object, encode_coding_object): Adjust
14395         marker positions after conversion.
14397         * lisp.h (struct Lisp_Marker): New member need_adjustment.
14399 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14401         * font.c (font_find_for_lface): Fix the handling of the return
14402         value of font_has_char.
14403         (Ffont_shape_text): Fix previous change.
14405         * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
14406         (fontset_ref_and_range): Delete it.
14407         (fontset_find_font): Call char_table_ref_and_range instead of
14408         FONTSET_REF_AND_RANGE.
14409         (make_fontset): Don't setup font groups of Latin here.
14410         (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
14411         (new_fontset_from_font): Make the specified font the default for
14412         all Latin characters.
14414 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14416         * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
14417         is on a window system before accessing the fontset of the frame.
14419 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14421         * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
14423         * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
14424         when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
14426         * font.c (Ffont_shape_text): If the font driver doesn't have a
14427         shaper function, make zero-width glyphs to have at least one-pixel
14428         width.  Fix setting of `to' field of glyphs.
14430 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14432         * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
14433         glyphs.
14435         * font.h (struct font_driver): Improve docstring of member `shape'.
14437 2008-02-01  Kenichi Handa  <handa@m17n.org>
14439         * composite.c (syms_of_composite): Fix docstring of
14440         auto-composition-function.
14442         * font.h (LGLYPH_SIZE): New macro.
14444         * font.c (Ffont_fill_gstring): Stop filling when a character not
14445         supported by the font is found.
14446         (Ffont_shape_text): When a shape callback function returns nil,
14447         try at most two more times with larger gstring.
14448         (Ffont_at): Fix getting of w.  Call font_at with correct 5th argument.
14450         * xdisp.c (handle_auto_composed_prop): Change the argument to
14451         auto-composition-function.
14453         * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
14454         (ftfont_shape_by_flt): If an element of lgstring is nil, make a
14455         Lispy glyph and store it in the lgstring.
14457         * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
14459         * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
14461 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14463         * font.c (Ffont_shape_text): Avoid unnecessary composition.
14465         * fontset.c (Vfont_encoding_charset_alist): New variable.
14466         (syms_of_fontset): DEFVAR it.
14467         (reorder_font_vector, fontset_find_font): Optimize for the case of
14468         no need of reordering.
14469         (face_for_char): Map the charset property by
14470         Vfont_encoding_charset_alist.
14472 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14474         * w32font.c (logfonts_match): Don't check adstyle here.
14475         (font_matches_spec): Check here against physical font instead.
14476         (add_font_entity_to_list): Avoid some substitutions.
14478         * font.c (font_parse_fcname): Default weight and slant to normal.
14479         (font_score): Prefer normal fonts if weight or slant unspecified.
14480         (font_score) [WINDOWSNT]: Scale weight difference down to closer
14481         match freetype scores.
14483 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14485         * w32font.c (w32font_text_extents): Don't use the frame stored in the
14486         font, as it may have been deleted.
14487         (w32_enumfont_pattern_entity): Map generic family to adstyle using
14488         most common hyphenless variation.
14489         (logfonts_match): Check generic family.
14490         (font_matches_spec): Don't check generic family here.
14491         (fill_in_logfont): Set generic family based on adstyle.
14493         * w32font.h (w32font_get_cache): Update declaration.
14495 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14497         * ftfont.c (ftfont_get_cache): Adjust the argument type.
14499         * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
14500         If none of the new drivers are available, call font_update_drivers
14501         with the old drivers.
14503         * w32font.c (w32font_get_cache): Adjust the argument type.
14505         * xfont.c (xfont_get_cache): Adjust the argument type.
14507         * font.h (struct font_driver): Change argument type of get_cache.
14509         * xftfont.c (xftfont_start_for_frame): Delete prototype.
14511         * font.c (Ffont_get): Fix arguments to Fassoc.
14512         (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
14513         (font_clear_cache): New function.
14514         (font_list_entities, font_matching_entity): Use font_get_cache.
14515         (font_update_drivers): Call font_clear_cache when finishing a driver.
14517         * fontset.c (fontset_find_font): Fix previous change.
14519 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14521         * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
14522         dpyinfo->font_table.
14523         (x_delete_display) [USE_FONT_BACKEND]: Likewise.
14524         (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
14526         * font.c (font_at): Handle the case that the arg C is negative.
14527         Handle the unibyte case.
14528         (Ffont_at): Call font_at with the arg C -1.
14530         * xdisp.c (handle_auto_composed_prop): Don't get a character at
14531         the position here, and call font_at with the arg C -1.
14532         Don't check the range of the existing composition at the point.
14534 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14536         * fontset.c (fontset_add): New args charset_id and family.
14537         Change caller.
14538         (load_font_get_repertory, fontset_find_font): Assume that
14539         font_spec is always a font-spec object.
14540         (Fset_fontset_font): Always store a font-spec object in a fontset.
14542         * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
14543         instead of get_property_and_range.
14545 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14547         * xftfont.c (struct xftfont_info): Delete the member ft_face.
14548         (xftfont_open): Don't keep locking face.
14549         (xftfont_close): Don't unlock face.
14550         (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
14552         * fontset.c (fontset_find_font): Don't prefer a font of
14553         supplementary charset.
14555 2008-02-01  Kenichi Handa  <handa@m17n.org>
14557         * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
14558         script, langsys_tag to langsys, new member script.
14559         (OTF_TAG_STR): Terminate by '\0'.
14560         (ftfont_get_open_type_spec): If :otf prop is spec, limit the
14561         listing to the script specified in that property.  Fix arg to
14562         OTF_check_features.
14564 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14566         * w32font.h: New file.
14568         * w32font.c: Include it.
14569         (struct w32font_info): Add owning_frame field.  Move to w32font.h.
14570         (w32font_open): Set owning_frame.
14571         (w32font_text_extents): Use owning_frame.
14572         (struct font_callback_data): Add opentype_only field.
14573         (add_font_entity_to_list): Use it to filter fonts.
14574         Don't check against full name.
14575         (w32font_list_internal): New function.
14576         (w32font_list): Use it.
14577         (w32font_match_internal): New function.
14578         (w32font_match): Use it.
14579         (w32font_open_internal): New function.
14580         (w32font_open): Use it.
14581         (w32font_get_cache, w32font_close, w32font_has_char)
14582         (w32font_encode_char, w32font_text_extents, w32font_draw):
14583         Make non-static.
14585         * makefile.w32-in (w32font.o): Depend on w32font.h.
14587 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14589         * charset.c (Fdefine_charset_internal): Record a supplementary
14590         charset at the tail of Vcharset_order_list.
14592         * font.c (Ffont_shape_text): Fix the return value.
14594         * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
14596         * xdisp.c (handle_auto_composed_prop): Fix previous change.
14598 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14600         * ftfont.c (struct OpenTypeSpec): New struct.
14601         (OTF_SYM_TAG, OTF_TAG_STR): New macros.
14602         (ftfont_get_open_type_spec): New function.
14603         (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
14605         * lread.c (read1): Redo the previous change with checking Vpurify_flag.
14607 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14609         * w32font.c (add_font_entity_to_list): Compare only the beginning
14610         of full name.
14612 2008-02-01  Kenichi Handa  <handa@m17n.org>
14614         * xdisp.c (handle_auto_composed_prop): Simplify the code.
14615         Never return HANDLED_RECOMPUTE_PROPS.
14617 2008-02-01  Kenichi Handa  <handa@m17n.org>
14619         * font.c (font_gstring_produce): Delete it.
14621         * composite.h (COMPOSITION_METHOD):
14622         Handle COMPOSITION_WITH_GLYPH_STRING.
14624 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14626         * xfont.c (Qx): Delete.
14627         (syms_of_xfont): Don't initialize Qx.
14629         * composite.h (enum composition_method):
14630         Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
14632 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14634         * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
14635         (choose_face_font): Accept new form of font-spec.
14637         * frame.h (font_driver_list): Declare it unconditionally.
14638         (struct frame): Define members font_driver_list and font_data_list
14639         unconditionally.
14641         * fontset.c: Include "font.h" unconditionally.
14642         (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
14643         (Fset_fontset_font): Accept a font-spec object.
14645         * font.c (font_unparse_xlfd): If pixel_size is zero, make the
14646         PIXEL_SIZE part a wild card.
14648         * dispextern.h (struct glyph_string): Define members clip and
14649         num_clips unconditionally.
14650         (struct face): Define members font_info and extra unconditionally.
14652         * ftfont.c (ftfont_open): Set members maybe_otf and otf of
14653         ftfont_info only when HAVE_LIBOTF is defined.
14655 2008-02-01  Andreas Schwab  <schwab@suse.de>
14657         * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
14658         and end.
14660 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14662         * w32font.c (w32font_driver): Add new fields.
14664 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14666         * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
14667         (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
14668         (LIBES): Add @M17N_FLT_CFLAGS@.
14670         * composite.c (compose_text): Don't treat the new style
14671         composition specially.
14673         * emacs.c (main): Call syms_of_font unconditionally.
14675         * font.h (FONT_ENTITY_NOT_LOADABLE)
14676         (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
14677         (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
14678         (struct font_driver): New member shape.
14679         (font_registry_charsets): Extern it.
14680         (font_find_for_lface, font_prepare_composition): Adjust prototype.
14681         (font_otf_capability, font_drive_otf): Delete their externs.
14683         * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
14684         (font_charset_alist, font_registry_charsets): Move from xfont.c
14685         and rename.
14686         (font_prop_validate_otf): New function.
14687         (font_property_table): Register it for QCotf.
14688         (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
14689         (font_drive_otf): Delete.
14690         (font_prepare_composition): New arg F.  Adjust for the change of
14691         lispy gstring.
14692         (font_find_for_lface): New arg C.
14693         (font_load_for_face): Adjust for the change of font_find_for_lface.
14694         (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
14695         lispy gstring.
14696         (Ffont_shape_text): New function.
14697         (Fopen_font): If the font size is not given, use 12-pixel.
14698         (Ffont_at): New arg STRING.
14699         (syms_of_font): Initialize font_charset_alist.
14700         Declare Ffont_shape_text as a Lisp function.  Call syms_of_XXfont
14701         conditionally.
14703         * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
14704         fonts of the same font-spec.  Change the format of RFONT-DEF.
14705         (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
14706         Adjust for the change of RFONT-DEF.
14707         (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
14709         * ftfont.h: New file.
14711         * ftfont.c: Don't include Freetype headers.  Include "ftfont.h".
14712         (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
14713         (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
14714         (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
14715         font_otf_capability and font_drive_otf, set ftfont_shape.
14716         (ftfont_list): Adjust for the change of :otf property value.
14717         (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
14718         (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
14719         (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
14720         (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
14721         (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
14722         (otf_gstring, gstring, m17n_flt_initialized): New variables.
14724         * w32term.c (x_draw_composite_glyph_string_foreground):
14725         Adjust for the change of lispy gstring.
14727         * xdisp.c (handle_composition_prop): Adjust for the change of
14728         lispy gstring.  Call a function for auto-composition with the
14729         third arg it->window.
14730         (fill_composite_glyph_string): Adjust for the change of lispy string.
14731         (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
14733         * xfaces.c (set_font_frame_param): Adjust for the change of
14734         font_find_for_lface.
14736         * xfont.c (x_font_charset_alist): Move to font.c and rename.
14737         (xfont_registry_charsets): Likewise.  Change caller.
14738         (syms_of_xfont): Don't handle x_font_charset_alist.
14740         * xftfont.c: Include "ftfont.h".
14741         (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
14742         (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
14743         (xftfont_close) [HAVE_LIBOTF]: Close otf.
14744         (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
14745         (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
14746         Set xftfont_driver.shape to xftfont_shape.
14748         * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
14749         the change of lispy gstring.
14751 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14753         * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
14755 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14757         * w32font.c (w32font_draw): Fill background manually.
14759 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14761         * font.c (Qfontp): Remove unused symbol.
14762         (QCantialias): New symbol.
14763         (syms_of_font): Define it.
14764         (font_property_table): Set a validator for QCantialias.
14766         * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
14767         Define if not already.
14768         (QCfamily): Share with xfaces.c.
14769         (Qstandard, Qsubpixel, Qnatural): New symbols.
14770         (syms_of_w32font): Define them.  Don't define QCfamily here.
14771         (w32_antialias_type, lispy_antialias_type): New functions.
14772         (w32_enumfont_pattern_entity): New arg requested_font.
14773         Set antialias parameter if non-default was requested.
14774         (fill_in_logfont): Fill in lfQuality if :antialias specified.
14776 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14778         * lread.c (read1): Undo the previous change.
14780 2008-02-01  CHENG Gao  <chenggao@gmail.com>  (tiny change)
14782         * frame.c (Fdelete_frame): Call font_update_drivers only when
14783         USE_FONT_BACKEND is defined.
14785 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14787         * font.h (struct font_bitmap): New member bits_per_pixel.
14788         (struct font_driver): New members start_for_frame and end_for_frame.
14789         (struct font_data_list): New struct.
14790         (font_put_frame_data, font_get_frame_data): Extern them.
14792         * frame.h (struct frame): New member font_data_list.
14794         * font.c (font_update_drivers): Call driver->start_for_frame and
14795         driver->end_for_frame at proper timings.
14796         (font_put_frame_data, font_get_frame_data): New functions.
14797         (Ffont_spec): Add usage in the docstring.
14799         * frame.c (make_frame): Initialize f->font_data_list to NULL.
14800         (Fdelete_frame): Call font_update_drivers.
14802         * xftfont.c (struct xftface_info): Delete the member xft_draw.
14803         (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
14804         (xftfont_get_xft_draw): New function.
14805         (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
14806         (xftfont_end_for_frame): New function.
14807         (syms_of_xftfont): Set xftfont_driver.end_for_frame.
14809         * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
14810         Change argument.  Cache GCs in the per-frame data.
14811         (struct ftxfont_frame_data): New struct.
14812         (ftxfont_draw_bitmap): New arg gc_fore and flush.
14813         (ftxfont_prepare_face, ftxfont_done_face): Delete them.
14814         (ftxfont_draw): Get GCs by ftxfont_get_gcs.  Reflect s->clip in GCs.
14815         (ftxfont_end_for_frame): New function.
14816         (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
14818         * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
14820 2008-02-01  Kenichi Handa  <handa@m17n.org>
14822         * xselect.c (Vselection_coding_system)
14823         (Vnext_selection_coding_system): Delete them.
14824         (syms_of_xselect): Don't declare selection-coding-system and
14825         next-selection-coding-system.  They are declared in select.el.
14827 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14829         * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
14831         * w32fns.c: Include imm.h.
14832         (get_composition_string_fn, get_ime_context_fn): New optional
14833         system functions.
14834         (globals_of_w32fns): Load them from imm32.dll.
14835         (ignore_ime_char): New flag.
14836         (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
14837         WM_IME_ENDCOMPOSITION messages.
14839         * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
14840         MULTIBYTE_CHAR_KEYSTROKE_EVENT.
14842 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14844         * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
14845         (READCHAR_REPORT_MULTIBYTE): New macro.
14846         (readchar): New 2nd arg MULTIBYTE.
14847         (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
14848         Make symbol's name multibyte according to the multibyteness of the
14849         source.
14851 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14853         * xfaces.c (face_for_overlay_string): Call lookup_face with
14854         correct arguments (fix of synching with the trunk).
14856 2008-02-01  Kenichi Handa  <handa@m17n.org>
14858         * font.c (font_prop_validate_symbol, font_prop_validate_style)
14859         (font_prop_validate_non_neg, font_prop_validate_spacing):
14860         Delete argument prop_index.
14861         (font_property_table): Change arguments to validater.  Change Callers.
14862         (font_lispy_object): Delete.
14863         (font_at): Use font_find_object instead fo font_lispy_object.
14865 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
14867         * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
14868         and file names.
14870 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14872         * w32font.c (add_font_name_to_list): Avoid vertical fonts.
14873         (font_matches_spec): Remove debug output.
14874         (add_font_entity_to_list): Avoid using substituted fonts.
14876 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14878         * doc.c (Fsnarf_documentation):
14879         * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
14881 2008-02-01  Miles Bader  <miles@gnu.org>
14883         * dispextern.h (struct glyph_row): Only define "clip" field if
14884         HAVE_WINDOW_SYSTEM is defined.
14886 2008-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14888         Fix up multi-tty merge.
14890         * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
14891         and indentation.
14893         * xfaces.c (free_realized_face, clear_face_gcs):
14894         Include font_done_for_face in the input_blocked section, just in case.
14896         * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
14897         (get_char_face_and_encoding): Undo last change and remove the *other*
14898         duplicate definition (i.e. keep the one that's better scoped and that
14899         includes code for the font-backend).
14901         * terminal.c (create_terminal): Default keyboard_coding to
14902         `no-conversion' and terminal_coding to `undecided'.
14904         * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
14906         * fontset.c (free_realized_fontsets): Check that the table entry does
14907         contain a fontset before trying to compare it to `base'.
14909         * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
14910         syms_of_charset, and syms_of_coding earlier because init_window_once
14911         now needs Vcoding_system_hash_table to be setup.
14913         * coding.h (default_buffer_file_coding): Remove.
14915         * coding.c (default_buffer_file_coding): Remove.
14916         (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
14917         than ->symbol, and use the terminal-local coding system.
14918         (syms_of_coding): Don't setup the coding-systems that are not
14919         terminal-local.
14920         (Fdefine_coding_system_internal): Use XCAR/XCDR.
14922         * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
14923         Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
14925         * alloc.c (Fmake_char_table, make_sub_char_table): Remove.  They're now
14926         in chartab.c and were re-added here by mistake.
14927         (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
14929         * doc.c (Fsnarf_documentation):
14930         * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
14931         src to etc.
14933         * ChangeLog.10: Add mistakenly removed entry.
14935 2008-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
14937         * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
14939 2008-02-01  Miles Bader  <miles@gnu.org>
14941         * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
14942         Add extra args to FACE_FOR_CHAR.
14944 2008-02-01  Kenichi Handa  <handa@m17n.org>
14946         * keymap.c (where_is_internal_1): If key is a cons, store the copy
14947         in sequence.
14949         * chartab.c (map_sub_char_table, map_char_table): If the range
14950         contains just one character, call the function with that character
14951         even if the depth is not 3.
14953 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14955         * w32font.c (w32font_text_extents): Calculate metrics for the
14956         whole string.
14958 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14960         * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
14962 2008-02-01  Jason Rumney  <jasonr@gnu.org>
14964         * w32term.c (x_set_glyph_string_clipping): Use
14965         get_glyph_string_clip_rects.
14966         (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
14967         Adjust for the change of struct glyph_string.
14969         * w32font.c (w32font_draw): Do clipping here.
14971 2008-02-01  Kenichi Handa  <handa@m17n.org>
14973         * xftfont.c (xftfont_draw): Adjust for the change of struct
14974         glyph_string.
14976         * xterm.c (x_set_glyph_string_clipping): Use
14977         get_glyph_string_clip_rects.
14978         (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
14979         Adjust for the change of struct glyph_string.
14981         * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
14982         the resulting clip(s}.
14983         (expose_overlaps): Add arg r.  Change callers.  Set it to
14984         row->clip temporarily.
14985         (expose_window): Redraw rows overlapping the exposed area.
14987         * dispextern.h (struct glyph_row): New member clip.
14988         (struct glyph_string): Delete members clip_x, clip_y, clip_width,
14989         clip_height, new member clip, and num_clips.
14991 2008-02-01  Kenichi Handa  <handa@m17n.org>
14993         * data.c (Fchar_or_string_p): Fix docstring.
14995 2008-02-01  Kenichi Handa  <handa@m17n.org>
14997         * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
14998         create a temporary XftDraw object.
15000 2008-02-01  Kenichi Handa  <handa@m17n.org>
15002         * font.c (Ffontp): Fix docstring.
15004         * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
15005         strong evidence of ISO-2022.
15007 2008-02-01  Kenichi Handa  <handa@m17n.org>
15009         * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
15010         SYNTAX_ENTRY_FOLLOW_PARENT.
15012 2008-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
15014         * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
15015         its type.
15016         (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
15017         Update to the new type of weak_hash_tables and next_weak.
15019         * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
15020         a plain C pointer to Lisp_Hash_Table.
15022         * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
15023         (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
15024         (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
15025         (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
15026         (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
15027         (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
15028         (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
15029         (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
15030         (GC_EQ): Remove since they've been identical to their non-GC_
15031         alter-egos ever since the markbit was eradicated.
15033         * alloc.c:
15034         * buffer.c:
15035         * buffer.h:
15036         * data.c:
15037         * fileio.c:
15038         * filelock.c:
15039         * fns.c:
15040         * frame.h:
15041         * lisp.h:
15042         * macterm.c:
15043         * print.c:
15044         * process.c:
15045         * w32fns.c:
15046         * w32menu.c:
15047         * w32term.c:
15048         * xfns.c:
15049         * xmenu.c:
15050         * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
15052 2008-02-01  Kenichi Handa  <handa@m17n.org>
15054         * chartab.c (map_sub_char_table): Make it work for the top-level
15055         char-table.  Fix handling of parent char-table.
15056         (map_char_table): Adjust for the above change.
15058 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15060         * w32font.c (Qgdi): Rename from Qw32.
15062 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15064         * w32bdf.c (get_quoted_string): Make function static.
15066 2008-02-01  Kenichi Handa  <handa@m17n.org>
15068         * xftfont.c (xftfont_open): If one of font's ASCII glyph has
15069         bigger ascent and descent than those of the font, use them as
15070         font's ascent and descent.
15072 2008-02-01  Kenichi Handa  <handa@m17n.org>
15074         * Makefile.in (${lispsource}international/charprop.el): Move this
15075         target within "#ifdef HAVE_UNIDATA" and "#endif".
15077 2008-02-01  Kenichi Handa  <handa@m17n.org>
15079         * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
15080         (shortlisp): Add ../lisp/language/tai-viet.el.
15082 2008-02-01  Ulrich Mueller  <ulm@gentoo.org>
15084         * Makefile.in (${lispsource}international/charprop.el): Depend on
15085         temacs${EXEEXT}.
15087 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15089         * w32font.c (w32font_close): Delete the GDI font object.
15091         * w32menu.c: Include character.h.
15093         * w32proc.c: Likewise.
15095         * w32select.c: Likewise.
15097         * makefile.w32-in (w32proc.o): Depend on character.h.
15099 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15101         * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
15103         * w32menu.c (syms_of_w32menu): Likewise.
15105         * w32proc.c (syms_of_ntproc): Likewise.
15107         * w32select.c (syms_of_w32select): Likewise.
15109         * w32term.c (syms_of_w32term): Likewise.
15111 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15113         * w32font.c (w32font_draw): Delete brush after using it.
15115 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15117         * w32font.c (w32font_open): Don't set font_idx.
15118         (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
15119         to font settings.
15120         (w32font_draw): Fill background explicitly.
15122 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15124         * w32term.c (w32_initialize): Don't call w32font_initialize.
15126         * w32font.c (w32font_info): Remove subranges.
15127         (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
15128         (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
15129         (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
15130         (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
15131         (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
15132         (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
15133         (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
15134         (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
15135         (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
15136         (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
15137         New symbols.
15138         (font_callback_data): New struct.
15139         (w32font_list, w32font_match): Use it.
15140         (w32font_open): Don't populate subranges.
15141         (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
15142         (w32font_encode_char): Always return unicode code-point as-is.
15143         (w32font_text_extents): Supply a transformation matrix to
15144         GetGlyphOutline.  Never look up by glyph index.  Avoid looping
15145         twice.  Use unicode version of GetTexExtentPoint32 instead of
15146         glyph index version.
15147         (set_fonts_frame): Remove.
15148         (w32_enumfont_pattern_entity): Add frame parameter, use it to
15149         set frame parameter.  Use backward compatible fake foundries.
15150         Save generic family in extra slot under QCfamily.  Make width slot
15151         constant.  Save QCspacing value.  Save list of scripts instead of
15152         binary subranges.
15153         (w32_generic_family, logfonts_match, font_matches_spec): New functions.
15154         (add_font_entity_to_list): Use font_callback_data struct.  Filter
15155         unwanted fonts.
15156         (add_one_font_entity_to_list): Use font_callback_data struct.
15157         (w32_registry): Default to iso10646_1.
15158         (fill_in_logfont): Use dpi from extra slot.  Don't bother with
15159         string font registries.  Don't fill in font name if it is a generic
15160         family name, fill family instead.  Use spacing, family and script
15161         extra info to fill pitch, family and charset fields.
15162         (list_all_matching_fonts): Use font_callback_data struct.
15163         (unicode_range_for_char): Remove.
15164         (font_supported_scripts): New function.
15165         (w32font_initialize): Remove.
15166         (syms_of_w32font): Update which symbols are defined.
15168 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15170         * font.c (font_pixel_size): Reverse assq_no_quit args.
15172         * w32term.h (FONT_WIDTH): Report max width, not average.
15173         (FONT_MAX_WIDTH): Remove.
15174         (FONT_AVG_WIDTH): New macro.
15176         * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
15177         redefinition of FONT_WIDTH.
15179         * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
15180         (w32_cache_char_metrics): Use FONT_WIDTH.
15182         * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
15184 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15186         * w32font.c (w32font_open): Make lfHeight negative.
15188         * w32fns.c (x_default_font_parameter): Use new style font name.
15189         (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
15191 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15193         * w32font.c (QCsubranges): New symbol.
15194         (w32font_open, w32font_has_char): Get subranges from subproperty
15195         of extra.
15196         (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
15197         (syms_of_w32font): Define :subranges symbol.
15199         * font.c (font_put_extra): Expose externally.
15201         * font.h (font_put_extra): Move declaration from font.c.
15203         * font.c (Ffont_get): Use font driver to determine otf capability.
15204         (adjust_anchor): Check if driver defines anchor_point before using.
15206         * w32font.c (w32font_open): Handle size, height and pixel_size better.
15207         (w32font_draw): Use options.
15208         (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
15209         Fix detection of truetype fonts.
15210         (registry_to_w32_charset): Handle charsets other than iso8859-1
15211         expressed as lisp symbols.
15212         (w32_registry): Express charset as lisp symbol.
15213         (fill_in_logfont): Reverse pixel and point height logic.
15214         Don't set width here.  Set quality to default.
15216         * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
15217         (x_to_w32_font): Fill in lfPitchAndFamily correctly.
15219         * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
15220         Remove redundant loop and allocation.
15222         * makefile.w32-in (font.o, w32font.o): New objects.
15223         (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
15224         (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
15226         * xdisp.c (fill_composite_glyph_string): Make the first arg to
15227         STORE_XCHARB a valid l-value.
15229         * w32term.c (w32_native_per_char_metric): Swap width and rbearing
15230         calculations for non-Truetype fonts.
15231         (x_draw_glyph_string): Sync with xterm.c.
15232         (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
15233         Remove redundant code.
15234         (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
15236         * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
15237         (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
15239         * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
15240         (x_to_w32_charset, w32_to_x_charset): Expose externally.
15242         * w32font.c: New file for w32 font backend.
15244 2008-02-01  Kenichi Handa  <handa@m17n.org>
15246         * term.c: Don't include "buffer.h" twice.
15248 2008-02-01  Kenichi Handa  <handa@m17n.org>
15250         * character.c (Funibyte_string): New function.
15251         (syms_of_character): Defsubr it.
15253 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15255         * w32term.c [USE_FONT_BACKEND]:
15256         (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
15257         (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
15258         (x_draw_glyph_string, x_draw_glyph_string_foreground)
15259         (x_draw_composite_glyph_string_foreground, x_new_fontset2)
15260         (x_free_frame_resources): Sync with xterm.c.
15262 2008-02-01  Andreas Schwab  <schwab@suse.de>
15264         * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
15265         char-table size.
15267 2008-02-01  Kenichi Handa  <handa@m17n.org>
15269         * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
15271 2008-02-01  Kenichi Handa  <handa@m17n.org>
15273         * ftfont.c (ftfont_driver): Delete font_otf_gsub and
15274         font_otf_gpos, add font_drive_otf.
15276         * fontset.c (fontset_find_font): Pay attention to font size
15277         specified for a font.
15278         (reorder_font_vector): Check contents of font_def.
15280         * font.c (struct otf_list): Delete it.
15281         (otf_list): Make it a lisp variable.
15282         (otf_open): Use lispy otf_list.
15283         (generate_otf_features): Rename from parse_gsub_gpos_spec.
15284         (check_otf_features): New function.
15285         (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
15286         New functions.
15287         (font_drive_otf): New function merging font_otf_gsub and
15288         font_otf_gpos.
15289         (font_open_for_lface): New arg spec.  Change argument order.
15290         (font_load_for_face): Adjust for the change of font_open_for_lface.
15291         (Ffont_drive_otf): New function merging Ffont_otf_gsub and
15292         Ffont_otf_gpos.
15293         (syms_of_font): Staticpro otf_list.  Delete defsubr of
15294         Sfont_otf_gsub and Sfont_otf_gpos.  Defsubr Sfont_drive_otf.
15296         * xfaces.c (set_font_frame_param): Adjust for the change of
15297         font_open_for_lface.
15299         * font.h (font_open_for_lface): Adjust prototype.
15300         (struct font_driver): Delete members otf_gsub and otf_gpos, add
15301         member otf_drive.
15302         (font_otf_gsub, font_otf_gpos): Delete externs.
15303         (font_drive_otf): Extern it.
15305 2008-02-01  Kenichi Handa  <handa@m17n.org>
15307         * font.c (font_at): If the window W is not on a window system,
15308         return Qnil.
15310         * coding.c (produce_chars, encode_coding): Don't call
15311         insert_from_gap if no characters to produce.
15313 2008-02-01  Kenichi Handa  <handa@m17n.org>
15315         * fontset.c (free_realized_fontsets): Avoid unnecessary call of
15316         Fclear_face_cache.
15318         * xfaces.c (face_for_font): Check also face->font==font->font.font.
15320 2008-02-01  Miles Bader  <miles@gnu.org>
15322         * emacs.c (main): Change default value of `enable_font_backend' to 1.
15323         Parse "--disable-font-backend" option.
15324         (standard_args): Add "--disable-font-backend" option.
15326 2008-02-01  Kenichi Handa  <handa@m17n.org>
15328         * fontset.c (fontset_find_font): New function.
15329         (fontset_font): Use fontset_find_font.
15330         (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
15331         Register the specified font for all Latin characters.
15332         (new_fontset_from_font): Register the specified font for all Latin
15333         characters.
15334         (dump_fontset): For a realized fontset, include the base fontset
15335         name in the returned vector.
15337 2008-02-01  Kenichi Handa  <handa@m17n.org>
15339         * character.h (CHAR_STRING): Cast C to unsigned on calling
15340         char_string.
15342         * character.c (char_string): Type of arg C changed to unsigned.
15343         Signal an error if C is an invalid character code.
15345         * editfns.c (general_insert_function, Fchar_to_string):
15346         Use CHARACTERP, not INTEGERP.
15348 2008-02-01  Kenichi Handa  <handa@m17n.org>
15350         * character.h (MIN_MULTIBYTE_LEADING_CODE)
15351         (MAX_MULTIBYTE_LEADING_CODE): New macros.
15353         * regex.c (analyse_first): Fix for multibyte characters in "case
15354         charset:" and "case categoryspec:".
15356 2008-02-01  Andreas Schwab  <schwab@suse.de>
15358         * Makefile.in (LIBES): Move standard libraries to the end.
15360 2008-02-01  Kenichi Handa  <handa@m17n.org>
15362         * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
15363         nonzero, don't shrink the buffer nextb.
15365         * buffer.h (struct buffer_text): New member inhibit_shrinking.
15367         * coding.c (coding_alloc_by_making_gap): New arg offset.
15368         (alloc_destination): Call coding_alloc_by_making_gap with the arg
15369         offset.
15370         (decode_coding_iso_2022): Update coding->safe_charsets.
15371         (decode_coding_gap): Temporarily set
15372         current_buffer->text->inhibit_shrinking to 1.
15374 2008-02-01  Kenichi Handa  <handa@m17n.org>
15376         * xterm.c (x_draw_composite_glyph_string_foreground): Fix
15377         indexing into elements of s->cmp and s->char2b.
15379 2008-02-01  Juanma Barranquero  <lekktu@gmail.com>
15381         * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
15383 2008-02-01  Kenichi Handa  <handa@m17n.org>
15385         * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
15386         target_multibyte instead of multibyte.
15387         (re_match_2_internal): Call bcmp_translate with target_multibyte.
15388         (bcmp_translate): Change the argument name from multibyte to
15389         target_multibyte.
15391 2008-02-01  Kenichi Handa  <handa@m17n.org>
15393         These changes are to compile a regexp into a pattern that can be
15394         used both for multibyte and unibyte targets.
15396         * Makefile.in (search.o): Depend on charset.h.
15398         * character.c (multibyte_char_to_unibyte_safe): New function.
15400         * search.c: Include "charset.h".
15401         (compile_pattern_1): Delete argument multibyte.  Don't set
15402         cp->buf.target_multibyte here.  Set cp->buf.charset_unibyte.
15403         (compile_pattern): Don't compare cp->buf.target_multibyte.
15404         Compare cp->buf.charset_unibyte.
15405         (compile_pattern): Set cp->buf.target_multibyte.
15407         * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
15409         * regex.h (struct re_pattern_buffer): New member charset_unibyte.
15411         * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
15412         multibyte.  Change callers.
15413         (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
15414         (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete.  Change callers
15415         to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
15416         (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
15417         (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
15418         (regex_compile): Make the compiled pattern usable both for
15419         multibyte and unibyte targets.
15420         (analyse_first): Make the fastmap usable both for multibyte and
15421         unibyte targets.
15422         (TRANSLATE_VIA_MULTIBYTE): Delete.
15423         (re_match_2_internal): Pay attention to the case that the
15424         multibyteness of bufp and target may be different.
15426 2008-02-01  Kenichi Handa  <handa@m17n.org>
15428         * xdisp.c (x_produce_glyphs): When a font is not found, make the
15429         empty box occupy at least one column width.
15431 2008-02-01  Miles Bader  <miles@gnu.org>
15433         * Makefile.in: Remove redundant HAVE_XFT clause.
15435 2008-02-01  Kenichi Handa  <handa@m17n.org>
15437         * xrdb.c (x_load_resources): Setup the default fontSet X resource.
15439 2008-02-01  Kenichi Handa  <handa@m17n.org>
15441         * fontset.c (Finternal_char_font): Fix for the case of POSITION
15442         being nil.
15444 2008-02-01  Kenichi Handa  <handa@m17n.org>
15446         * xftfont.c (xftfont_open): Call FcConfigSubstitute.
15448 2008-02-01  Kenichi Handa  <handa@m17n.org>
15450         * xftfont.c (xftfont_open): Don't enable antialias explicitly.
15452 2008-02-01  Kenichi Handa  <handa@m17n.org>
15454         * search.c (simple_search): Fix previous change.
15456 2008-02-01  Kenichi Handa  <handa@m17n.org>
15458         * xftfont.c (ftfont_font_format): Extern declaration.
15460         * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
15462         * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
15463         (xfont_list): Don't directly use Lisp_Object as an operand of &&.
15465         * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
15466         (ftfont_font_format): Fix previous change.
15468         * font.h (Ffont_xlfd_name): EXFUN it.
15470         * font.c (font_parse_xlfd): Fix the array size of `f'.
15471         (register_font_driver): Use EQ to compare driver->type.
15473         * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
15474         (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
15475         (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
15477 2008-02-01  Kenichi Handa  <handa@m17n.org>
15479         * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
15480         (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
15482 2008-02-01  Kenichi Handa  <handa@m17n.org>
15484         * xfont.c (xfont_open): Set font->format.
15486         * xftfont.c (xftfont_open): Set font->format.
15488         * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
15489         (ftfont_list): Include FC_FONTFORMAT in FcObject.
15490         (ftfont_open): Set font->format.
15491         (ftfont_font_format): New function.
15493         * font.h (struct font): New member format.
15495         * font.c (Qopentype): New variable.
15496         (syms_of_font): Defsym it.
15497         (Fquery_font): Change the format of the last element of the return
15498         value.
15500 2008-02-01  Kenichi Handa  <handa@m17n.org>
15502         * xfns.c (xic_create_xfontset): Try the default fontset name as a
15503         last resort.
15505 2008-02-01  Kenichi Handa  <handa@m17n.org>
15507         * coding.c (detect_coding_charset): Fix detection of multi-byte
15508         charset.
15510 2008-02-01  Bob Halley  <halley@play-bow.org>  (tiny change)
15512         * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
15514 2008-02-01  Kenichi Handa  <handa@m17n.org>
15516         * xdisp.c (get_next_display_element): Set it->face_id for the
15517         first component of a composition.
15518         (x_produce_glyphs): Check if the font is changed or not for composition.
15520 2008-02-01  Kenichi Handa  <handa@m17n.org>
15522         * fontset.c (Qlatin): New variable.
15523         (syms_of_fontset): Define it as a lisp symbol.
15524         (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
15526 2008-02-01  Kenichi Handa  <handa@m17n.org>
15528         * font.c (font_unparse_fcname): Pay attention to the case that
15529         some of font property is a null string.
15531 2008-02-01  Kenichi Handa  <handa@m17n.org>
15533         * term.c: Include "composite.h".
15534         (encode_terminal_code): Output all components of composition.
15535         Check the size of encode_terminal_src.
15536         (produce_glyphs): For composition, call produce_composite_glyph.
15537         (append_composite_glyph, produce_composite_glyph): New functions.
15539         * xdisp.c (x_produce_glyphs): In handling composition, if a font
15540         is not found, get font_info from the current ascii face.
15542 2008-02-01  Kenichi Handa  <handa@m17n.org>
15544         * fileio.c (Finsert_file_contents): On replacing, temporarily bind
15545         buffer-file-name to Qnil before calling insert_from_buffer.
15547         * font.c (font_unparse_fcname): Pay attention to the case that
15548         foundry is a null string.
15550 2008-02-01  Kenichi Handa  <handa@m17n.org>
15552         * ftfont.c (ftfont_list): Allow registry "unicode-sip".
15554         * font.c (Qunicode_sip): New variable.
15555         (syms_of_font): Declare it as a Lisp symbol.
15557         * font.h (Qunicode_sip): Extern it.
15559 2008-02-01  Kenichi Handa  <handa@m17n.org>
15561         * composite.c (get_composition_id): Pay attention to TAB component.
15563         * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
15564         TAB.  Adjust for the change of s->char2b which always points to
15565         the first element of allocated memory.
15567         * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
15569         * xdisp.c (handle_composition_prop): Set it->c to the first
15570         non-TAB component.
15571         (fill_composite_glyph_string): Change argument.
15572         (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
15573         (x_produce_glyphs): Fix handling of left/right padding.
15575 2008-02-01  Kenichi Handa  <handa@m17n.org>
15577         * coding.c (detect_coding_system): Fix for handling off
15578         inhibit_iso_escape_detection.  Fix for the case that no coding
15579         system is defined for a specific coding category.
15581 2008-02-01  Kenichi Handa  <handa@m17n.org>
15583         * font.c (font_matching_entity): Delete unused local var.
15585         * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
15586         opening a font.
15588         * fileio.c (Finsert_file_contents): On recovering a file, assume
15589         Unix-like eol.
15590         (choose_write_coding_system): On auto-saving a file, force
15591         Unix-like eol.
15593         * coding.c (setup_coding_system): Fix setting of
15594         coding->common_flags based on eol_type.
15595         (coding_inherit_eol_type): If PARENT is not nil, be sure to
15596         inherit from it.
15598 2008-02-01  Kenichi Handa  <handa@m17n.org>
15600         * alloc.c (NSTATICS): Increas to 0x600.
15602 2008-02-01  Kenichi Handa  <handa@m17n.org>
15604         * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
15605         (ftfont_list): Don't check :name property.
15606         (ftfont_match): New function.
15607         (ftfont_pattern_entity): If the pattern doesn't contain
15608         FC_SPACING, don't assume FC_MONO.
15610         * font.h (struct font_driver): New member `match'.
15611         (font_update_drivers): Adjust prototype.
15613         * font.c (font_parse_fcname, font_parse_name): Don't change :name
15614         property of FONT.
15615         (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
15616         them unconditionally.
15617         (font_matching_entity): New function.
15618         (font_open_by_name): Try font_matching_entity if exact match is
15619         not found.
15620         (font_update_drivers): Delete the arg FONT.  Return a list of
15621         actually used backends.  Don't free faces, font caches here.
15622         Don't store data in frame parameters.  Don't call x_set_font.
15623         (Ffont_spec): Store :name property as is.
15624         (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
15625         (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
15626         (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
15627         (Ffont_otf_alternates): Check if the driver has otf_gsub function.
15628         Call font->driver->otf_gsub instead of font_otf_gsub.
15630         * frame.c (x_set_font_backend): Do more works that were done in
15631         font_update_drivers before.
15633         * xfont.c (xfont_match): New function.
15634         (xfont_driver): Set xfont_driver.match to xfont_match.
15635         (xfont_draw): Set font in GC if necessary.
15637         * ftxfont.c (ftxfont_match): New function.
15638         (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
15640         * xftfont.c (xftfont_match): New function.
15641         (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
15643 2008-02-01  Kenichi Handa  <handa@m17n.org>
15645         * font.h (struct font): New member scalable.
15646         (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
15647         (font_otf_gsub): Adjust prototype.
15649         * font.c (font_otf_capability): Fix handling of the default langsys.
15650         (parse_gsub_gpos_spec): Change type to void.  New arg nbytes.
15651         Check the contents of SPEC.
15652         (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
15653         (check_gstring): New function.
15654         (REPLACEMENT_CHARACTER): New macro.
15655         (font_otf_gsub): New arg alternate_subst.  Be sure to set all
15656         glyph codes of GSTRING.
15657         (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
15658         (font_prepare_composition): Set cmp->glyph_len.
15659         (font_open_entity): Set font->scalable.
15660         (Ffont_get): Handle :otf property.
15661         (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
15662         functions.
15663         (Fquery_font): Use font->font.full_name.
15664         (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
15665         Sfont_otf_alternates.
15667         * ftfont.c (ftfont_open): Set font->font.full_name and
15668         font->font.name properly.  Fix calculation of font->font.height
15669         and font->min_width.
15671         * ftxfont.c (ftxfont_create_gcs): New function.
15672         (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
15673         (ftxfont_draw_backgrond): Fix filling region.
15674         (ftxfont_default_fid): New function.
15675         (ftxfont_open): Set xfont->fid to the return value of
15676         ftxfont_default_fid.
15677         (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
15678         (ftxfont_done_face): Free only GCs that are created by
15679         ftxfont_create_gcs.
15680         (ftxfont_draw): If face->gc != s->gc, create proper GCs.
15682         * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
15683         Clip to src->width, etc (not src->clip_XXX).
15685         * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
15686         FontBackend frame parameter.
15688 2008-02-01  Kenichi Handa  <handa@m17n.org>
15690         * font.h (struct font_driver_list): New member `on'.
15691         (Fclear_font_cache): EXFUN it.
15692         (font_update_drivers): Extern it.
15694         * font.c (font_unparse_fcname): Fix typo (swidth->width).
15695         (font_list_entities): Check driver_list->on.
15696         (register_font_driver): Initialize `on' member to 0.
15697         (font_update_drivers): New function.
15698         (Fclear_font_cache): Check driver_list->on.
15700         * frame.h (Qfont_backend): Extern it.
15701         (x_set_font_backend): Extern it.
15703         * frame.c (Qfont_backend): New variable.
15704         (frame_parms): New element for font-backend.
15705         (x_set_font_backend): New function.
15707         * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
15708         FontBackend frame parameter.
15709         (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
15710         x_set_font_backend.
15712         * xfont.c (xfont_list): Don't try listing by :name property if the
15713         name is not for XLFD.
15715 2008-02-01  Kenichi Handa  <handa@m17n.org>
15717         * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
15718         (LGLYPH_SET_TO): New macros.
15719         (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
15720         element of G is vector or not.
15721         (font_at): Extern it.
15723         * font.c: Include window.h.
15724         (font_lispy_object): New function.
15725         (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
15726         end of valid glyph.
15727         (font_close_object): Fix getting (struct font *).
15728         (font_at): New function.
15729         (Ffont_get): If FONT is a font-object, get entity from it.
15730         (Ffont_make_gstring): Initialize elements of glyphs with nil.
15731         (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX.  Fix
15732         range check.
15733         (Ffont_at): New function.
15734         (syms_of_font): Defsubr Sfont_at.
15736         * xdisp.c (it_props): Move the entry for Qauto_composed to just
15737         before the entry for Qcomposition.
15738         (handle_auto_composed_prop): Call auto-composition-function with 4 args.
15739         (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
15740         the font in gstring.
15741         (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
15742         LGLYPH_FORM (g) to detect the end of valid glyph.
15743         (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
15744         we are composing with gstring.
15746         * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
15747         Check if adjustment is vector or not.
15749         * Makefile.in (font.o): Make it depends on window.h.
15751 2008-02-01  Kenichi Handa  <handa@m17n.org>
15753         * xterm.c (x_draw_composite_glyph_string_foreground): Check if
15754         adjustment is vector or not.
15756 2008-02-01  Miles Bader  <miles@gnu.org>
15758         * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
15760 2008-02-01  Kenichi Handa  <handa@m17n.org>
15762         * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
15763         (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
15764         (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
15766         * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
15767         (DEVICE_DELTA): Fix typo.
15768         (font_otf_gpos, font_prepare_compositio): Adjust for the change of
15769         LGLYPH format.
15771         * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
15772         the change of LGLYPH format.
15774 2008-02-01  Kenichi Handa  <handa@m17n.org>
15776         * ftfont.c (ftfont_list): Fix typo.
15777         (ftfont_build_basic_charsets): Don't include letters with diacritics.
15779 2008-02-01  Jan Djärv  <jan.h.d@swipnet.se>
15781         * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
15783         * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
15784         xftface_info is non-NULL.
15786 2008-02-01  Jan Djärv  <jan.h.d@swipnet.se>
15788         * ftfont.c (ftfont_list): Move misplaced #endif.
15790 2008-02-01  Kenichi Handa  <handa@m17n.org>
15792         * ftfont.c (ftfont_list): Pay attention to the case that
15793         FC_CAPABILITY is not defined.
15795 2008-02-01  Kenichi Handa  <handa@m17n.org>
15797         * xftfont.c (xftfont_open): Set charset related members to -1.
15799         * ftfont.c (ftfont_list): Handle QCotf property.  Fix handling of
15800         QCname.
15801         (ftfont_open): Set charset related members to -1.
15803         * fontset.c (Votf_script_alist): New variable.
15804         (syms_of_fontset): Initialize it.
15805         (fontset_font): Delete unused variable.
15807         * fontset.h (Votf_script_alist): Extern it.
15809         * font.c (font_find_for_lface): Optimize code.
15811         * font.h (font_close_object, font_merge_old_spec): Extern them.
15813 2008-02-01  Kenichi Handa  <handa@m17n.org>
15815         * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
15816         (syms_of_font): Initialize them.
15817         (font_pixel_size): Allow float value in dpi.
15818         (font_prop_validate_type): Delete.
15819         (font_prop_validate_symbol, font_prop_validate_style): Change argument.
15820         Change caller.
15821         (font_prop_validate_non_neg): Rename from font_prop_validate_size.
15822         (font_prop_validate_extra): Delete.
15823         (font_prop_validate_spacing): New function.
15824         (font_property_table): Add elements for all known properties.
15825         (get_font_prop_index): Rename from check_font_prop_name.  New
15826         argument FROM.  Change caller.
15827         (font_prop_validate): Validate all known properties.
15828         (font_put_extra): Delete argument force.  Change caller.
15829         (font_expand_wildcards): Make it static.  Fix the way of shrinking
15830         the possible range.
15831         (font_parse_xlfd): Delete argument merge.  Fix handling of RESX,
15832         RESY, SPACING, and AVGWIDTH.  Don't validate property values here.
15833         Change caller.
15834         (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
15835         (font_parse_fcname): Delete argument merge.  Fix parsing of point
15836         size.  Don't validate properties values here.  Change caller.
15837         (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
15838         (font_open_by_name): Delete unused variable.
15839         (Ffont_spec): Likewise.  Validate property values.
15840         (Ffont_match_p): New function.
15842         * font.h (QCscalable): Extern it.
15843         (font_parse_xlfd, font_parse_fcname): Adjust prototype.
15845         * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
15847         * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
15848         (xfont_list_pattern): New function.
15849         (xfont_list): Use xfont_list_pattern.
15851 2008-02-01  Kenichi Handa  <handa@m17n.org>
15853         * font.h (Flist_fonts): EXFUN it.
15855 2008-02-01  Jason Rumney  <jasonr@gnu.org>
15857         * w32term.c (w32_initialize): Add back smoothing_type and
15858         smoothing_enabled definitions.
15860 2008-02-01  Kenichi Handa  <handa@m17n.org>
15862         * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
15863         s->face->font on determining underline position.
15865 2008-02-01  Kenichi Handa  <handa@m17n.org>
15867         * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
15868         (font_has_char): Accept font-object too.
15869         (font_find_for_lface): Try at first with a size specified in face.
15871 2008-02-01  Kenichi Handa  <handa@m17n.org>
15873         * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
15874         font_open_by_name.
15876 2008-02-01  Kenichi Handa  <handa@m17n.org>
15878         * font.h (QCspacing, QCdpi): Extern them.
15879         (enum font_spacing): New enum.
15880         (FONT_PIXEL_SIZE_QUANTUM): New macro.
15882         * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
15883         (QCspacing, QCdpi): New variables.
15884         (syms_of_font): Initialize them.
15885         (font_pixel_size): New function.
15886         (font_put_extra): New function.
15887         (font_parse_xlfd): Fix handling of font size.  Add QCdpi property
15888         in FONT_EXTRA.
15889         (font_parse_fcname): Handle enumerated values (e.g. bold).
15890         Fix handling font size.  Add QCname property that contains only
15891         unknown properties.
15892         (font_score): Change argument.  Change caller.  Pay attention to
15893         FONT_PIXEL_SIZE_QUANTUM.
15894         (font_sort_entites, font_list_entities, font_find_for_lface)
15895         (font_open_for_lface, font_open_by_name): Fix handling of font size.
15896         (Ffont_spec): Add QCname property that contains only unknown properties.
15898         * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.  Don't
15899         include weight in listing pattern, instead check weight of each
15900         listed font.  Don't include scalable in pattern.  Pay attention to
15901         FONT_PIXEL_SIZE_QUANTUM.
15903 2008-02-01  Kenichi Handa  <handa@m17n.org>
15905         * font.c (font_parse_fcname): Fix parsing of point-size.
15906         (font_unparse_fcname): Produce symbolic names for style properties.
15907         (font_list_entities): Handle float size correctly.
15908         (font_open_by_name): Prefer `normal' property values if the name
15909         doesn't specify them.
15911         * fontset.c (Finternal_char_font): Use font_get_name, not
15912         Ffont_xlfd_name.
15914         * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
15915         FC_WEIGHT_REGULAR.  Exclude FC_SIZE and FC_PIXEL_SIZE from listing
15916         pattern.  Don't force scalable.
15918         * xftfont.c (xftfont_open): For generating a name, start from
15919         96-byte buffer.
15921 2008-02-01  Jan Djärv  <jan.h.d@swipnet.se>
15923         * frame.h (x_new_fontset2): Fix prototype.
15925 2008-02-01  Kenichi Handa  <handa@m17n.org>
15927         * font.h (struct font_driver): Delete member parse_name.
15928         (font_match_p, font_get_spec, font_parse_fcname)
15929         (font_unparse_fcname): Extern them.
15930         (font_get_name): Adjust prototype.
15932         * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
15933         (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
15934         (font_expand_wildcards): Fix handling ENCODING field.  Avoid
15935         unnecessary checks for weight, slant, and swidth.
15936         (font_parse_fcname): New function.
15937         (font_unparse_fcname): New function.
15938         (font_parse_name): New function.
15939         (font_match_p): New function.
15940         (font_get_name): Change return value to Lisp string.
15941         (font_get_spec): New function.
15942         (Qunspecified, Qignore_defface): Don't extern them.
15943         (font_find_for_lface): Assume that LFACE is fully specified.
15944         (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
15945         object, use it for FACE.
15946         (font_open_by_name): Call Ffont_spec with QCname prop.  Don't call
15947         driver->parse_name.
15948         (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
15950         * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
15951         prototype.
15953         * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
15954         argument F.  Don't call Fnew_fontset.  Instead, directly call
15955         make_fontset.
15957         * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
15959         * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
15960         of x_new_fontset2.
15962         * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
15963         (Qsans__serif): New variables.
15964         (ftfont_generic_family_list): New variable.
15965         (syms_of_ftfont): Initialize the above variables.
15966         (ftfont_pattern_entity): Delete argument NAME.
15967         (ftfont_list_generic_family): New function.
15968         (ftfont_parse_name): Delete this function.
15969         (ftfont_list): Try generic family only when FcFontList found no font.
15970         (ftfont_list_family): Fix args to FcObjectSetBuild.
15972         * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
15973         object in attrs[LFACE_FONT_INDEX].
15974         (set_lface_from_font_name): Cancel all changes for font-backend.
15975         (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
15976         function.
15977         (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
15978         font object in QCfont attribute.
15979         (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
15980         (realize_default_face) [USE_FONT_BACKEND]: Call
15981         set_lface_from_font_and_fontset.
15983         * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
15984         "fixed", and signal error here if no suitable font was found.
15986         * xfont.c (xfont_parse_name): Delete this function.
15988         * xftfont.c (xftfont_open): Change coding style of error
15989         handling.  Generate fontconfig's fontname pattern.
15991         * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
15992         (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
15994         * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
15995         Both args FONTSET and FONT_OBJECT must be existing ones.
15997 2008-02-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15999         * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
16001 2008-02-01  Kenichi Handa  <handa@m17n.org>
16003         * xfont.c (xfont_open, xfont_encode_char): Fix typo.
16005         * font.h (struct font): Fix typo.
16007         * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
16008         XLFD_XXX_INDEX.
16009         (enum xlfd_field_mask): New enum.
16010         (intern_font_field): Changed argument.  Change caller.  If digits
16011         are followed by non-digits, return a symbol.
16012         (font_expand_wildcards): New function.
16013         (font_parse_xlfd): Fix wildcard handling.
16014         (Ffont_spec): If :name is specified, reflect the info in the other
16015         properties.
16017         * ftfont.c (ftfont_pattern_entity): Fix typo.
16018         (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
16019         locale.
16021 2008-02-01  Kenichi Handa  <handa@m17n.org>
16023         * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
16025         * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
16026         (font_unparse_xlfd): Fix argument type declaration.  Append "*" if
16027         registry doesn't specify encoding part.
16028         (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
16029         (font_open_by_name): At first try parsing the name.
16030         (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
16031         as Lisp symbols.
16033         * fontset.c (reorder_font_vector): Pay attention to the case that
16034         the 3rd element of font_def is nil.
16035         (fontset_font): For the default fontset, append one more fontset
16036         elements for a script-based font specification.  Don't add script
16037         attribute on finding a font.
16038         (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
16039         font name.
16040         (fontset_ascii_font): If a font can't be opened, return nil.
16042         * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
16043         (ftfont_pattern_entity): New function.
16044         (ftfont_get_cache): Assume that freetype_font_cache is already
16045         initialized.
16046         (ftfont_list): Handle the case that a file is specified in font
16047         name.  Use ftfont_pattern_entity to generate entities.
16048         (ftfont_has_char): Check if the pattern contains FC_CHARSET.
16049         (syms_of_ftfont): Initialize freetype_font_cache.
16051         * xftfont.c (xftfont_open): Make the font name fontconfig's
16052         style.  Add BLOCK_INPUT and UNBLOCK_INPUT.
16053         (xftfont_close): Free font->font.name if not NULL.
16055         * xfont.c (xfont_list): If script is specified for a font, return
16056         null_vector.
16057         (xfont_list_family): Declare argument type.
16059         * xfaces.c (set_lface_from_font_name): If a font doesn't have a
16060         name, set LFACE_FONT (lface) to nil.
16062         * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
16063         return Qnil.
16065 2008-02-01  Kenichi Handa  <handa@m17n.org>
16067         * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
16068         (standard_args): Add "-enable-font-backend".
16070 2008-02-01  Kenichi Handa  <handa@m17n.org>
16072         * xftfont.c (xftfont_default_fid): Set fid_known to 1.
16073         (struct xftdraw_list, xftdraw_list): Delete them.
16074         (register_xftdraw, check_xftdraw): Delete them.
16075         (xftfont_prepare_face): Don't call register_xftdraw.
16076         (xftfont_done_face): Don't call check_xftdraw.
16077         (xftfont_draw): Get background color only when with_background is
16078         nonzero.
16080         * xfont.c (xfont_encode_char): Fix calculation of char2b.
16082 2008-02-01  Kenichi Handa  <handa@m17n.org>
16084         These changes are for the new font handling codes.
16086         * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
16087         @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
16088         (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
16089         (FONTSRC, FONTOBJ): New variables.
16090         (obj): Add $(FONTOBJ).
16091         (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
16092         (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
16093         @LIBOTF_LIBS@.
16094         (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
16095         (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
16097         * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
16099         * character.h (Vscript_representative_chars): Extern it.
16101         * character.c (Vscript_representative_chars): New variable.
16102         (syms_of_character): Declare it as a Lisp variable.
16104         * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
16105         enable_font_backend is nonzero, accept the composition method
16106         COMPOSITION_WITH_GLYPH_STRING.
16108         * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
16109         enumeration COMPOSITION_WITH_GLYPH_STRING.
16111         * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
16112         members clip_x, clip_y, clip_width, and clip_height.
16113         (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
16115         * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
16116         --enable-font-backend.  Call syms_of_font.
16118         * fns.c (assoc_no_quit): New function.
16120         * fontset.h (FONT_INFO_FROM_FACE): New macro.
16121         (face_for_font, new_fontset_from_font)
16122         (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
16124         * fontset.c [USE_FONT_BACKEND]: Include "font.h".
16125         (fontset_font, fontset_ascii, face_for_char)
16126         (make_fontset_for_ascii_face, Ffont_info)
16127         (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
16128         is nonzero, use font-backend mechanism.
16129         (find_font_encoding): Make it non-static.
16130         (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
16131         New functions.
16133         * frame.h (struct frame): New members resx and resy.
16134         (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
16135         (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
16137         * frame.c [USE_FONT_BACKEND]: Include "font.h".
16138         (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
16140         * lisp.h (assoc_no_quit): Extern it.
16142         * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
16143         Through out the file, use FONT_INFO_FROM_FACE instead of
16144         FONT_INFO_FROM_ID, use get_per_char_metric instead of
16145         rif->per_char_metric.
16146         (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
16147         method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
16148         (get_glyph_face_and_encoding, fill_composite_glyph_string)
16149         (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
16150         (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
16151         nonzero, use font-backend mechanism.
16152         (get_per_char_metric): New function.
16154         * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
16155         (set_lface_from_font_name)
16156         (set_font_frame_param, free_realized_face)
16157         (prepare_face_for_display, clear_face_gcs)
16158         (Finternal_set_font_selection_order, realize_x_face)
16159         [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
16160         font-backend mechanism.
16161         (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
16162         (load_face_font) [USE_FONT_BACKEND]: Abort.
16163         (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
16164         (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
16166         * xfns.c [USE_FONT_BACKEND]: Include "font.h".
16167         (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
16168         (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
16169         nonzero, register all available font drivers.  Call
16170         x_default_font_parameter for deciding a font.
16171         (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
16173         * xterm.c [USE_FONT_BACKEND]: Include "font.h".
16174         (x_set_mouse_face_gc, x_set_glyph_string_clipping)
16175         (x_set_glyph_string_clipping_exactly)
16176         (x_compute_glyph_string_overhangs)
16177         (x_draw_glyph_string_foreground)
16178         (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
16179         (x_free_frame_resources) [USE_FONT_BACKEND]: If
16180         enable_font_backend is nonzero, use font-backend mechanism.
16181         (x_new_fontset2) [USE_FONT_BACKEND]: New function.
16183 2008-02-01  Kenichi Handa  <handa@m17n.org>
16185         * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
16186         system_eol_type.
16187         (syms_of_coding): Initialize system_eol_type.
16189         * process.c (Fset_process_coding_system): Inherit system's eol
16190         format if necessary.
16192 2008-02-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16194         * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
16196 2008-02-01  Kenichi Handa  <handa@m17n.org>
16198         * coding.c (decode_eol): Pay attention to buffer relocation in
16199         del_range_2.
16200         (decode_coding): Call decode_eol before restoring undo_list.
16202 2008-02-01  Kenichi Handa  <handa@m17n.org>
16204         * charset.c (Fdefine_charset_internal): Fix setting of
16205         emacs_mule_bytes.
16207 2008-02-01  Kenichi Handa  <handa@m17n.org>
16209         * keyboard.c (read_char): Check if C is a character or not before
16210         looking up Vkeyboard_translate_table.
16212 2008-02-01  Kenichi Handa  <handa@m17n.org>
16214         * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
16215         condition to terminate the loop.
16217 2008-02-01  Kenichi Handa  <handa@m17n.org>
16219         * coding.c (produce_composition): Compare charbuf[i] instead of
16220         args[i] against 0.
16221         (Fterminal_coding_system): Use EQ to compare Lisp objects.
16223 2008-02-01  Kenichi Handa  <handa@m17n.org>
16225         * coding.c (DECODE_COMPOSITION_START): If the source is short, set
16226         coding->result to CODING_RESULT_INSUFFICIENT_SRC.
16227         (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
16228         detect_coding.
16229         (emacs_mule_char): Handle old style (Emacs 20) component character
16230         of a composition.
16231         (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
16232         (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
16233         composition rule.
16234         (decode_coding_emacs_mule): Handle invalid bytes correctly.
16236 2008-02-01  Kenichi Handa  <handa@m17n.org>
16238         * coding.c (encode_coding_ccl): Allocate destination dynamically
16239         when necessary.
16241 2008-02-01  Kenichi Handa  <handa@m17n.org>
16243         * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
16244         the loop.  When quitted, show a proper error message.
16246 2008-02-01  Kenichi Handa  <handa@m17n.org>
16248         * xterm.c (x_set_glyph_string_clipping_exactly): Set
16249         src->clip_head and src->clip_tail temporarily instead of src->hl.
16251         * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
16252         character sequence.
16253         (Fccl_execute_on_string): Use ASET, not XSET.
16255 2008-02-01  Kenichi Handa  <handa@m17n.org>
16257         * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
16259 2008-02-01  Kenichi Handa  <handa@m17n.org>
16261         * coding.c (decode_coding): Fix the condition of terminating the
16262         decoding loop.
16264 2008-02-01  Kenichi Handa  <handa@m17n.org>
16266         * data.c (Faset): On setting a character bigger than 255 in a
16267         unibyte string, signal an error instead of make the string multibyte.
16269 2008-02-01  Kenichi Handa  <handa@m17n.org>
16271         * charset.c (map_charset_chars): Fix for ascii-compatible charset
16272         made by a mapping table.
16274 2008-02-01  Kenichi Handa  <handa@m17n.org>
16276         * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
16277         not.
16278         (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
16279         (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
16281         * xterm.c (x_draw_composite_glyph_string_foreground): Check
16282         s->face is NULL or not.
16284 2008-02-01  Kenichi Handa  <handa@m17n.org>
16286         * xterm.c (x_set_glyph_string_clipping_exactly): New function.
16287         (x_draw_glyph_string): Fix drawing of right_overhang and
16288         left_overhang around/on cursor.
16290         * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
16292 2008-02-01  Kenichi Handa  <handa@m17n.org>
16294         * xdisp.c (x_produce_glyphs): Handle composition with TAB.
16296 2008-02-01  Kenichi Handa  <handa@m17n.org>
16298         * coding.c (Fdefine_coding_system_internal)
16299         (Fdefine_coding_system_alias): Avoid a duplicated element in
16300         Vcoding_system_alist.
16302 2008-02-01  Kenichi Handa  <handa@m17n.org>
16304         * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
16306         * coding.c (Qcoding_system_define_form): New variable.
16307         (syms_of_coding): Intern and staticpro it.
16308         (Fcoding_system_p): Check Qcoding_system_define_form.
16309         (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
16311         * coding.h (CODING_SYSTEM_P): If ID is not available, call
16312         Fcoding_system_p.
16313         (CHECK_CODING_SYSTEM): If ID is not available, call
16314         Fcheck_coding_system.
16315         (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
16316         Try also Fcheck_coding_system.
16318 2008-02-01  Kenichi Handa  <handa@m17n.org>
16320         * coding.c (code_conversion_restore): GCPRO arg.
16322 2008-02-01  Kenichi Handa  <handa@m17n.org>
16324         * character.c (lisp_string_width): Check multibyteness of STRING.
16326 2008-02-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16328         * macterm.c (mac_encode_char): Call ccl_driver with the last arg
16329         Qnil.  Use JIS_TO_SJIS instead of ENCODE_SJIS.
16330         (decode_mac_font_name): Use decode_coding_c_string instead of
16331         decode_coding.
16332         (x_load_font): Initialize fontp->fontset to -1.  Set
16333         fontp->encoding_type.
16335 2008-02-01  Kenichi Handa  <handa@m17n.org>
16337         * search.c (search_buffer): Give up BM search on case-fold-search
16338         if one of a target character has a case-equivalence of different
16339         byte length even if that target character is an ASCII.
16340         (simple_search): Fix calculation of byte length of matched text.
16341         (boyer_moore): Fix handling of case-equivalent multibyte characters.
16343 2008-02-01  Kenichi Handa  <handa@m17n.org>
16345         * coding.c (decode_coding): Fix handling of invalid bytes.
16347 2008-02-01  Kenichi Handa  <handa@m17n.org>
16349         * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
16350         Unicode characters.
16352 2008-02-01  Kenichi Handa  <handa@m17n.org>
16354         * coding.c (encode_coding_object): If a pre-write-conversion
16355         function makes a new buffer, kill it.
16357 2008-02-01  Kenichi Handa  <handa@m17n.org>
16359         * coding.c (QCascii_compatible_p): New variable.
16360         (syms_of_coding): Initialize it.
16361         (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
16362         calling string_char.
16363         (record_conversion_result): Add `default:' case.
16364         (coding_charset_list): Delete unused variable `coding_type'.
16365         (Fdefine_coding_system_internal): Add `ascii-compatible-p'
16366         property in the plist of the coding system.
16367         (Fcoding_system_put): Check QCascii_compatible_p.
16369 2008-02-01  Miles Bader  <miles@gnu.org>
16371         * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
16372         removed calculation of frame `f', as it's now used.
16374 2008-02-01  Kenichi Handa  <handa@m17n.org>
16376         * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
16377         (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
16378         (UNIDATA): New variable.
16379         (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
16380         (bootstrap-emacs${EXEEXT}): Depends on charprop.el.  Run
16381         $(RUN_TEMACS) unconditionally.
16383 2008-02-01  Kenichi Handa  <handa@m17n.org>
16385         * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
16386         (admindir): New variable.
16387         ($(lispsource)international/charprop.el): New target.
16389 2008-02-01  Miles Bader  <miles@gnu.org>
16391         * character.c (chars-in-region): Remove obsolete function.
16392         (syms_of_character): Remove its initialization.
16394 2008-02-01  Benjamin Riefenstahl  <b.riefenstahl@turtle-trading.net>
16396         * w32select.c (validate_coding_system)
16397         (setup_windows_coding_system): New functions.
16398         (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
16399         setup_windows_coding_system.
16400         (setup_config, Fw32_get_clipboard_data): Use
16401         validate_coding_system.
16402         (Fx_selection_exists): Move call to setup_config to a place
16403         where signals are allowed.
16405         * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
16406         (Fcheck_coding_system): Add declarations.
16408 2008-02-01  Kenichi Handa  <handa@m17n.org>
16410         * charset.c (load_charset_map_from_vector): Fix for the first iteration.
16412 2008-02-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16414         * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
16415         string as the second argument for x_new_fontset.
16417 2008-02-01  Kenichi Handa  <handa@m17n.org>
16419         * coding.c (decode_coding_object): Use safe_call1 instead of call1.
16420         (encode_coding_object): Use safe_call instead of call2.
16422 2008-02-01  Kenichi Handa  <handa@m17n.org>
16424         * fontset.c (Fset_fontset_font): Check family element of a given vector.
16426         * Makefile.in (lisp): Include charprop.el.
16428 2008-02-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16430         * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
16431         Not sure if it's unnecessary.
16433 2008-02-01  Steven Tamm  <steventamm@mac.com>
16435         * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
16436         some possibly unnecessary fontset checking code that crashed
16437         when creating a new frame.
16439 2008-02-01  Kenichi Handa  <handa@m17n.org>
16441         * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
16442         lookup_face.
16444         * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
16446         * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
16448 2008-02-01  Kenichi Handa  <handa@m17n.org>
16450         * coding.c: Cancel the change done in HEAD on 2008-02-01.
16451         (coding_charset_list): New function.
16453         * coding.h (coding_charset_list): Extern it.
16455 2008-02-01  Kenichi Handa  <handa@m17n.org>
16457         * fontset.c (Fset_fontset_font): Call find_font_encoding with
16458         concatenation of family and registry.
16460 2008-02-01  Kenichi Handa  <handa@m17n.org>
16462         * character.h (BYTE8_STRING): Fix typo.
16464         * editfns.c (Ftranslate_region_internal): Don't convert unibyte
16465         string to multibyte (sync to HEAD).
16467         * casefiddle.c (casify_region): Handle changes in byte-length
16468         using replace_range_2 (sync to HEAD).
16470 2008-02-01  Andreas Schwab  <schwab@suse.de>
16472         * chartab.c (map_char_table): GCPRO table and arg.
16474 2008-02-01  Kenichi Handa  <handa@m17n.org>
16476         * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
16477         already at limit.
16479 2008-02-01  Kenichi Handa  <handa@m17n.org>
16481         * fontset.c (fs_load_font): Use fast_string_match_ignore_case
16482         instead of fast_c_string_match_ignore_case.
16483         (find_font_encoding): Change argument to Lisp_Object.  Use
16484         fast_string_match_ignore_case instead of
16485         fast_c_string_match_ignore_case.  Change caller.
16487 2008-02-01  Kenichi Handa  <handa@m17n.org>
16489         * xdisp.c (get_next_display_element): In unibyte case, decide to
16490         display in octal form by checking a character by
16491         UNIBYTE_CHAR_HAS_MULTIBYTE_P.
16493         * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
16495         * character.c (unibyte_has_multibyte_table): New variable.
16497         * character.h (unibyte_has_multibyte_table): Extern it.
16498         (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
16500 2008-02-01  Kenichi Handa  <handa@m17n.org>
16502         * coding.c (encode_coding_iso_2022): Fix handling of charset
16503         annotation.
16505 2008-02-01  Kenichi Handa  <handa@m17n.org>
16507         * coding.c (setup_coding_system): If coding_system is nil, use
16508         Qundecided.
16509         (Fterminal_coding_system): Return nil if terminal coding system is
16510         `undecided'.
16511         (syms_of_coding): Define coding-system `undecided' here.  Setup
16512         terminal_coding as `undecided'.
16514 2008-02-01  Kenichi Handa  <handa@m17n.org>
16516         * xdisp.c (message_dolog, set_message_1): Call
16517         unibyte_char_to_multibyte with arg type int.
16519         * lread.c (read1): Fix reading of a char-table.
16521         * print.c (print_object): Include sub char-table in circularities
16522         detection.
16524 2008-02-01  Kenichi Handa  <handa@m17n.org>
16526         * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
16527         Append the found sequences in car of ARGS instead of prepending.
16529 2008-02-01  Kenichi Handa  <handa@m17n.org>
16531         * fileio.c (report_file_error): Make a unibyte string from
16532         strerror (errorno).
16533         (Fsubstitute_in_file_name): Fix the arg to
16534         unibyte_char_to_multibyte.  It is evaluated twice.
16536 2008-02-01  Kenichi Handa  <handa@m17n.org>
16538         * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
16540 2008-02-01  Kenichi Handa  <handa@m17n.org>
16542         * coding.c (detect_coding_utf_16): Don't set detect_info->found if
16543         BOM is not found.
16544         (detect_coding, detect_coding_system): Optimization for ISO-2022
16545         when no 8-bit data is found.
16547 2008-02-01  Jason Rumney  <jasonr@gnu.org>
16549         * w32fns.c (x_to_w32_font): Update to use new coding struct.
16551 2008-02-01  Kenichi Handa  <handa@m17n.org>
16553         * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
16554         CHARS.
16556 2008-02-01  Steven Tamm  <steventamm@mac.com>
16558         * macterm.c (mac_encode_char): Add charset argument and update
16559         to use encoding_type.
16560         (x_new_font, x_new_fontset): Merge in changes from xterm.c;
16561         switch to pure fontset.
16562         (decode_mac_font_name): Temporarily remove decoding.
16563         (x_font_name_to_mac_font_name): Temporarily remove encoding.
16564         (x_load_font): Temporarily remove encoding.
16566 2008-02-01  Kenichi Handa  <handa@m17n.org>
16568         * xfaces.c (Fface_font): If frame is not on a window system,
16569         ignore CHARACTER arg.  If HAVE_WINDOW_SYSTEM is not defined, don't
16570         refer to face->font.
16571         (split_font_name_into_vector, build_font_name_from_vector)
16572         (lookup_non_ascii_face, realize_non_ascii_face): Define them only
16573         when HAVE_WINDOW_SYSTEM is defined.
16575 2008-02-01  Kenichi Handa  <handa@m17n.org>
16577         * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
16578         (x_produce_glyphs): Fix setting of members of cmp in case
16579         cmp->glyph_len is zero.
16581         * fontset.c (Fset_fontset_font): Fix docstring.
16582         (Ffontset_info): Make it backward compatible.  New arg ALL.
16584 2008-02-01  Kim F. Storm  <storm@cua.dk>
16586         * process.c (read_process_output): Grow decoding_buf when needed;
16587         this could cause a crash in allocate_string and compact_small_strings.
16589 2008-02-01  Kenichi Handa  <handa@m17n.org>
16591         * fileio.c (WRITE_BUF_SIZE): Delete this macro.
16593 2008-02-01  Kenichi Handa  <handa@m17n.org>
16595         * coding.c (setup_coding_system): Set coding->common_flags
16596         correctly for raw-text.
16597         (consume_chars): On encoding unibyte text by raw-text, don't check
16598         multibyte form.
16599         (encode_coding): On encoding by raw-text, never use translation tables.
16601         * fileio.c (e_write): Short cut for the case of no encoding.
16603 2008-02-01  Kenichi Handa  <handa@m17n.org>
16605         * coding.c (detect_coding, detect_coding_system): Delete unused
16606         variables.
16608 2008-02-01  Kenichi Handa  <handa@m17n.org>
16610         * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
16611         (consume_chars): Fix handling of 8-bit bytes in unibyte source.
16613 2008-02-01  Kenichi Handa  <handa@m17n.org>
16615         * coding.c (Ffind_coding_systems_region_internal): Include
16616         raw-text and no-conversion in the result.
16618 2008-02-01  Kenichi Handa  <handa@m17n.org>
16620         * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
16621         (load_font_get_repertory): Delete unnecessary check of ENCODING of
16622         FONT_DEF.
16623         (font_def_arg, add_arg, from_arg, to_arg): New args.
16624         (set_fontset_font): Change argument.
16625         (Fset_fontset_font): Fix for the case that TARGET is a script
16626         name and charset name.
16627         (new_fontset_from_font_name): Fix argument to Fnew_fontset.
16629 2008-02-01  Kenichi Handa  <handa@m17n.org>
16631         * fontset.c (fontset_font): Rename from fontset_face.  Change return
16632         value.
16633         (face_suitable_for_char_p, face_for_char): Adjust for the change
16634         of fontset_font.
16635         (make_fontset_for_ascii_face): Fix setting of the fontset element
16636         for ASCII.
16637         (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
16638         to get a font name.
16639         (Ffontset_info): Adjust for the change of fontset_font.
16641         * coding.c (emacs_mule_char): Check invalid code more rigidly.
16643         * character.h (LEADING_CODE_LATIN_1_MIN)
16644         (LEADING_CODE_LATIN_1_MAX): Delete these macros.
16646 2008-02-01  Kenichi Handa  <handa@m17n.org>
16648         * editfns.c (check_translation): New function.
16649         (Ftranslate_region_internal): Handle M:N mapping.
16651 2008-02-01  Kenichi Handa  <handa@m17n.org>
16653         * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
16655 2008-02-01  Kenichi Handa  <handa@m17n.org>
16657         * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
16658         goto invalid_code.
16659         (decode_coding_iso_2022): Fix handling of invalid designation.
16661         * fileio.c (Finsert_file_contents): Be sure to call unbind_to
16662         after calling code_conversion_save.
16664 2008-02-01  Kenichi Handa  <handa@m17n.org>
16666         * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
16668         * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
16670         * fontset.c: Include "intervals.h".
16671         (fontset_face): Fix comparing of Lisp_Objects.
16672         (free_face_fontset, new_fontset_from_font_name): Fix
16673         Lisp_Object/int mixup.
16675         * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
16677         * coding.c: Add many prototypes for static functions.
16678         (get_translation_table): Allow max_lookup to be NULL.
16679         (decode_coding, Ffind_coding_systems_region_internal)
16680         (Funencodable_char_position, Fcheck_coding_systems_region): Call
16681         get_translation_table with max_lookup NULL.
16683 2008-02-01  Kenichi Handa  <handa@m17n.org>
16685         * coding.c (get_translation_table): Declare it as Lisp_Object.
16686         (LOOKUP_TRANSLATION_TABLE): New macro.
16687         (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
16688         instead of CHAR_TABLE_REF.
16690 2008-02-01  Kenichi Handa  <handa@m17n.org>
16692         * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
16693         annotation data format.
16694         (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
16695         Change arguments FROM and TO to single argument NCHARS.  Change caller.
16696         (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
16697         (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
16698         (decode_coding_ccl, decode_coding_charset): Pay attention to
16699         coding->charbuf_used.
16700         (get_translation): New function.
16701         (produce_chars): New arguments translation_table and last_block.
16702         Translate characters here.  Return number of carryover chars.
16703         Change caller.
16704         (produce_composition): New argument pos.  Change caller.
16705         Adjust for the change of annotation data format.
16706         (produce_charset, produce_annotation): Likewise.
16707         (decode_coding, encode_coding): Don't call translate_chars.
16708         (consume_chars): New arg translation_table.  Change caller.
16709         (translate_chars): Delete.
16710         (syms_of_coding): Make translation-table's number of extra slots 2.
16712 2008-02-01  Kenichi Handa  <handa@m17n.org>
16714         * search.c (simple_search): Fix setting this_pos_byte in backward
16715         search.
16717         * coding.c (detect_coding_emacs_mule): Fix counting of encoded
16718         byte sequence.
16719         (detect_coding_ccl): Fix setting of the variable valids.
16721 2008-02-01  Kenichi Handa  <handa@m17n.org>
16723         * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
16725         * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
16727         * editfns.c (Ftranslate_region_internal): Rename from
16728         Ftranslate_region.  Accept a char-table in TABLE.
16729         (syms_of_editfns): Defsubr Stranslate_region_internal.
16731         * xfaces.c (set_lface_from_font_name): If a font is specified for
16732         a frame, generate a fontset from the font.
16733         (build_scalable_font_name): If the scalable font is requested for
16734         a specific size, don't change that size.
16735         (try_font_list): Try a scalable font also in the case that a
16736         pattern string is specified.
16738 2008-02-01  Kenichi Handa  <handa@m17n.org>
16740         * xfaces.c (Fface_font): New optional arg CHARACTER.
16742 2008-02-01  Kenichi Handa  <handa@m17n.org>
16744         * charset.h (CHARSET_OFFSET): New macro.
16746 2008-02-01  Kenichi Handa  <handa@m17n.org>
16748         * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
16750         * fontset.c (fontset_face): Handle the case that repertory is a
16751         char-table.
16752         (find_font_encoding): Return nil for unknown encoding.
16753         (Fset_fontset_font): Ignore a font of unknown encoding.
16755 2008-02-01  Kenichi Handa  <handa@m17n.org>
16757         * keymap.c (describe_vector): Handle default value of a char table.
16759         * fontset.c (fontset_face): Handle fallback fonts correctly.
16760         (Ffontset_info): Return infomation about fallback fonts.
16762 2008-02-01  Kenichi Handa  <handa@m17n.org>
16764         * fontset.c (FONTSET_DEFAULT): New macro.
16765         (FONTSET_ADD, fontset_add): Handle the case that range is nil.
16766         (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
16767         the case that it is nil.
16768         (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
16769         (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
16771         * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
16772         subset or superset.
16774 2008-02-01  Kenichi Handa  <handa@m17n.org>
16776         * emacs.c (main): Call init_charset after syms_of_XXX.
16778         * charset.c (Vcharset_map_directory): Delete.
16779         (Vcharset_map_path): New variable.
16780         (load_charset_map_from_file): Use Vcharset_map_path instead.
16781         (init_charset): Initialize Vcharset_map_path.
16782         (syms_of_charset): Delete declaration of "charset-map-directory",
16783         add declaration of "charset-map-path".
16785 2008-02-01  Kenichi Handa  <handa@m17n.org>
16787         * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
16788         ASCII only string.
16790         * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
16792         * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
16793         (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
16795 2008-02-01  Kenichi Handa  <handa@m17n.org>
16797         * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
16799         * coding.c (QCmnemonic, QCdefalut_char)
16800         (QCdecode_translation_table, QCencode_translation_table)
16801         (QCpost_read_conversion, QCpre_write_conversion): New variables.
16802         (get_translation_table): Return a list of translation tables if
16803         necessary.
16804         (decode_coding): Call get_translation_table with ENCODEP 0.
16805         (char_encodable_p): If translation_table is non-nil, always call
16806         translate_char.
16807         (Fdefine_coding_system_internal): Accept list of translation
16808         tables as :encode-translation-table and :decode-translation-table.
16809         (Fcoding_system_put): New function.
16810         (syms_of_coding): Declare new symbols.  Defsubr
16811         Scoding_system_put.
16812         (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
16813         typically JISX0212.
16815         * charset.c (map_charset_chars): Fix arg to map_charset_chars in
16816         when the charset is superset type.
16818         * character.c (translate_char): Accept list of translation tables.
16820 2008-02-01  Kenichi Handa  <handa@m17n.org>
16822         * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
16823         (CODING_ATTR_TRANS_TBL): New macro.
16825         * coding.c (get_translation_table): New function.
16826         (translate_chars): Fix the bug of skipping annotation data.
16827         (decode_coding, encode_coding): Utilize get_translation_table.
16828         (char_encodable_p, Funencodable_char_position): Translate char if
16829         necessary.
16830         (Ffind_coding_systems_region_internal)
16831         (Fcheck_coding_systems_region): Setup translation table for encode
16832         in a coding system attribute vector in advance.
16833         (Fdefine_coding_system_internal): Allow a symbol as translation
16834         table.  For shift-jis type coding system, allow 4th charset.
16836 2008-02-01  Kenichi Handa  <handa@m17n.org>
16838         * coding.c (decode_coding_sjis): Check the first byte rigidly.
16840         * xdisp.c (get_next_display_element): Pass -1 as POS to
16841         FACE_FOR_CHAR if displaying a C-string.
16843 2008-02-01  Kenichi Handa  <handa@m17n.org>
16845         * composite.c (get_composition_id): Handle xoff and yoff in a
16846         composition rule.
16848         * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
16849         (struct composition): New member lbearing and rbearing.
16851         * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
16852         (x_get_glyph_overhangs): Handle a composition glyph.
16853         (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
16855         * xterm.c (x_compute_glyph_string_overhangs): Handle also a
16856         composition glyph.
16858 2008-02-01  Kenichi Handa  <handa@m17n.org>
16860         * print.c: Include charset.h.
16861         (Vprint_charset_text_property): New variable.
16862         (Qdefault): Extern it.
16863         (PRINT_STRING_NON_CHARSET_FOUND)
16864         (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
16865         (print_check_string_result): New variable.
16866         (print_check_string_charset_prop): New function.
16867         (print_prune_charset_plist): New variable.
16868         (print_prune_string_charset): New function.
16869         (print_object): Call print_prune_string_charset if
16870         Vprint_charset_text_property is not t.
16871         (print_interval): Print nothing if interval->plist is nil.
16872         (syms_of_print): Declare Vprint_charset_text_property as a lisp
16873         variable.  Init and staticpro print_prune_charset_plist.
16875 2008-02-01  Kenichi Handa  <handa@m17n.org>
16877         * fontset.c (new_fontset_from_font_name): Use the specified font
16878         for all characters in the new fontset.
16880         * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
16881         OBJECT args.
16883         * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
16884         OBJECT args for composition too.
16886         * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
16887         OBJECT args.
16889 2008-02-01  Kenichi Handa  <handa@m17n.org>
16891         * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
16893         * fontset.c (reorder_font_vector): Adjust for the change of
16894         FONT_DEF format.
16895         (fontset_face): New arg id.  Change caller.
16896         (face_for_char): New args pos and object.
16897         (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
16898         (fs_query_fontset): Check NAME by Fassoc too.
16899         (Fset_fontset_font): Allow non-XLFD font name.
16900         (Ffontset_info): Adjust for the change of FONT_DEF format.
16902         * fontset.h (face_for_char): Adjust prototype.
16904         * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
16905         (append_space, extend_face_to_end_of_line)
16906         (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
16907         (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
16909         * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
16910         POS and OBJECT args.
16912         * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
16913         POS and OBJECT args.
16915 2008-02-01  Jason Rumney  <jasonr@gnu.org>
16917         * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
16918         of GlobalAlloc'ed memory.
16920 2008-02-01  Kenichi Handa  <handa@m17n.org>
16922         * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
16924         * charset.h (charset_table_used): Delete extern.
16926         * charset.c (charset_table_used): Make it static.
16927         (map_charset_chars): Fix args to c_function with.
16929         * chartab.c (map_sub_char_table_for_charset): Fix args to
16930         c_function with.
16932         * coding.h (enum coding_result_code): Delete
16933         CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
16935         * coding.c (Qinsufficient_source, Qinconsistent_eol)
16936         (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
16937         (Vlast_code_conversion_error): New variables.
16938         (syms_of_coding): DEFSYM or DEFVAR_LISP them.
16939         (ONE_MORE_BYTE): Record error if any instead of signaling an
16940         error.  If non-ASCII multibyte char is found, return the negative
16941         value of the code.  All callers changed to check it.
16942         (ONE_MORE_BYTE_NO_CHECK): Likewise.
16943         (record_conversion_result): New function.  Change all codes setting
16944         coding->result to call this function.
16945         (detect_coding_utf_8, decode_coding_utf_8)
16946         (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
16947         Don't use the local variable incomplete.
16948         (emacs_mule_char): Change the second arg to `const'.
16949         (decode_coding): Fix of flushing out unprocessed data.
16950         (make_conversion_work_buffer): Fix making of a work buffer.
16951         (decode_coding_object): Return coding->dst_object.
16953         * fontset.c (set_fontset_font): Fix args.
16955         * lisp.h (CHARACTERBITS): Define as 22.
16957         * process.c (send_process): Be sure to set coding->src_multibyte.
16959         * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
16961 2008-02-01  Kenichi Handa  <handa@m17n.org>
16963         * xdisp.c (handle_auto_composed_prop): Give limit to
16964         Fnext_single_char_property_change.
16966 2008-02-01  Kenichi Handa  <handa@m17n.org>
16968         * composite.c (syms_of_composite): Don't make the composition hash
16969         table weak.
16971         * fontset.c (Fset_fontset_font): Fix docstring.
16973         * lisp.h (detect_coding_system): Adjust prototype.
16975         * fileio.c (kill_workbuf_unwind): Delete this function.
16976         (Finsert_file_contents): Adjust the call of detect_coding_system.
16977         Get conversion_buffer by code_conversion_save.  Use the macro
16978         CODING_MAY_REQUIRE_DECODING.  After decoding, update
16979         coding_system.
16981         * coding.h (make_conversion_work_buffer): Delete extern.
16982         (code_conversion_save): Extern it.
16984         * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
16985         (CODING_GET_INFO): Delete argument eol_type.  Change callers.
16986         (decode_coding_utf_8): Don't do eol converion.
16987         (detect_coding_utf_16): Check coding->src_chars, not
16988         coding->src_bytes.  Add heuristics for those that have no signature.
16989         (decode_coding_emacs_mule, decode_coding_iso_2022)
16990         (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
16991         Don't do eol converion.
16992         (adjust_coding_eol_type): Return a new coding system.
16993         (detect_coding): Don't detect eol.  Fix for utf-16 detection.
16994         (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
16995         each change.
16996         (decode_coding): Pay attention to undo_list.  Do eol conversion for
16997         all types of coding-systems (if necessary).
16998         (Vcode_conversion_work_buf_list): Delete it.
16999         (Vcode_conversion_reused_workbuf): Rename from
17000         Vcode_conversion_reused_work_buf.
17001         (Vcode_conversion_workbuf_name): New variable.
17002         (reused_workbuf_in_use): New variable.
17003         (make_conversion_work_buffer): Delete the arg DEPTH.
17004         (code_conversion_restore): Change argument to cons.
17005         (code_conversion_save): Delete the argument BUFFER.  Change callers.
17006         (detect_coding_system): New argument src_chars.  Change callers.
17007         Fix for utf-16 detection.
17008         (init_coding_once): Don't use ISO_carriage_return.
17009         (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
17010         reused_workbuf_in_use.
17012 2008-02-01  Kenichi Handa  <handa@m17n.org>
17014         * keymap.c (store_in_keymap): Pay attention to the case that idx
17015         is a cons specifying a character range.
17017 2008-02-01  Kenichi Handa  <handa@m17n.org>
17019         * xdisp.c (handle_auto_composed_prop): Fix the case of returning
17020         HANDLED_RECOMPUTE_PROPS.
17022         * coding.c (Fdefine_coding_system_internal): Fix checking of
17023         ascii compatibility.
17025 2008-02-01  Kenichi Handa  <handa@m17n.org>
17027         * charset.c (find_charsets_in_text): Delete unused locale variable.
17028         (Fset_charset_priority): Update Vemacs_mule_charset_list too.
17030         * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
17031         Resync charset_list to Vemacs_mule_charset_list.
17033         * keymap.c (store_in_keymap): Pay attention to the case that idx
17034         is a cons specifying a character range.
17036 2008-02-01  Kenichi Handa  <handa@m17n.org>
17038         * composite.c (update_compositions): Bind inhibit-read-only, etc
17039         to t before calling remove-list-of-text-properties.
17041         * print.c (print_object): Always print ASCII chars as is.
17043 2008-02-01  Kenichi Handa  <handa@m17n.org>
17045         * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
17047         * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
17048         is a char table.
17050 2008-02-01  Kenichi Handa  <handa@m17n.org>
17052         * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
17054 2008-02-01  Kenichi Handa  <handa@m17n.org>
17056         * xfaces.c (set_lface_from_font_name): Fix for the case that
17057         FONTNAME is not fontset name.
17059 2008-02-01  Kenichi Handa  <handa@m17n.org>
17061         * fns.c (base64_encode_1): Fix previous change.
17063 2008-02-01  Kenichi Handa  <handa@m17n.org>
17065         * fontset.c (set_fontset_font): New function.
17066         (Fset_fontset_font): If a font is specified for a charset, use
17067         map_charset_chars to store the font spec in a fontset.
17069 2008-02-01  Kenichi Handa  <handa@m17n.org>
17071         * fontset.c (fontset_face): Create a fallback fontset on demand.
17072         (make_fontset): Don't create a fallback fontset here.
17073         (free_face_fontset): Free a fallback fontset (if any) too.
17074         (n_auto_fontsets): Delete this variable.
17075         (auto_fontset_alist): New variable.
17076         (new_fontset_from_font_name): Check auto_fontset_alist.
17077         (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
17078         (Ffontset_list_all) [FONTSET_DEBUG]: New function.
17079         (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
17080         Defsubr Sfontset_list_all.
17082 2008-02-01  Kenichi Handa  <handa@m17n.org>
17084         * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
17086 2008-02-01  Kenichi Handa  <handa@m17n.org>
17088         * fontset.c (Fnew_fontset): Check NAME more rigidly.
17090 2008-02-01  Kenichi Handa  <handa@m17n.org>
17092         * editfns.c (Fgoto_char): Fix docstring.
17094 2008-02-01  Kenichi Handa  <handa@m17n.org>
17096         * insdel.c (insert_from_gap): Adjust intervals correctly.
17098 2008-02-01  Jason Rumney  <jasonr@gnu.org>
17100         * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
17101         (pfnGetFontUnicodeRanges): New dynamically loaded function.
17102         (w32_initialize): Try to load it.
17103         (x_get_font_repertory): Use it if available.
17104         (w32_encode_char): Add shortcut for unicode output.
17106         * w32fns.c (w32_load_system_font): Default charset to -1.
17107         (x_to_w32_charset): Match all fonts for unicode.
17108         (w32_to_x_charset): New parameter matching.  Don't return partial
17109         or wildcard charsets.
17110         (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
17111         (w32_codepage_for_font): Return CP_UNICODE for unicode.
17112         (w32_to_x_font): Match charset to real charset.
17113         (enum_font_cb2): Always list unicode versions.
17115         * makefile.w32-in (temacs): Increase EMHEAP.
17117 2008-02-01  Jason Rumney  <jasonr@gnu.org>
17119         * w32term.c (w32_encode_char): New charset parameter.
17120         font_info.encoding becomes encoding_type.
17121         (x_get_font_repertory): New function.  Warning: stub only!
17122         (x_new_font): Return quickly if font already set.
17123         (x_new_fontset): fontsetname parameter is Lisp_Object.
17124         Use new fs_query_fontset.  Try new_fontset_from_font_name.
17125         Use fontset_name for return value.
17127         * w32term.h: Declare x_get_font_repertory.
17129         * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
17130         place of find_charset_in_text.  Use encode_coding_object in place
17131         of encode_coding.
17132         (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
17133         decode_coding.
17135         * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
17136         of x_new_fontset.
17137         (w32_load_system_font): Initialize charset as unicode.
17138         font_info.encoding becomes encoding_type.
17139         (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
17140         (x_to_w32_font): Use encode_coding_object in place of encode_coding.
17141         (syms_of_w32fns): Set get_font_repertory_func.
17143         * w32console.c: Include character.h.  Use terminal_encode_buffer
17144         from term.c.
17145         (write_glyphs): Use new version of encode_terminal_code.  Use
17146         encode_coding_object in place of encode_coding.
17148         * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
17149         encoding becomes encoding_type.
17151         * term.c (terminal_encode_buffer): Make externally visible.
17153         * makefile.w32-in: Add character.h dependancies.
17154         (character.o, chartab.o): New targets.
17156 2008-02-01  Kenichi Handa  <handa@m17n.org>
17158         * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
17159         CODING_ID_EOL_TYPE.
17161 2008-02-01  Andreas Schwab  <schwab@suse.de>
17163         * coding.c (produce_chars): Revert last change.
17165 2008-02-01  Kenichi Handa  <handa@m17n.org>
17167         * charset.h (charset_unicode): Extern it.
17169         * charset.c (string_xstring_p): Check by (C >= 0x100).
17170         (find_charsets_in_text): Change format of the arc CHARSETS.  New
17171         arg MULTIBYTE.
17172         (Ffind_charset_region, Ffind_charset_string): Adjust for the
17173         change of find_charsets_in_text.
17174         (Fsplit_char): Fix doc.  Never return unknown.
17176         * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
17178         * coding.c (Fdefine_coding_system_alias): Update
17179         Vcoding_system_list.
17181         * fontset.c (load_font_get_repertory): Pay attention to the case
17182         that ENCODING of a font is specified by a char-table.
17184         * xterm.c (x_get_font_repertory): Handle the case that the
17185         encoding of font is other than Unicode.
17187 2008-02-01  Kenichi Handa  <handa@m17n.org>
17189         * term.c (encode_terminal_code): Don't handle glyph-table.  Check
17190         if a character is encodable by the terminal coding system.  If
17191         not, produces proper number of `?'s.  Update
17192         terminal_encode_buffer and terminal_encode_buf_size if necessary.
17193         (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
17195 2008-02-01  Kenichi Handa  <handa@m17n.org>
17197         * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
17198         variables.
17199         (encode_terminal_code): Change argument.  Encode multiple
17200         characters at once.  Store the result of encoding in
17201         terminal_encode_buffer.
17202         (write_glyphs, insert_glyphs): Adjust for the change of
17203         encode_terminal_code.
17204         (term_init): Initialize terminal_encode_buffer and
17205         terminal_encode_buf_size.
17207         * coding.c (consume_chars): If coding->src_object is nil, don't
17208         check annotation.
17210 2008-02-01  Kenichi Handa  <handa@m17n.org>
17212         * character.c (char_string): Use ASCII_CHAR_P instead of
17213         SINGLE_BYTE_CHAR_P.
17215 2008-02-01  Kenichi Handa  <handa@m17n.org>
17217         * xdisp.c (handle_auto_composed_prop): Check if the last
17218         characters of auto-composed region is newly composed with the
17219         following characters.
17220         (handle_composition_prop): Fix checking of point being inside
17221         composition.
17223 2008-02-01  Kenichi Handa  <handa@m17n.org>
17225         * fns.c (concat): Don't change multibyteness of the result by
17226         concatenating an 8-bit character.
17228         * data.c (Faset): Check newelt by CHECK_CHARACTER.  Don't change
17229         multibyteness of the result when newelt is an 8-bit character.
17231 2008-02-01  Dave Love  <fx@gnu.org>
17233         * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
17234         EMACS_INT.
17236         * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
17238         * xfaces.c (face_numeric_value): Declare dim size_t.
17239         (Finternal_lisp_face_equal_p): Remove unused f.
17241         * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
17242         (MATRIX_ROW): Remove unused vars.
17243         (draw_glyphs, x_insert_glyphs, fast_find_position)
17244         (fast_find_position, fast_find_string_pos): Use EMACS_INT for
17245         byte/char counts.
17247         * regex.c (regex_compile): Remove unused var.
17249         * minibuf.c (Fminibuffer_complete_word): Remove unused var.
17251         * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
17252         (Faccessible_keymaps, where_is_internal): Remove unused vars.
17254         * keyboard.c (cancel_hourglass_unwind): Return Qnil.
17256         * frame.c (frame_name_fnn_p): Make len EMACS_INT.
17258         * fileio.c (Fwrite_region): Remove unused var.
17260         * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
17261         (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
17263         * composite.c (Fremove_list_of_text_properties): Declare.
17265         * coding.c (inhibit_pre_post_conversion): Remove (unused).
17266         (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
17267         (coding_inherit_eol_type): Remove unused attrs.
17268         (detect_coding): Cast arg of detect_eol.
17270         * charset.c (syms_of_charset): Remove unused var p.
17271         (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
17272         byte/char counts.
17274         * casetab.c (set_case_table): Remove unused var.
17276         * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
17277         unused vars.
17279 2008-02-01  Dave Love  <fx@gnu.org>
17281         * xterm.c (x_bitmap_mask): Declare.
17283 2008-02-01  Dave Love  <fx@gnu.org>
17285         * xterm.c (x_term_init): Fix type error.
17287         * lisp.h: Add Funibyte_char_to_multibyte.
17289         * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
17290         (Fset_coding_system_priority): Doc fix.
17292         * ccl.c (ccl_driver): Fix arg of CHARACTERP.
17294         * indent.c (check_composition): Make start and end EMACS_INT.
17296         * character.c (lisp_string_width): Make ignore and end EMACS_INT.
17298         * xdisp.c (handle_composition_prop, check_point_in_composition):
17299         Make buffer positions EMACS_INT.
17301         * composite.c (find_composition, run_composition_function)
17302         (update_compositions, Ffind_composition_internal): Make buffer
17303         positions EMACS_INT.
17305         * composite.h (find_composition, update_compositions): Make
17306         position args EMACS_INT.
17308         * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
17310         * intervals.c (get_property_and_range):
17311         * intervals.h (get_property_and_range): Make start and end EMACS_INT.
17313         * unexalpha.c: Don't include varargs.h.
17315 2008-02-01  Dave Love  <fx@gnu.org>
17317         * coding.h (ENCODE_UTF_8): New.
17319         * Makefile.in (gtkutil.o): Depend on coding.h.
17321         * coding.c (Fset_coding_system_priority): Doc fix.
17323 2008-02-01  Kenichi Handa  <handa@m17n.org>
17325         * fileio.c (Finsert_file_contents): Call setup_coding_system in
17326         the case of auto saving.
17328 2008-02-01  Andreas Schwab  <schwab@suse.de>
17330         * chartab.c (map_char_table, map_char_table_for_charset): Protect
17331         `range' from GC.
17333 2008-02-01  Kenichi Handa  <handa@m17n.org>
17335         * coding.c (decode_coding_sjis): Check bytes more rigidly.
17337 2008-02-01  Kenichi Handa  <handa@m17n.org>
17339         * fileio.c (choose_write_coding_system): Return a decided coding system.
17340         (Fwrite_region): Set Vlast_coding_system_used to the return value
17341         of choose_write_coding_system.
17343 2008-02-01  Kenichi Handa  <handa@m17n.org>
17345         * charset.c (Fset_charset_priority): Pay attention to duplicated
17346         arguments.
17348         * coding.c (QCcategory): New variable.
17349         (syms_of_coding): Defsym it.  Set all elements of
17350         Vcoding_category_table and their symbol values.
17351         (Fset_coding_system_priority): Doc fix.  Update symbol qvalues of
17352         coding-category-XXX, and coding-category-list.
17353         (Fdefine_coding_system_internal): Add category in the plist.
17355 2008-02-01  Kenichi Handa  <handa@m17n.org>
17357         * callproc.c (Fcall_process): Handle carryover correctly.
17359         * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
17360         (raw_text_coding_system): Check NILP (coding_system).
17361         (coding_inherit_eol_type): Check NILP (coding_system) and
17362         NILP (parent).
17363         (consume_chars): Fix for the case of raw-text.
17365         * process.c (read_process_output): Handle carryover correctly.
17367 2008-02-01  Dave Love  <fx@gnu.org>
17369         * regex.c (re_search_2): Fix last change.
17371 2008-02-01  Kenichi Handa  <handa@m17n.org>
17373         * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
17374         target_multibyte.  Even in a unibyte case, return a converted
17375         multibyte char.
17376         (GET_CHAR_AFTER): New macro.
17377         (PATFETCH): Translate via multibyte char.
17378         (HANDLE_UNIBYTE_RANGE): Delete this macro.
17379         (SETUP_MULTIBYTE_RANGE): New macro.
17380         (regex_compile): Setup compiled code so that its multibyteness
17381         matches that of a target.  Fix the handling of "[X-YZ]" using
17382         SETUP_MULTIBYTE_RANGE.
17383         (analyse_first) <charset>: For filling fastmap for all multibyte
17384         characters, don't check by BASE_LEADING_CODE_P.
17385         (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp).  It is
17386         the same as RE_MULTIBYTE_P (bufp) now.
17387         (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
17388         (TARGET_CHAR_AND_LENGTH): Delete this macro.
17389         (TRANSLATE_VIA_MULTIBYTE): New macro.
17390         (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
17391         It is the same as RE_MULTIBYTE_P (bufp) now.
17392         <exactn>: Translate via multibyte.
17393         <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH.  Don't
17394         translate it.
17395         <charset, charset_not>: Fetch a character by
17396         RE_STRING_CHAR_AND_LENGTH.  Translate via multibyte.
17397         <duplicate>: Call bcmp_translate with the last arg `multibyte'.
17398         <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
17399         notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
17400         by GET_CHAR_AFTER.
17401         (bcmp_translate): Likewise.
17403         * search.c (compile_pattern): Check the member target_multibyte,
17404         not the member multibyte of buf.
17406         * lread.c (read1): While reading a string, set force_singlebyte
17407         and force_multibyte correctly.
17409         * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
17410         up of unibyte_to_multibyte_table.
17412 2008-02-01  Kenichi Handa  <handa@m17n.org>
17414         * coding.c (setup_coding_system): If coding has
17415         post-read-conversion or pre-write-conversion, set
17416         CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
17417         respectively.
17418         (decode_coding_gap): Run post-read-conversion if any.
17420         * fileio.c (Finsert_file_contents): Even if we read into a
17421         unibyte buffer, check if we must decode the result or not.
17423 2008-02-01  Kenichi Handa  <handa@m17n.org>
17425         * coding.c (make_conversion_work_buffer): Change the work buffer
17426         name to the same one as that of Emacs 21.
17428 2008-02-01  Kenichi Handa  <handa@m17n.org>
17430         * coding.h (make_conversion_work_buffer): Adjust prototype.
17431         (code_conversion_restore): Don't extern it.
17433         * coding.c (detected_mask): Delete unused variable.
17434         (decode_coding_iso_2022): Pay attention to the byte sequence of
17435         CTEXT extended segment, and retain those bytes as is.
17436         (decode_coding_ccl): Delete unused variable `valids'.
17437         (setup_coding_system): Delete unused variable `category'.
17438         (consume_chars): Delete unused variable `category'.  Make it work
17439         for non-multibyte case.
17440         (make_conversion_work_buffer): Change argument.
17441         (saved_coding): Delete unused variable.
17442         (code_conversion_restore): Don't check saved_coding->destination.
17443         (code_conversion_save): New function.
17444         (decode_coding_gap, encode_coding_gap): Call code_conversion_save
17445         instead of record_unwind_protect.
17446         (decode_coding_object, encode_coding_object): Likewise.  Recover PT.
17447         (detect_coding_system): Delete unused variable `mask'.
17448         (Fdefine_coding_system_internal): Delete unused variable id.
17450         * fileio.c (kill_workbuf_unwind): New function.
17451         (Finsert_file_contents): On replacing, call
17452         make_conversion_work_buffer with correct args, and call
17453         record_unwind_protect with the first arg kill_workbuf_unwind.
17455         * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
17457 2008-02-01  Kenichi Handa  <handa@m17n.org>
17459         * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
17460         (fontset_add): Fix for the case that TO is less than TO1.
17461         (Ffontset_info): Don't use fallback fontset on checking the
17462         default fontset.
17463         (dump_fontset): New function for debugging.
17465         * coding.c (Fdefine_coding_system_internal): Fix for the case that
17466         coding_type is Qcharset.
17468 2008-02-01  Kenichi Handa  <handa@m17n.org>
17470         * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
17471         (map_char_table): Don't inherit the value from the parent on
17472         initializing VAL.  Adjust for the above change.
17474 2008-02-01  Kenichi Handa  <handa@m17n.org>
17476         * coding.c (Qsignature, Qendian): Delete these variables.
17477         (syms_of_coding): Don't initialize them.
17478         (CATEGORY_MASK_UTF_16_AUTO): New macro.
17479         (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
17480         detect_info->found.
17481         (decode_coding_utf_16): Don't detect BOM here.
17482         (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
17483         is NOT utf_16_without_bom.
17484         (setup_coding_system): For a coding system of type utf-16, check
17485         if the attribute :endian is Qbig or not (not nil or not), and set
17486         CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
17487         (detect_coding): If coding type is utf-16 and BOM detection is
17488         required, detect it.
17489         (Fdefine_coding_system_internal): For a coding system of type
17490         utf-16, check if the attribute :endian is Qbig or not (not nil or not).
17492 2008-02-01  Kenichi Handa  <handa@m17n.org>
17494         * coding.c (coding_set_source): Fix for the case that the current
17495         buffer is different from coding->src_object.
17496         (decode_coding_object): Don't use the conversion work buffer if
17497         DST_OBJECT is a buffer.
17499 2008-02-01  Dave Love  <fx@gnu.org>
17501         * lread.c (read_emacs_mule_char) [len==2]: Index
17502         emacs_mule_charset correctly.
17504 2008-02-01  Dave Love  <fx@gnu.org>
17506         * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
17507         (detect_coding_big5, decode_coding_big5, encode_coding_big5)
17508         (Fdecode_big5_char, Fencode_big5_char): Delete.  (Big5 no longer
17509         treated specially.)
17510         (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
17511         (detected_mask): Remove Big5 bits.
17513 2008-02-01  Kenichi Handa  <handa@m17n.org>
17515         The following changes are to make the font rescaling facility
17516         compatible with Emacs 21.
17518         * xfaces.c (Vface_font_rescale_alist): Rename from
17519         Vface_resizing_fonts.
17520         (struct font_name): Rename member resizing_ratio to rescale_ratio.
17521         (font_rescale_ratio): Rename from font_resizing_ratio.
17522         (split_font_name): Set font->rescale_ratio.
17523         (better_font_p): Pay attention to font->rescale_ratio.
17524         (build_scalable_font_name): Likewise.  Change RESX, and RESY
17525         fields.
17526         (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
17528 2008-02-01  Kenichi Handa  <handa@m17n.org>
17530         * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
17531         (Qutf_16_le): Remove these variables.
17532         (syms_of_coding): Don't DEFSYM them.
17533         (decode_coding_utf_16): Fix handling of BOM.
17534         (encode_coding_utf_16): Fix handling of BOM.
17536 2008-02-01  Kenichi Handa  <handa@m17n.org>
17538         * fileio.c (Finsert_file_contents): On replacing, before decoding
17539         the file into the work buffer, set point of the work buffer to the end.
17541 2008-02-01  Dave Love  <fx@gnu.org>
17543         * coding.c (Fcheck_coding_systems_region): Fix type errors.
17545 2008-02-01  Dave Love  <fx@gnu.org>
17547         * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
17548         and fix C types.
17550 2008-02-01  Kenichi Handa  <handa@m17n.org>
17552         * xdisp.c (SKIP_GLYPHS): New macro.
17553         (set_cursor_from_row): Pay attention to string display properties.
17555         * category.c (copy_category_entry): Fix for the case that RANGE
17556         is an integer.
17558         * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
17560         * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
17562 2008-02-01  Kenichi Handa  <handa@m17n.org>
17564         * charset.c (Fcharset_id_internal): New function.
17565         (syms_of_charset): Defsubr it.
17567         * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
17568         with the last arg charset_list acquired from coding.
17569         (Fdefine_coding_system_internal): For ccl-based coding system, fix
17570         the attribute coding_attr_ccl_valids.
17572         * coding.h (enum define_coding_ccl_arg_index): Set the first
17573         member coding_arg_ccl_decoder to coding_arg_max.
17575         * ccl.h (ccl_driver): Adjust prototype.
17577         * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
17578         (ccl_driver): New arg CHARSET_LIST.  Use the above macros instead
17579         of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
17580         (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
17581         last arg Qnil.
17583 2008-02-01  Kenichi Handa  <handa@m17n.org>
17585         * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
17586         call encode_char.
17588         * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
17590 2008-02-01  Dave Love  <fx@gnu.org>
17592         * composite.c (syms_of_composite): Make composition_hash_table weak.
17594 2008-02-01  Kenichi Handa  <handa@m17n.org>
17596         * dispextern.h (check_face_attributes, generate_ascii_font_name)
17597         (font_name_registry): Don't extern them.
17598         (split_font_name_into_vector, build_font_name_from_vector): Extern them.
17600         * fontset.h (Qfontset): Don't extern it.
17601         (new_fontset_from_font_name): Extern it.
17603         * fontset.c: Give 8 extra slots to fontset objects.
17604         (Qfontset_info): New variable.
17605         (syms_of_fontset): Defsym it.
17606         (FONTSET_FALLBACK): New macro.
17607         (fontset_face): Try also the default fontset.
17608         (make_fontset): Realize a fallback fontset from the default fontset.
17609         (generate_ascii_font_name): Move from xfaces.c.  Rewritten by
17610         using split_font_name_into_vector and build_font_name_from_vector.
17611         (Fset_fontset_font): Access the elements of font_spec by enum
17612         FONT_SPEC_INDEX.  If font_spec is a string, extract the registry
17613         name by using split_font_name_into_vector.
17614         (Fnew_fontset): If no ASCII font is specified in FONTLIST,
17615         generate a proper font name from the fontset name.  Update
17616         Vfontset_alias_alist.
17617         (n_auto_fontsets): New variable.
17618         (new_fontset_from_font_name): New function.
17619         (Ffont_info): Store the information about fonts generated from the
17620         default fontset in the first extra slot of the returned char-table.
17622         * xfaces.c (generate_ascii_font_name): Move to fontset.c.
17623         (font_name_registry): Delete function.
17624         (split_font_name_into_vector): New function.
17625         (build_font_name_from_vector): New function.
17626         (font_list): The argument REGISTRY is now a list of registry names.
17627         (choose_face_font): If we are choosing an ASCII font, and ATTRS
17628         specifies an explicit font name, return the name as is.  Make a
17629         list of registy names.
17631         * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
17632         of x_new_fontset.
17633         (Fx_create_frame): Don't call x_new_fontset here.  Just use
17634         x_list_fonts to check the existence of fonts.
17636         * xterm.h (x_new_fontset): Adjust prototype.
17638         * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
17639         string.  Use new_fontset_from_font_name to create a fontset from a
17640         font name.
17642 2008-02-01  Kenichi Handa  <handa@m17n.org>
17644         * syntax.c (Vfind_word_boundary_function_table): New name for
17645         Vnext_word_boundary_function_table.
17646         (find-word-boundary-function-table): New name for
17647         next-word-boundary-function-table.
17649 2008-02-01  Dave Love  <fx@gnu.org>
17651         * Makefile.in: Fix some dependencies.
17653         * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
17654         set it to nil before returning.
17656         * composite.c (update_compositions): Fix type error.
17658         * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
17660 2008-02-01  Kenichi Handa  <handa@m17n.org>
17662         * xterm.c (x_new_font): Optimize for the case that the font is
17663         already set for the frame.
17665 2008-02-01  Kenichi Handa  <handa@m17n.org>
17667         * chartab.c (char_table_ascii): Check if the char table contents
17668         is sub-char-table or not.
17669         (char_table_set, char_table_set_range): Fix argument to
17670         char_table_ascii.
17672         * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
17673         (detect_coding_utf_8, detect_coding_utf_16)
17674         (detect_coding_emacs_mule, detect_coding_iso_2022)
17675         (detect_coding_sjis, detect_coding_big5)
17676         (detect_coding_ccl, detect_coding_charset): Change argument MASK
17677         to DETECT_INFO.  Update DETECT_INFO and return 1 if the byte
17678         sequence is valid in this coding system.  Change callers.
17679         (MAX_ANNOTATION_LENGTH): New macro.
17680         (ADD_ANNOTATION_DATA): New macro.
17681         (ADD_COMPOSITION_DATA): Change argument.  Change callers.  Call
17682         ADD_ANNOTATION_DATA.  Change the format of annotation data.
17683         (ADD_CHARSET_DATA): New macro.
17684         (emacs_mule_char): New argument ID.  Change callers.
17685         (decode_coding_emacs_mule, decode_coding_iso_2022)
17686         (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
17687         Produce charset annotation data in coding->charbuf.
17688         (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
17689         to charset annotation data in coding->charbuf.
17690         (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
17691         coding->common_flags if the coding system is iso-2022 based and
17692         uses designation.
17693         (produce_composition): Adjust for the new annotation data format.
17694         (produce_charset): New function.
17695         (produce_annotation): Handle charset annotation.
17696         (handle_composition_annotation, handle_charset_annotation): New
17697         functions.
17698         (consume_chars): Handle charset annotation.  Utilize the above two
17699         functions.
17700         (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
17701         buffer, get the deleted text as a string and set
17702         coding->src_object to that string.
17703         (detect_coding, detect_coding_system): Use the new struct
17704         coding_detection_info.
17706         * coding.h (struct coding_detection_info): New structure.
17707         (struct coding_system): Adjust prototype of the member `detector'.
17708         (CODING_ANNOTATE_CHARSET_MASK): New macro.
17710 2008-02-01  Kenichi Handa  <handa@m17n.org>
17712         * insdel.c (insert_from_gap): Fix argument to offset_intervals.
17714 2008-02-01  Dave Love  <fx@gnu.org>
17716         * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
17717         (Fapropos_internal): Don't gcpro apropos_accumulate.  Set result
17718         to new local and nullify apropos_accumulate before returning.
17719         (syms_of_keymap): Staticpro and initialize apropos_accumulate.
17721 2008-02-01  Kenichi Handa  <handa@m17n.org>
17723         * charset.c (Fdefine_charset_internal): Setup charset.fast_map
17724         correctly.
17726 2008-02-01  Dave Love  <fx@gnu.org>
17728         * fns.c (Flanginfo): Call synchronize_system_time_locale.
17730 2008-02-01  Kenichi Handa  <handa@m17n.org>
17732         The following changes are to make character composition happen
17733         automatically on displaying.
17735         * Makefile.in (lisp, shortlisp): Add composite.elc.
17737         * composite.h (Qauto_composed, Vauto_composition_function)
17738         (Qauto_composition_function): Extern them.
17740         * composite.c (Vcomposition_function_table)
17741         (Qcomposition_function_table): Delete variables.
17742         (Qauto_composed, Vauto_composition_function)
17743         (Qauto_composition_function): New variables.
17744         (run_composition_function): Don't call
17745         compose-chars-after-function.
17746         (update_compositions): Clear `auto-composed' text property.
17747         (compose_chars_in_text): Delete this function.
17748         (syms_of_composite): Staticpro Qauto_composed and
17749         Qauto_composition_function.  Declare Vauto_composition_function as
17750         a Lisp variable.
17752         * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
17754         * xdisp.c (it_props): Add an entry for Qauto_composed.
17755         (handle_auto_composed_prop): New function.
17757         * xselect.c (selection_data_to_lisp_data): Don't call
17758         compose_chars_in_text.
17760 2008-02-01  Dave Love  <fx@gnu.org>
17762         * keyboard.c (read_char): Modify checking around use of
17763         Vkeyboard_translate_table.
17765         * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
17766         and fix C types.
17768 2008-02-01  Kenichi Handa  <handa@m17n.org>
17770         * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
17771         (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
17772         (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
17773         the case that the last byte is '\r' correctly.
17774         (decode_coding): Flush out the unprocessed data correctly.
17775         (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
17777 2008-02-01  Dave Love  <fx@gnu.org>
17779         * xterm.c (XTread_socket): Fix changes for defined keysyms.
17780         Add XK_ISO... case.
17781         (xaw_scroll_callback): Revert last change.
17783 2008-02-01  Kenichi Handa  <handa@m17n.org>
17785         * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
17787 2008-02-01  Kenichi Handa  <handa@m17n.org>
17789         * xfaces.c (Vface_resizing_fonts): New variable.
17790         (struct font_name): New member `resizing_ratio'.
17791         (font_resizing_ratio): New function.
17792         (split_font_name): Set font->resizing_ratio.
17793         (better_font_p): Pay attention to font->resizing_ratio.
17794         (build_scalable_font_name): Likewise.  Don't change POINT_SIZE,
17795         RESX, and RESY fields.
17796         (try_alternative_families): Try scalable fonts if
17797         Vscalable_fonts_allowed is not Qt.
17798         (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
17800 2008-02-01  Dave Love  <fx@gnu.org>
17802         * xterm.c (xaw_scroll_callback): Cast correctly.
17804 2008-02-01  Dave Love  <fx@gnu.org>
17806         * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
17807         (lispy_kana_keys): Comment out.
17808         (make_lispy_event) [XK_kana_A]: Comment out.
17810         * xterm.c (xaw_scroll_callback): Cast call_data.
17811         (XTread_socket): Deal with ASCII keysyms.
17812         (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
17814 2008-02-01  Dave Love  <fx@gnu.org>
17816         * xterm.c (Vx_keysym_table): New.
17817         (syms_of_xterm): Initialize it.
17818         (XTread_socket): Use it.
17819         From head: Eliminate incorrect optimization that tried to avoid
17820         decoding the output of X*LookupString.
17821         (x_get_font_repertory): Delete charset declaration.
17823 2008-02-01  Kenichi Handa  <handa@m17n.org>
17825         * coding.c (detect_coding_charset): If only ASCII bytes are found,
17826         return 0.
17827         (Fdefine_coding_system_internal): Setup
17828         CODING_ATTR_ASCII_COMPAT (attrs) correctly.
17830 2008-02-01  Dave Love  <fx@gnu.org>
17832         * coding.c (Fcheck_coding_system): Doc fix.
17834         * editfns.c (Finsert_byte): Return a proper value.
17836 2008-02-01  Kenichi Handa  <handa@m17n.org>
17838         * coding.c (decode_coding): Fix args to translate_chars.  Pay
17839         attention to Vstandard_translation_table_for_decode.
17840         (encode_coding): Fix args to translate_chars.  Pay attention to
17841         Vstandard_translation_table_for_encode.
17843         * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
17844         SINGLE_BYTE_CHAR_P.
17846         * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
17847         not by SINGLE_BYTE_CHAR_P.
17849         * fns.c (concat): Check CH by ASCII_CHAR_P, not by
17850         SINGLE_BYTE_CHAR_P.
17852         * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
17853         SINGLE_BYTE_CHAR_P.
17855         * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
17856         by SINGLE_BYTE_CHAR_P.
17858         * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
17859         SINGLE_BYTE_CHAR_P.
17861 2008-02-01  Dave Love  <fx@gnu.org>
17863         * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
17865 2008-02-01  Dave Love  <fx@gnu.org>
17867         * fns.c (Flanginfo): Fix typo.
17869         * unexelf.c (unexec): Make last change conditional on Irix 6.5.
17871 2008-02-01  Kenichi Handa  <handa@m17n.org>
17873         * coding.c (detect_coding_utf_8, detect_coding_utf_16)
17874         (detect_coding_emacs_mule, detect_coding_iso_2022)
17875         (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
17876         incomplete byte sequence.  Don't update *mask when correctly detected.
17877         (decode_coding_sjis): Fix decoding of katakana-jisx0201.
17878         (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
17879         (detect_coding, detect_coding_system): Adjust for the changes above.
17881 2008-02-01  Kenichi Handa  <handa@m17n.org>
17883         * character.c (char_string): Rename from
17884         char_string_with_unification.  Pay attention to CHAR_MODIFIER_MASK.
17885         (string_char): Rename from string_char.
17887         * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
17888         if C is greater than MAX_3_BYTE_CHAR.
17889         (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
17890         string_char instead of string_char_with_unification.
17892 2008-02-01  Dave Love  <fx@gnu.org>
17894         * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
17896 2008-02-01  Kenichi Handa  <handa@m17n.org>
17898         * keymap.c (push_key_description): Pay attention to force_multibyte.
17900         * regex.c (re_search_2): Fix for the case of unibyte buffer.
17902 2008-02-01  Dave Love  <fx@gnu.org>
17904         * charset.c (define_charset_internal): Rename `supprementary'.
17906         * Makefile.in (lisp, shortlisp): Remove latin-N.
17908 2008-02-01  Dave Love  <fx@gnu.org>
17910         * xfns.c (x_window, x_window): Use use_xim.
17912         * xterm.c (use_xim): Initialize.
17913         (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
17914         (x_term_init): Maybe set use_xim.
17916         * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
17918 2008-02-01  Kenichi Handa  <handa@m17n.org>
17920         * search.c (search_buffer): Fix case-fold-search of multibyte
17921         characters.
17922         (boyer_moore): Rename the last argument to char_high_bits.
17924 2008-02-01  Kenichi Handa  <handa@m17n.org>
17926         * xdisp.c (display_string): Fix for the case of zero width glyph.
17928         * xfns.c (x_set_font): Change the error message of the case that
17929         x_new_fontset returns Qt.
17931         * xfaces.c (set_lface_from_font_name): Reject the default fontset.
17932         (Finternal_set_lisp_face_attribute): Use signal_error for the
17933         error of invalid fontset.
17935         * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
17936         fontset, return Qt.
17938 2008-02-01  Dave Love  <fx@gnu.org>
17940         * unexelf.c (unexec): Make .got handling not SGI-specific.
17942         * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
17944         * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
17946         * keyboard.c (read_key_sequence): Fix type error.
17948         * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
17949         type error.
17951         * fontset.c (fontset_add): Return Lisp_Object.
17953 2008-02-01  Dave Love  <fx@gnu.org>
17955         * charset.h (charset_ordered_list_tick): Declare extern.
17957 2008-02-01  Kenichi Handa  <handa@m17n.org>
17959         The following changes (and some of 2008-02-01 changes of mine) are
17960         for handling syntax, category, and case conversion for unibyte
17961         characters by converting them to multibyte on the fly.  With these
17962         changes, we don't have to setup syntax and case tables for unibyte
17963         characters in each language environment.
17965         * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
17966         multibyte if necessary.
17968         * bytecode.c (Fbyte_code): Likewise.
17970         * character.h (LEADING_CODE_LATIN_1_MIN)
17971         (LEADING_CODE_LATIN_1_MAX): New macros.
17972         (unibyte_to_multibyte_table): Extern it.
17973         (unibyte_char_to_multibyte): New macro.
17974         (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
17975         (CHAR_LEADING_CODE): New macro.
17976         (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
17978         * character.c (unibyte_to_multibyte_table): New variable.
17979         (unibyte_char_to_multibyte): Move to character.h and define as macro.
17980         (multibyte_char_to_unibyte): If C is an eight-bit character,
17981         convert it to the corresponding byte value.
17983         * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
17984         not 1, signals an error.  Update the elements of
17985         unibyte_to_multibyte_table.
17986         (init_charset_once): Initialize unibyte_to_multibyte_table.
17987         (syms_of_charset): Define the charset `iso-8859-1'.
17989         * cmds.c (internal_self_insert): In a multibyte buffer, insert C
17990         as is without converting it to unibyte.  In a unibyte buffer,
17991         convert C to multibyte before checking the syntax.
17993         * lisp.h (unibyte_char_to_multibyte): Delete extern.
17995         * minibuf.c (Fminibuffer_complete_word): Use the macro
17996         FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
17998         * regex.h (struct re_pattern_buffer): New member target_multibyte.
18000         * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
18001         (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte.  If
18002         that is zero, convert an eight-bit char to multibyte.
18003         (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
18004         non-emacs case.
18005         (PATFETCH): Convert an eight-bit char to multibyte.
18006         (HANDLE_UNIBYTE_RANGE): New macro.
18007         (regex_compile): Setup the compiled pattern for multibyte chars
18008         even if the given regex string is unibyte.  Use PATFETCH_RAW
18009         instead of PATFETCH in many places.  To handle `charset'
18010         specification of unibyte, call HANDLE_UNIBYTE_RANGE.  Use bitmap
18011         only for ASCII chars.
18012         (analyse_first) <exactn>: Simplify because the compiled pattern
18013         is multibyte.
18014         <charset_not>: Setup fastmap from bitmap only for ASCII chars.
18015         <charset>: Use CHAR_LEADING_CODE to get leading codes.
18016         <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
18017         (re_compile_fastmap) [emacs]: Call analyse_first with the arg
18018         multibyte always 1.
18019         (re_search_2): In emacs, set the locale variable multibyte to 1,
18020         otherwise to 0.  New local variable target_multibyte.  Check it
18021         to decide the multibyteness of STR1 and STR2.  If
18022         target_multibyte is zero, convert unibyte chars to multibyte
18023         before translating and checking fastmap.
18024         (TARGET_CHAR_AND_LENGTH): New macro.
18025         (re_match_2_internal): In emacs, set the locale variable multibyte
18026         to 1, otherwise to 0.  New local variable target_multibyte.  Check
18027         it to decide the multibyteness of STR1 and STR2.  Use
18028         TARGET_CHAR_AND_LENGTH to fetch a character from D.
18029         <charset, charset_not>: If multibyte is nonzero, check fastmap
18030         only for ASCII chars.  Call bcmp_translate with
18031         target_multibyte, not with multibyte.
18032         <begline>: Declare the local variable C as `unsigned'.
18033         (bcmp_translate): Change the last arg name to target_multibyte.
18035         * search.c (compile_pattern_1): Don't adjust the multibyteness of
18036         the regexp pattern and the matching target.  Set cp->buf.multibyte
18037         to the multibyteness of the regexp pattern.  Set
18038         cp->but.target_multibyte to the multibyteness of the matching target.
18039         (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
18040         FETCH_STRING_CHAR_ADVANCE.
18041         (Freplace_match): Convert unibyte chars to multibyte.
18043         * syntax.c (char_quoted, back_comment, scan_words)
18044         (Fforward_comment, scan_lists, Fbackward_prefix_chars)
18045         (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
18046         unibyte chars to multibyte.
18047         (skip_chars): Delete the arg syntaxp, and move the code for
18048         handling syntaxes to skip_syntaxes.  Change callers.
18049         Fix the case that the multibyteness of STRING and the current
18050         buffer doesn't match.
18051         (skip_syntaxes): New function.
18052         (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
18053         SINGLE_BYTE_CHAR_P.
18055 2008-02-01  Kenichi Handa  <handa@m17n.org>
18057         * xfaces.c (QCfontset): New variable.
18058         (LFACE_FONTSET): New macro.
18059         (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
18060         (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
18061         (Finternal_set_lisp_face_attribute)
18062         (Finternal_get_lisp_face_attribute): Handle QCfontset.
18063         (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
18064         check also LFACE_FONTSET_INDEX.
18065         (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
18066         attrs[LFACE_FONT_INDEX].
18067         (syms_of_xfaces): Intern and staticpro QCfontset.
18069         * dispextern.h (enum lface_attribute_index): New member
18070         LFACE_FONTSET_INDEX.
18072         * fns.c (base64_encode_1): Handle eight-bit chars correctly.
18074 2008-02-01  Kenichi Handa  <handa@m17n.org>
18076         * coding.c (coding_set_destination): Fix coding->destination for
18077         the case converting a region.
18078         (encode_coding_utf_8): Encode eight-bit chars as single byte.
18079         (encode_coding_object): Fix coding->dst_pos and
18080         coding->dst_pos_byte for the case converting a region.
18082         * insdel.c (insert_from_gap): Make it work even if PT != GTP.
18084         * character.h (BYTE8_STRING): New macro.
18086         * fns.c (base64_decode_1): Insert eight-bit chars correctly.
18088 2008-02-01  Kenichi Handa  <handa@m17n.org>
18090         * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
18091         characters by octal form.
18093         * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
18095         * buffer.h (_fetch_multibyte_char_len): Delete extern.
18096         (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
18097         _fetch_multibyte_char_len.
18098         (FETCH_CHAR_AS_MULTIBYTE): New macro.
18100         * casetab.c (set_canon, set_identity, shuffle): Simplify.
18102         * casefiddle.c (casify_object): Simplify.  Handle the case that
18103         the case conversion change the byte length.
18104         (casify_region): Likewise.
18106         * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
18108         * character.c (_fetch_multibyte_char_len): Delete this variable.
18109         (syms_of_character): Setup Vprintable_chars.
18111         * editfns.c (Fchar_equal): Fix for the unibyte case.
18112         (Finsert_byte): New function.
18113         (syms_of_editfns): Defsubr it.
18115         * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
18116         of direct code 0x3ffff.
18118         * search.c (Freplace_match): Fix for the unibyte case.
18120 2008-02-01  Kenichi Handa  <handa@m17n.org>
18122         * lread.c (safe_to_load_p): Fix the logic.
18124         * syntax.c (scan_words): Don't treat characters belonging to
18125         different scripts as constituting a word.
18127         * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
18129         * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
18131         * emacs.c (main): In the case of --unibyte, instead of aborting on
18132         finding non-empty buffer, make it unibyte.
18134 2008-02-01  Kenichi Handa  <handa@m17n.org>
18136         * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
18137         to create a fontset.
18139 2008-02-01  Dave Love  <fx@gnu.org>
18141         * character.c (Funibyte_char_to_multibyte): Doc fix.
18143         * xfns.c [HAVE_STDLIB_H]: Fix last change.
18145 2008-02-01  Kenichi Handa  <handa@m17n.org>
18147         * fontset.c (fontset_add): Make the type `int'.
18148         (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
18150         * character.c (unibyte_char_to_multibyte)
18151         (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
18152         charset_unibyte, not charset_primary.
18154         * charset.h (charset_unibyte): Extern it instead of charset_primary.
18156         * charset.c (charset_unibyte): Rename from charset_primary.
18157         (Funibyte_charset): Rename from Fprimary_charset.
18158         (Fset_unibyte_charset): Rename from Fset_primary_charset.
18159         (syms_of_charset): Adjust for the above changes.
18161         * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
18162         SINGLE_BYTE_CHAR_P.  Fix the logic of handling non-ASCII char when
18163         it->multibyte_p is zero.
18165         * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
18166         Delete extern.
18168 2008-02-01  Kenichi Handa  <handa@m17n.org>
18170         * coding.c (Fdefine_coding_system_internal): Fix category setting
18171         for a coding system of type iso-2022.
18173 2008-02-01  Kenichi Handa  <handa@m17n.org>
18175         * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
18177 2008-02-01  Kenichi Handa  <handa@m17n.org>
18179         * syntax.c (Vnext_word_boundary_function_table): New variable.
18180         (next-word-boundary-function-table): Declare it as a Lisp variable
18181         in syms_of_syntax.
18182         (scan_words): Call functions in Vnext_word_boundary_function_table
18183         if any.
18185         * xterm.c (x_load_font): Initialize fontp->fontset to -1.
18187         * fontset.c (fs_load_font): If fontp->charset is not negative,
18188         return fontp without setting its members.
18190 2008-02-01  Dave Love  <fx@gnu.org>
18192         * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
18194         * m/sparc.h (HAVE_ALLOCA): Delete.
18196         * s/irix6-5.h: Don't include strings.h.
18197         (bcopy, bzero, bcmp): Don't undef.
18199         * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
18201         * s/usg5-4.h (NO_SIOCTL_H): Don't define.
18202         (TIOCSIGSEND): Don't test IRIX6.
18203         (bcopy, bzero, bcmp): Define conditionally.
18205 2008-02-01  Kenichi Handa  <handa@m17n.org>
18207         * buffer.c (Qas, Qmake, Qto): New variables.
18208         (Fset_buffer_multibyte): New optional arg METHOD.  Change caller.
18209         (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
18211         * callproc.c (Fcall_process): Don't call insert_1_both directly if
18212         we are inserting a process output into a multibyte buffer.
18214         * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
18215         multibyte_char_to_unibyte.
18217         * character.c (Funibyte_char_to_multibyte): If C can't be decoded
18218         by the primary charset, make it eight-bit char.
18219         (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
18221         * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
18222         (charset_8_bit__control, charset_8_bit_graphic)
18223         (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
18224         (define_charset_internal): New function.
18225         (syms_of_charset): Call define_charset_internal for pre-defined
18226         charsets.
18228         * charset.h (charset_8_bit): Extern it.
18230         * coding.c (make_conversion_work_buffer): Adjust for the change
18231         of Fset_buffer_multibyte.
18232         (encode_coding_raw_text): Increment p0 in the loop.
18234         * lisp.h (Fset_buffer_multibyte): Adjust prototype.
18236         * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
18237         for the change of Fset_buffer_multibyte.
18239         * fns.c (Fstring_to_multibyte): New function.
18240         (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
18242 2008-02-01  Dave Love  <fx@gnu.org>
18244         * xfns.c (x_put_x_image): Declare args.
18246         * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
18247         (try_font_list): Declare an arg.
18249         * xdisp.c (message2_nolog, set_message): Declare an arg.
18251         * terminfo.c (tparam): Declare an arg.  Use P_ to declare tparm.
18253         * syntax.c (scan_sexps_forward): Declare an arg.
18255         * scroll.c (calculate_scrolling, calculate_direct_scrolling):
18256         Declare an arg.
18258         * lisp.h (Fnew_fontset): Declare.
18260         * keymap.c (push_key_description): Call CHARACTERP correctly.
18262         * fontset.c (fontset_add): Declare args.  Call make_number correctly.
18263         (face_for_char): Delete unused vars.
18264         (Fset_fontset_font): Doc fix.  Delete unused vars.
18266         * doc.c (Fsubstitute_command_keys): Delete unused vars.
18268         * composite.c (update_compositions): Declare arg.
18270         * cm.c (calccost, cmgoto): Declare args.
18272         * charset.c: Remove `emacs' conditional.  Doc fixes.
18273         (map_char_table_for_charset): Declare.
18275         * character.c (syms_of_character) <translation-table-vector>: Doc fix.
18277         * ccl.c: Remove `emacs' conditional.
18279 2008-02-01  Kenichi Handa  <handa@m17n.org>
18281         The following changes are to allow specifying multiple font
18282         patterns for a character range (specified by script or charset).
18284         * Makefile.in (abbrev.o): Depend on syntax.h.
18285         (xfaces.o): Depend on charset.h.
18287         * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
18288         SINGLE_BYTE_CHAR_P.
18290         * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
18292         * character.h (Vchar_script_table): Extern it.
18294         * character.c (Vscript_alist): Delete.
18295         (Vchar_script_table, Qchar_script_table): New variable.
18296         (syms_of_character): Declare Vchar_script_table as a lisp variable
18297         and initialize it.
18299         * chartab.c (Fmake_char_table): Doc fix.  If PURPOSE doesn't
18300         have property char-table-extra-slots, make no extra slot.
18302         * dispextern.h (struct face): Delete member `charset'.
18303         (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
18304         SINGLE_BYTE_CHAR_P.
18305         (choose_face_font, lookup_non_ascii_face, font_name_registry):
18306         Add prototypes.
18307         (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
18308         (generate_ascii_font_name): Rename from generate_ascii_font.
18310         * fontset.h (get_font_repertory_func): New prototype.
18311         (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
18312         (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
18314         * fontset.c (Qprepend, Qappend): New variables.
18315         (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
18316         (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
18317         (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
18318         (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
18319         (fontset_ref_and_range, fontset_add, reorder_font_vector)
18320         (load_font_get_repertory): New functions.
18321         (fontset_set): Delete.
18322         (fontset_face): New arg FACE.  Return face ID, not face.
18323         Complete re-write to handle new fontset structure.  Change caller.
18324         (free_face_fontset): Use ASET istead of AREF (X) = Y.
18325         (face_for_char): Don't call lookup_face.
18326         (make_fontset_for_ascii_face): New arg FACE.
18327         (fs_load_font): New arg CHARSET_ID.  Don't check
18328         Vfont_encoding_alist here.
18329         (find_font_encoding): New function.
18330         (list_fontsets): Use STRINGP, not ! NILP.
18331         (accumulate_script_ranges): New function.
18332         (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
18333         re-written to handle new fontset structure.
18334         (Ffontset_font): Return a copy of element.
18335         (syms_of_fontset): Define symbols Qprepend and Qappend.  Fix
18336         docstring of font-encoding-alist.
18338         * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
18339         (Fset_fotset_font): Fix arguments to 5.
18341         * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
18343         * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
18344         Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
18345         (highlight_trailing_whitespace): Adjust for the change of
18346         lookup_named_face.
18348         * xfaces.c: Include charset.h.
18349         (load_face_font): Delete argument C.  Change caller.
18350         (generate_ascii_font_name): Rename from generate_ascii_font.
18351         (font_name_registry): New function.
18352         (cache_face): Store ascii faces before non-ascii faces in buckets.
18353         (lookup_face): Delete arguments C and BASE_FACE.  Change caller.
18354         Lookup only ascii faces.
18355         (lookup_non_ascii_face): New function.
18356         (lookup_named_face): Delete argument C.  Change caller.
18357         (lookup_derived_face): Delete argument C.  Change caller.
18358         (try_font_list): New arg PATTERN.  Change caller.  If PATTERN is
18359         a string, just call font_list with it.
18360         (choose_face_font): Delete arguments FACE and C.  New arg
18361         FONT_SPEC.  Change caller.
18362         (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
18363         Change caller.
18364         (realize_non_ascii_face): New function.
18365         (realize_x_face): Call load_face_font here.
18366         (realize_tty_face): Delete argument C.  Change caller.
18367         (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
18368         get a face ID.
18369         (dump_realized_face): Don't print charset of FACE.
18371         * xfns.c (x_set_font): Always call x_new_fontset and
18372         store_frame_parameter.
18373         (Fx_create_frame): Call x_new_fontset, not x_new_font.
18374         (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
18376         * xterm.h (x_get_font_repertory): Extern it.
18378         * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
18379         SINGLE_BYTE_CHAR_P.  Fix the logic of handling non-ASCII char when
18380         it->multibyte_p is zero.
18381         (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
18382         (x_new_fontset): If FONTSETNAME doesn't match any existing
18383         fontsets, create a new one.
18384         (x_get_font_repertory): New function.
18386 2008-02-01  Kenichi Handa  <handa@m17n.org>
18388         * coding.c (Ffind_coding_systems_region_internal): Detect an
18389         ASCII only string correctly.
18391         * lread.c (Fload): Don't load with Qload_force_doc_strings t if
18392         version is 0.
18394 2008-02-01  Kenichi Handa  <handa@m17n.org>
18396         * lread.c: Include "coding.h".
18397         (Qget_emacs_mule_file_char, Qload_force_doc_strings)
18398         (load_each_byte, unread_char): New variables.
18399         (readchar_backlog): Delete.
18400         (readchar): Return a character unless load_each_byte is nonzero.
18401         Handle the case that readcharfun is Qget_emacs_mule_file_char or a
18402         cons.  If unread_char is not -1, simply return it.
18403         (unreadchar): Handle the case that readcharfun is
18404         Qget_emacs_mule_file_char or a cons.  Set unread_char if necessary.
18405         (read_multibyte): Delete.
18406         (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
18407         (read_emacs_mule_char): New functions.
18408         (Fload): Even if the file doesn't have the extension ".elc", if
18409         safe_to_load_p returns a positive version number, assume that the
18410         file contains bytecompiled code.  If the version is less than 22,
18411         load the file while decoding multibyte sequences by emacs-mule.
18412         (readevalloop): Don't use readchar_backlog.
18413         (Fread): Likewise.  Pay attention to the case that STREAM is a cons.
18414         (Fread_from_string): Pay attention to the case that STREAM is a cons.
18415         (read_escape): Delete the arg BYTEREP.
18416         (read1): Set load_each_byte to 1 temporarily while handling
18417         #@NUMBER.  Don't call read_multibyte.
18418         (read_vector): Call Fread with a cons.  If readcharfun is
18419         Qget_emacs_mule_file_char, decode the read string by emacs-mule.
18420         (read_list): If doc_reference is 2, make the cdr part string as unibyte.
18421         (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
18422         and Qload_force_doc_strings.
18424 2008-02-01  Kenichi Handa  <handa@m17n.org>
18426         * xdisp.c (face_before_or_after_it_pos): Call
18427         FETCH_MULTIBYTE_CHAR with byte postion, not char position.
18429 2008-02-01  Kenichi Handa  <handa@m17n.org>
18431         * character.h (TRAILING_CODE_P): New macro.
18432         (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
18433         (string_char_with_unification): Fix prototype.
18434         (Vscript_alist): Extern it.
18436         * character.c (Vscript_alist): New variable.
18437         (string_char_with_unification, str_as_unibyte)
18438         (string_escape_byte8): Add `const' to local variables.
18439         (syms_of_character): Declare script-alist as a Lisp variable.
18441         * charset.h (Vcharset_ordered_list): Extern it.
18442         (charset_ordered_list_tick): Extern it.
18443         (EMACS_MULE_LEADING_CODE_PRIVATE_11)
18444         (EMACS_MULE_LEADING_CODE_PRIVATE_12)
18445         (EMACS_MULE_LEADING_CODE_PRIVATE_21)
18446         (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
18447         (Funify_charset): Adjust for the change of Funify_charset.
18449         * charset.c (charset_ordered_list_tick): New variable.
18450         (Fdefine_charset_internal): Increment charset_ordered_list_tick.
18451         (Funify_charset): New optional arg DEUNIFY.  If it is non-nil,
18452         deunify intead of unify a charset.
18453         (string_xstring_p): Add `const' to local variables.
18454         (find_charsets_in_text): Add `const' to arguments and local variables.
18455         (encode_char): Adjust for the change of Funify_charset.  Fix
18456         detecting of invalid code.
18457         (Fset_charset_priority): Increment charset_ordered_list_tick.
18458         (Fmap_charset_chars): Fix handling of default value for FROM_CODE
18459         and TO_CODE.
18461         * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
18462         (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
18463         Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
18464         (decode_coding_ccl, consume_chars)
18465         (Ffind_coding_systems_region_internal)
18466         (Fcheck_coding_systems_region): Add `const' to local variables.
18468         * print.c (print_object): Use octal form for printing the
18469         contents of a bool vector.
18471 2008-02-01  Dave Love  <fx@gnu.org>
18473         * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
18474         <version == 20>: Refuse to load.
18476 2008-02-01  Dave Love  <fx@gnu.org>
18478         * fns.c: Move coding.h.
18479         (Qcodeset, Qdays, Qmonths): New.
18480         (concat): Use CHARACTERP instead of INTEGERP.
18481         (Flocale_codeset): Delete.
18482         (Flanginfo): New function.
18483         (syms_of_fns): Change accordingly.
18485         * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
18487 2008-02-01  Dave Love  <fx@gnu.org>
18489         * casetab.c (init_casetab_once, init_casetab_once): Fix
18490         CHAR_TABLE_SET call.
18492         * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
18494         * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
18496         * charset.c (Fmap_charset_chars): Check args.  Convert Lisp types.
18497         (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
18498         (Fset_charset_priority, syms_of_charset): Convert Lisp types.
18500         * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
18502         * coding.c (ENCODE_DESIGNATION, decode_eol)
18503         (make_conversion_work_buffer, code_conversion_restore)
18504         (Fdefine_coding_system_internal): Convert Lisp types.
18505         (code_conversion_restore): Use EQ, not ==.
18506         (Fencode_coding_string): Fix code_convert_string call.
18508         * coding.h (code_convert_region): Fix prototype.
18510         * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
18512         * fontset.c (fontset_ref, fontset_set, fs_load_font)
18513         (Ffontset_info): Convert Lisp types.
18515         * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
18517         * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
18519         * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
18521         * chartab.c: Include "...h", not <...h> in some cases.
18523         * callproc.c (Fcall_process): Remove unused variables.
18525 2008-02-01  Dave Love  <fx@gnu.org>
18527         * coding.c (Fset_coding_system_priority): Allow null arg list.
18529 2008-02-01  Dave Love  <fx@gnu.org>
18531         * minibuf.c (Fminibuffer_complete_word): Remove unused var.
18532         (Fself_insert_and_exit): Use CHARACTERP.
18534         * callproc.c (Fcall_process): Remove unused vars.
18536         * xterm.c (XTread_socket): Add extra dead keysyms.
18538         * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
18540         * dispextern.h: Remove prototypes for redraw_frame,
18541         redraw_garbaged_frames.
18543         * cmds.c (Fself_insert_command): Use CHARACTERP.
18545         * chartab.c (make_sub_char_table): Remove unused var.
18546         (Fset_char_table_default, Fmap_char_table): Doc fix.
18548         * keymap.c (access_keymap): Remove generic char code.
18549         (push_key_description): Use CHARACTERP.
18551 2008-02-01  Dave Love  <fx@gnu.org>
18553         * charset.c: Doc fixes.
18554         (Funify_charset): Extra checking.
18556 2008-02-01  Dave Love  <fx@gnu.org>
18558         * lread.c: Remove some unused variables.
18559         (safe_to_load_p): If safe, return the magic number version byte.
18560         (Fload): Maybe use load-with-code-conversion.
18562 2008-02-01  Kenichi Handa  <handa@m17n.org>
18564         * category.c (Fmodify_category_entry): Don't modify the contents
18565         of category_set for characters out of the range.  Avoid
18566         unnecessary modification.
18568         * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
18569         Vchar_unify_table.  The default value of the table is now nil.
18571         * character.c (syms_of_character): Setup Vchar_width_table for
18572         eight-bit-control and raw-byte chars.
18574         * charset.h (enum define_charset_arg_index): Delete
18575         charset_arg_parents and add charset_arg_subset and
18576         charset_arg_superset.
18577         (enum charset_attr_index): Delete charset_parents and add
18578         charset_subset and charset_superset.
18579         (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
18580         CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
18581         (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
18582         (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
18583         (CHARSET_SUPERSET): New macros.
18584         (charset_work): Extern it.
18585         (ENCODE_CHAR): Use charset_work.
18586         (CHAR_CHARSET_P): Adjust for the change of encoder format.
18587         (map_charset_chars): Extern it.
18589         * charset.c (load_charset_map): Set the default value of encoder
18590         and deunifier char-tables to nil.
18591         (map_charset_chars): Change argument.  Change callers.  Use
18592         map_char_table_for_charset instead of map_char_table.
18593         (Fmap_charset_chars): New optional args from_code and to_code.
18594         (Fdefine_charset_internal): Adjust for the change of
18595         `define-charset' (:parents -> :subset or :superset).
18596         (charset_work): New variable.
18597         (encode_char, syms_of_charset): Adjust for the change of
18598         Fdefine_charset_internal.
18599         (Ffind_charset_string): Setup the vector `charsets' correctly.
18601         * chartab.c (sub_char_table_ref_and_range): New arg default.  Fix
18602         the previous change.
18603         (char_table_ref_and_range): Adjust for the above change.
18604         (map_sub_char_table_for_charset): New function.
18605         (map_char_table_for_charset): New function.
18607         * keymap.c (describe_vector): Handle a char-table directly here.
18608         (describe_char_table): Delete.
18610         * lisp.h (map_charset_chars): Delete.
18612 2008-02-01  Dave Love  <fx@gnu.org>
18614         * fns.c (count_combining): Comment out (unused).
18615         (Flocale_codeset): New.
18616         (syms_of_fns): Defsubr it.
18618         * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
18619         (size_t): Remove.
18621 2008-02-01  Dave Love  <fx@gnu.org>
18623         * Makefile.in (chartab.o): Depend on charset.h.
18625 2008-02-01  Kenichi Handa  <handa@m17n.org>
18627         * character.c (syms_of_character): Set the default value of
18628         Vprintable_chars to Qnil.
18630 2008-02-01  Dave Love  <fx@gnu.org>
18632         * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
18634 2008-02-01  Kenichi Handa  <handa@m17n.org>
18636         * charset.c (load_charset_map): Handle the case that from < to
18637         correctly.
18639         * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
18640         (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
18641         Pay attention to raw-8-bit chars.
18643 2008-02-01  Kenichi Handa  <handa@m17n.org>
18645         * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
18646         It is not bytecompiled now.
18648         * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
18649         (charset_jisx0208): New variables.
18650         (Fdefine_charset_internal): Setup them if appropriate.
18651         (init_charset_once): Initialize them to -1.
18653         * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
18654         (charset_jisx0208): Extern them.
18656         * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
18657         (CODING_ISO_FLAG_USE_OLDJIS): New macro.
18658         (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
18659         (setup_iso_safe_charsets): Fix arguments to Fassq.
18660         (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
18661         (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
18662         CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
18663         (encode_coding_iso_2022): Change the 1st arg to
18664         ENCODE_ISO_CHARACTER to a variable.
18666 2008-02-01  Kenichi Handa  <handa@m17n.org>
18668         * charset.h (enum define_charset_arg_index): New enums
18669         charset_arg_min_code and charset_arg_max_code.
18670         (struct charset): New member char_index_offset.
18672         * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
18673         Take charset->char_index_offset into account.
18674         (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
18675         args[charset_arg_max_code].  Setup charset.char_index_offset.
18676         (syms_of_charset): Fix args to Fdefine_charset_internal.
18678 2008-02-01  Dave Love  <fx@gnu.org>
18680         * coding.c (decode_coding_utf_8): Reject overlong sequences.
18682 2008-02-01  Dave Love  <fx@gnu.org>
18684         * coding.c: Doc fixes.
18685         (Fcoding_system_aliases): Fix return value.
18686         (Qmac): Remove (duplicated) definition.
18688 2008-02-01  Dave Love  <fx@gnu.org>
18690         * charset.c (Fcharset_priority_list, Fset_charset_priority):
18691         New functions.
18693         * character.c (Fstring): Doc fix.
18695         * charset.c (Fdefine_charset_alias): Update Vcharset_list.
18697         * fontset.c (Ffontset_info): Doc fix.  Return charset names, not ids.
18698         (font-encoding-alist): Doc fix.
18700 2008-02-01  Dave Love  <fx@gnu.org>
18702         * term.c (costs_set): Declare static, non-initialized for pcc.
18703         (encode_terminal_code): Remove unused var.
18705         * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
18706         for K&R.
18708         * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
18710         * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
18711         (suffixes): Move out of make_subsidiaries for K&R.
18713         * charset.c (map_charset_chars): Fix c_function declaration for K&R.
18715         * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
18717 2008-02-01  Dave Love  <fx@gnu.org>
18719         * data.c (Fchar_or_string_p): Doc fix.  Use CHARACTERP.
18721         * category.c (Fmodify_category_entry): Doc fix.  Remove unused vars.
18723 2008-02-01  Yong Lu  <lyongu@asia-infonet.com>
18725         * charset.c (Fdefine_charset_internal): Fix argument to bzero.
18727         * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
18729 2008-02-01  Kenichi Handa  <handa@m17n.org>
18731         * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
18732         vietnamese.elc to vietnamese.el.  They are not bytecompiled now.
18734 2008-02-01  Kenichi Handa  <handa@m17n.org>
18736         * coding.c (decode_coding_charset): Adjust for the change of
18737         Fdefine_coding_system_internal.
18738         (Fdefine_coding_system_internal): For a coding system of
18739         `charset' type, store a list of charset IDs in
18740         `charset_attr_charset_valids' element of coding attributes.
18742 2008-02-01  Kenichi Handa  <handa@m17n.org>
18744         * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
18745         (emacs_mule_char): New arg src.  Delete arg `composition'.  Change
18746         caller.  Handle 2-byte and 3-byte charsets correctly.
18747         (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
18748         DECODE_EMACS_MULE_COMPOSITION_RULE.  Change caller.
18749         (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
18750         (DECODE_EMACS_MULE_21_COMPOSITION): Call
18751         DECODE_EMACS_MULE_COMPOSITION_RULE_21.  Produce correct annotation
18752         sequence.
18753         (decode_coding_emacs_mule): Handle composition correctly.  Rewind
18754         `src' and `consumed_chars' correctly before calling emacs_mule_char.
18755         (DECODE_COMPOSITION_START): Correctly handle the case of altchar
18756         and alt&rule composition.
18757         (decode_coding_iso_2022): Handle composition correctly.
18758         (init_coding_once): Setup emacs_mule_bytes for private charsets.
18760         * charset.c (Fdefine_charset_internal): Fix bug for the case of
18761         re-defining a charset.  If the charset has :emacs-mule-id, setup
18762         emacs_mule_bytes.
18763         (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
18765 2008-02-01  Kenichi Handa  <handa@m17n.org>
18767         * coding.c (encode_coding_iso_2022, encode_coding_sjis)
18768         (encode_coding_big5, encode_coding_charset): If coding requires safe
18769         encoding, produce a character specified by
18770         CODING_INHIBIT_CHARACTER_SUBSTITUTION.
18772 2008-02-01  Dave Love  <fx@gnu.org>
18774         * xterm.c (XSetIMValues): Declare.
18776         * process.c: Conditionally include sys/wait.h, pty.h.
18778         * print.c (print_object): Fix print format for 64-bit systems.
18780         * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
18782         * buffer.c (emacs_strerror): Declare.
18784         * fontset.c (Fclear_face_cache): Declare.
18785         (accumulate_font_info): Comment-out (unused).
18786         (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
18787         variables.
18789         * character.h (string_escape_byte8): Declare.
18791         * charset.c (load_charset_map, load_charset_map_from_file): Remove
18792         unused vars.
18793         (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
18794         (Fmap_charset_chars): Doc fix.
18796         * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
18797         (Fset_coding_system_priority, Fset_coding_system_priority)
18798         (Fdefine_coding_system_internal): Doc fix.
18800 2008-02-01  Dave Love  <fx@gnu.org>
18802         * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
18804 2008-02-01  Kenichi Handa  <handa@m17n.org>
18806         * character.c (string_escape_byte8): Make multibyte string with
18807         correct size.
18809         * charset.c (Fmake_char): Delete unnecessary code.
18811 2008-02-01  Kenichi Handa  <handa@m17n.org>
18813         * xfns.c (x_encode_text): Allocate coding.destination here, and
18814         call encode_coding_object with dst_object Qnil.
18816         * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
18817         multibyte form correctly.
18819         * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
18820         against Vfont_encoding_alist.
18822         * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF).  Fix the
18823         handling of charset list.
18824         (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
18825         (decode_coding_object): Move point to coding->dst_pos before
18826         calling post-read-conversion function.
18827         (encode_coding_object): Give correct arguments to
18828         pre-write-conversion.  Ignore the return value of
18829         pre-write-conversion function.  Pay attention to the case that
18830         pre-write-conversion changes the current buffer.  If dst_object is
18831         Qt, even if coding->src_bytes is zero, allocate at least one byte
18832         to coding->destination.
18834         * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
18836         * charset.c (Fmake_char): Make it more backward compatible.
18837         (Fmap_charset_chars): Fix docstring.
18839 2008-02-01  Dave Love  <fx@gnu.org>
18841         * coding.c: Doc fixes.
18842         (Fdefine_coding_system_alias): Use names, not symbols, in
18843         coding-system-alist.
18845 2008-02-01  Kenichi Handa  <handa@m17n.org>
18847         * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
18848         of calling free_realized_face.
18850 2008-02-01  Yong Lu  <lyongu@asia-infonet.com>
18852         * charset.c (read_hex): Don't treat SPC as a comment starter.
18853         (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
18854         (Fdecode_char): Fix typo.
18856 2008-02-01  Kenichi Handa  <handa@m17n.org>
18858         * charset.h (struct charset): New member `code_space_mask'.
18860         * coding.c (coding_set_source): Delete the local variable beg_byte.
18861         (encode_coding_charset, Fdefine_coding_system_internal):
18862         Delete the local variable charset.
18863         (Fdefine_coding_system_internal): Setup
18864         attrs[coding_attr_charset_valids] correctly.
18866         * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
18867         member to check if CODE is valid or not.
18868         (Fdefine_charset_internal): Initialize `code_space_mask' member.
18869         (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
18870         is within the range of charset->min_code and carset->max_code.
18872 2008-02-01  Dave Love  <fx@gnu.org>
18874         * syntax.h (syntax_temp) [!__GNUC__]: Declare.
18876         * dispextern.h (generate_ascii_font): Fix return type.
18878         * xfaces.c (generate_ascii_font): Fix arg declaration.
18880         * coding.c (coding_inherit_eol_type)
18881         (Fset_terminal_coding_system_internal)
18882         (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
18884 2008-02-01  Kenichi Handa  <handa@m17n.org>
18886         * coding.c (decode_coding_charset, encode_coding_charset): Handle
18887         multiple charsets correctly.
18889 2008-02-01  Kenichi Handa  <handa@m17n.org>
18891         * search.c (boyer_moore): Fix handling of multibyte character
18892         translation.
18894         * xdisp.c (display_mode_element): When the variable `elt' is
18895         changed, update `this' and `lisp_string'.
18897 2008-02-01  Kenichi Handa  <handa@m17n.org>
18899         * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
18901         * callproc.c (Fcall_process): Be sure to give the current buffer
18902         to decode_coding_c_string.  Update PT and PT_BYTE after the insertion.
18904         * charset.c (struct charset_map_entries): New struct.
18905         (load_charset_map): Rename from parse_charset_map.  New args
18906         entries and n_entries.  Change caller.
18907         (load_charset_map_from_file): Rename from load_charset_map.
18908         Change caller.  New arg control_flag.  Call load_charset_map at
18909         the tail.
18910         (load_charset_map_from_vector): New function.
18911         (Fdefine_charset_internal): Setup charset.compact_codes_p.
18912         (encode_char): If the charset is compact, change a character index
18913         to a code point.
18915         * coding.c (coding_alloc_by_making_gap): Check the case that the
18916         source and destination are the same correctly.
18917         (decode_coding_raw_text): Set coding->consumed_char and
18918         coding->consumed to 0.
18919         (produce_chars): If coding->chars_at_source is nonzero, update
18920         coding->consumed_char and coding->consumed before calling
18921         alloc_destination.
18922         (Fdefine_coding_system_alias): Register ALIAS in
18923         Vcoding_system_alist.
18924         (syms_of_coding): Define `no-conversion' coding system at the tail.
18926         * fileio.c (Finsert_file_contents): Set coding_system instead of
18927         val.  If the current buffer is multibyte, always call
18928         decode_coding_gap.
18930         * xfaces.c (try_font_list): Give higher priority to fontset's
18931         family than face's family.
18933 2008-02-01  Kenichi Handa  <handa@m17n.org>
18935         * callproc.c (Fcall_process): Be sure to give the current buffer
18936         to decode_coding_c_string.
18938         * xfaces.c (try_font_list): Give a family specified in a fontset
18939         higher priority than a family specified in a face.
18941 2008-02-01  Kenichi Handa  <handa@m17n.org>
18943         * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
18944         Fix arguments to insert_from_buffer.
18946         * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
18948 2008-02-01  Kenichi Handa  <handa@m17n.org>
18950         * coding.c (produce_chars): Set the variable `multibytep' correctly.
18951         (decode_coding_gap): Set coding->dst_multibyte correctly.
18953 2008-02-01  Kenichi Handa  <handa@m17n.org>
18955         * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
18956         (decode_coding_utf_16): Fix converting high and low bytes to code-point.
18957         (encode_coding_utf_16): Substitute coding->default_char for
18958         non-Unicode characters.
18959         (decode_coding): Don't call record_insert here.
18960         (setup_coding_system): Initialize `surrogate' of
18961         coding->spec.utf_16 to 0.
18962         (EMIT_ONE_BYTE): Fix for multibyte case.
18964         * insdel.c (insert_from_gap): Call record_insert.
18966 2008-02-01  Kenichi Handa  <handa@m17n.org>
18968         * casefiddle.c (casify_region): Fix multibyte case.
18970         * character.c (c_string_width): Add return type `int'.
18971         (char_string_with_unification): Delete arg ADVANCED.
18973         * character.h (CHAR_VALID_P): Don't call CHARACTERP.
18974         (CHAR_STRING): Adjust for the change of char_string_with_unification.
18975         (CHAR_STRING_ADVANCE): Make it do-while statement.
18977         * chartab.c (sub_char_table_set_range): Optimize for the case
18978         DEPTH == 3.  Add workaround code for a GCC optimization bug.
18980         * charset.c (parse_charset_map): Remove an unused variable.
18982         * coding.c: Delete unused variables.
18984         * fileio.c (Finsert_file_contents): Set coding_system to Qnil
18985         earlier.  If inserted is zero and the coding system doesn't
18986         require flushing, don't call decode_coding_gap.
18988         * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
18990 2008-02-01  Kenichi Handa  <handa@m17n.org>
18992         The following changes are for using Unicode as an internal
18993         character model, and use UTF-8 format for buffer/string
18994         representation.
18996         * .gdbinit (xchartable): Adjust for the change of char table structure.
18997         (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
18999         * Makefile.in (obj): Add character.o and chartab.o.
19000         (lisp, shortlisp): Remove utf-8.elc.
19001         (*.o): For many files, change dependency on charset.h to
19002         character.h, and add dependency on character.h.
19003         (character.o, chartab.o): New targets.
19005         * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
19006         * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
19007         * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
19008         of "charset.h".
19010         * dired.c, filelock.c: Include "character.h".
19012         * alloc.c: Include "character.h" instead of "charset.h".
19013         (Fmake_char_table, make_sub_char_table): Move to chartab.c.
19014         (syms_of_alloc): Remove defsubr for Smake_char_table.
19016         * buffer.c: Include "character.h" instead of "charset.h", don't
19017         include "coding.h".
19018         (Fset_buffer_multibyte): Adjust for UTF-8.
19020         * buffer.h: EXFUN Fbuffer_live_p.
19022         * callproc.c: Include "character.h" instead of "charset.h".
19023         (Fcall_process): Big change for the new code-conversion APIs.
19025         * casetab.c: Include "character.h" instead of "charset.h".
19026         (set_canon, set_identity, shuffle): Adjust for the new
19027         map_char_table spec.
19028         (init_casetab_once): Call CHAR_TABLE_SET instead of directly
19029         accessing the char table structure.
19031         * chartab.c: New file that implements char table.
19033         * category.c: Include "character.h".
19034         (copy_category_entry): New function.
19035         (copy_category_table): Call map_char_table and copy_category_entry.
19036         (Fmake_category_table): Initialize all top-level slots.
19037         (char_category_set): New function.
19038         (modify_lower_category_set): Delete.
19039         (Fmodify_category_entry): Call char_table_ref_and_range.
19041         * category.h (CATEGORY_SET): Just call char_category_set.
19043         * ccl.c: Include "character.h".
19044         (Qccl, Qcclp): New variables.
19045         (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
19046         it's less than 256.
19047         (CCL_WRITE_MULTIBYTE_CHAR): Delete.
19048         (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
19049         and DST type.
19050         (ccl_driver): Change types of argument, adjust code accordingly.
19051         (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
19052         ccl_driver.
19053         (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
19055         * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
19056         New members src_multibyte, dst_multibyte, consumed, and produced.
19057         (struct ccl_spec): Delete members decoder and encoder.  New member ccl.
19058         (CODING_SPEC_CCL_PROGRAM): New macro.
19059         (ccl_driver): Update prototype.
19060         (Qccl, Qcclp, Fccl_program_p): Extern them.
19061         (CHECK_CCL_PROGRAM): New macro.
19063         * character.c, character.h, chartab.c: New files.
19065         * charset.c: Mostly re-written.  Move character and multibyte sequence
19066         handling codes to character.c.
19068         * charset.h: Mostly re-written.  Move character and multibyte sequence
19069         handling codes to character.h.
19071         * coding.c, coding.h: Mostly re-written.
19073         * composite.c: Include "character.h" instead of "charset.h".
19074         (CHAR_WIDTH): Move to character.h.
19075         (HASH_KEY, HASH_VALUE): Delete.
19077         * composite.h (enum composition_method): Change order of enumeration
19078         symbols.
19080         * data.c: Include "character.h" instead of "charset.h".
19081         (Faref): Call CHAR_TABLE_REF for a char table.
19082         (Faset): Call CHAR_TABLE_SET for a char table.
19084         * dispextern.h (free_realized_face, check_face_attribytes)
19085         (generate_ascii_font): Extern them.
19086         (free_realized_multibyte_face): Delete extern.
19088         * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
19089         table structure.
19091         * editfns.c: Include "character.h" instead of "charset.h".
19092         (Fchar_to_string): Always call CHAR_STRING.
19094         * emacs.c (main): Call init_charset_once, init_charset,
19095         syms_of_chartab, and syms_of_character.
19097         * fileio.c: Include "character.h" instead of "charset.h".
19098         (Finsert_file_contents): Big change for the new code-conversion API.
19099         (choose_write_coding_system, Fwrite_region): Likewise.
19100         (build_annotations_2): Delete.
19101         (e_write): Big change for the new code-conversion API.
19103         * fns.c: Include "character.h" instead of "charset.h".
19104         (copy_sub_char_table): Move to chartab.c.
19105         (Fcopy_sequence): Call copy_char_table for a char table.
19106         (concat): Delete codes calling count_multibyte.
19107         (string_char_to_byte, string_byte_to_char): Adjust for the new
19108         multibyte form.
19109         (internal_equal): Adjust for the change of char table structure.
19110         (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
19111         (Fchar_table_extra_slot, Fset_char_table_extra_slot)
19112         (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
19113         (char_table_translate, optimize_sub_char_table)
19114         (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
19115         chartab.c.
19116         (char_table_ref_and_index): Delete.
19117         (HASH_KEY, HASH_VALUE): Move to lisp.h.
19118         (Fmd5): Call preferred_coding_system instead of accessing
19119         Vcoding_category_list.  Adjust for the new code-conversion API.
19120         (syms_of_fns): Move defsubr for char table related functions to
19121         chartab.c.
19123         * fontset.c: Mostly re-written.
19125         * fontset.h (struct font_info): Change type of the member encoding_type.
19126         (enum FONT_SPEC_INDEX): New enum.
19127         (fontset_font_pattern, fs_load_font): Update prototype.
19128         (FS_LOAD_FONT): Adjust for the change of fs_load_font.
19130         * indent.c: Include "character.h" instead of "charset.h".
19131         (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
19133         * insdel.c: Include "character.h" instead of "charset.h".
19134         (copy_text): Don't refer to Vnonascii_translation_table.
19135         (insert_from_gap): New function.
19137         * keyboard.c: Include "character.h" instead of "charset.h".
19138         (command_loop_1): Never call direct_output_forward_char before
19139         a non-ASCII character.
19140         (read_char): If Vkeyboard_translate_table is a char table, always
19141         translate a character.
19143         * keymap.c: Include "character.h".
19144         (store_in_keymap): Handle the case that IDX is a cons.
19145         (Fdefine_key): Handle the case that KEY is a cons and the car part
19146         is also a cons (range).
19147         (push_key_description): Adjust for the new character code.
19148         (describe_vector): Call describe_char_table for a char table.
19149         (describe_char_table): New function.
19151         * keymap.h (describe_char_table): Extern it.
19153         * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
19154         (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
19155         (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
19156         (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
19157         Delete.
19158         (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
19159         structure.
19160         (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
19161         (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
19162         (CHARTAB_SIZE_BITS_3): New macros.
19163         (chartab_size): Extern it.
19164         (struct Lisp_Char_Table): Re-design.
19165         (struct Lisp_Sub_Char_Table): New structure.
19166         (HASH_KEY, HASH_VALUE): Move from fns.c.
19167         (CHARACTERBITS): Define as 22.
19168         (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
19169         (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
19170         (GC_SUB_CHAR_TABLE_P): New macro.
19171         (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
19172         (code_convert_string_norecord): Deleted extern.
19173         (init_character_once, syms_of_character, init_charset)
19174         (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
19176         * lread.c: Include "character.h".
19177         (read_multibyte): New arg NBYTES.
19178         (read_escape): Change the meaning of returned *BYTEREP.
19179         (to_multibyte): Delete.
19180         (read1): Adjust the handling of char table and string.
19182         * print.c: Include "character.h" instead of "charset.h".
19183         (print_string): Convert 8-bit raw bytes to octal form by
19184         string_escape_byte8.
19185         (print_object): Adjust for the new multibyte form.  Print 8-bit
19186         raw bytes always in octal form.  Handle sub char table correctly.
19188         * process.c: Include "character.h" instead of "charset.h".
19189         (read_process_output, send_process): Adjust for the new
19190         code-conversion API.
19192         * puresize.h (BASE_PURESIZE): Increase.
19194         * regex.c: Include "character.h" instead of "charset.h".
19195         (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
19196         (regex_compile): Accept a range whose starting and ending
19197         character have different leading bytes.
19198         (analyse_first): Adjust for the above change.
19200         * search.c: Include "character.h" instead of "charset.h".
19201         (search_buffer, boyer_moore): Adjust for the new multibyte form.
19202         (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
19204         * syntax.c: Include "character.h" instead of "charset.h".
19205         (syntax_parent_lookup): Delete.
19206         (Fmodify_syntax_entry): Accept a cons as CHAR.
19207         (skip_chars): Adjust for the new multibyte form.
19208         (init_syntax_once): Call char_table_set_range instead of directly
19209         accessing the structure of a char table.
19211         * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
19212         (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
19213         (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
19214         (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
19216         * term.c: Include "buffer.h" and "character.h".
19217         (encode_terminal_code, write_glyphs): Adjust for the new
19218         code-conversion API.
19219         (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
19221         * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
19223         * xdisp.c: Include "character.h".
19224         (get_next_display_element): Adjust for the new multibyte form.
19225         (disp_char_vector): Adjust for the new char table structure.
19226         (decode_mode_spec_coding): Adjust for the new structure of
19227         coding system.
19228         (decode_mode_spec): Adjust for the new code-conversion API.
19230         * xfaces.c: Include "character.h" instead of "charset.h".
19231         (load_face_font): Adjust for the change of choose_face_font and
19232         FS_LOAD_FONT.
19233         (generate_ascii_font): New function.
19234         (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
19235         (set_font_frame_param): Adjust for the change of choose_face_font.
19236         (free_realized_face): Make it public.
19237         (free_realized_faces_for_fontset): Rename from
19238         free_realized_multibyte_face.  Free also faces realized for ASCII.
19239         (choose_face_font): Change arguments.  Adjust for the change of
19240         fontset_font_pattern and FS_LOAD_FONT.
19242         * xfns.c: Include "character.h".
19243         (x_encode_text): Adjust for the new code-conversion API.
19245         * xselect.c: Don't include "charset.h".
19246         (selection_data_to_lisp_data): Adjust for the new code conversion API.
19248         * xterm.c: Include "character.h".
19249         (x_encode_char): New argument CHARSET.  Change caller.
19250         (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
19251         Call ENCODE_CHAR instead of SPLIT_CHAR.
19252         (x_produce_glyphs): Don't check Vnonascii_translation_table Call
19253         CHAR_WIDTH instead of CHARSET_WIDTH.
19254         (XTread_socket): Adjust for the new code-conversion API.
19255         (x_new_font): Adjust for the change of FS_LOAD_FONT.
19256         (x_load_font): Adjust for the change of struct font.
19258 2008-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
19260         * xfaces.c (face_at_buffer_position): Remove unused vars.
19262 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
19264         * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
19265         Fix overflow checking.
19267 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
19269         * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
19270         Cancel previous change.
19272 2008-01-31  Kenichi Handa  <handa@ni.aist.go.jp>
19274         * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
19275         ccl->eight_bit_control.  Fix check for buffer overflow.
19276         (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
19277         (ccl_driver): Initialize extra_bytes to 0.
19279 2008-01-31  Kenichi Handa  <handa@ni.aist.go.jp>
19281         * keyboard.c (make_ctrl_char): If C is a multibyte character, just
19282         return it ORed with ctrl_modifier.
19284 2008-01-29  Miles Bader  <miles@gnu.org>
19286         * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
19288 2008-01-28  Jason Rumney  <jasonr@gnu.org>
19290         * w32.c (stat): Don't double check for networked drive.
19292 2008-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
19294         * window.c (run_window_configuration_change_hook): New function.
19295         Code extracted from set_window_buffer.  Set the selected frame.
19296         (set_window_buffer): Use it.
19297         * window.h (run_window_configuration_change_hook): Declare.
19298         * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
19300         * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
19302 2008-01-27  Dan Nicolaescu  <dann@ics.uci.edu>
19304         * Makefile.in: Remove references to unused macros.
19306 2008-01-26  Eli Zaretskii  <eliz@gnu.org>
19308         * w32.c (g_b_init_get_sid_sub_authority)
19309         (g_b_init_get_sid_sub_authority_count): New static variables.
19310         (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
19311         (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
19312         (init_user_info): Use them to retrieve uid and gid.
19313         Use 500/513, the Windows defaults, as Administrator's uid/gid.
19314         (fstat): Use pw_uid and pw_gid from the_passwd structure for
19315         st_uid and st_gid of the file.
19317 2008-01-26  Jason Rumney  <jasonr@gnu.org>
19319         * w32.c (logon_network_drive): New function.
19320         (stat): Use it.
19322 2008-01-26  Chong Yidong  <cyd@stupidchicken.com>
19324         * xdisp.c (pos_visible_p): Handle the case where charpos falls on
19325         invisible text covered with an ellipsis.
19327 2008-01-25  Richard Stallman  <rms@gnu.org>
19329         * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
19330         jump back to beginning.  Move some other initializations after that.
19331         (Qwindow_text_change_functions, Vwindow_text_change_functions):
19332         New variables.
19333         (syms_of_xdisp): Init them.
19335         * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
19337         * buffer.c (reset_buffer_local_variables):
19338         Implement `permanent-local-hook'.
19339         (Qpermanent_local_hook): New variable.
19340         (syms_of_buffer): Init and staticpro it.
19342 2008-01-25  Michael Albinus  <michael.albinus@gmx.de>
19344         * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
19346 2008-01-25  Thien-Thi Nguyen  <ttn@gnuvola.org>
19348         * fns.c (Fclrhash): Return TABLE.
19350 2008-01-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19352         * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
19353         (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
19354         is set even without positional changes.
19355         (x_scroll_bar_clear): Set bar->redraw_needed_p.
19357         * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
19359 2008-01-23  Jason Rumney  <jasonr@gnu.org>
19361         * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
19363         * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
19364         the unicode range available in MULE by locale-coding-system.
19365         Improve dbcs lead byte detection.  Set event timestamp and modifiers
19366         earlier.
19368 2008-01-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19370         * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
19371         [MAC_OSX] (init_mac_osx_environment): Initialize it.
19372         [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
19373         when used on child processes.
19375 2008-01-21  Michael Albinus  <michael.albinus@gmx.de>
19377         * dbusbind.c (Fdbus_method_return_internal): Rename from
19378         Fdbus_method_return.
19379         (Fdbus_unregister_object): Move to dbus.el.
19380         (Fdbus_call_method, Fdbus_method_return_internal)
19381         (Fdbus_send_signal): Improve debug messages.
19383 2008-01-20  Martin Rudalics  <rudalics@gmx.at>
19385         * undo.c (undo_inhibit_record_point): New variable.
19386         (syms_of_undo): Initialize it.
19387         (record_point): Don't record point when undo_inhibit_record_point
19388         is set.
19390 2008-01-19  Stefan Monnier  <monnier@iro.umontreal.ca>
19392         * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
19394         * xdisp.c (Qauto_hscroll_mode): New var.
19395         (syms_of_xdisp): Initialize it.
19396         (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
19397         window's buffer.
19398         (hscroll_windows): Don't check automatic_hscrolling_p here.
19400         * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
19401         vscroll if we're setting window-buffer to the value it already has.
19403 2008-01-18  Dan Nicolaescu  <dann@ics.uci.edu>
19405         * m/intel386.h: Remove references to XENIX.
19407 2008-01-17  Andreas Schwab  <schwab@suse.de>
19409         * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
19410         instead of HAVE_X86_64_LIB64_DIR.
19411         * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
19413 2008-01-17  Glenn Morris  <rgm@gnu.org>
19415         * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
19416         to HAVE_X86_64_LIB64_DIR.
19418 2008-01-16  Dan Nicolaescu  <dann@ics.uci.edu>
19420         * s/irix3-3.h:
19421         * s/irix4-0.h:
19422         * s/386-ix.h:
19423         * s/domain.h:
19424         * s/hpux9-x11r4.h:
19425         * s/hpux9shxr4.h: Remove files for systems no longer supported.
19427         * sysdep.c: Remove code containing references to symbols defined
19428         by unsupported systems.
19430 2008-01-16  Glenn Morris  <rgm@gnu.org>
19432         * coding.c (select-safe-coding-system-function): Doc fix.
19434 2008-01-15  Glenn Morris  <rgm@gnu.org>
19436         * config.in: Revert 2008-01-13 change: this is a generated file.
19438 2008-01-13  Tom Tromey  <tromey@redhat.com>
19440         * lisp.h: Fix typo.
19442 2008-01-13  Dan Nicolaescu  <dann@ics.uci.edu>
19444         * m/sequent-ptx.h:
19445         * m/sequent.h:
19446         * s/ptx.h:
19447         * s/ptx4-2.h:
19448         * s/ptx4.h: Remove files for systems no longer supported.
19450         * callproc.c (Fcall_process): Fix previous change.
19452 2008-01-13  Dan Nicolaescu  <dann@ics.uci.edu>
19454         * unexsunos4.c: Remove file, system not supported anymore.
19456         * m/mips.h:
19457         * m/intel386.h:
19458         * callproc.c:
19459         * config.in:
19460         * ecrt0.c:
19461         * emacs.c:
19462         * fileio.c:
19463         * frame.c:
19464         * getpagesize.h:
19465         * keyboard.c:
19466         * lread.c:
19467         * process.c:
19468         * puresize.h:
19469         * sysdep.c:
19470         * systty.h:
19471         * syswait.h:
19472         * unexec.c:
19473         * xdisp.c:
19474         * alloc.c: Remove code containing references to symbols defined by
19475         unsupported systems.
19477 2008-01-11  Kenichi Handa  <handa@ni.aist.go.jp>
19479         * coding.c (detect_coding_mask): Fix previous change.
19481 2008-01-09  Kenichi Handa  <handa@ni.aist.go.jp>
19483         * coding.c (detect_coding_iso2022): New arg
19484         latin_extra_code_state.  Allow Latin extra codes only
19485         when *latin_extra_code_state is nonzero.
19486         (detect_coding_mask): If there is a NULL byte, detect the encoding
19487         as UTF-16 or binary.  If Latin extra codes exist, detect the
19488         encoding as ISO-2022 only when there's no other proper encoding is
19489         found.
19491 2008-01-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19493         * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
19494         #ifdef MAC_OS.
19496 2008-01-08  Richard Stallman  <rms@gnu.org>
19498         * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
19500 2008-01-06  Nick Roberts  <nickrob@snap.net.nz>
19502         * keyboard.c (parse_menu_item): Don't enclose key bindings on
19503         menu bar in parentheses.
19505 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
19507         * m/7300.h:
19508         * m/acorn.h:
19509         * m/alliant-2800.h:
19510         * m/alliant.h:
19511         * m/alliant1.h:
19512         * m/alliant4.h:
19513         * m/altos.h:
19514         * m/amdahl.h:
19515         * m/apollo.h:
19516         * m/att3b.h:
19517         * m/aviion-intel.h:
19518         * m/aviion.h:
19519         * m/celerity.h:
19520         * m/clipper.h:
19521         * m/cnvrgnt.h:
19522         * m/convex.h:
19523         * m/cydra5.h:
19524         * m/delta88k.h:
19525         * m/dpx2.h:
19526         * m/dual.h:
19527         * m/elxsi.h:
19528         * m/f301.h:
19529         * m/gould-np1.h:
19530         * m/gould.h:
19531         * m/i860.h:
19532         * m/ibmps2-aix.h:
19533         * m/ibmrt-aix.h:
19534         * m/ibmrt.h:
19535         * m/irist.h:
19536         * m/is386.h:
19537         * m/isi-ov.h:
19538         * m/mega68.h:
19539         * m/mg1.h:
19540         * m/news-r6.h:
19541         * m/news-risc.h:
19542         * m/news.h:
19543         * m/nh3000.h:
19544         * m/nh4000.h:
19545         * m/ns16000.h:
19546         * m/ns32000.h:
19547         * m/nu.h:
19548         * m/orion.h:
19549         * m/orion105.h:
19550         * m/paragon.h:
19551         * m/pfa50.h:
19552         * m/plexus.h:
19553         * m/pyramid.h:
19554         * m/pyrmips.h:
19555         * m/sh3el.h:
19556         * m/sps7.h:
19557         * m/sr2k.h:
19558         * m/stride.h:
19559         * m/sun1.h:
19560         * m/sun2.h:
19561         * m/sun3-68881.h:
19562         * m/sun3-fpa.h:
19563         * m/sun3-soft.h:
19564         * m/sun3.h:
19565         * m/sun386.h:
19566         * m/symmetry.h:
19567         * m/tad68k.h:
19568         * m/tahoe.h:
19569         * m/targon31.h:
19570         * m/tek4300.h:
19571         * m/tekxd88.h:
19572         * m/tower32.h:
19573         * m/tower32v3.h:
19574         * m/ustation.h:
19575         * m/wicat.h:
19576         * m/xps100.h:
19577         * s/cxux.h:
19578         * s/cxux7.h:
19579         * s/dgux.h:
19580         * s/dgux4.h:
19581         * s/dgux5-4-3.h:
19582         * s/dgux5-4r2.h:
19583         * s/esix.h:
19584         * s/esix5r4.h:
19585         * s/hiuxmpp.h:
19586         * s/hiuxwe2.h:
19587         * s/iris3-5.h:
19588         * s/iris3-6.h:
19589         * s/isc2-2.h:
19590         * s/isc3-0.h:
19591         * s/isc4-0.h:
19592         * s/isc4-1.h:
19593         * s/newsos5.h:
19594         * s/newsos6.h:
19595         * s/osf1.h:
19596         * s/osf5-0.h:
19597         * s/riscix1-1.h:
19598         * s/riscix12.h:
19599         * s/sco4.h:
19600         * s/sco5.h:
19601         * s/sunos4-0.h:
19602         * s/sunos4-1.h:
19603         * s/sunos413.h:
19604         * s/sunos4shr.h:
19605         * s/umax.h:
19606         * s/unipl5-2.h:
19607         * s/xenix.h:
19608         * cxux-crt0.s:
19609         * unexapollo.c:
19610         * unexconvex.c:
19611         * unexenix.c:
19612         * unexsni.c: Remove files for systems no longer supported.
19614         * m/intel386.h: Remove references to unsupported systems.
19616         * w32.c (get_emacs_configuration): Remove reference to i860.
19618         * sysdep.c: Remove dead code.
19620 2008-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
19622         * s/rtu.h:
19623         * m/masscomp.h: Remove files.  Platform is obsolete.
19625 2008-01-04  Michael Albinus  <michael.albinus@gmx.de>
19627         * dbusbind.c (Fdbus_method_return): New function.
19628         (xd_read_message): Add the serial number to the event.
19629         (Fdbus_register_method): Activate the function.
19631 2008-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19633         * keyboard.c (read_key_sequence): Fix typo.
19635 2008-01-03  Michael Albinus  <michael.albinus@gmx.de>
19637         * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
19638         (xd_signature, xd_append_arg): Handle element type detection for
19639         empty arrays.
19640         (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
19641         SDATA () calls; this must be solved more general.
19642         (Fdbus_register_signal): Use SBYTES instead of strlen.
19644 2008-01-03  Magnus Henoch  <magnus@zemdatav>
19646         * dbusbind.c (xd_append_arg): Use unsigned char instead of
19647         unsigned int for byte values (necessary for big-endian platform).
19648         (Fdbus_call_method): Handle the case of no returned arguments.
19650 2007-12-31  Tom Tromey  <tromey@redhat.com>  (tiny change)
19652         * dbusbind.c (xd_read_message): Use non-static input_event struct.
19654 2007-12-31  Magnus Henoch  <mange@freemail.hu>
19656         * dbusbind.c (xd_signature): Signature of variant is just "v".
19658 2007-12-30  Michael Albinus  <michael.albinus@gmx.de>
19660         * dbusbind.c: Fix several errors and compiler warnings.
19661         Reported by Tom Tromey <tromey@redhat.com>.
19662         (XD_ERROR, XD_DEBUG_MESSAGE)
19663         (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
19664         (xd_append_arg): Part for basic D-Bus types rewritten.
19665         (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
19666         DBUS_TYPE_(U)INT16.  Don't call XD_DEBUG_MESSAGE with "%f" if not
19667         appropriate.
19668         (xd_read_message): Return Qnil.  Don't signal an error; it is not
19669         useful during event reading.
19670         (Fdbus_register_signal): Signal an error if the check for
19671         FUNCTIONP fails.
19672         (Fdbus_register_method): New function.  The implementation is not
19673         complete, the call of the function signals an error therefore.
19674         (Fdbus_unregister_object): New function, renamed from
19675         Fdbus_unregister_signal.  The initial check signals an error, if
19676         the object is not well formed.
19678 2007-12-30  Richard Stallman  <rms@gnu.org>
19680         * textprop.c (get_char_property_and_overlay):
19681         Signal error if POSITION is out of range in a buffer.
19683 2007-12-29  Martin Rudalics  <rudalics@gmx.at>
19685         * w32fns.c (Fx_create_frame): Make copy of frame parameters
19686         because the original parameters are in pure storage now.
19688 2007-12-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19690         * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
19692 2007-12-22  Eli Zaretskii  <eliz@gnu.org>
19694         * callint.c (syms_of_callint) <command-history>: Add reference to
19695         history-length in the doc string.
19697 2007-12-17  Jason Rumney  <jasonr@gnu.org>
19699         * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
19700         before passing as wParam.
19702 2007-12-22  Michael Albinus  <michael.albinus@gmx.de>
19704         * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
19705         DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
19706         DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
19707         Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
19708         as number.
19709         (Fdbus_call_method): Fix docstring.
19711 2007-12-21  Michael Albinus  <michael.albinus@gmx.de>
19713         * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
19714         New macros.
19715         (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
19716         (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
19717         Simplify.
19718         (xd_signature): New function.
19719         (xd_append_arg): Compute also signatures.  Major rewrite.
19720         (xd_retrieve_arg): Make debug messages friendly.
19721         (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
19722         Check for signatures of arguments.
19724 2007-12-19  Michael Albinus  <michael.albinus@gmx.de>
19726         * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
19727         (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
19728         (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
19729         (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
19730         (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
19731         (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
19732         (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
19733         (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
19734         (xd_retrieve_value): Remove.  Functionality included in ...
19735         (xd_append_arg): New function.
19736         (Fdbus_call_method, Fdbus_send_signal): Apply it.
19738 2007-12-16  Michael Albinus  <michael.albinus@gmx.de>
19740         * dbusbind.c (top): Include <stdio.h>.
19741         (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
19742         dbus_message_new_method_call and dbus_message_new_signal.
19743         (Fdbus_register_signal): Rename unique_name to uname.
19744         Check handler for FUNCTIONP instead of CHECK_SYMBOL.  Handle case of
19745         non-existing unique name.  Fix typos in matching rule.  Return an
19746         object which is useful in Fdbus_unregister_signal.
19747         (Fdbus_unregister_signal): Reimplementation, in order to remove
19748         only the corresponding entry.
19749         (Vdbus_registered_functions_table): Change the order of entries.
19750         Apply these changes in xd_read_message and Fdbus_register_signal.
19752 2007-12-16  Andreas Schwab  <schwab@suse.de>
19754         * fileio.c (Finsert_file_contents): Fix overflow check to not
19755         depend on undefined integer overflow.
19757 2007-12-14  Jason Rumney  <jasonr@gnu.org>
19759         * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
19760         for characters above 127.
19762 2007-12-13  Jason Rumney  <jasonr@gnu.org>
19764         * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
19765         before dereferencing array.
19766         (lookup_vk_code): Remove zero comparison.
19768 2007-12-14  Michael Albinus  <michael.albinus@gmx.de>
19770         * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
19771         (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
19772         Use `unsigned int' instead of `uint'.
19773         (xd_read_message, Fdbus_register_signal): Split expressions into
19774         multiple lines before operators "&&" and "||", according to the
19775         GNU Coding Standards.
19777 2007-12-14  Eli Zaretskii  <eliz@gnu.org>
19779         * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
19781 2007-12-12  Juri Linkov  <juri@jurta.org>
19783         * buffer.c (Frename_buffer): In interactive spec replace
19784         `read-buffer' with `read-string' that uses `buffer-name-history'
19785         as history, and the current buffer's name as default.
19787 2007-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
19789         * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
19790         manipulating the backtrace manually.
19791         (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
19792         (struct backtrace, backtrace_list): Remove.
19793         (command_loop_1): Remove dead var `no_direct'.
19795         * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
19796         preserve non-built-in buffer-local variables.
19797         (Fkill_all_local_variables): Don't re-create&re-set permanent
19798         buffer-local variables.
19800 2007-12-09  Juri Linkov  <juri@jurta.org>
19802         * buffer.c (Frename_buffer): Change interactive spec from "s" to
19803         Lisp code that uses `read-buffer' with current buffer as default.
19805 2007-12-08  Michael Albinus  <michael.albinus@gmx.de>
19807         * dbusbind.c (xd_read_message): Generate an event for every
19808         registered handler.  There might be several handlers registered
19809         for the same signal.
19810         (Fdbus_register_signal): Don't overwrite a registration for the
19811         same signal.  Add a new registration if handlers are different.
19812         (Vdbus_registered_functions_table): Rework doc string.
19814 2007-12-07  Michael Albinus  <michael.albinus@gmx.de>
19816         * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
19817         (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
19818         DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
19819         (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
19820         Unify argument lists.
19821         (xd_read_message, Fdbus_register_signal): Reorder and extend event
19822         arguments and hash table keys.  Use unique name for service.
19823         (Fdbus_unregister_signal): Remove checks.
19824         (Vdbus_registered_functions_table): Fix doc string.
19826 2007-12-05  Magnus Henoch  <mange@freemail.hu>
19828         * process.c (make_process): Initialize pty_flag to 0.
19830 2007-12-05  Jason Rumney  <jasonr@gnu.org>
19832         * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
19833         specified XBMs.
19835 2007-12-05  Richard Stallman  <rms@gnu.org>
19837         * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
19839 2007-12-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19841         * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
19842         New variable.
19843         (mac_try_close_socket) [MAC_OSX]: New function.
19844         [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
19845         Update cfsockets_for_select.  Replace invalid CFRunLoop source.
19847         * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
19848         Use mac_try_close_socket.
19850 2007-12-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19852         * unexmacosx.c (unrelocate): New argument BASE.  Use it instead of
19853         reloc_base.
19854         (copy_dysymtab): Compute relocation base here.
19855         (rebase_reloc_address) [__ppc64__]: New function.
19856         (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
19857         changed.
19859 2007-12-05  Jason Rumney  <jasonr@gnu.org>
19861         * w32proc.c (sys_spawnve): Quote args with wildcards.
19863 2007-12-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19865         * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
19866         __objc_* sections.
19867         (unrelocate) [_LP64]: Set relocation base to address of data segment.
19869 2007-12-05  Michael Albinus  <michael.albinus@gmx.de>
19871         * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
19872         Move check for Vdbus_registered_functions_table to
19873         xd_read_queued_messages.
19874         (xd_read_queued_messages): Protect xd_read_message calls by
19875         internal_condition_case_1.
19877 2007-12-04  Michael Albinus  <michael.albinus@gmx.de>
19879         * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
19880         Qdbus_system_bus and Qdbus_session_bus, respectively.
19881         (Vdbus_intern_symbols): Remove.
19882         (Vdbus_registered_functions_table): New hash table.
19883         (XD_SYMBOL_INTERN_SYMBOL): Remove.
19884         (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
19885         Rewrite in order to manage registered functions by hash table
19886         Vdbus_registered_functions_table.
19888 2007-12-03  Jan Djärv  <jan.h.d@swipnet.se>
19890         * xterm.c: Update URL to Window Manager Specification in comment.
19892 2007-12-02  Michael Albinus  <michael.albinus@gmx.de>
19894         * config.in (HAVE_DBUS): Add.
19896         * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
19897         (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
19898         (obj): Add $(DBUS_OBJ).
19899         (LIBES): Add $(DBUS_LIBS).
19900         (dbusbind.o): New target.
19902         * dbusbind.c: New file.
19904         * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
19906         * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
19907         (Qdbus_event): New Lisp symbol.
19908         (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
19909         (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
19910         (keys_of_keyboard): Define dbus-event.
19912         * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
19914 2007-12-01  Richard Stallman  <rms@gnu.org>
19916         * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
19918 2007-11-30  Jason Rumney  <jasonr@gnu.org>
19920         * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
19921         (w32con_reset_terminal_modes): Clear screen buffer.
19922         (w32_face_attributes): Don't use color indexes that are out of range.
19923         Only reverse the default colors.
19925         * xfaces.c (map_tty_color, tty_color_name): Remove special case for
19926         WINDOWSNT.
19928         * w32console.c, w32term.h (vga_stdcolor_name): Remove.
19930 2007-11-29  Jason Rumney  <jasonr@gnu.org>
19932         * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
19933         (w32_face_attributes): Use Vtty_defined_color_alist to determine
19934         if the terminal colors are initialized.
19935         (unspecified_fg, unspecified_bg): Remove unused declarations.
19937 2007-11-29  Andreas Schwab  <schwab@suse.de>
19939         * keyboard.c (apply_modifiers): Fix typo.
19941 2007-11-29  Richard Stallman  <rms@gnu.org>
19943         * keymap.c (Fcurrent_local_map): Doc fix.
19945 2007-11-28  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
19947         * s/gnu-kfreebsd.h: New file.
19949 2007-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
19951         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
19952         Don't cast redundantly.
19954         * keyboard.c (KEY_TO_CHAR): New macro.
19955         (parse_modifiers, apply_modifiers): Accept integer arguments.
19956         (read_key_sequence): Use them to unify the "shift->unshift" mapping
19957         for chars and symbol keys.
19958         After doing such remapping, apply function-key-map again.
19960 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
19962         * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
19963         compiled anymore.
19965 2007-11-26  Andreas Schwab  <schwab@suse.de>
19967         * process.c (list_processes_1): Fix indentation level of the
19968         command column.
19970 2007-11-23  Andreas Schwab  <schwab@suse.de>
19972         * editfns.c (Fformat): Handle %c specially since it requires the
19973         argument to be of type int.
19975 2007-11-23  Markus Triska  <markus.triska@gmx.at>
19977         * emacs.c (main): Call init_editfns before init_process, since
19978         init_process sets Vprocess_connection_type depending on OS release.
19980 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
19982         * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
19983         (find_symbol_value): Use do_symval_forwarding.
19985         * data.c (set_internal): Set the value in the `cons-cell' (for
19986         Buffer_Local_values) not only for frame-local variables.
19988 2007-11-22  Andreas Schwab  <schwab@suse.de>
19990         * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
19991         values to sprintf.
19992         * keymap.c (Fsingle_key_description): Likewise.
19993         * print.c (print_object): Likewise.
19995 2007-11-22  Jan Djärv  <jan.h.d@swipnet.se>
19997         * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
19998         file for image is nil.
20000 2007-11-22  Dan Nicolaescu  <dann@ics.uci.edu>
20002         * term.c: Include stdarg.h.
20003         (fatal): Implement using varargs.
20004         * lisp.h (fatal): Add argument types.  (Restore 2005-09-30 change).
20006 2007-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20008         * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
20009         * data.c (store_symval_forwarding): Get type from buffer_objfwd.
20010         Update call to buffer_slot_type_mismatch.
20011         * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
20012         (buffer_slot_type_mismatch): Update.
20013         * buffer.c (buffer_local_types): Remove.
20014         (buffer_slot_type_mismatch): Get the symbol and type as arguments.
20015         (defvar_per_buffer): Set the type in the buffer_objfwd.
20017 2007-11-21  Jason Rumney  <jasonr@gnu.org>
20019         * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
20020         CreateFileMapping returns NULL on failure.
20022 2007-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20024         * search.c (Fset_match_data): Remove the `evaporate' feature.
20025         (unwind_set_match_data): Don't use the `evaporate' feature.
20027 2007-11-21  Jason Rumney  <jasonr@gnu.org>
20029         * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
20031         * w32console.c (w32con_write_glyphs): Remove unused variables.
20033 2007-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
20035         * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
20037         * s/darwin.h (MULTI_KBOARD): Remove.
20039         * macfns.c (x_create_tip_frame, Fx_create_frame)
20040         (x_create_tip_frame): Don't deal with MULTI_KBOARD.
20042 2007-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
20044         * buffer.c (Fbuffer_local_value): Remove redundant test.
20045         (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
20046         than in `current-buffer' to match the comment.
20047         Do the swap using swap_in_global_binding.
20049         * data.c (store_symval_forwarding, set_internal):
20050         * eval.c (specbind): Remove dead code.
20052         * coding.c (detect_coding, Fupdate_coding_systems_internal):
20053         * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
20054         Since we do not want to see internal Lisp_*fwd objects here.
20056 2007-11-18  Jan Djärv  <jan.h.d@swipnet.se>
20058         * sysdep.c (init_system_name): Use getaddrinfo if available.
20060         * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
20061         (x_scroll_bar_note_movement): start, end, with, height in struct
20062         scroll_bar are integers and not Lisp_Object, so remove XINT for them.
20064 2007-11-17  Dan Nicolaescu  <dann@ics.uci.edu>
20066         * puresize.h (BASE_PURESIZE): Increase to 1190000.
20068 2007-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
20070         * buffer.h (struct buffer): Move `undo_list' back to before `name'.
20071         This undoes Richard's change of 14-Oct-2002.
20073         * alloc.c (allocate_other_vector):
20074         * lisp.h (allocate_other_vector): Remove.
20076         * window.c (struct save_window_data): Move non-lisp data to the end
20077         and make it `int' rather than Lisp_Object.
20078         (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
20079         Done wrap/unwrap integer values.
20080         (Fset_window_configuration, compare_window_configurations):
20081         Update use of fields to their new types.
20083         * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
20084         Turn integer fields into `int'.  Merge x_window_low and x_window_high.
20085         (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
20086         (SET_SCROLL_BAR_X_WINDOW): Remove.
20087         (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
20088         Access the new x_window field directly.
20089         * xterm.c (x_scroll_bar_create): Use a pseudovector.
20090         Don't wrap/unwrap integers into Lisp_Objects.
20091         (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
20092         (x_scroll_bar_report_motion):
20093         Don't wrap/unwrap integers into Lisp_Objects.
20094         (x_term_init): Use SDATA.
20095         (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
20096         (x_scroll_bar_set_handle, x_scroll_bar_remove)
20097         (XTset_vertical_scroll_bar, x_scroll_bar_expose)
20098         (x_scroll_bar_report_motion, x_scroll_bar_clear):
20099         * xfns.c (x_set_background_color):
20100         * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
20101         Access the new x_window field directly.
20103         * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
20104         (allocate_pseudovector): Make non-static.
20106         * lisp.h (enum pvec_type): New tag PVEC_OTHER.
20107         (allocate_pseudovector): Declare.
20108         (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
20110 2007-11-15  Andreas Schwab  <schwab@suse.de>
20112         * editfns.c (Fformat): Correctly format EMACS_INT values.
20113         Also take precision into account when formatting an integer.
20115         * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
20117 2007-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
20119         * keyboard.c (Fevent_symbol_parse_modifiers): New function.
20120         (syms_of_keyboard): Defsubr it.
20122         * data.c (swap_in_global_binding): Fix longstanding bug where
20123         store_symval_forwarding was not called with the right second argument,
20124         thus causing objfwd-ing from being dropped.
20126 2007-11-14  Juanma Barranquero  <lekktu@gmail.com>
20128         * macfns.c (Fx_create_frame, Fx_display_pixel_width)
20129         (Fx_display_pixel_height, Fx_display_planes)
20130         (Fx_display_color_cells, Fx_server_max_request_size)
20131         (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
20132         (Fx_display_visual_class, Fx_display_save_under):
20133         * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
20134         (Fx_display_pixel_height, Fx_display_planes)
20135         (Fx_display_color_cells, Fx_server_max_request_size)
20136         (Fx_server_vendor, Fx_server_version, Fx_display_screens)
20137         (Fx_display_mm_height, Fx_display_mm_width)
20138         (Fx_display_backing_store, Fx_display_visual_class)
20139         (Fw32_select_font, Fx_display_save_under):
20140         * xfns.c (Fx_create_frame, Fx_display_pixel_width)
20141         (Fx_display_pixel_height, Fx_display_planes)
20142         (Fx_display_color_cells, Fx_server_max_request_size)
20143         (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
20144         (Fx_display_save_under): Fix typos in docstrings.
20146 2007-11-14  Juanma Barranquero  <lekktu@gmail.com>
20148         * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
20149         corresponding to deleted entries; they are an implementation detail.
20150         (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
20151         Remove variables.
20152         (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
20153         (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
20154         (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
20155         (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
20156         (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
20157         (Fw32_define_rgb_color, Fw32_load_color_file)
20158         (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
20159         Fix typos in docstrings.
20160         (Fx_server_version): Reflow docstring.
20161         (Fw32_shell_execute): Doc fixes.
20163 2007-11-13  Juanma Barranquero  <lekktu@gmail.com>
20165         * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
20166         if w32_parse_hot_key returned nil.
20168 2007-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
20170         * xdisp.c (load_overlay_strings): Fix copy&paste typo.
20172 2007-11-09  Jason Rumney  <jasonr@gnu.org>
20174         * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
20176         * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
20178         * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
20179         Remove W32_SCROLL_BAR_CLICK_EVENT.
20181         * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
20182         Add MULTIMEDIA_KEY_EVENT.
20184         * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
20185         (lispy_multimedia_keys) [WINDOWSNT]: New array.
20186         (make_lispy_event) [WINDOWSNT]: Use it to translate
20187         MULTIMEDIA_KEY_EVENT.
20189         * w32term.h (WM_APPCOMMAND): Define if not already.
20190         (GET_APPCOMMAND_LPARAM): Likewise.
20192         * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
20193         WM_APPCOMMAND.
20195         * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
20196         (syms_of_w32fns): Export and initialize it.
20197         (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
20199 2007-11-09  Chong Yidong  <cyd@stupidchicken.com>
20201         * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
20202         twice.
20204         * xdisp.c (handle_face_prop): Fix last change.
20206 2007-11-09  Richard Stallman  <rms@gnu.org>
20208         * xdisp.c (handle_face_prop): Test for strings that came from overlays,
20209         not just for after-strings and before-strings.
20210         Call face_for_overlay_string and pass the overlay to it.
20211         (handle_display_prop): Determine whether property came from an overlay.
20212         Pass OVERLAY arg to handle_single_display_spec.
20213         (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
20214         (load_overlay_strings): Fill in it->string_overlays.
20215         (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
20217         * xfaces.c (face_for_overlay_string): Function renamed from
20218         face_at_buffer_position_no_overlays, and add arg OVERLAY.
20220         * dispextern.h (struct it): New elt string_overlays.
20221         New elt from_overlay, also in stack.
20222         Rearrange a few elements.
20223         (face_for_overlay_string): Decl renamed from
20224         face_at_buffer_position_no_overlays, and add argument.
20226 2007-11-09  Richard Stallman  <rms@gnu.org>
20228         * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
20229         to get the base face for an overlay string.
20231         * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
20233         * xfaces.c (face_at_buffer_position_no_overlays): New function.
20235         * xdisp.c (handle_stop): Move some code out of loop.
20237 2007-11-09  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20239         * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
20240         Fix conversion from Lisp object to ATSUFontID.
20242 2007-11-09  Jason Rumney  <jasonr@gnu.org>
20244         * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
20246 2007-11-09  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20248         * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
20249         Don't assume regions are aligned to page boundary.
20250         (print_load_command_name): Add LC_UUID if defined.
20252 2007-11-09  Richard Stallman  <rms@gnu.org>
20254         * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
20256 2007-11-07  Jason Rumney  <jasonr@gnu.org>
20258         * s/windows95.h: Remove.
20260 2007-11-06  Jan Djärv  <jan.h.d@swipnet.se>
20262         * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
20263         abort with a message on unhandled store_type values.
20265 2007-11-01  Jan Djärv  <jan.h.d@swipnet.se>
20267         * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
20268         Remove HAVE_X11R5 and HAVE_X11R4.
20270 2007-11-01  Dan Nicolaescu  <dann@ics.uci.edu>
20272         * Makefile.in: Remove references to sunfns.c and sunfns.o.
20274 2007-11-01  Johan Bockgård  <bojohan@gnu.org>
20276         * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
20277         Don't set s->stippled_p here, since it has already been set by
20278         x_set_glyph_string_gc from x_draw_glyph_string.
20280 2007-11-01  Dan Nicolaescu  <dann@ics.uci.edu>
20282         * sunfns.c: Remove file.
20284         * m/sun386.h:
20285         * m/sun2.h:
20286         * m/sparc.h: Remove Sun windows code.
20288 2007-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
20290         * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
20291         (init_keyboard): Set current_kboard's window-system to nil.
20292         (tty_read_avail_input): Typo.
20293         * frame.c (make_initial_frame): Don't initialize the initial_kboard.
20295 2007-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
20297         * s/usg5-4.h:
20298         * s/usg5-3.h:
20299         * s/ptx.h:
20300         * m/is386.h:
20301         * m/ibmps2-aix.h:
20302         * Makefile.in: Remove all mentions of X10.
20304         * dispnew.c (syms_of_display): Don't mention version 10.
20306 2007-10-28  Juanma Barranquero  <lekktu@gmail.com>
20308         * makefile.w32-in (OBJ1): Remove abbrev.$(O).
20309         ($(BLD)/abbrev.$(O)): Remove.
20311 2007-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
20313         Rewrite abbrev.c in Elisp.
20314         * image.c (Qcount): Don't declare as extern.
20315         (syms_of_image): Initialize and staticpro `Qcount'.
20316         * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
20317         * emacs.c (main): Don't call syms_of_abbrev.
20318         * Makefile.in (obj): Remove abbrev.o.
20319         (abbrev.o): Remove.
20320         * abbrev.c: Remove.
20322 2007-10-26  Martin Rudalics  <rudalics@gmx.at>
20324         * window.c (window_min_size_2): Don't count header-line.
20326 2007-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
20328         * frame.h (struct frame): Move all bit fields after the first bit
20329         field to take advantage of the available space.  Group all the
20330         chars together to reduce wasted space due to padding.
20332 2007-10-26  Juanma Barranquero  <lekktu@gmail.com>
20334         * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
20336         * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
20337         (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
20338         (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
20339         (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
20340         (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
20341         (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
20342         (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
20343         (last_marked, mark_object_loop_halt): Make static.
20345         * frame.c (syms_of_frame) <delete-frame-functions>:
20346         Fix typo in docstring.
20348 2007-10-25  Juanma Barranquero  <lekktu@gmail.com>
20350         * w32.c (init_environment): Fix tiny memory leak.
20351         (w32_get_resource): Remove unused variable `ok'.
20353 2007-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
20355         Make `window-system' into a keyboard-local variable (rather than
20356         frame-local as done originally by multi-tty).
20358         * keyboard.h (struct kboard): Add Vwindow_system.
20359         * keyboard.c (init_kboard): Set a default for Vwindow_system.
20360         (mark_kboards): Mark Vwindow_system.
20362         * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
20363         (init_display): Don't set the obsolete `window-system' frame-param.
20365         * xterm.c (x_term_init):
20366         * w32term.c (w32_create_terminal):
20367         * term.c (init_tty): Set Vwindow_system.
20368         * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
20369         multi-tty merge maybe?), copied from w32term.c.  Set Vwindow_system.
20371         * xfns.c (Fx_create_frame, x_create_tip_frame):
20372         * w32fns.c (Fx_create_frame, x_create_tip_frame):
20373         * macfns.c (Fx_create_frame):
20374         Don't set the obsolete `window-system' frame-param.
20376         * frame.h (Qwindow_system): Remove.
20377         * frame.c (Qwindow_system): Remove.  In `syms_of_frame' as well.
20378         (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
20380 2007-10-24  Richard Stallman  <rms@gnu.org>
20382         * frame.c (x_figure_window_size): For fullscreen case,
20383         set USPosition | PPosition without clobbering rest of window_prompting.
20385         * keyboard.c (Fcurrent_idle_time): Doc fix.
20387         * print.c (Fwith_output_to_temp_buffer): Doc fix.
20389 2007-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
20391         * process.c (unwind_request_sigio): Only define if __ultrix__.
20393         * callproc.c (child_setup): Remove spurious *.
20395         * lisp.h (Fget_text_property): Declare.
20396         (have_menus_p): Declare it here rather than in sys-dep header files.
20397         * macterm.h (have_menus_p):
20398         * msdos.h (have_menus_p):
20399         * xterm.h (have_menus_p): Remove.
20401         * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
20402         (Fmake_variable_frame_local): Just check the variable's const-ness
20403         rather than checking nil or t.
20405 2007-10-22  Jason Rumney  <jasonr@gnu.org>
20407         * w32fns.c: Include math.h.
20408         (w32_abort): Declaration moved to nt/config.nt.
20410         * s/ms-w32.h (HAVE_STDLIB_H): Define.
20411         (abort): Redefinition moved to nt/config.nt.
20413         * m/windowsnt.h: Remove.
20415 2007-10-22  Juanma Barranquero  <lekktu@gmail.com>
20417         * emacs.c (Fdump_emacs): Fix typo in message.
20418         (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
20419         <installation-directory>: Reflow docstring.
20421 2007-10-22  Juri Linkov  <juri@jurta.org>
20423         * minibuf.c: Allow minibuffer default to be a list of default values.
20424         With empty input use the first element of this list as returned default.
20425         (string_to_object)
20426         (read_minibuf_noninteractive): If defalt is cons, set val to its car.
20427         (read_minibuf): If defalt is cons, set histstring to its car.
20428         (Fread_string): If default_value is cons, set val to its car.
20429         (Fread_buffer): If def is cons, use its car.
20430         (Fcompleting_read): If defalt is cons, set val to its car.
20432 2007-10-21  Michael Albinus  <michael.albinus@gmx.de>
20434         * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
20436 2007-10-20  Juanma Barranquero  <lekktu@gmail.com>
20438         * doc.c (Fdocumentation): Check for advice in all cases.
20440 2007-10-19  Chong Yidong  <cyd@stupidchicken.com>
20442         * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
20444 2007-10-19  Richard Stallman  <rms@gnu.org>
20446         * doc.c (Fdocumentation): Check for and handle an advised function.
20448 2007-10-19  Juanma Barranquero  <lekktu@gmail.com>
20450         * process.c (Fset_process_filter): Doc fix.
20452 2007-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
20454         * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
20455         which caused key-translation-map to applied repeatedly (thus breaking
20456         double-mode).
20458 2007-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
20460         * xselect.c (x_own_selection, x_handle_selection_clear)
20461         (x_clear_frame_selections):
20462         * w32menu.c (list_of_panes, list_of_items):
20463         * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
20464         * textprop.c (validate_plist, interval_has_all_properties)
20465         (interval_has_some_properties, interval_has_some_properties_list)
20466         (add_properties, text_property_list):
20467         * process.c (Fget_buffer_process, list_processes_1, status_notify):
20468         * minibuf.c (Fassoc_string):
20469         * macselect.c (x_own_selection, x_clear_frame_selections)
20470         (Fx_disown_selection_internal):
20471         * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
20472         Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
20474 2007-10-17  Chong Yidong  <cyd@stupidchicken.com>
20476         * process.c: Link to libs for calling res_init() if available.
20477         (Fmake_network_process): Call res_init() before getaddrinfo or
20478         gethostbyname, if possible.
20480 2007-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
20482         * lread.c (read1): Set pvectype for char_tables.
20484         * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
20485         (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
20486         Add type checks.
20487         (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
20489         * alloc.c (free_misc): Use XMISCTYPE.
20490         (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
20492 2007-10-17  Glenn Morris  <rgm@gnu.org>
20494         * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
20495         (syms_of_minibuf): Add Qcompletion_ignore_case.
20496         * dired.c (Qcompletion_ignore_case): Change to external.
20497         (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
20498         * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
20499         (Fread_file_name): Use it rather than intern'ing.
20501         * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
20502         (Fread_coding_system): Ignore case of user input.
20504 2007-10-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20506         * xdisp.c (handle_display_prop): Ignore display specs after
20507         replacing one when string text is being replaced.
20508         (handle_single_display_spec): Pretend as if characters with display
20509         property haven't been consumed only when buffer text is being replaced.
20511 2007-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
20513         * xfns.c (Fx_create_frame, Fx_display_list):
20514         * window.c (window_fixed_size_p, enlarge_window)
20515         (shrink_window_lowest_first):
20516         * macterm.c (init_font_name_table):
20517         * macfns.c (Fx_create_frame, Fx_display_list):
20518         * lread.c (close_load_descs):
20519         * keyboard.c (read_char_x_menu_prompt):
20520         * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
20521         * coding.c (code_convert_region_unwind): Test the type of an object
20522         rather than just !NILP before extracting data from it.
20524         * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
20526         * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
20527         (XMISCANY): New macro.
20528         (XMISCTYPE): Use it.
20529         (struct Lisp_Misc_Any): New type.
20530         (union Lisp_Misc): Use it.
20531         (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
20532         * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
20533         (find_symbol_value, set_internal, default_value, Fset_default)
20534         (Fmake_variable_buffer_local, Fmake_local_variable)
20535         (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
20536         (Flocal_variable_if_set_p, Fvariable_binding_locus):
20537         The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
20538         * alloc.c (allocate_buffer): Set the size and tag.
20539         (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
20540         Use XMISCANY.
20541         (die): Follow the GNU convention for error messages.
20542         * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
20543         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
20544         tag any more.
20545         (set_buffer_internal_1):
20546         * frame.c (store_frame_param):
20547         * eval.c (specbind):
20548         * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
20550         * doc.c (Fsnarf_documentation): Simplify.
20552 2007-10-14  Juanma Barranquero  <lekktu@gmail.com>
20554         * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
20555         (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
20557 2007-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
20559         * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
20561 2007-10-14  Juanma Barranquero  <lekktu@gmail.com>
20563         * eval.c (do_autoload): Don't save autoloads.
20565         * data.c (Ffset): Save autoload of the function being set.
20567 2007-10-07  John Paul Wallington  <jpw@pobox.com>
20569         * xfns.c (x_create_tip_frame): Set the `display-type' frame
20570         parameter before setting up faces.
20572 2007-10-13  Eli Zaretskii  <eliz@gnu.org>
20574         * ccl.c (Fregister_code_conversion_map):
20575         * keyboard.c (append_tool_bar_item): Reformat last change.
20577         * lisp.h (eabs): Rename from `abs'.  All callers changed.
20579 2007-10-05  Dmitry Antipov  <dmantipov@yandex.ru>
20581         * buffer.c (add_overlay_mod_hooklist):
20582         * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
20583         * fontset.c (make_fontset):
20584         * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
20585         (append_tool_bar_item):
20586         * macmenu.c (grow_menu_items):
20587         * w32menu.c (grow_menu_items):
20588         * xmenu.c (grow_menu_items): Use larger_vector.
20590 2007-10-13  Eli Zaretskii  <eliz@gnu.org>
20592         * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
20593         selected frame'' on MSDOS).
20595 2007-10-12  Martin Rudalics  <rudalics@gmx.at>
20597         * frame.c (Qexplicit_name): New variable.
20598         (x_report_frame_params): Report it in parameter alist.
20599         (syms_of_frame): Intern and staticpro it.
20601 2007-10-10  Patrick Mahan  <mahan@mahan.org>  (tiny change)
20603         * macfns.c (x_create_tip_frame): Set terminal for frame.
20605 2007-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
20607         * frame.c (Qenvironment): Remove.
20608         (syms_of_frame) <Qenvironment>: Don't initialize.
20609         (Fdelete_frame): Don't treat the `environment' param specially.
20610         * frame.h (Qenvironment): Don't declare.
20611         * callproc.c (set_initial_environment): Don't set unused frame param.
20613         * frame.c (Fframe_with_environment): Remove.
20614         (syms_of_frame) <Sframe_with_environment>: Don't declare.
20616         * lisp.h (Fframe_with_environment): Don't declare.
20618 2007-10-10  Juanma Barranquero  <lekktu@gmail.com>
20620         * indent.c (indent_tabs_mode, last_known_column)
20621         (last_known_column_modified): Make static.
20622         (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
20624 2007-10-10  Katsumi Yamaoka  <yamaoka@jpl.org>
20626         * puresize.h (BASE_PURESIZE): Increase to 1170000.
20628 2007-10-09  Jason Rumney  <jasonr@gnu.org>
20630         * w32term.c (x_set_window_size): Disable code that attempts to tell
20631         Lisp code about a size change before it actually happens.
20633 2007-10-09  Richard Stallman  <rms@gnu.org>
20635         * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
20636         return HANDLED_RETURN.
20638 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
20640         * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
20641         when there's an unread command event.
20643         * frame.c (focus_follows_mouse): Move here from frame.el to allow
20644         window autoselection act appropriately when leaving selected frame.
20645         (syms_of_frame): Initialize focus_follows_mouse.
20646         * frame.h (focus_follows_mouse): Extern it.
20647         * macterm.c (XTread_socket): When focus_follows_mouse is nil
20648         make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
20649         * msdos.c (dos_rawgetc): Likewise.
20650         * w32term.c (w32_read_socket): Likewise.
20651         * xterm.c (handle_one_xevent): Likewise.
20652         * xdisp.c (syms_of_xdisp): In doc-string of
20653         mouse-autoselect-window mention focus-follows-mouse.
20655 2007-10-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20657         * macterm.c (mac_load_query_font): Fix missing return value.
20658         [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
20659         Add BLOCK_INPUT.
20661 2007-10-08  Richard Stallman  <rms@gnu.org>
20663         * xdisp.c (get_window_cursor_type): Implement documented behavior
20664         for cursor-in-non-selected-windows = t.
20666 2007-10-08  Jason Rumney  <jasonr@gnu.org>
20668         * w32.c (w32_get_resource): Always close registry keys.
20670 2007-10-08  Jason Rumney  <jasonr@gnu.org>
20672         * makefile.w32-in (LIBS): Add COMCTL32.
20674         * w32fns.c (globals_of_w32fns): Init common controls.
20676 2007-10-08  Richard Stallman  <rms@gnu.org>
20678         * image.c (our_memory_buffer): Rename from omfib_buffer.
20680 2007-10-08  Richard Stallman  <rms@gnu.org>
20682         * buffer.c (Foverlays_at): Doc fix.
20684 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20686         * fns.c (Fplist_put): Preserve uneven tail data.
20688 2007-10-08  Peter O'Gorman  <bug-gnu-emacs@mlists.thewrittenword.com>  (tiny change)
20690         * termhooks.h (enum event_kind): Remove trailing comma.
20692         * frame.h (enum): Remove trailing comma.
20694 2007-10-08  Dhruva Krishnamurthy  <dhruvakm@gmail.com>  (tiny change)
20696         * w32proc.c (delete_child): Don't terminate threads of zombies.
20698 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
20700         * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
20702         * keyboard.c (syms_of_keyboard): Set up new Lisp variable
20703         last-repeatable-command.
20704         (init_kboard): Initialize Vlast_repeatable_command.
20705         (command_loop_1): Set it to real_this_command unless that was
20706         bound to an input event.
20707         (mark_kboards): Mark it.
20709 2007-10-08  Richard Stallman  <rms@gnu.org>
20711         * eval.c (condition-case): Doc fix.
20713 2007-10-08  Masatake YAMATO  <jet@gyve.org>
20715         * xfaces.c (tty_supports_face_attributes_p): Fix code
20716         for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
20717         was copied and not edited.
20719 2007-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
20721         Add new `input-decode-map' keymap and use it for terminal
20722         escape sequences.
20723         * keyboard.h (struct kboard): Add Vinput_decode_map.
20724         Remove Vlocal_key_translation_map.
20725         * keyboard.c (read_key_sequence): Add support for input-decode-map.
20726         (init_kboard): Init input-decode-map.
20727         Replace local-key-translation-map back with key-translation-map.
20728         (syms_of_keyboard): Declare input-decode-map.
20729         Remove local-key-translation-map.  Update docstrings.
20730         (mark_kboards): Mark Vinput_decode_map.
20731         Don't mark Vlocal_key_translation_map.
20732         * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
20733         Replace local-key-translation-map back with key-translation-map.
20734         * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
20735         Bind in input-decode-map rather than function-key-map.
20737         * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
20738         This was made redundant by the previous introduction of XSETPVECTYPE.
20740 2007-10-09  Richard Stallman  <rms@gnu.org>
20742         * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
20744 2007-09-29  Richard Stallman  <rms@gnu.org>
20746         * eval.c (internal_condition_case_2, internal_condition_case_1)
20747         (internal_condition_case): Reenable abort if x_catching_errors ()
20748         to see if that really happens and why.
20750 2007-10-06  Andreas Schwab  <schwab@suse.de>
20752         * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
20754 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
20756         * image.c (syms_of_image) <image-types>: Fix typo in docstring.
20758 2007-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20760         * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
20762 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
20764         * window.h (struct window):
20765         * window.c (struct save_window_data, struct saved_window):
20766         * termhooks.h (struct terminal):
20767         * process.h (struct Lisp_Process):
20768         * frame.h (struct frame):
20769         * buffer.h (struct buffer):
20770         * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
20771         (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
20772         The size field of (pseudo)vectors is now unsigned.
20773         (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
20775         * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
20776         Turn `count' into an integer.
20778         * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
20779         (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
20780         * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
20781         * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
20782         (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
20784         * alloc.c (allocate_pseudovector): New fun.
20785         (ALLOCATE_PSEUDOVECTOR): New macro.
20786         (allocate_window, allocate_terminal, allocate_frame)
20787         (allocate_process): Use it.
20788         (mark_vectorlike): New function.
20789         (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
20790         (mark_terminals): Use it.
20791         (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
20792         (Fmake_byte_code): Use XSETPVECTYPE.
20794         * frame.c (Fframe_parameters): Minor simplification.
20796         * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
20798         * marker.c (Fmarker_buffer): Make test for odd case into a failure.
20800         * buffer.c (Fget_buffer_create, init_buffer_once):
20801         * lread.c (defsubr):
20802         * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
20804         * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
20805         defined differently in the m/*.h files.
20806         (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
20807         (XSETPVECTYPE): New macro.
20808         (XSETPSEUDOVECTOR): Use it.
20810         * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
20811         (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
20813         * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
20814         * lread.c (defvar_per_buffer):
20815         * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
20817         * window.c (candidate_window_p): Only consider as visible frames that
20818         are on the same terminal.
20820         * m/ibms390x.h (MARKBIT): Remove unused macro.
20822 2007-10-01  Juanma Barranquero  <lekktu@gmail.com>
20824         * lread.c (Fload): Fix typo in docstring.
20826 2007-10-01  Michaël Cadilhac  <michael@cadilhac.name>
20828         * floatfns.c (Fexpt): Manually check for overflows, so that a power
20829         of a non-zero value can't yield zero.
20831 2007-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
20833         * term.c (term_clear_mouse_face, term_mouse_highlight)
20834         (tty_write_glyphs_with_face): Only define is HAVE_GPM.
20836         * print.c (safe_debug_print): Use XHASH.
20838         * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
20839         Lisp elements such as tags.
20840         (XHASH): New macro.
20841         (EQ): Use it.
20842         (SREF, SSET, STRING_COPYIN): Use SDATA.
20843         (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
20845         * alloc.c (mark_terminal): Remove left-over declaration.
20846         (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
20847         (allocate_vectorlike): Remove type argument.  Adjust callers.
20848         (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
20849         Only handle the one remaining MEM_TYPE_VECTORLIKE.
20851         * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
20852         to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
20853         (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
20854         (lisp_align_free, make_interval, allocate_string, allocate_string_data)
20855         (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
20856         Use them.
20858         * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
20859         Don't let signal handlers run when a GC is freed but not yet NULL'ed.
20860         (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
20862 2007-09-28  Dan Nicolaescu  <dann@ics.uci.edu>
20864         * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
20865         loaded by default.
20867 2007-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
20869         * term.c (Fgpm_mouse_start): Don't signal an error if already activated
20870         on this tty.
20871         (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
20873         * term.c (mouse_face_window): Rename from Qmouse_face_window.
20874         Update all users.
20875         (handle_one_term_event): Use Gpm_DrawPointer.
20876         (Fgpm_mouse_start): Rename from Fterm_open_connection.
20877         Signal errors instead of returning nil.  Always return nil.
20878         (Fgpm_mouse_stop): Rename from Fterm_close_connection.
20879         Make it a noop if gpm-mouse was not activated.
20880         (syms_of_term): Update names.
20882 2007-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
20884         * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
20885         (init_sys_modes): Check that gpm_tty is the current tty.
20887         * alloc.c (allocate_terminal): Set the vector size to only count the
20888         lisp fields.  Initialize those to nil.
20889         (mark_object): Don't treat terminals specially.
20890         (mark_terminal): Remove.
20891         (mark_terminals): Use mark_object instead.
20893         * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
20894         the GC to the beginning.
20896         * indent.h:
20897         * indent.c: Use EMACS_INT for ints coming from Elisp data.
20899         * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
20901 2007-09-25  Jason Rumney  <jasonr@gnu.org>
20903         * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
20905         * w32console.c (create_w32cons_output): Remove.
20907         * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
20909         * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
20910         (reset_sys_modes): Use reset_terminal_modes_hook.
20912 2007-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20914         * eval.c (do_autoload): Don't output any message.
20916 2007-09-24  Juri Linkov  <juri@jurta.org>
20918         * emacs.c (standard_args): Change priority of "--no-splash"
20919         from 40 to 3.  Add "--no-desktop" with the same priority.
20921 2007-09-23  Dmitry Antipov  <dmantipov@yandex.ru>
20923         * alloc.c (gc_sweep): Check cons cell mark bits word by word
20924         and optimize the case where they are all 1.
20926 2007-09-23  Johannes Weiner  <hannes@saeurebad.de>
20928         * lisp.h (abs): Define if not defined.
20929         * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
20930         Don't define `abs', since it's defined in lisp.h.
20932 2007-09-22  Eli Zaretskii  <eliz@gnu.org>
20934         * term.c (DEV_TTY): New macro.  Provide a definition for MS-Windows.
20935         (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
20936         (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
20937         (init_tty): Use DEV_TTY instead of "/dev/tty".
20938         [WINDOWSNT]: No need to protect from NAME arg being null.
20940 2007-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
20942         * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
20943         up the tty state.
20945 2007-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20947         * termhooks.h (term_gpm): Delete.  Use gpm_tty's NULLness instead.
20948         (gpm_tty): Change its type.
20949         * term.c (term_gpm): Delete.  Use gpm_tty's NULLness instead.
20950         (gpm_tty): Change its type and initialize it.
20951         (Fterm_open_connection): Check the frame is indeed a tty.
20952         Use the new gpm_tty.
20953         (Fterm_close_connection): Use the new gpm_tty.
20954         * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
20955         * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
20957 2007-09-21  Juanma Barranquero  <lekktu@gmail.com>
20959         * w32term.c (x_draw_glyph_string): Use strike_through_color, not
20960         underline_color, to draw strike-through.
20962 2007-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20964         * lisp.h (allocate_terminal): Declare.
20966         * window.c (candidate_window_p): Consider frames that are being placed
20967         by the user as somewhere between visible and iconified.
20968         (window_loop): Prefer windows on the current frame.
20969         (Fselect_window): Move the use of select-frame to the beginning so we
20970         can just delegate all the work (it'll call us back anyway).
20972         * frame.c (Qdisplay_environment_variable):
20973         * frame.h (Qdisplay_environment_variable): Delete.
20975         * .gdbinit (xbacktrace): Print the arg's address rather than the value
20976         of the first arg, since that value may be a union.
20978         * callproc.c (child_setup, getenv_internal): Use the frame's `display'
20979         parameter rather than Qdisplay_environment_variable.  If all else
20980         fails, look for DISPLAY in initial-environment.
20982 2007-09-21  Glenn Morris  <rgm@gnu.org>
20984         * Makefile.in (emacstool): Remove target.
20985         (lisp, shortlisp): Remove termdev.elc.
20987 2007-09-21  Markus Triska  <markus.triska@gmx.at>
20989         * xterm.c (x_delete_display): Compile session management conditionally.
20991 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20993         * callproc.c (getenv_internal_1): New function.
20994         (getenv_internal): Use it.
20995         (Fgetenv_internal): Use it.  Accept an env-list as optional arg.
20997         * terminal.c (get_terminal): Don't accept ints to represent terminals.
20998         (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
20999         (Fset_terminal_parameter): Work with dead terminals as well.
21000         (Fmodify_terminal_parameters): Remove.
21002         * terminal.c (get_terminal): Handle terminals.
21003         Make sure the terminal returned is live.
21004         (create_terminal): Use allocate_terminal.
21005         (mark_terminals): Move to alloc.c.
21006         (delete_terminal): Use terminal->name as liveness status.
21007         NULL out fields after freeing their contents.
21008         Don't deallocate the object.
21009         (Fframe_terminal): Use FRAME_TERMINAL.  Return the terminal object
21010         rather than an int.
21011         (Fterminal_live_p): Accept non-integer arguments.
21012         (Fterminal_list): Return terminal objects rather than an ints.
21014         * alloc.c (enum mem_type): New member for `terminal' objects.
21015         (allocate_terminal): New function.
21016         (mark_maybe_pointer, valid_lisp_object_p, mark_object):
21017         Handle terminals.
21018         (mark_terminal): New fun.
21019         (mark_terminals): Move from terminal.c.
21021         * term.c (get_tty_terminal): Don't treat output_initial specially.
21022         (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
21023         (delete_tty): Use terminal->name as liveness status.
21025         * termhooks.h (struct terminal): Make it into a pseudovector.
21026         Remove `deleted' replaced by checking `name's nullness.
21028         * print.c (print_object): Handle terminals.
21030         * lisp.h (enum pvec_type): New `terminal' pseudovector.
21031         (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
21033         * frame.c (make_terminal_frame):
21034         * keyboard.c (tty_read_avail_input):
21035         * w32term.c (x_delete_terminal):
21036         * xfns.c (Fx_create_frame, x_create_tip_frame):
21037         * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
21039 2007-09-20  Glenn Morris  <rgm@gnu.org>
21041         * process.c (Fmake_network_process): Doc fix.
21043 2007-09-19  Jason Rumney  <jasonr@gnu.org>
21045         * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
21047 2007-09-19  Michaël Cadilhac  <michael@cadilhac.name>
21049         * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
21050         Fix a C warning regarding variable constness.
21052         * xterm.c (handle_one_xevent): Fix a C warning.
21054 2007-09-18  Jason Rumney  <jasonr@gnu.org>
21056         * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
21058 2007-09-17  Jan Djärv  <jan.h.d@swipnet.se>
21060         * gtkutil.c (gdpy_def): New variable.
21061         (xg_initialize): Initialize gdpy_def.
21062         (xg_display_close): If no other display exists, set gdpy_def to a
21063         new connection.
21065 2007-09-16  Jan Djärv  <jan.h.d@swipnet.se>
21067         * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
21068         when we have no file name for the icon.
21069         (xg_tool_bar_expose_callback): Remove.
21070         (xg_create_tool_bar): Don't connect expose signal to
21071         xg_tool_bar_expose_callback.
21072         (xg_get_file_with_chooser): Move GCPRO1 after declarations.
21074 2007-09-16  Andreas Schwab  <schwab@suse.de>
21076         * alloc.c (reset_malloc_hooks): Set the hooks to the previous
21077         values instead of zapping them.
21079 2007-09-14  Glenn Morris  <rgm@gnu.org>
21081         * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
21082         * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
21083         * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
21084         scope and rename to omfib_buffer for clarity.
21085         (gif_load) <interlace_start, interlace_increment>: Move to file scope.
21087 2007-09-14  Kenichi Handa  <handa@m17n.org>
21089         * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
21091 2007-09-13  Jason Rumney  <jasonr@gnu.org>
21093         * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
21095         * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
21097         * macterm.c (mac_initialize): Don't call mac_init_fringe here.
21098         (mac_term_init): Call here instead, passing rif.
21100 2007-09-13  Glenn Morris  <rgm@gnu.org>
21102         * s/hpux.h: No longer define `static' as nothing.
21104 2007-09-13  Johan Bockgård  <bojohan@gnu.org>
21106         * callint.c (Fcall_interactively): Remove unused var `fun'.
21108 2007-09-12  Romain Francoise  <romain@orebokech.com>
21110         * window.c (prefer_window_split_horizontally, display_buffer):
21111         Revert 2007-09-08 change.
21113 2007-09-12  Glenn Morris  <rgm@gnu.org>
21115         * alloca.c: Remove file.
21116         * Makefile.in (alloca): Do not undef.
21117         (allocaobj, alloca.o): Remove.
21118         (otherobj): Remove allocaobj.
21119         * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
21120         * regex.c (C_ALLOCA): Remove all references and code that was only
21121         used when this was defined.
21122         * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
21123         * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
21124         * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
21126         * Makefile.in (SOURCES, unlock, relock): Delete.
21128         * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
21129         (menu_grab_callback): All uses changed.
21131         * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
21132         (x_reply_selection_request): All uses changed.
21134 2007-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
21136         * lread.c (load_warn_old_style_backquotes): Change message to look
21137         better when it appears in the middle of byte-compiler messages.
21139 2007-09-10  Dan Nicolaescu  <dann@ics.uci.edu>
21141         * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
21143         * xterm.c (x_create_terminal): Add comment.
21145         * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
21147 2007-09-10  Richard Stallman  <rms@gnu.org>
21149         * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
21151 2007-09-10  Michaël Cadilhac  <michael@cadilhac.name>
21153         * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
21154         (DEFUN): Document `intspec', use it instead of `prompt'.
21156         * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
21158         * data.c (Finteractive_form): If the interactive specification starts
21159         with a `(', use it as a Lisp form.
21161         * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
21162         name and file modes.
21164         * callint.c (Fcall_interactively): Comment fixes.
21166 2007-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21168         * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
21169         and compiled functions.
21171 2007-09-08  Fredrik Axelsson  <f.axelsson@gmail.com>
21173         * window.c (prefer_window_split_horizontally): New variable.
21174         (display_buffer): Consider splitting window horizontally depending
21175         on prefer_window_split_horizontally.
21177 2007-09-08  Eli Zaretskii  <eliz@gnu.org>
21179         * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
21181 2007-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
21183         * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
21185         * frame.c (x_set_frame_parameters): Check number is positive before
21186         using XFASTINT.
21188         * window.c (freeze_window_start): Don't presume selected_window holds
21189         a window object.
21190         (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
21192 2007-09-07  Angelo Graziosi  <Angelo.Graziosi@roma1.infn.it>  (tiny change)
21194         * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
21196 2007-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
21198         * window.c (Vsplit_window_preferred_function): New var.
21199         (Fdisplay_buffer): Use it.
21200         (syms_of_window): Export, and initialize it.
21202 2007-09-06  Pixel  <pixel@mandriva.com>  (tiny change)
21204         * image.c (gif_load): Fix bug: Handle nonexistent colormap.
21206 2007-09-06  Glenn Morris  <rgm@gnu.org>
21208         * gtkutil.c (menu_grab_callback) <cnt>:
21209         * xselect.c (x_reply_selection_request) <cnt>: Move static
21210         variable to file scope.
21212 2007-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
21214         * xdisp.c (redisplay_internal): Make sure Elisp code always sees
21215         consistent values of selected_frame and selected_window.
21217 2007-09-04  Jason Rumney  <jasonr@gnu.org>
21219         * w32console.c (initialize_w32_display): Zero unused hooks.
21221 2007-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
21223         * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
21224         (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
21226 2007-09-04  Jason Rumney  <jasonr@gnu.org>
21228         * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
21229         in w32console.c.  Set up input.  Remove XXX comments that have been
21230         confirmed as correct.
21232         * s/ms-w32.h (MULTI_KBOARD): Define.
21234         * w32console.c (one_and_only_w32cons): Remove.
21235         (initialize_w32_display): Take terminal argument.
21237         * term.c (init_tty) [WINDOWSNT]: Pass terminal to
21238         initialize_w32_display.
21239         (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
21241         * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
21243         * keyboard.c (discard_mouse_events): Discard it.
21244         (make_lispy_event): Translate it to a lisp event.
21245         (lispy_wheel_names): Add wheel-left and right events.
21246         (syms_of_keyboard): Enlarge wheel_syms.
21248         * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
21249         <WM_MOUSEHWHEEL>: Pass new system message to lisp.
21251         * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
21253         * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
21254         from WM_MOUSEHWHEEL.
21255         (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
21257         * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
21258         terminal.
21260         * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
21261         keyboard for the terminal.
21263 2007-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
21265         * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
21266         (Vresume_tty_hook): Rename from Vresume_tty_functions.
21267         (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
21268         and resume-tty-function to resume-tty-hook.
21269         (Fsuspend_tty, Fresume_tty): Use new names.
21271 2007-09-02  Jan Djärv  <jan.h.d@swipnet.se>
21273         * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
21274         if it starts with "n:".
21276 2007-08-31  Jan Djärv  <jan.h.d@swipnet.se>
21278         * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
21280 2007-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
21282         * frame.h:
21283         * frame.c (Qterm_environment_variable): Remove.
21284         (syms_of_frame): Don't init and staticpro it.
21286         * callproc.c (getenv_internal): Remove special case for $TERM.
21288         * callproc.c (Vinitial_environment): New variable.
21289         (set_initial_environment): Initialize it.
21290         (syms_of_callproc): Declare it.
21291         (child_setup): Don't mess with TERM via Qterm_environment_variable; the
21292         TERM under which a process runs is never related to the TERM in which
21293         Emacs is running.
21295 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
21297         * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
21298         * s/darwin.h: ... do it here.
21300 2007-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
21302         * lisp.h (set_initial_environment): Rename from set_global_environment.
21304         * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
21305         removed by mistake on the multi-tty branch.
21307         * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
21308         (Fmodify_frame_parameters): Return a value.
21310         * image.c (png_load): Comment-out var only used in commented-out code.
21312         * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
21313         before passing it to mark_object.
21315         * xfaces.c (internal_resolve_face_name): Return a value.
21316         (internal_resolve_face_name, resolve_face_name_error): Comment out.
21318         * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
21319         (x_icon): Comment-out var only used in commented-out code.
21321 2007-08-29  Romain Francoise  <romain@orebokech.com>
21323         * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
21324         QUIT hasn't been provided.
21326 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
21328         * callproc.c (child_setup, getenv_internal): Use the
21329         display-environment-variable and term-environment-variable frame params.
21330         (set_initial_environment): Initialise Vprocess_environment.
21332         * config.in: Disable multi-keyboard support on a mac.
21334         * frame.c (Qterm_environment_variable)
21335         (Qdisplay_environment_variable): New variables.
21336         (syms_of_frame): Intern and staticpro them.
21337         (Fmake_terminal_frame): Disable output method test.
21339         * frame.h: Declare them here.
21341         * macfns.c (x_set_mouse_color): Get rif from the frame.
21342         (x_set_tool_bar_lines): Don't use updating_frame.
21343         (mac_window): Add 2 new parameters for consistency with other systems.
21344         (Fx_create_frame): Fix doc string.  Rename the parameter.  Set the
21345         frame parameters following what is done in X11 and w32.  Don't use
21346         FRAME_MAC_DISPLAY_INFO.
21347         (Fx_open_connection, start_hourglass): Remove window-system check.
21348         (x_create_tip_frame): Get the keyboard from the terminal.
21350         * macmenu.c: Reorder includes.
21351         (Fx_popup_menu): Use terminal specific mouse_position_hook.
21353         * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
21354         terminal parameter.
21355         (x_clear_frame): Add a frame parameter.
21356         (note_mouse_movement): Get rif from the frame.
21357         (mac_term_init): Initialize the terminal.
21358         (mac_initialize): Make static and move terminal initialization ...
21359         (mac_create_terminal): ... to this new function.
21361         * macterm.h (struct mac_display_info): Add terminal.
21362         (mac_initialize): Delete declaration.
21364         * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
21366         * sysdep.c: Comment out text after #endif.
21368         * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
21369         is defined.  Better initialize ttys in windows.  Use terminal
21370         specific mouse_position_hook.
21372         * termhooks.h (union display_info): Add mac_display_info.
21374         * w32fns.c (Fx_create_frame): Use kboard from the terminal.
21375         Set the default minibuffer frame, window_system and the rest of the
21376         frame parameters following what is done in X11.
21378         * w32term.c (w32_initialize): Make static.
21380         * xselect.c (x_handle_selection_clear): Only access
21381         terminal->kboard when MULTI_KBOARD is defined.
21383         * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
21384         (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
21386 2007-08-29  Jason Rumney  <jasonr@gnu.org>
21388         * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
21389         (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
21391         * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
21392         (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
21394         * keyboard.c (restore_kboard_configuration): Only define when
21395         MULTI_KBOARD defined.
21397         * makefile.w32-in: Update dependancies from Makefile.in.
21398         (OBJ1): Add terminal.$(O)
21400         * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
21401         Don't define function body.
21402         (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
21404         * termhooks.h (display_info) [WINDOWSNT]: Add w32.
21406         * w32.c (request_sigio, unrequest_sigio): Remove.
21408         * w32console.c (w32con_move_cursor, w32con_clear_to_end)
21409         (w32con_clear_frame, w32con_clear_end_of_line)
21410         (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
21411         (w32con_delete_glyphs, w32con_set_terminal_window)
21412         (scroll_line, w32_sys_ring_bell): Add frame arg.
21413         (w32con_set_terminal_modes, w32con_reset_terminal_modes):
21414         Add terminal arg.
21415         (PICK_FRAME): Remove.
21416         (w32con_write_glyphs): Use frame specific terminal coding.
21417         (one_and_only_w32cons): New global variable.
21418         (initialize_w32_display): Use it for storing hooks.
21419         (create_w32cons_output): New function.
21421         * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
21422         arg a frame.
21424         * w32fns.c (x_create_tip_frame): Set terminal and ref count.
21425         Set window_system.
21426         (x_set_tool_bar_lines): Don't use updating_frame.
21427         (Fx_create_frame): Set terminal and ref count.
21428         (Fx_open_connection): Remove window-system check.
21430         * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
21432         * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
21433         (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
21434         (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
21435         Add frame arg.
21436         (x_delete_terminal, w32_create_terminal): New functions.
21437         (w32_term_init): Create a terminal.
21438         (w32_initialize): Move terminal specific initialization to
21439         w32_create_terminal.
21441         * w32term.h (x_output): Remove foreground_pixel and background_pixel.
21442         (w32_clear_rect, w32_clear_area): Use background from frame.
21443         (w32_display_info): Add terminal.
21444         (w32_sys_ring_bell, x_delete_display): Declare here.
21446         * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
21448         * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
21450 2007-08-29  Kalle Olavi Niemitalo  <kon@iki.fi>  (tiny change)
21452         * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
21453         Fix get_named_tty calls for the controlling tty.
21455 2007-08-29  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
21457         * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
21459 2007-08-29  Yoshiaki Kasahara  <kasahara@nc.kyushu-u.ac.jp>  (tiny change)
21461         * term.c (tty_insert_glyphs): Add missing first parameter.
21463 2007-08-29  Károly Lőrentey  <karoly@lorentey.hu>
21465         * buffer.c (Fbuffer_list, Fbury_buffer):
21466         Take frame->buried_buffer_list into account.
21468         * cm.c (current_tty): New variable, for cmputc().
21469         (cmputc): Use it.
21470         (cmcheckmagic): Add tty parameter, look up terminal streams there.
21471         (calccost): Add tty parameter.  Use emacs_tputs() instead of tputs().
21472         (cmgoto): Add tty parameter.  Pass it on to calccost().
21473         Use emacs_tputs() instead of tputs().
21475         * cm.h (emacs_tputs): New macro to set current_tty, and then call
21476         tputs().
21477         (current_tty): New variable, for cmputc().
21478         (cmcheckmagic, cmputc, cmgoto): Add prototypes.
21480         * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
21481         (internal_condition_case, internal_condition_case_1)
21482         (internal_condition_case_2): Don't abort when x_catching_errors.
21484         * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
21485         (Fy_or_n_p): Likewise.  Use temporarily_switch_to_single_kboard to
21486         prevent crashes caused by bogus longjmps in read_char.
21488         * keymap.h (Fset_keymap_parent): Add EXFUN.
21490         * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
21491         * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
21492         Remove redundant definition.
21494         * macfns.c (x_set_mouse_color, x_make_gc):
21495         Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21497         * w32term.c (x_free_frame_resources):
21498         Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21499         (w32_initialize): Use the accessor macros for terminal characteristics.
21501         * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
21502         Use the accessor macros for terminal characteristics.
21503         * msdos.c (internal_terminal_init): Use the accessor macros for
21504         terminal characteristics.
21505         (ScreenVisualBell, internal_terminal_init):
21506         Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21508         * termopts.h (no_redraw_on_reenter): Declare.
21510         * alloc.c (emacs_blocked_malloc): Disable mallopt call.
21511         (mark_terminals, mark_ttys): Declare.
21512         (Fgarbage_collect): Call them.
21513         (mark_object): Mark buried_buffer_list.
21515         * prefix-args.c: Include stdlib.h for exit.
21517         * syssignal.h: Add comment.
21519         * indent.c: Include stdio.h.
21521         * window.h (Vinitial_window_system): Declare.
21522         (Vwindow_system): Delete declaration.
21524         * fontset.c (Finternal_char_font): Use FRAME_RIF.
21526         * image.c (lookup_image): Don't initialize `c' until the xasserts
21527         have been run.
21529         * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
21530         FRAME_FOREGROUND_PIXEL.
21532         * print.c (print_preprocess): Don't lose print_depth levels while
21533         iterating.
21535         * widget.c (update_from_various_frame_slots):
21536         Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21538         * window.c (set_window_buffer): Don't call clear_mouse_face on tty
21539         frames.
21540         (window_internal_height): Remove bogus make_number call.
21541         (init_window_once): Call make_terminal_frame with two zero parameters.
21543         * fileio.c (Fread_file_name): Update comment.
21545         * callint.c (Fcall_interactively):
21546         Use temporarily_switch_to_single_kboard instead of single_kboard_state.
21547         Make sure it is correctly unwound.
21549         * xsmfns.c (x_session_close): New function.
21551         * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
21552         Delete declarations.
21554         * xterm.h: Remove declaration for x_fully_uncatch_errors.
21555         (x_output): Remove background_pixel and foreground_pixel fields.
21556         (x_display_info): Add new field TERMINAL.  Remove KBOARD field.
21557         (x_delete_device, x_session_close): Declare.
21559         * lread.c: Include setjmp.h.  Update declaration of `read_char'.
21560         (read_filtered_event): Call `read_char' with a local
21561         `wrong_kboard_jmpbuf'.
21563         * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
21564         Don't call single_kboard_state.  Use FRAME_RIF.
21566         * process.c (Fmake_network_process): Don't unrequest_sigio on modern
21567         systems.
21569         * lisp.h (set_process_environment): Rename to `set_global_environment'.
21570         (Fframe_with_environment, Fset_input_meta_mode)
21571         (Fset_quit_char): EXFUN.
21572         (x_create_device, tty_output, terminal, tty_display_info): Declare.
21573         (init_sys_modes, reset_sys_modes): Update prototypes.
21574         (init_all_sys_modes, reset_all_sys_modes): New prototypes.
21576         * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
21577         Vlocal_key_translation_map, and Vkeyboard_translate_table.
21578         (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
21579         Delete declarations.
21580         (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
21581         (temporarily_switch_to_single_kboard, tty_read_avail_input):
21582         New declarations.
21584         * emacs.c (main): Don't call init_sys_modes(), the new term_init()
21585         already does that during init_display().  Call syms_of_keymap
21586         before syms_of_keyboard.  Call `syms_of_terminal'.
21587         Call set_initial_environment, not set_process_environment.
21588         (shut_down_emacs): Call reset_all_sys_modes() instead of
21589         reset_sys_modes().
21591         * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
21592         (internal_resolve_face_name, resolve_face_name_error): New functions.
21593         (resolve_face_name): Protect against loops and errors thrown by Fget.
21594         (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
21595         (Ftty_supports_face_attributes_p): Update tty_capable_p call.
21597         * scroll.c: Replace CURTTY() with local variables throughout the
21598         file (where applicable).
21599         (calculate_scrolling, calculate_direct_scrolling)
21600         (scrolling_1, scroll_cost): Use the accessor macros for terminal
21601         characteristics.
21603         * keymap.c (Vfunction_key_map): Remove.
21604         (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
21605         (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
21606         (Vkey_translation_map): Remove.
21607         (syms_of_keymap): Remove DEFVAR for key-translation-map.
21608         (Fdescribe_buffer_bindings)
21609         (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
21610         Update for terminal-local key-translation-map.
21612         * Makefile.in (callproc.o): Update dependencies.
21613         (lisp, shortlisp): Add termdev.elc.
21614         (obj): Add terminal.o.
21615         (terminal.o): Add dependencies.
21616         [HAVE_CARBON]: Make terminal.o depend on macgui.h.
21617         (data.o, fns.o): Add termhooks.h dependency.
21618         (SOME_MACHINE_LISP): Add dnd.elc.
21619         (minibuf.o): Fix typo.
21620         Update dependencies.
21622         * data.c (do_symval_forwarding, store_symval_forwarding)
21623         (find_symbol_value): Use the selected frame's keyboard, not
21624         current_kboard.
21626         * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
21627         Vwindow_system.
21629         * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
21630         Fmenu_bar_open.
21631         (syms_of_xmenu): Update defsubr.
21632         (mouse_position_for_popup, Fx_popup_menu)
21633         (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
21634         (set_frame_menubar, free_frame_menubar)
21635         (create_and_show_popup_menu, xmenu_show)
21636         (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
21637         an X frame.
21639         * xselect.c (x_own_selection): Abort if not an X frame.
21640         (some_frame_on_display): Check if it is an X frame.
21641         (x_handle_selection_clear): Deal with MULTI_KBOARD.
21643         * coding.c: Include frame.h and termhooks.h.
21644         (terminal_coding, keyboard_coding): Delete.
21645         (Fset_terminal_coding_system_internal)
21646         (Fset_keyboard_coding_system_internal)
21647         (Fkeyboard_coding_system)
21648         (Fterminal_coding_system): Add a terminal parameter.
21649         Get terminal_coding from the terminal.
21650         (init_coding_once): Don't call setup_coding_system here.
21652         * dispextern.h (set_scroll_region, turn_off_insert)
21653         (turn_off_highlight, background_highlight, clear_end_of_line_raw)
21654         (tty_clear_end_of_line, tty_setup_colors)
21655         (delete_tty, updating_frame)
21656         (produce_special_glyphs, produce_glyphs, write_glyphs)
21657         (insert_glyphs): Remove.
21658         (raw_cursor_to, clear_to_end, tty_turn_off_insert)
21659         (tty_turn_off_highlight, get_tty_size): Add declaration.
21660         (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
21662         * frame.h (enum output_method): Add output_initial.
21663         (struct x_output): Delete.
21664         (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
21665         Access foreground_pixel and background_pixel directly from the frame.
21666         (tty_display): Delete.
21667         (struct frame): Add buried_buffer_list, foreground_pixel,
21668         background_pixel and terminal.  Delete kboard.
21669         (union output_data): Add tty.
21670         (FRAME_KBOARD): Get the kboard from the terminal.
21671         (FRAME_INITIAL_P): New macro.
21672         (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
21673         (Qterm_environment_variable, Qdisplay_environment_variable)
21674         (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
21675         New declarations.
21677         * termchar.h (tty_output, tty_display_info): New structures.
21678         (tty_list): Declare.
21679         (FRAME_TTY, CURTTY): New macros.
21680         (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
21681         (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
21682         (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
21683         (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
21685         * callproc.c: Include frame.h and termhooks.h, for terminal
21686         parameters.
21687         (add_env): New function.
21688         (child_setup): Use it.
21689         (child_setup, getenv_internal): Handle the new Vprocess_environment.
21690         (getenv_internal): Fix get_terminal_param call.
21691         (Fgetenv_internal, egetenv): Update doc.
21692         (syms_of_callproc): Initialize Vprocess_environment to nil.
21693         Register and initialize them.  Remove obsolete defvars.  Update doc
21694         strings.
21695         (child_setup): Handle Vlocal_environment_variables.
21696         (getenv_internal): Add terminal parameter.
21697         Handle Vlocal_environment_variables.
21698         (Fgetenv_internal): Add terminal parameter.
21699         (child_setup, getenv_internal, Fgetenv_internal): Store the local
21700         environment in a frame (not terminal) parameter.  Update doc strings.
21701         (set_initial_environment): Rename from set_global_environment.
21702         Store Emacs environment in initial frame parameter.
21704         * xdisp.c (redisplay_internal): Update references to
21705         `previous_terminal_frame'.
21706         (display_mode_line, Fformat_mode_line): Replace calls to
21707         `push_frame_kboard' with `push_kboard'.
21708         (get_glyph_string_clip_rects): Add extra parentheses and
21709         braces to prevent compiler warnings.
21710         (calc_pixel_width_or_height): Add xassert to check that the
21711         frame is alive.  Don't call `lookup_image' on a termcap frame.
21712         (message2_nolog, message3_nolog, redisplay_internal)
21713         (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
21714         (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
21715         (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
21716         (Fx_display_pixel_width, Fx_display_pixel_height)
21717         (Fx_display_planes, Fx_display_color_cells)
21718         (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
21719         (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
21720         (Fx_display_backing_store, Fx_display_visual_class)
21721         (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
21722         Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
21724         * xfns.c (x_set_foreground_color x_set_background_color)
21725         (x_set_mouse_color, x_set_cursor_color, x_make_gc):
21726         Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21727         (Fx_create_frame, x_create_tip_frame, build_string, x_window)
21728         (Fx_create_frame, x_create_tip_frame): Don't create frames on a
21729         terminal that is being deleted.
21730         (Fx_create_frame): Use `store_frame_param' to set `window-system'
21731         frame parameter, and make sure it overrides any user-supplied setting.
21732         (Fx_close_connection, Fx_synchronize): Unify argument names with
21733         the rest of the DEFUNs.
21735         * dispnew.c (Fsend_string_to_terminal): Update call to
21736         `get_tty_terminal'.
21737         (Fredraw_frame, Fsend_string_to_terminal)
21738         (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
21739         FRAME_TERMCAP_P and FRAME_TTY.
21740         (window_change_signal): Don't believe width/height values that are
21741         impossibly small.
21742         (Vinitial_window_system): Rename from Vwindow_system.
21743         (termscript, Wcm, rif): Delete.
21745         * termhooks.h (struct terminal): New struct containing the
21746         previously global text display hooks and new members NAME,
21747         DELETED and PARAM_ALIST.
21748         (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
21749         (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
21750         (FRAME_RIF): New macros.
21751         (get_terminal_param, get_device): New declarations.
21752         (termscript): Delete declaration.
21754         * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
21755         (XTflash, x_free_frame_resources, x_scroll_bar_create)
21756         (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
21757         FRAME_FOREGROUND_PIXEL.
21758         (x_fully_uncatch_errors): Disable definition.
21759         (x_scroll_bar_expose): Fix reference to foreground pixel.
21760         (XTread_socket): Disable loop on all X displays.
21761         (x_delete_terminal): Don't set terminal->deleted and let
21762         delete_terminal delete the frames on the terminal.
21763         (x_delete_display): Doc update to reflect changes in
21764         delete_terminal.
21765         (x_display_info) <terminal>: Move member earlier in the struct.
21766         (deleting_tty): Remove old variable.
21767         (Fsuspend_tty): Call clear_tty_hooks.
21768         (Fresume_tty, init_tty): Call set_tty_hooks.
21769         (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
21770         errors on X frames.
21771         (x_catch_errors_unwind): Abort if x_error_message is NULL.
21772         (handle_one_xevent): Initialize `f' to NULL.
21773         (x_delete_terminal, x_create_terminal): New functions.
21774         (XTset_terminal_modes, XTreset_terminal_modes)
21775         (XTread_socket, x_connection_closed, x_term_init)
21776         (x_term_init, x_delete_display): Add terminal parameter.
21777         (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
21778         X connections.
21780         * frame.c: Include termchar.h.
21781         (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
21782         (Qwindow_system, Qenvironment, Qterm_environment_variable)
21783         (Qdisplay_environment_variable): New vars.
21784         (Fframep): Deal with output_initial.
21785         (Fframe-live-p): Doc fix.
21786         (Fwindow-system): New function.
21787         (x_set_screen_gamma, store_frame_param): Fix compilation errors.
21788         (make_terminal_frame): Don't create frames on a terminal that is
21789         being deleted.  Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21790         (store_frame_param): Check for found_for_frame before calling XFRAME.
21791         (Fmake_terminal_frame): Handle NULL tty names correctly.
21792         (syms_of_frame): Enhance doc string of `default-frame-alist'.
21793         (Fdelete_frame): Remove unused variable `count'.  Don't allow other
21794         frames to refer to a deleted frame in their 'environment parameter.
21795         (Fframe_with_environment): New function.
21796         (syms_of_frame): Defsubr it.  Initialize and staticpro Qenvironment.
21797         (get_future_frame_param): New function.
21798         (Fmake_terminal_frame): Use it.
21799         (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
21801         * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
21802         * sysdep.c (reset_sys_modes): Update for renames.
21804         * keyboard.c (tty_read_avail_input): New function.
21805         (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
21806         (syms_of_keyboard): Defsubr them.
21807         (Fset_input_meta_mode, Fset_quit_char): New functions.
21808         (Fset_input_mode): Split to above functions.
21809         (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
21810         parameter.  Use it in call to `read_char'.
21811         (read_char): Declare.  Update call to `read_char_minibuf_menu_prompt'.
21812         Set wrong_kboard_jmpbuf correctly in recursive calls.
21813         Use current_kboard to access Vkeyboard_translate_table.
21814         Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
21815         Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
21816         Update longjmp invocations.  Remember the original current_kboard,
21817         and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
21818         changes it.  Comment out unnecessary calls to
21819         `record_single_kboard_state' and `any_kboard_state'.
21820         Update recursive calls.
21821         (wrong_kboard_jmpbuf): Remove global variable.
21822         (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
21823         Handle deleted interrupted_kboards correctly; that is a legal
21824         case.  Add `wrong_kboard_jmpbuf' local variable.  Update setjmp
21825         and read_char calls.  Abort if interrupted_kboard died in read_char.
21826         (any_kboard_state, single_kboard_state)
21827         (push_frame_kboard): Remove function.
21828         (pop_kboard): Switch out of single_kboard mode if the kboard has
21829         been deleted.  Remove unused variable.  Help debugging by not
21830         changing current_kboard unnecessarily.  Set current_kboard to the
21831         kboard of the selected frame when the stored kboard object has
21832         been deleted before pop_kboard.
21833         (temporarily_switch_to_single_kboard): Change first parameter to a
21834         frame pointer.  Throw an error when caller wants to change kboards
21835         while in single_kboard mode.  Don't push_kboard if we weren't in
21836         single kboard state.  Don't pop_kboard if we popped into any
21837         kboard state.
21838         (restore_kboard_configuration): Abort if pop_kboard changed the
21839         kboard in single_kboard mode.  Call pop_kboard only after setting
21840         up single_kboard mode.
21841         (Frecursive_edit): Switch to single_kboard mode only in nested
21842         command loops.
21843         (cmd_error, command_loop, command_loop_1, timer_check):
21844         Comment out unnecessary call to `any_kboard_state' and
21845         `record_single_kboard_state'.
21846         (delete_kboard): Exit single_kboard mode if we have just deleted
21847         that kboard.  Use FRAME_KBOARD.
21848         (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
21849         `fatal_error_signal'.
21850         (record_single_kboard_state): Don't push_kboard if we weren't in
21851         single kboard state.  Don't pop_kboard if we popped into any
21852         kboard state.
21853         (push_frame_kboard): Rename to push_kboard.
21854         (kbd_buffer_get_event): Use FRAME_TERMINAL.
21855         (read_avail_input): Read input from all terminals.
21856         (mark_kboards): Also mark Vkeyboard_translate_table.
21857         (kbd_buffer_store_event_hold): Simplify condition.
21858         (read_key_sequence): Reinitialize fkey and keytran at each replay.
21859         (Vkeyboard_translate_table): Move to struct kboard.
21860         (init_kboard): Initialize Vkeyboard_translate_table.
21861         (syms_of_keyboard): Use DEFVAR_KBOARD to define
21862         Vkeyboard_translate_table.  Update doc strings.  Update docs of
21863         local-function-key-map and function-key-map.
21865         * terminal.c: New file.
21867         * term.c: Include errno.h.
21868         (Vring_bell_function, device_list, initial_device)
21869         (next_device_id, ring_bell, update_begin, update_end)
21870         (set_terminal_window, cursor_to, raw_cursor_to)
21871         (clear_to_end, clear_frame, clear_end_of_line)
21872         (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
21873         (Fdisplay_name, create_device, delete_device): Move to terminal.c.
21874         (syms_of_term): Move their initialization to terminal.c.
21875         (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
21876         (Ftty_display_color_cells)
21877         (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
21878         (clear_tty_hooks, set_tty_hooks)
21879         (init_tty, maybe_fatal): New functions.
21880         (Ftty_type): Return nil if terminal is not on a tty instead of
21881         throwing an error.  Doc update.
21882         (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
21883         Doc update.  Initialize new subrs and variables.
21884         (delete_tty): Use terminal->deleted.
21885         (tty_set_terminal_modes): Rename from set_terminal_modes.
21886         (tty_reset_terminal_modes): Rename from reset_terminal_modes.
21887         (set_scroll_region): Rename to `tty_set_scroll_region'.
21888         (turn_on_insert): Rename to `tty_turn_on_insert'.
21889         (turn_off_insert): Rename to `tty_turn_off_insert'.
21890         (turn_off_highlight): Rename to `tty_turn_off_highlight'.
21891         (turn_on_highlight): Rename to `tty_turn_on_highlight'.
21892         (toggle_highligh): Rename to `tty_toggle_highlight'.
21893         (background_highlight): Rename to `tty_background_highlight'.
21894         (highlight_if_desired): Rename to `tty_highlight_if_desired'.
21895         (tty_ring_bell, tty_update_end, tty_set_terminal_window)
21896         (tty_set_scroll_region, tty_background_highlight)
21897         (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
21898         (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
21899         (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
21900         (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
21901         Add static modifier.
21902         (tty_reset_terminal_modes, tty_set_terminal_window)
21903         (tty_set_scroll_region, tty_background_highlight)
21904         (tty_highlight_if_desired, tty_cursor_to)
21905         (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
21906         (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
21907         (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
21908         renames.
21910 2007-08-28  Jan Djärv  <jan.h.d@swipnet.se>
21912         * keyboard.c: Qrtl is new.
21913         (parse_tool_bar_item): Handle :rtl keyword.
21914         (syms_of_keyboard): Intern :rtl keyword.
21916         * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
21918         * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
21919         so no Lisp code is executed.
21920         (file_for_image, find_rtl_image): New functions.
21921         (xg_get_image_for_pixmap): Use file_for_image.
21922         (update_frame_tool_bar): If direction is RTL, use RTL image if
21923         defined.  Use Gtk stock images if defined.
21925 2007-08-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21927         * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
21928         for nonexistent or zero-width glyph in composition glyph.
21930 2007-08-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21932         * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
21934         * xdisp.c (Finvisible_p): New function.
21935         (syms_of_xdisp): defsubr it.
21937 2007-08-24  Juanma Barranquero  <lekktu@gmail.com>
21939         * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
21940         Doc fixes.
21942 2007-08-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21944         * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
21946 2007-08-24  Martin Rudalics  <rudalics@gmx.at>
21948         * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
21949         whether decoding has modified buffer contents.
21951 2007-08-24  Jason Rumney  <jasonr@gnu.org>
21953         * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
21954         (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
21955         (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
21956         (init_svg_functions) [HAVE_NTGUI]: New function.
21957         (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
21958         (svg_load_image): Use them.
21959         (svg_load_image) [HAVE_NTGUI]: Implement background.
21961 2007-08-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21963         * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
21964         (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
21965         (LIBX): Remove @RSVG_LIBS@.
21966         (LIBES): Add $(RSVG_LIBS).
21968         * image.c (svg_load_image): Blend with specified background if exists.
21969         Use IMAGE_BACKGROUND.  Add Mac OS Support.
21971         * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
21972         (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
21973         Remove macros.
21974         [MAC_OSX] (socket_callback): Do nothing.
21975         [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
21976         ReceiveNextEvent.
21977         [MAC_OSX] (sys_select): Likewise.  Don't set context as argument to
21978         socket_callback.
21979         (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
21981 2007-08-22  Glenn Morris  <rgm@gnu.org>
21983         * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
21985 2007-08-22  Paul Pogonyshev  <pogonyshev@gmx.net>
21987         * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
21989         * image.c: Add support for SVG images.  Some additional comments
21990         by Joakim Verona <joakim@verona.se>.  When HAVE_RSVG is defined:
21991         (svg_image_p): New function to test for SVG image.
21992         (svg_load): New function to load SVG image.
21993         (svg_load_image): New function, helper for svg_load.
21994         (Qsvg): New Lisp_object.
21995         (svg_keyword_index): New enum.
21996         (svg_format): New static `image_keyword' struct.
21997         (svg_type): New static `image_type' struct.
21998         (librsvg/rsvg.h): Include it.
22000 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
22002         * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
22004 2007-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22006         * lread.c (Qold_style_backquotes): New var.
22007         (syms_of_lread): Init and staticpro it.
22008         (load_warn_old_style_backquotes): New fun.
22009         (Fload): Use them to warn about old style backquotes.
22010         (end_of_file_error, Fload): Remove unused vars.
22012         * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
22014         * lread.c (Vold_style_backquotes): New var.
22015         (syms_of_lread): Init and export it to Elisp.
22016         (read1): Set it when we find an old-style (back)quote.
22018 2007-08-22  Jason Rumney  <jasonr@gnu.org>
22020         * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
22022 2007-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
22024         * puresize.h (BASE_PURESIZE): Increase to 1140000.
22026 2007-08-19  Richard Stallman  <rms@gnu.org>
22028         * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
22030 2007-08-19  Andreas Schwab  <schwab@suse.de>
22032         * alloc.c (pure): Round PURESIZE up.
22034 2007-08-17  Jan Djärv  <jan.h.d@swipnet.se>
22036         * xterm.c (handle_one_xevent): Remove check that mouse click is in
22037         active frame.
22039 2007-08-16  Richard Stallman  <rms@gnu.org>
22041         * eval.c (Fcommandp): Add parens to clarify.
22043         * minibuf.c (Fall_completions): Use enum for type of table.
22045         * emacs.c (USAGE2): Improve text.
22047 2007-08-15  Philippe Waroquiers  <philippe.waroquiers@eurocontrol.int>
22049         * term.c (tty_default_color_capabilities): Declare static
22050         variables in file scope, to avoid HPUX compiler problem.
22052 2007-08-13  Jan Djärv  <jan.h.d@swipnet.se>
22054         * gtkutil.c (update_frame_tool_bar): Use -1 as index
22055         to gtk_toolbar_insert.
22057 2007-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
22059         * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
22061         * insdel.c (reset_var_on_error): New fun.
22062         (signal_before_change, signal_after_change):
22063         Use it to reset (after|before)-change-functions to nil in case of error.
22064         Bind inhibit-modification-hooks to t.
22065         Don't bind (after|before)-change-functions to nil while they run.
22067 2007-08-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22069         * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
22070         filling pixmap with stippled background.
22072 2007-08-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22074         * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
22075         Don't use invisible frame as parent window for repositioning.
22077 2007-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22079         * print.c (new_backquote_output): Rename from old_backquote_output.
22080         (print): Inverse its logic (according to its name) so as to match the
22081         behavior of new_backquote_flag in lread.c.
22083 2007-08-09  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22085         * gmalloc.c (posix_memalign): New function.
22087         * macterm.c (frame_highlight, frame_unhighlight): Don't call
22088         ActivateControl/DeactivateControl here.
22089         [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
22090         frame-notice-user-settings is non-nil.
22091         [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
22092         for kEventParamFMFontStyle.
22093         [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
22094         mac_pass_command_to_system and mac_pass_control_to_system here.
22095         (XTread_socket): Call ActivateControl/DeactivateControl here.
22096         (XTread_socket) [TARGET_API_MAC_CARBON]:
22097         Check mac_pass_command_to_system and mac_pass_control_to_system here.
22098         (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
22099         for window repositioning.
22101 2007-08-08  Glenn Morris  <rgm@gnu.org>
22103         * Replace `iff' in doc-strings and comments.
22105 2007-08-07  Chong Yidong  <cyd@stupidchicken.com>
22107         * xdisp.c (move_it_by_lines): Remove incorrect optimization.
22109 2007-08-07  Martin Rudalics  <rudalics@gmx.at>
22111         * fileio.c (Finsert_file_contents): Run format-decode and
22112         after_insert_file_functions on entire buffer when REPLACE is
22113         non-nil and inhibit modification_hooks and point_motion_hooks.
22114         For consistency, run after_insert_file_functions iff something
22115         got inserted.  Move signal_after_change and update_compositions
22116         after code running after_insert_file_functions.  Make sure that
22117         undo_list doesn't record intermediate steps of the decoding process.
22119 2007-08-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22121         * emacs.c (main)
22122         [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
22123         Call malloc_enable_thread on interactive startup.
22125         * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
22126         (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
22127         [USE_PTHREAD]: Conditionalize with it.
22128         (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
22129         (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
22130         New functions.
22132 2007-08-06  Chong Yidong  <cyd@stupidchicken.com>
22134         * xdisp.c (redisplay_window): When restoring original buffer
22135         position, make sure it is still valid.
22137         * image.c (png_load): Ignore png-supplied background color.
22139 2007-08-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22141         * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
22142         Use kCFAbsoluteTimeIntervalSince1970.
22144         * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
22145         New variable.
22146         [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
22147         event loop should be quit.
22148         [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
22149         Quit dialog event loop if quit_dialog_event_loop is set.
22151         * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
22152         (Selection): New typedef.  Use instead of ScrapRef.
22153         (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
22154         (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
22155         (mac_clear_selection): Rename from clear_scrap.
22156         (get_flavor_type_from_symbol): New argument SEL and subsume function of
22157         scrap_has_target_type.  All uses changed.
22158         (mac_get_selection_ownership_info, mac_valid_selection_value_p)
22159         (mac_selection_has_target_p): New functions.
22160         (mac_put_selection_value): Rename from put_scrap_string.
22161         (mac_get_selection_value): Rename from get_scrap_string.
22162         (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
22163         (put_scrap_private_timestamp, scrap_has_target_type)
22164         (get_scrap_private_timestamp): Remove functions.
22165         (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
22166         (x_own_selection, x_get_local_selection):
22167         Use mac_valid_selection_value_p.
22168         (x_own_selection): Don't use put_scrap_private_timestamp.
22169         Record OWNERSHIP-INFO into Vselection_alist instead.
22170         (x_get_local_selection): Don't check type if request is local.
22171         (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
22172         Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
22174 2007-08-04  Jan Djärv  <jan.h.d@swipnet.se>
22176         * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
22177         add comment explaining why.
22179 2007-08-03  Richard Stallman  <rms@gnu.org>
22181         * fileio.c (Fvisited_file_modtime): Use make_time.
22183 2007-08-01  Ryo Yoshitake  <ryo@shiftmode.net>  (tiny change)
22185         * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
22186         build.
22188 2007-07-31  Stefan Monnier  <monnier@iro.umontreal.ca>
22190         * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
22192 2007-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22194         * puresize.h (BASE_PURESIZE): Increase to 1130000.
22196 2007-07-30  Richard Stallman  <rms@gnu.org>
22198         * lread.c (readevalloop, read1): Treat NBSP as whitespace.
22200 2007-07-29  Jan Djärv  <jan.h.d@swipnet.se>
22202         * gmalloc.c (__malloc_initialize): Remove pthread_once.  Not needed.
22204 2007-07-28  Nick Roberts  <nickrob@snap.net.nz>
22206         * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
22207         remote default-directory.
22209         * buffer.c (mode-line-format): Update doc string.
22211 2007-07-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22213         * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
22214         scroll bar gap.
22215         (x_scroll_bar_create): Set bar->fringe_extended_p.
22216         (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
22217         on frame edge.  Check fringe background extension.  Don't clear
22218         extended fringe background area.
22220         * w32term.h (struct scroll_bar): New member fringe_extended_p.
22221         (w32_fill_area): Enclose multiple statements with do ... while (0).
22223         * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
22224         Extend fringe background to scroll bar gap.
22225         (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
22226         Set bar->fringe_extended_p.
22227         (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
22228         Put leftmost/rightmost scroll bars on frame edge.  Check fringe
22229         background extension.  Don't clear extended fringe background area.
22231         * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
22232         New member fringe_extended_p.
22234 2007-07-25  Glenn Morris  <rgm@gnu.org>
22236         * Relicense all FSF files to GPLv3 or later.
22238         * COPYING: Switch to GPLv3.
22240 2007-07-25  Stefan Monnier  <monnier@iro.umontreal.ca>
22242         * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
22244         * data.c (Finteractive_form): Check for the presence of an
22245         `interactive-form' symbol property more thoroughly.
22247         * data.c (Finteractive_form): Use an `interactive-form' property if
22248         present, analogous to the function-documentation property.
22250 2007-07-24  Jason Rumney  <jasonr@gnu.org>
22252         * w32fns.c (x_real_positions): Get real position from OS instead of
22253         calculating it.
22255 2007-07-23  Jason Rumney  <jasonr@gnu.org>
22257         * filelock.c (current_lock_owner): Allow for @ sign in username.
22259 2007-07-22  Nick Roberts  <nickrob@snap.net.nz>
22261         * xdisp.c (decode_mode_spec): Add case 'R' for to test for
22262         remote default-directory.
22264         * buffer.c (mode-line-format): Describe above case in doc string.
22266 2007-07-20  Eli Zaretskii  <eliz@gnu.org>
22268         * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
22269         Define if not defined.
22271 2007-07-18  Jason Rumney  <jasonr@gnu.org>
22273         * w32proc.c (w32_executable_type): Handle 64 bit executables.
22275 2007-07-18  Richard Stallman  <rms@gnu.org>
22277         * data.c (Fsetq_default): Doc fix.
22279         * eval.c (Fsetq): Doc fix.
22281 2007-07-18  Juanma Barranquero  <lekktu@gmail.com>
22283         * coding.c (Ffind_operation_coding_system):
22284         * eval.c (For, Fand): Doc fixes.
22285         Reported by Johan Bockgård.
22287 2007-07-18  Jan Djärv  <jan.h.d@swipnet.se>
22289         * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
22291         * xterm.h: Declare x_ewmh_activate_frame.
22293         * xterm.c (x_ewmh_activate_frame): New function.
22294         (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
22296 2007-07-17  Martin Rudalics  <rudalics@gmx.at>
22298         * window.c (Fdisplay_buffer): If largest or LRU window is the
22299         only window, split it even if it is not eligible for splitting.
22300         This restores the original behavior broken by the 2007-07-15
22301         change.
22303 2007-07-17  Glenn Morris  <rgm@gnu.org>
22305         * abbrev.c (abbrev_check_chars): New function.
22306         (Fdefine_global_abbrev, Fdefine_mode_abbrev):
22307         Call abbrev_check_chars to check abbrev characters are word
22308         constituents.  Doc fix.
22310 2007-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
22312         * process.c (Fstart_process, Fmake_network_process)
22313         (read_process_output): Fix up last changes.
22315 2007-07-16  Eli Zaretskii  <eliz@gnu.org>
22317         * makefile.w32-in (clean): Don't delete *~.
22319 2007-07-16  Andreas Schwab  <schwab@suse.de>
22321         * window.c (Fdisplay_buffer): Use NILP.
22322         (Fset_window_scroll_bars): Likewise.
22324 2007-07-15  Martin Rudalics  <rudalics@gmx.at>
22326         * window.c (window_min_size_2): New function.
22327         (window_min_size_1, size_window, Fdisplay_buffer)
22328         (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
22329         windows without mode- or header-lines when window-min-height is
22330         too small.
22331         (size_window): Reset nodelete_p after testing it, following an
22332         earlier note by Kim F. Storm.
22333         (display_buffer): Do not set split_height_threshold to twice the
22334         value of window_min_height to avoid changing the value of a
22335         customizable variable.  Rather explicitly check whether the
22336         height of the window that shall be splitted is at least as large
22337         as split_height_threshold.
22338         (Fwindow_full_width_p): New defun.
22339         (syms_of_window): Defsubr it.
22341         * window.h: Add EXFUN for Fwindow_full_width_p.
22343 2007-07-14  Jason Rumney  <jasonr@gnu.org>
22345         * process.c [WINDOWSNT]: Don't undefine AF_INET6.
22347 2007-07-14  Richard Stallman  <rms@gnu.org>
22349         * eval.c (maybe_call_debugger): New function.
22350         (find_handler_clause): Use maybe_call_debugger.
22351         Call it when the handler says `debug'.
22352         Eliminate DEBUGGER_VALUE_PTR.
22353         (Fsignal): Eliminate debugger_value.
22354         (Qdebug): New variable.
22355         (syms_of_eval): Initialize it.
22357 2007-07-14  Juanma Barranquero  <lekktu@gmail.com>
22359         * eval.c (Fprogn):
22360         * keyboard.c (Ftrack_mouse):
22361         * print.c (Fwith_output_to_temp_buffer):
22362         * window.c (Fsave_window_excursion): Doc fix.
22364 2007-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
22366         * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
22368 2007-07-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22370         * process.h (struct Lisp_Process): Turn slots infd, outfd,
22371         kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
22372         inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
22373         read_output_delay, and read_output_skip from Lisp_Objects to ints.
22374         Remove unused encoding_carryover.
22375         * process.c: Adjust all functions accordingly.
22377 2007-07-12  Richard Stallman  <rms@gnu.org>
22379         * term.c: Include unistd.h only if HAVE_UNISTD_H.
22381 2007-07-11  Jason Rumney  <jasonr@gnu.org>
22383         * makefile.w32-in (LIBS): Include OLE32.
22385         * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
22386         (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
22388 2007-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
22390         * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
22391         * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
22392         from a Lisp_Object into a bare pointer.
22393         (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
22394         Adjust the code correspondingly.
22396         * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
22398         * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
22399         (term_show_mouse_face): Remove unused var `j'.
22400         (handle_one_term_event): Remove unused vars `i' and `j'.
22401         Don't cast return value of ttyname since it's not necessary.
22403 2007-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22405         * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
22406         USE_LSB_TAG.  Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
22408         * fns.c (map_char_table): Use an array of int for `indices' rather than
22409         an array of Lisp_Objects (which are only ever integers anyway).
22410         (Fmap_char_table): Update caller.
22411         * lisp.h: Update prototype.
22412         * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
22413         * fontset.c (Ffontset_info):
22414         * casetab.c (set_case_table): Update callers.
22416         * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
22418         * keymap.c (struct accessible_keymaps_data)
22419         (struct where_is_internal_data): New structures.
22420         (accessible_keymaps_1, where_is_internal_1): Use them to change
22421         interface to adhere to the one used by map_keymap.
22422         (Faccessible_keymaps, where_is_internal): Use map_keymap.
22423         (accessible_keymaps_char_table, where_is_internal_2): Remove.
22425         * keymap.h (map_keymap_function_t): More informative prototype.
22427 2007-07-10  Guanpeng Xu  <herberteuler@hotmail.com>
22429         * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
22430         (looking_at_1): Don't change search_regs and last_thing_searched
22431         if `inhibit-changing-match-data' is non-nil.
22432         (string_match_1, search_buffer, set_search_regs): Likewise.
22433         (syms_of_search): Add Lisp level definition for
22434         `inhibit-changing-match-data' and set it to nil.
22435         (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
22436         start and end of the match, instead of using values in search_regs.
22438 2007-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
22440         * minibuf.c (Fcompleting_read): New value `confirm-only'
22441         for `require-match'.
22443 2007-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
22445         * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
22446         part of the 2007-06-27 change to syms_of_fileio.
22448 2007-06-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22450         * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
22451         Check WINDOWP before using XWINDOW.  Consolidate return statements.
22453 2007-06-27  Richard Stallman  <rms@gnu.org>
22455         * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
22457 2007-06-27  Juanma Barranquero  <lekktu@gmail.com>
22459         * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
22461 2007-06-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22463         * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
22464         (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
22465         (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
22466         (_free_internal, memalign): Use them.
22467         (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
22468         Initialize to PTHREAD_MUTEX_INITIALIZER.
22469         (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
22470         (morecore_nolock): Rename from morecore.  All uses changed.
22471         Use only nolock versions of internal allocation functions.
22472         (_malloc_internal_nolock, _realloc_internal_nolock)
22473         (_free_internal_nolock): New functions created from
22474         _malloc_internal, _realloc_internal, and _free_internal.
22475         (_malloc_internal, _realloc_internal, _free_internal): Use them.
22476         Copy hook value to automatic variable before its use.
22477         (memalign): Copy hook value to automatic variable before its use.
22479 2007-06-26  Kenichi Handa  <handa@m17n.org>
22481         * coding.c (Ffind_operation_coding_system): Docstring improved.
22482         (syms_of_coding): Docstring of `file-coding-system-alist' improved.
22484 2007-06-25  David Kastrup  <dak@gnu.org>
22486         * keymap.c (Fcurrent_active_maps): Add `position' argument.
22487         (Fwhere_is_internal): Adjust call to `current-active-maps' to
22488         cater for additional parameter.
22490         * keymap.h: Adjust number of parameters to `current-active-maps'.
22492         * doc.c (Fsubstitute_command_keys): Adjust call of
22493         `current-active-maps'.
22495 2007-06-25  David Kastrup  <dak@gnu.org>
22497         * callint.c (Fcall_interactively): Make the parsing of interactive
22498         specs somewhat more readable.
22500 2007-06-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22502         * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
22503         to scroll bar gap also when bitmap fills fringe.  Draw only foreground
22504         if extended background has already been filled.
22506 2007-06-22  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22508         * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
22509         (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
22511         * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
22512         Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
22513         in #if 0 as it is not compatible with y-or-n-p-with-timeout.
22514         (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
22515         [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
22516         instead of QuitAppModalLoopForWindow.  Consolidate QuitEventLoop calls.
22517         (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
22518         [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
22519         Run timers during dialog popup.
22520         (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
22522 2007-06-21  Jason Rumney  <jasonr@gnu.org>
22524         * image.c (convert_mono_to_color_image): Swap fore and background.
22526 2007-06-20  Jason Rumney  <jasonr@gnu.org>
22528         * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
22529         (w32_free_bdf_font): Unmap memory not handle.
22531 2007-06-20  Sam Steingold  <sds@gnu.org>
22533         * gmalloc.c (__morecore): Fix the declaration to comply with the
22534         definition.
22536 2007-06-20  Juanma Barranquero  <lekktu@gmail.com>
22538         * w32term.c (w32_delete_display): Remove leftover declaration.
22539         (w32_define_cursor, w32_initialize): Make static.
22541         * w32.c (_wsa_errlist): Fix typo in error message.
22542         (init_environment): Ignore any environment variable from the
22543         registry having a null value.
22545 2007-06-20  Glenn Morris  <rgm@gnu.org>
22547         * Makefile.in (LIBGIF): Default to -lgif.
22549 2007-06-17  Jason Rumney  <jasonr@gnu.org>
22551         * w32menu.c (add_menu_item): Don't use multibyte string functions on
22552         unicode strings.
22554 2007-06-16  Juanma Barranquero  <lekktu@gmail.com>
22556         * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
22557         Fix typo in docstring.
22559 2007-06-16  Eli Zaretskii  <eliz@gnu.org>
22561         * w32menu.c (add_menu_item): Escape `&' characters in menu items
22562         and their keybindings.
22564 2007-06-15  Chong Yidong  <cyd@stupidchicken.com>
22566         * composite.c (update_compositions): Fix last fix.
22568 2007-06-14  Jason Rumney  <jasonr@gnu.org>
22570         * w32.c (get_process_times_fn): New function pointer.
22571         (globals_of_w32): Intialize it if present in kernel32.dll.
22572         (w32_get_internal_run_time): New function.
22574         * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
22576 2007-06-14  Kenichi Handa  <handa@etlken.m17n.org>
22578         * composite.c (update_compositions): Check the validness of
22579         compositions.
22581 2007-06-14  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22583         * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
22584         (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
22586         * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
22587         (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
22589         * macgui.h (USE_MAC_TOOLBAR): New define.
22591         * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
22592         Return immediately unless popup is activated.
22594         * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
22595         background to scroll bar gap.
22596         (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
22597         (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
22598         scroll bars on frame edge.  Check fringe background extension.
22599         Don't clear extended fringe background area.
22600         (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
22601         (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
22602         (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
22603         [USE_MAC_TOOLBAR]: New macros.
22604         (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
22605         (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
22606         (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
22607         (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
22608         [USE_MAC_TOOLBAR]: New functions.
22609         (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
22610         manually if previous repositioning has failed.
22611         (mac_handle_keyboard_event): Use precomputed event kind.
22612         (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
22613         as tool bar item click.  Handle mouse movement over tool bar items.
22615         * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
22616         toolbar_win_gravity.
22617         (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
22618         (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
22619         Add externs.
22621         * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
22622         [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
22624 2007-06-14  Chong Yidong  <cyd@stupidchicken.com>
22626         * image.c (search_image_cache): Remove unused variable.
22628 2007-06-13  Chong Yidong  <cyd@stupidchicken.com>
22630         * xfns.c, xmenu.c: Link to xaw3d if available.
22632 2007-06-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22634         * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
22635         frame_foreground and frame_background.
22637         * image.c (lookup_image): Save frame foreground and background colors.
22638         (search_image_cache): Check if saved and current frame colors match.
22640 2007-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22642         * regex.c (regex_compile): Remove the `regnum' counter.
22643         Use bufp->re_nsub instead.  Add support for \(?N:RE\).
22645 2007-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
22647         * term.c: Include intervals.h to declare Fget_text_property.
22649 2007-06-10  Jason Rumney  <jasonr@gnu.org>
22651         * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
22653 2007-06-08  Juanma Barranquero  <lekktu@gmail.com>
22655         * callint.c (Fcall_interactively):
22656         * editfns.c (Fdelete_and_extract_region):
22657         * fileio.c (Fread_file_name):
22658         * fns.c (Fmapconcat):
22659         * keyboard.c (cmd_error_internal):
22660         * keymap.c (Fkey_description):
22661         * lread.c (openp):
22662         * minibuf.c (read_minibuf):
22663         * search.c (wordify):
22664         * sunfns.c (sel_read):
22665         * xdisp.c (Fformat_mode_line, syms_of_xdisp):
22666         * xfns.c (x_default_scroll_bar_color_parameter):
22667         * xmenu.c (menu_help_callback):
22668         * xselect.c (Fx_get_atom_name):
22669         * xterm.c (x_term_init): Use empty_unibyte_string.
22671 2007-06-08  Dmitry Antipov  <dmantipov@yandex.ru>  (tiny change)
22673         * alloc.c (init_strings): Initialize canonical empty strings.
22674         (make_uninit_string, make_uninit_multibyte_string): Return appropriate
22675         canonical empty string when the requested size is 0.
22677         * emacs.c (empty_unibyte_string): Rename from empty_string.
22678         (empty_multibyte_string): New canonical empty string.
22679         (syms_of_emacs): Don't initialize empty_string.
22681         * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
22682         string, if appropriate.
22683         (empty_unibyte_string, empty_multibyte_string): New externs.
22684         (empty_string): Remove extern.
22686         * lread.c (syms_of_lread): Use empty_unibyte_string.
22688 2007-06-07  Jason Rumney  <jasonr@gnu.org>
22690         * s/ms-w32.h: Don't define HAVE_TZNAME.
22692         * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
22694 2007-06-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22696         * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
22698         * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
22699         (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
22701         * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
22702         Don't call next handler.
22703         [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
22704         Remove argument.  Install handler to application.
22705         (set_frame_menubar): Don't change deep_p.
22706         (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
22707         FRAME_OUTER_TO_INNER_DIFF_Y.
22708         (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
22709         (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
22710         [HAVE_DIALOGS]: New macros.
22711         [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
22712         Use them.
22713         (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
22715         * macselect.c [MAC_OSX] (install_service_handler): Rename from
22716         init_service_handler.  All callers changed.  Return OSStatus value.
22718         * macterm.c (mac_begin_cg_clip): New arg F.  Call SetPortWindowPort.
22719         All callers changed so as not to call SetPortWindowPort.
22720         (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
22721         (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
22722         mac_draw_string_common.
22723         (mac_draw_image_string_qd): Likewise.
22724         (mac_draw_string_common): Use them.  Add INLINE.
22725         (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
22726         Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
22727         GetGlobalMouse.
22728         (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
22729         and FRAME_OUTER_TO_INNER_DIFF_Y.
22730         [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
22731         [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
22732         (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
22733         repositioning window to mac_handle_window_event.
22734         (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
22735         saving window location to mac_handle_window_event
22736         [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
22737         (install_menu_target_item_handler): Remove argument in extern.
22738         [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
22739         Also accept command events.
22740         (do_keystroke): New function created from XTread_socket.
22741         (init_command_handler): Remove functions.
22742         [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
22743         and save window location by kEventWindowShowing and kEventWindowHiding
22744         handlers here.  Don't call next handler for window state change and
22745         focus events.
22746         (mac_handle_application_event, mac_handle_keyboard_event)
22747         [TARGET_API_MAC_CARBON]: New functions.
22748         (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
22749         kEventWindowShowing and kEventWindowHiding events.  Move installation
22750         of mouse, font, text input and menu target item handlers to
22751         install_application_handler.
22752         (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
22753         (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
22754         New function.
22755         (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
22756         Register it.
22757         (XTread_socket) [TARGET_API_MAC_CARBON]:
22758         Consolidate SendEventToEventTarget calls.
22759         Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
22760         Move application activation handler to mac_handle_application_event.
22761         Move keyboard handler to mac_handle_keyboard_event.
22762         (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
22763         (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
22764         init_command_handler.  Call install_application_handler.
22766         * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
22767         (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
22769 2007-06-07  Glenn Morris  <rgm@gnu.org>
22771         * emacs.c (main): Use `emacs-copyright' in --version output.
22773 2007-06-06  Chong Yidong  <cyd@stupidchicken.com>
22775         * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
22777 2007-06-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22779         * macfns.c (mac_window): Replace WindowPtr with WindowRef.
22781         * macgui.h: Replace WindowPtr with WindowRef.
22783         * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
22784         GetMenuRef, respectively.  Replace WindowPtr with WindowRef.
22785         Replace ControlHandle with ControlRef.
22786         (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
22788         * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
22789         GetMenuRef, respectively.  Replace WindowPtr with WindowRef.
22790         Replace ControlHandle with ControlRef.
22791         (USE_CARBON_EVENTS): Remove.  Use TARGET_API_MAC_CARBON instead.
22792         [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
22794         * macterm.h (struct scroll_bar): Rename member control_handle_low
22795         and control_handle_high to control_ref_low and control_ref_high.
22796         All uses changed.
22797         (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
22798         SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
22799         respectively.  All uses changed.
22800         (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
22801         (install_window_handler, remove_window_handler): Replace WindowPtr
22802         with WindowRef in externs.
22804 2007-06-05  Juanma Barranquero  <lekktu@gmail.com>
22806         * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
22808 2007-06-03  Nick Roberts  <nickrob@snap.net.nz>
22810         * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
22812         * frame.c (Fmouse_position, Fmouse_pixel_position):
22813         Condition on HAVE_GPM too.
22815         * term.c (term_mouse_highlight): Remove unused variables.
22816         (Fterm_open_connection): Set gpm_zerobased to 1.
22817         (term_mouse_movement, term_mouse_click, handle_one_term_event):
22818         Use zero based co-ordinates.
22819         (handle_one_term_event): Report a drag as mouse movement too.
22821         * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
22823 2007-06-03  Chong Yidong  <cyd@stupidchicken.com>
22825         * image.c (search_image_cache): New function.  Require background
22826         color match if background color is unspecified in the image spec.
22827         (uncache_image, lookup_image): Use it.
22829 2007-06-01  Juanma Barranquero  <lekktu@gmail.com>
22831         * window.c (Fshrink_window): Reflow docstring.
22833 2007-06-02  Chong Yidong  <cyd@stupidchicken.com>
22835         * Version 22.1 released.
22837 2007-06-01  Richard Stallman  <rms@gnu.org>
22839         * xfns.c (x_encode_text): Add GCPRO.
22841 2007-06-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22843         * xfns.c (x_set_name_internal): Save encoded name before
22844         x_encode_text in case string data is relocated.
22846 2007-05-31  Richard Stallman  <rms@gnu.org>
22848         * buffer.c (syms_of_buffer): Doc fix.
22850 2007-05-30  Nick Roberts  <nickrob@snap.net.nz>
22852         * sysdep.c (init_sys_modes): Add rather than replace with
22853         O_NONBLOCK.
22855         * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
22856         term_mouse_moveto.
22858         * termhooks.h (term_mouse_moveto): New extern.
22860         * term.c (mouse_face_window): Rename...
22861         (Qmouse_face_window): ...to this.
22862         (term_show_mouse_face, term_clear_mouse_face)
22863         (term_mouse_highlight): Use Qmouse_face_window.
22864         (term_mouse_moveto): New function.
22865         (term_mouse_position): Make it work.
22866         (syms_of_term): Uncomment assignment to mouse_position_hook.
22867         Staticpro Qmouse_face_window.
22869 2007-05-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22871         * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
22872         around current_column call.
22874 2007-05-26  Dan Nicolaescu  <dann@ics.uci.edu>
22876         * xfaces.c (syms_of_xfaces): Delete stray semicolon.
22877         * xdisp.c (next_element_from_buffer):
22878         * window.c (delete_window):
22879         * term.c (term_mouse_highlight):
22880         * msdos.c (getdefdir):
22881         * macterm.c (mac_create_bitmap_from_bitmap_data)
22882         (init_font_name_table):
22883         * fns.c (Fsxhash):
22884         * data.c (Fmake_local_variable):
22885         * ccl.c (ccl_driver): Likewise.
22887 2007-05-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22889         * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
22890         Call mac_wakeup_from_rne on window size change.
22892 2007-05-25  Chong Yidong  <cyd@stupidchicken.com>
22894         * image.c (uncache_image): Fix typo.
22896 2007-05-23  Johannes Weiner  <hannes@saeurebad.de>  (tiny change)
22898         * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
22900 2007-05-22  Richard Stallman  <rms@gnu.org>
22902         * xterm.c (x_connection_closed): Remove NO_RETURN.
22904 2007-05-22  Martin Rudalics  <rudalics@gmx.at>
22906         * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
22908 2007-05-21  Chong Yidong  <cyd@stupidchicken.com>
22910         * image.c (uncache_image): New function.
22911         (Fimage_refresh): New function.
22913 2007-05-20  Jan Djärv  <jan.h.d@swipnet.se>
22915         * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
22917 2007-05-20  Nick Roberts  <nickrob@snap.net.nz>
22919         * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
22920         * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
22922 2007-05-20  Nick Roberts  <nickrob@snap.net.nz>
22924         * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
22925         conditional on [HAVE_GPM_H].
22927 2007-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
22929         * syntax.c (skip_chars): Update syntax-table only after we checked that
22930         the new location is valid.
22932 2007-05-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22934         * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
22935         mac_get_window_bounds.
22937 2007-05-20  Nick Roberts  <nickrob@snap.net.nz>
22939         * Makefile.in (LIBGPM): Allow it to be set from configure.
22940         If set then link Emacs with it.
22942         * config.in: Regenerate.
22944         * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
22945         New externs.
22947         * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
22948         Include gpm.h.
22949         (handle_one_term_event, term_gpm): New externs.
22951         * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
22952         and allow it to be interrupted by SIGIO.
22954         * process.c (gpm_wait_mask, max_gpm_desc): New variables.
22955         (wait_reading_process_output): Wait on gpm_fd too.
22956         (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
22957         (add_gpm_wait_descriptor_called_flag): New variable.
22958         (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
22960         * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
22961         (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
22962         (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
22963         Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
22964         (make_lispy_event): Add case GPM_CLICK_EVENT.
22965         (read_avail_input): Handle mouse input.
22967         * term.c (write_glyphs_with_face): New function.
22968         [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
22969         (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
22970         (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
22971         (mouse_face_face_id, term_gpm, pos_x, pos_y)
22972         (last_mouse_x, last_mouse_y): New variables.
22973         (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
22974         (term_mouse_highlight, term_mouse_movement, term_mouse_position)
22975         (term_mouse_click, handle_one_term_event, Fterm_open_connection)
22976         (Fterm_close_connection): New functions.
22977         (term_init): Initialise mouse_face_window.
22979 2007-05-19  Chong Yidong  <cyd@stupidchicken.com>
22981         * xdisp.c (redisplay_window): If first window line is a
22982         continuation line, recompute the new window start instead of
22983         recentering.
22985 2007-05-18  Glenn Morris  <rgm@gnu.org>
22987         * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
22988         Suggested by Alfred M. Szmidt <ams@gnu.org>.
22990 2007-05-17  Glenn Morris  <rgm@gnu.org>
22992         * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
22994 2007-05-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
22996         * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
22997         dead key repeat and up events.
22999 2007-05-14  Chong Yidong  <cyd@stupidchicken.com>
23001         * image.c (pbm_load): Check image size for monochrome pbm.
23003 2007-05-13  Chong Yidong  <cyd@stupidchicken.com>
23005         * xterm.c (XTread_socket): Revert last change.
23007 2007-05-12  Chong Yidong  <cyd@stupidchicken.com>
23009         * image.c (pbm_load): Correctly check image size for greyscale pbm.
23011         * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
23013 2007-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
23015         * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
23016         mixup (YAILOM).
23018 2007-05-07  Andreas Schwab  <schwab@suse.de>
23020         * keymap.c (Flookup_key): Fix typo in last change.
23022 2007-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
23024         * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
23025         mapping for unibyte strings.
23027 2007-05-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
23029         * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
23030         (Fx_popup_dialog) [MAC_OSX]: Likewise.
23032 2007-04-29  Richard Stallman  <rms@gnu.org>
23034         * insdel.c (replace_range): For undo, record insertion first.
23036 2007-04-29  Andreas Schwab  <schwab@suse.de>
23038         * lisp.h (VECSIZE): Use OFFSETOF.
23040 2007-04-29  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
23042         * xdisp.c (try_window_reusing_current_matrix): Fix number of
23043         disabled lines.
23045 2007-04-28  Richard Stallman  <rms@gnu.org>
23047         * lread.c (read_escape): In a string, \s is always space.
23049 2007-04-27  Jan Djärv  <jan.h.d@swipnet.se>
23051         * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
23053         * gtkutil.c (xg_update_menubar, create_menus): Create empty
23054         submenu for menu bar items.
23056 See ChangeLog.10 for earlier changes.
23058 ;; Local Variables:
23059 ;; coding: utf-8
23060 ;; add-log-time-zone-rule: t
23061 ;; End:
23063     Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012  Free Software Foundation, Inc.
23065   This file is part of GNU Emacs.
23067   GNU Emacs is free software: you can redistribute it and/or modify
23068   it under the terms of the GNU General Public License as published by
23069   the Free Software Foundation, either version 3 of the License, or
23070   (at your option) any later version.
23072   GNU Emacs is distributed in the hope that it will be useful,
23073   but WITHOUT ANY WARRANTY; without even the implied warranty of
23074   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23075   GNU General Public License for more details.
23077   You should have received a copy of the GNU General Public License
23078   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
23080 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40