Backport revisions 2011-04-24T05:30:24Z!eggert@cs.ucla.edu..2011-04-25T19:40:22Z...
[bpt/emacs.git] / src / ChangeLog
CommitLineData
14fe7b53
EZ
12011-05-09 Eli Zaretskii <eliz@gnu.org>
2
3 Backport revisions 103939.1.41..103939.1.44 (inclusive) from trunk.
4 (bug#8623)
5 The next log entry shows the actual changes by Paul Eggert.
6
72011-05-08 Paul Eggert <eggert@cs.ucla.edu>
8
9 Fix a problem with aliasing and vector headers.
10 GCC 4.6.0 optimizes based on type-based alias analysis. For
11 example, if b is of type struct buffer * and v of type struct
12 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
13 != &v->size, and therefore "v->size = 1; b->size = 2; return
14 v->size;" must therefore return 1. This assumption is incorrect
15 for Emacs, since it type-puns struct Lisp_Vector * with many other
16 types. To fix this problem, this patch adds a new type struct
17 vector_header that documents the constraints on layout of vectors
18 and pseudovectors, and helps optimizing compilers not get fooled
19 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
20 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
21 * lisp.h (XVECTOR_SIZE): New convenience macro. All previous uses of
22 XVECTOR (foo)->size replaced to use this macro, to avoid the hassle
23 of writing XVECTOR (foo)->header.size.
24 * lisp.h: Say "vectorlike header" rather than "vector header.
25 (struct vectorlike_header): Rename from struct vector_header.
26 (XVECTORLIKE_HEADER_SIZE): Renamed from XVECTOR_HEADER_SIZE.
27 All uses changed.
28 (XVECTOR_HEADER_SIZE): New macro, for use in XSETPSEUDOVECTOR.
29 (XSETTYPED_PVECTYPE): New macro, specifying the name of the size
30 member.
31 (XSETPVECTYPE): Rewrite in terms of new macro.
32 (XSETPVECTYPESIZE): New macro, specifying both type and size.
33 This is a bit clearer, and further avoids the possibility of
34 undesirable aliasing.
35 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
36 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR
37 and XVECTOR_HEADER_SIZE.
38 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
39 since Lisp_Subr is a special case (no "next" field).
40 (ASIZE): Rewrite in terms of XVECTOR_SIZE.
41 (struct vector_header): New type.
42 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
43 object, to help avoid aliasing.
44 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
45 (SUBRP): Likewise, since Lisp_Subr is a special case.
46
47 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
48 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
49 (struct Lisp_Hash_Table): Combine first two members into a single
50 struct vector_header member. All uses of "size" and "next" members
51 changed to be "header.size" and "header.next".
52 * buffer.h (struct buffer): Likewise.
53 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
54 * frame.h (struct frame): Likewise.
55 * process.h (struct Lisp_Process): Likewise.
56 * termhooks.h (struct terminal): Likewise.
57 * window.c (struct save_window_data, struct saved_window): Likewise.
58 * window.h (struct window): Likewise.
59 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
60 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
61 * buffer.c (init_buffer_once): Likewise.
62 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
63 special case.
64 * process.c (Fformat_network_address): Use local var for size,
65 for brevity.
66 * fns.c (vector): Remove; this old hack is no longer needed.
67 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
68
fab624aa
EZ
692011-04-29 Eli Zaretskii <eliz@gnu.org>
70
71 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
72 New version that can reserve upto 2GB of heap space.
73
45cb8994
CY
742011-04-26 Chong Yidong <cyd@stupidchicken.com>
75
76 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
77
97a93095
EZ
782011-04-18 Eli Zaretskii <eliz@gnu.org>
79
80 * s/ms-w32.h (localtime): Redirect to sys_localtime.
81
82 * w32.c: Include <time.h>.
83 (sys_localtime): New function.
84
c17819f4
CY
852011-04-13 Chong Yidong <cyd@stupidchicken.com>
86
87 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
88
300f9fca
ST
892011-04-10 Samuel Thibault <sthibault@debian.org> (tiny change)
90
91 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
92 zombies (Bug#8467).
93
fde4eb86
CY
942011-04-10 Chong Yidong <cyd@stupidchicken.com>
95
96 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
97
5324d904
CY
982011-04-08 Chong Yidong <cyd@stupidchicken.com>
99
65969f63
CY
100 * ftfont.c (get_adstyle_property, ftfont_pattern_entity): Use
101 unsigned char, to match FcChar8 type definition.
102
103 * xterm.c (handle_one_xevent):
104 * xmenu.c (create_and_show_popup_menu):
105 * xselect.c (x_decline_selection_request)
106 (x_reply_selection_request): Avoid type-punned deref of X events.
5324d904 107
da2fb5b5 1082011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
0080dc6b
SS
109
110 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
111
4e19a977
CS
1122011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
113
114 * process.c (Fformat_network_address): Doc fix.
115
20f56955
CY
1162011-03-19 Chong Yidong <cyd@stupidchicken.com>
117
118 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
119 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
120 These macros can no longer be used for assignment.
121
122 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Assign
123 struct members directly, instead of using BUF_BEGV etc.
124 (record_buffer_markers, fetch_buffer_markers): New functions for
125 recording and fetching special buffer markers.
126 (set_buffer_internal_1, set_buffer_temp): Use them.
127
128 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
129
130 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
131
132 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
133 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
134
135 * xdisp.c (hscroll_window_tree):
136 (reconsider_clip_changes): Use PT instead of BUF_PT.
137
45763476
JB
1382011-03-17 Juanma Barranquero <lekktu@gmail.com>
139
140 * xfaces.c (Fx_load_color_file):
141 Read color file from absolute filename (bug#8250).
142
1e048ad1
JB
1432011-03-11 Juanma Barranquero <lekktu@gmail.com>
144
145 Backport revno:103582 from trunk.
146 * w32xfns.c (select_palette): Check success of RealizePalette against
147 GDI_ERROR, not zero.
148
c47cbdfd
YM
1492011-03-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
150
126bc0dc
YM
151 * fringe.c (update_window_fringes): Remove unused variables.
152
c47cbdfd
YM
153 * unexmacosx.c (copy_data_segment): Also copy __got section.
154 (Bug#8223)
155
c6678f29 1562011-03-07 Chong Yidong <cyd@stupidchicken.com>
22770c84
CY
157
158 * Version 23.3 released.
159
e3b300a4
KH
1602011-02-22 Kenichi Handa <handa@m17n.org>
161
162 * font.c (font_open_entity): Be sure to set scaled_pixel_size.
163 (font_find_for_lface): Check if attrs[LFACE_HEIGHT_INDEX] is
164 integer.
165
f6ed3dbe
CY
1662011-02-19 Chong Yidong <cyd@stupidchicken.com>
167
168 * Makefile.in (prefix-args${EXEEXT}): Compile with ALL_CFLAGS.
169
a73d395b
EZ
1702011-02-13 Eli Zaretskii <eliz@gnu.org>
171
172 * xdisp.c (redisplay_internal): Resynchronize `w' if the selected
173 window is changed inside calls to do_pending_window_change.
174 (Bug#8020)
175
cb191a14
EZ
1762011-02-12 Eli Zaretskii <eliz@gnu.org>
177
178 * terminal.c (create_terminal): Use default-keyboard-coding-system
179 and default-terminal-coding-system to initialize coding systems of
180 the new terminal. (Bug#7840)
181
bae1fa42
MR
1822011-02-09 Martin Rudalics <rudalics@gmx.at>
183
184 * window.c (select_window): Check inhibit_point_swap argument when
185 deciding whether to return immediately.
186
9aabf64c
JD
1872011-02-08 Jan Djärv <jan.h.d@swipnet.se>
188
189 * nsterm.m (setFrame, initFrame): Make sure pixel_height doesn't become
190 zero (Bug#7348).
191
95838641
GM
1922011-02-03 Glenn Morris <rgm@gnu.org>
193
194 * xfaces.c (Finternal_set_lisp_face_attribute):
195 Try to clarify some error messages. (Bug#2659)
196
aca092ac
SM
1972011-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
198
199 * editfns.c (save_restriction_restore): Don't forget to invalidate the
200 current_column cache (bug#7946).
201
ea2460a0
KH
2022011-02-02 Kenichi Handa <handa@m17n.org>
203
204 * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined.
205
206 * xftfont.c (xftfont_open): Likewise.
207
29feb0e9
AS
2082011-02-01 Andreas Schwab <schwab@linux-m68k.org>
209
210 * window.c (Fselect_window): Add missing return value.
211
df61c790
AS
2122011-01-29 Andreas Schwab <schwab@linux-m68k.org>
213
214 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
215 of int. All uses adjusted.
216 (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load)
217 (svg_load_image): Remove casts.
218
7f9c5df9
CY
2192011-01-29 Chong Yidong <cyd@stupidchicken.com>
220
221 * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png
222 function definitions for compiling with libpng-1.5.
223 (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5.
224 (my_png_error, png_load): Use them. Suggested by Thomas Klausner
225 (Bug#7908).
226
46b3f2be
CY
2272011-01-28 Chong Yidong <cyd@stupidchicken.com>
228
229 * m/intel386.h: Define NO_ARG_ARRAY. Suggested by Dan Nicolaescu.
230
37d1c45d
CY
2312011-01-27 Chong Yidong <cyd@stupidchicken.com>
232
233 * font.c (font_parse_fcname): Require GTK-style font sizes to
234 occur at the end of the font string (Bug#7853).
235
ea08011c
CY
2362011-01-26 Chong Yidong <cyd@stupidchicken.com>
237
238 * font.c (font_parse_fcname): Fix typo in string length.
239
f996bbcb
SM
2402011-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
241
242 * xdisp.c (handle_fontified_prop): Be careful with font-lock changing
243 the buffer's point-max (bug#7876).
244
19634648
CY
2452011-01-23 Chong Yidong <cyd@stupidchicken.com>
246
247 * lisp.h (XPNTR): Obey DATA_SEG_BITS in all non-USE_LSB_TAG cases.
248 Remove unused HAVE_SHM branch (Bug#6811).
249
6de1218f 2502011-01-23 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
19634648 251
6de1218f
PG
252 * s/hpux11.h: Set CANNOT_DUMP on IA64 (Bug#6811).
253
e6b84b30
MR
2542011-01-22 Martin Rudalics <rudalics@gmx.at>
255
256 * window.c (select_window): New function.
257 (Fselect_window): Call it.
258 (inhibit_point_swap): Variable deleted.
259 (Fset_window_configuration): Call select_window directly.
260
0514b4be
SM
2612011-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
262
263 * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
264
e7f50e8f
EZ
2652011-01-16 Eli Zaretskii <eliz@gnu.org>
266
267 * image.c (syms_of_image): Don't use SET_SYMBOL_VALUE. (Bug#7848)
268
6dc1d2d3
MR
2692011-01-15 Martin Rudalics <rudalics@gmx.at>
270
271 * window.c (inhibit_point_swap): New variable.
272 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
273 point this time.
274 (Fset_window_configuration): Set inhibit_point_swap to 1 instead
275 of setting selected_window to nil (Bug#7728).
276
70ba1ec8
CY
2772011-01-12 Chong Yidong <cyd@stupidchicken.com>
278
279 * config.in (TERMINFO): New definition.
280
281 * s/netbsd.h: Use it to choose between terminfo and termcap
282 (Bug#7642).
283
0ad25444
JD
2842011-01-03 Jan Djärv <jan.h.d@swipnet.se>
285
286 * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
287
288 * nsfns.m (ns_set_name_iconic): Remove.
289 (ns_get_screen): Don't assign integer to f.
290 (ns_set_name_internal): New function (Bug#7517).
291 (Vicon_title_format): Extern declare.
292 (ns_set_name): Call ns_set_name_internal.
293 (x_explicitly_set_name): Remove call to ns_set_name_iconic.
294 (x_implicitly_set_name): Ditto.
295 (x_set_title): Remove commet about EXPLICIT. Call ns_set_name_internal.
296 (ns_set_name_as_filename): Encode name with ENCODE_UTF_8.
297 Always use buffer name for title and buffer filename only for
b762841f 298 RepresentedFilename. Handle bad UTF-8 in buffer name (Bug#7517).
0ad25444 299
fb724e55
EZ
3002011-01-03 Eli Zaretskii <eliz@gnu.org>
301
302 * image.c (png_jmpbuf): Remove definition.
303 (my_png_error, png_load): Don't use png_jmpbuf.
304
5be1c984
EZ
3052010-12-31 Eli Zaretskii <eliz@gnu.org>
306
307 * image.c <Qlibpng_version>: New variable.
308 (syms_of_image): Intern and staticpro it. Set its value to the
309 version of PNG library we were compiled with.
310 (my_png_error, png_load): Avoid GCC warnings about direct access
311 to png_ptr->jmpbuf. (Bug#7716)
18da2e74
EZ
312 (png_jmpbuf): New macro.
313 (my_png_error, png_load): Use it instead of #ifdef'ing according
314 to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
5be1c984 315
cf07311b
SM
3162010-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
317
318 * .gdbinit (xgetptr): Fix the union+lsb case.
319 (xbacktrace): Fix the union case.
320
794b75c7
SM
3212010-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
322
323 * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
324 different from selected-window's.
325
2e4ab211
EZ
3262010-12-25 Eli Zaretskii <eliz@gnu.org>
327
71fe378d
EZ
328 * keyboard.c (parse_menu_item): Prepend " " to the key sequence
329 equivalent of a menu item when the key sequence is given by the
330 `:keys' attribute. (Bug#7662)
331
2e4ab211
EZ
332 * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
333 the basic faces are supported.
334
84595ff0
JD
3352010-12-24 Jan Djärv <jan.h.d@swipnet.se>
336
337 * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
338
30d621a2
EZ
3392010-12-17 Eli Zaretskii <eliz@gnu.org>
340
341 * xdisp.c (Fformat_mode_line): Fix last change.
342
4bf3e46e
CY
3432010-12-16 Chong Yidong <cyd@stupidchicken.com>
344
345 * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
346 faces (Bug#7587).
347
1b2a627f
EZ
3482010-12-13 Eli Zaretskii <eliz@gnu.org>
349
350 * fileio.c (Fexpand_file_name): One more doc fix.
351
15579471
EZ
3522010-12-12 Eli Zaretskii <eliz@gnu.org>
353
354 * fileio.c (Fexpand_file_name): Doc fix. (Bug#7617)
355
f0559026
EZ
3562010-12-11 Eli Zaretskii <eliz@gnu.org>
357
76feb864
EZ
358 * w32fns.c (Fx_show_tip): Call try_window with last argument
359 TRY_WINDOW_IGNORE_FONTS_CHANGE. Delete the TODO ifdef: problem
360 solved. Round up the tip height to an integral multiple of the
361 frame's line height. Add FRAME_COLUMN_WIDTH to the tip width.
362 (Bug#7398)
363
f0559026
EZ
364 * xdisp.c (string_pos_nchars_ahead, c_string_pos)
365 (face_before_or_after_it_pos, next_element_from_string)
366 (next_element_from_c_string, produce_stretch_glyph): Remove unused
367 calculations of maximum string length before calling
368 string_char_and_length and STRING_CHAR_AND_LENGTH.
369 (string_char_and_length): Update commentary: MAXLEN is no longer
370 needed.
371
0b9fc69a
JD
3722010-12-10 Jan Djärv <jan.h.d@swipnet.se>
373
374 * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
375 as (Qsave_session arg).
376
377 * xsmfns.c (smc_interact_CB): Set arg to Qnil.
378 (smc_die_CB): Make an event with arg Qt.
379 (Fhandle_save_session): If event has Qt as argument,
380 call Fkill_emacs (Bug#7552).
381
2b815743
JD
3822010-12-07 Jan Djärv <jan.h.d@swipnet.se>
383
384 * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
385
d8b2a962
CY
3862010-12-06 Chong Yidong <cyd@stupidchicken.com>
387
388 * dispextern.h (struct it): New member overlay_strings_charpos.
389
390 * xdisp.c (next_overlay_string, load_overlay_strings): Record the
391 charpos where we computed n_overlay_strings.
392 (next_overlay_string): Load overlay strings at recorded position,
393 which may not be the same as the iterator's charpos (Bug#7016).
394
a56d164e
JD
3952010-12-05 Jan Djärv <jan.h.d@swipnet.se>
396
397 * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
398 with cursor color and draw a rectangle around the image (Bug#7412).
399
77f1ed6c
CY
4002010-12-05 Chong Yidong <cyd@stupidchicken.com>
401
402 * xdisp.c (try_scrolling): Avoid infloop if the first line is
403 obscured due to a vscroll (Bug#7537).
404
2a91a0b5
JD
4052010-12-02 Jan Djärv <jhd@zeplinf.localdomain>
406
407 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
408
409 * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
410 Use FRAME_TOOLBAR_HEIGHT.
411 (x_set_offset): Handle XNegative and YNegative in
412 f->size_hint_flags (Bug#7510).
413
b84ae584
KH
4142010-11-25 Kenichi Handa <handa@m17n.org>
415
416 * charset.c (emacs_mule_charset): Make it an array of charset ID;
417 i.e. integer.
418 (Fdefine_charset_internal): Adjusted for the above change.
419 (init_charset_once): Likewise.
420
421 * charset.h (emacs_mule_charset): Adjust the prototype. Delete
422 duplicated extern.
423
424 * coding.c (emacs_mule_char): Adjust for the change of
425 emacs_mule_charset.
426
427 * lread.c (read_emacs_mule_char): Adjust for the change of
428 emacs_mule_charset.
429
b8e5cf1d
EZ
4302010-11-22 Eli Zaretskii <eliz@gnu.org>
431
432 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
433 of w32api >= 3.15. (Bug#6989) (Bug#7452)
434
96ad0af7
YM
4352010-11-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
436
437 * alloc.c (mark_terminals): Ensure that the image cache is marked
438 even if the terminal object was marked earlier (Bug#6301).
439
35f1de62
CY
4402010-11-21 Chong Yidong <cyd@stupidchicken.com>
441
442 * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
443
8d7f026f
JD
4442010-11-20 Jan Djärv <jan.h.d@swipnet.se>
445
446 * gtkutil.c (menubar_map_cb): New function (Bug#7425).
447 (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
b762841f 448 Use 23 as menubar height if 0. (Bug#7425).
8d7f026f 449
37de8fd0
J
4502010-11-14 Jan Djärv <jan.h.d@swipnet.se>
451
452 * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
453
454 * config.in (HAVE_G_TYPE_INIT): New symbol.
455
c7926fe2
EZ
4562010-11-12 Eli Zaretskii <eliz@gnu.org>
457
458 * lread.c (Fload): Mention `load-in-progress' and
459 `load-file-name'. (Bug#7346)
460
c0098065
EZ
4612010-11-09 Eli Zaretskii <eliz@gnu.org>
462
86520d8c
EZ
463 * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
464 (kbd_buffer_store_event_hold, kbd_buffer_get_event)
465 (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
466 subprocesses. Use buffer_free only ifdef subprocesses.
467
468 * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
469 the subprocesses version, not in the non-subprocesses one.
470
794a4b6d
EZ
471 * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
472
c0098065
EZ
473 * xfns.c (x_real_positions): Fix declaration-after-statement
474 problem.
475
be3faa80
CY
4762010-11-05 Chong Yidong <cyd@stupidchicken.com>
477
478 * image.c (free_image): Don't garbage the frame here, since this
479 function can be called while redisplaying (Bug#7210).
480 (uncache_image): Garbage the frame here (Bug#6426).
481
055c91d4 4822010-11-04 Chong Yidong <cyd@stupidchicken.com>
184765cc
CY
483
484 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
485 Windows.
486
055c91d4 4872010-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
bd80a886
YM
488
489 * process.c (Fmake_network_process): Don't call turn_on_atimers around
490 `connect' (Bug#5723).
491
055c91d4 4922010-11-04 Helmut Eller <eller.helmut@gmail.com>
c2e124a9
HE
493
494 * process.c (Fmake_network_process): Call `select' for interrupted
495 `connect' rather than creating new socket (Bug#5173).
496
68ae6cda
KH
4972010-11-04 Kenichi Handa <handa@m17n.org>
498
499 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
500 Don't sheck SPEC if it is nil.
501 (font_list_entities): Call font_delete_unmatched if
502 Vface_ignored_fonts is non-nil.
503
db5cada2 5042010-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
fa884f18 505
2511e8e0
CY
506 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
507 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
508
509 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
510 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
511 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
512 TRY_WINDOW_CHECK_MARGINS.
513
514 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
515 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423).
fa884f18 516
d75c9992
JD
5172010-11-04 Jan Djärv <jan.h.d@swipnet.se>
518
31887d45
JD
519 * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
520 parent is the root window. Check this after traversing window tree.
521
d75c9992
JD
522 * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
523
524 * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
525
526 * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
527 before traversing window tree (Bug#5721).
528
754996bc
GM
5292010-11-03 Glenn Morris <rgm@gnu.org>
530
531 * Makefile.in (CRT_DIR): New variable, set by configure.
532 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
533 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
534
3649d303
JD
5352010-11-01 Jan Djärv <jan.h.d@swipnet.se>
536
537 * process.c (kbd_is_on_hold): New variable.
538 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
539 New functions.
540 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
541 select on empty input mask.
542 (init_process): Initialize kbd_is_on_hold to 0.
543
544 * process.h (hold_keyboard_input, unhold_keyboard_input)
545 (kbd_on_hold_p): Declare.
546
547 * keyboard.c (input_available_signal): Declare.
548 (kbd_buffer_nr_stored): New function.
549 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
550 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
551 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
552 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
553 (tty_read_avail_input): If input is on hold, return.
554 Don't read more that free slots in kbd_buffer (Bug#6571).
555
46eadc7a
CY
5562010-10-31 Chong Yidong <cyd@stupidchicken.com>
557
558 * xterm.c (x_connection_closed): Print informative error message
559 when aborting on GTK. This requires using shut_down_emacs
560 directly instead of Fkill_emacs.
561
655441b2
MA
5622010-10-25 Michael Albinus <michael.albinus@gmx.de>
563
564 * dbusbind.c (Fdbus_call_method_asynchronously)
565 (Fdbus_register_signal, Fdbus_register_method): Check, whether
566 `dbus-registered-objects-table' is initialized.
567
23c261f5
CY
5682010-10-24 Chong Yidong <cyd@stupidchicken.com>
569
570 * xterm.c (x_connection_closed): Kill Emacs unconditionally.
571
89baa1df
EZ
5722010-10-22 Eli Zaretskii <eliz@gnu.org>
573
574 * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
575
576 * dispnew.c (syms_of_display) <initial-window-system, window-system>:
577 Deprecate use as a boolean flag.
578
5419963b
KB
5792010-10-18 Ken Brown <kbrown@cornell.edu>
580
581 * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
582
31daa5e1
KH
5832010-10-15 Kenichi Handa <handa@m17n.org>
584
585 Fix incorrect font metrics when the same font is opened with
586 different pixelsizes.
587
588 * xftfont.c: Include composite.h.
589 (xftfont_shape): New function.
590 (syms_of_xftfont): Set xftfont_driver.shape.
591
9fa82824
DP
5922010-10-13 Damyan Pepper <damyanp@gmail.com>
593
594 Fix handling of font properties on Windows (bug#6303).
595 * font.c (font_filter_properties): New function, refactored from
596 ftfont_filter_properties.
597 * font.h (font_filter_properties): Declare.
598 * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
599 * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
600 (w32font_filter_properties): New function.
601 (w32font_driver): Add w32font_filter_properties.
602
51e4f4a8
JB
6032010-10-12 Juanma Barranquero <lekktu@gmail.com>
604
c0943d3d 605 * font.c (Ffont_variation_glyphs):
51e4f4a8
JB
606 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
607
a2e35ef5
JD
6082010-10-10 Jan Djärv <jan.h.d@swipnet.se>
609
610 * nsterm.m (Qleft): Declare.
611 (ns_right_alternate_modifier): New variable
612 (NSRightAlternateKeyMask): New define.
613 (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
614 ns_right_alternate_modifier isn't Qleft.
615 (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
616 as emacs modifier for NSRightAlternateKeyMask.
617 (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
618
2e828c79
MA
6192010-10-08 Michael Albinus <michael.albinus@gmx.de>
620
621 * dbusbind.c (xd_get_dispatch_status): Return a Lisp_Object.
622 (xd_pending_messages): Catch xd_get_dispatch_status calls.
623
93d50df8
KH
6242010-10-08 Kenichi Handa <handa@m17n.org>
625
2b7c9342 626 * coding.c (complement_process_encoding_system): Fix previous change.
5886ec9c 627
a79b0f28
MA
6282010-10-03 Michael Albinus <michael.albinus@gmx.de>
629
630 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
631 (Fdbus_init_bus): ... here. (Bug#7113)
632
7b2bf907
GM
6332010-10-03 Glenn Morris <rgm@gnu.org>
634
635 * buffer.c (before-change-functions, after-change-functions):
636 Three-year overdue doc fix following 2007-08-13 change.
637
1911a33b
KH
6382010-10-02 Kenichi Handa <handa@m17n.org>
639
640 * coding.c (coding_inherit_eol_type): If parent doesn't specify
641 eol-format, inherit from the system's default.
642 (complement_process_encoding_system): Make a new coding system
643 inherit the original eol-format.
644
fcaf8878
KH
6452010-09-30 Kenichi Handa <handa@m17n.org>
646
647 * coding.c (complement_process_encoding_system): New function.
648
649 * coding.h (complement_process_encoding_system): Extern it.
650
651 * callproc.c (Fcall_process): Complement the coding system for
652 encoding arguments.
653 (Fcall_process_region): Complement the coding system for encoding
654 the input to the process.
655
656 * process.c (Fstart_process): Complement the coding system for
657 encoding arguments.
658 (send_process): Complement the coding system for encoding what
659 sent to the process.
660
18acb5ad
KH
6612010-09-29 Kenichi Handa <handa@m17n.org>
662
663 * xfont.c (xfont_open): Fix setting of font->average_width from
664 :avgwidth property (Bug#7123).
665
dec83468
MA
6662010-09-28 Michael Albinus <michael.albinus@gmx.de>
667
668 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
669 is more portable.
670
671 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
b762841f 672 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
dec83468
MA
673 has not defined SIGIO.
674
e0720500
MA
6752010-09-27 Michael Albinus <michael.albinus@gmx.de>
676
11a5af7c 677 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
e0720500
MA
678 (Bug#7113)
679
42d3022b
J
6802010-09-26 Jan Djärv <jan.h.d@swipnet.se>
681
682 * xgselect.c (xg_select): Clear file descriptors not set from
683 rfds and wfds.
684
fbb3da77
SM
6852010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
686
687 * syntax.c (back_comment): Detect the case where a 1-char comment
688 starter is also the 2nd char of a 2-char comment ender.
689
2b5b82db
J
6902010-09-17 Jan Djärv <jan.h.d@swipnet.se>
691
692 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
693
5f61a25c
J
6942010-09-12 Jan Djärv <jan.h.d@swipnet.se>
695
696 * xterm.c (get_current_vm_state): New function.
697 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
698 want_fullscreen so set_wm_state calls are few (Bug#7013).
699 (x_handle_net_wm_state): Move code to get_current_vm_state and
700 call that function.
701
65c92e31 7022010-09-11 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
65b3d997
A
703
704 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
705
a552b35a
KH
7062010-09-08 Kenichi Handa <handa@m17n.org>
707
708 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
709 we may use designation or locking-shift.
710
396475b7
KH
7112010-09-07 Kenichi Handa <handa@m17n.org>
712
713 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
714 sequence when the source is multibyte.
715
d419e1d9
KH
7162010-08-31 Kenichi Handa <handa@m17n.org>
717
718 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
719 characters.
720
721 * term.c (encode_terminal_code): Fix the previous change.
65b3d997
A
722 (produce_glyphs): Don't set it->char_to_display here.
723 Don't handle unibyte-display-via-language-environment here.
d419e1d9
KH
724 (produce_special_glyphs): Set temp_it.char_to_display before
725 calling produce_glyphs.
726
727 * xdisp.c (get_next_display_element): Set it->char_to_display
728 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
729 characters.
730 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
731 calling PRODUCE_GLYPHS.
732 (append_space_for_newline): Save and store it->char_to_display.
733 Set it->char_to_display before calling PRODUCE_GLYPHS.
734 (extend_face_to_end_of_line): Set it->char_to_display before
735 calling PRODUCE_GLYPHS.
736 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
737 character to its byte value.
738 (get_char_glyph_code): New function.
739 (produce_stretch_glyph): Set it2.char_to_display too before
740 calling x_produce_glyphs.
741 (x_produce_glyphs): Simplify by using the same code for ASCII and
65b3d997
A
742 non-ASCII characters. Don't set it->char_to_display here.
743 Don't handle unibyte-display-via-language-environment here. For a
c0943d3d 744 character of no glyph, use font->space_width instead of FONT_WIDTH.
d419e1d9 745
769ae9e1
KH
7462010-08-29 Kenichi Handa <handa@m17n.org>
747
748 * term.c (encode_terminal_code): Encode byte chars to the
749 correspnding bytes.
750
b72e0717
AS
7512010-08-17 Andreas Schwab <schwab@linux-m68k.org>
752
753 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
754 instead of SAFE_ALLOCA.
755
3a7a9129
CY
7562010-08-17 Chong Yidong <cyd@stupidchicken.com>
757
758 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
759 (Bug#6214).
760
983b8302
J
7612010-08-14 Jan Djärv <jan.h.d@swipnet.se>
762
763 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
764
7d1b9df3
J
7652010-08-13 Jan Djärv <jan.h.d@swipnet.se>
766
767 * doc.c (Fsnarf_documentation): Initialize skip_file before
768 build-files test.
769
2294b255
PG
7702010-08-09 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
771
65b3d997
A
772 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
773 New definitions.
2294b255
PG
774 (HAVE_TERMIO): Remove.
775
7a84eee5
KH
7762010-08-06 Kenichi Handa <handa@m17n.org>
777
778 * charset.c: Include <stdlib.h>
779 (struct charset_sort_data): New struct.
780 (charset_compare): New function.
c0943d3d 781 (Fsort_charsets): New function.
7a84eee5
KH
782 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
783
784 * coding.c (decode_coding_iso_2022): Fix checking of dimension
785 number in CTEXT extended segment.
786
f5f6c0e0
JB
7872010-08-01 Juanma Barranquero <lekktu@gmail.com>
788
789 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
790 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
791
b756c005
JB
7922010-07-30 Juanma Barranquero <lekktu@gmail.com>
793
794 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
795 (Fhash_table_size): Fix typos in docstrings.
796 (Fmake_hash_table): Doc fix.
797
b4f588fa
JB
7982010-07-28 Juanma Barranquero <lekktu@gmail.com>
799
800 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
801 Doc fix (bug#5625).
802
9f8c08a7
KB
8032010-07-27 Ken Brown <kbrown@cornell.edu>
804
805 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
806 the MSDOS definition.
807
a2a0d36b
CS
8082010-07-25 Christoph Scholtes <cschol2112@gmail.com>
809
810 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
811
a77cfeaf
CS
8122010-07-22 Christoph Scholtes <cschol2112@gmail.com>
813
814 * window.c (Fwindow_height): Doc fix (bug#6518).
815
14fb5704
JB
8162010-07-21 Juanma Barranquero <lekktu@gmail.com>
817
818 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
819
499322ce
J
8202010-07-17 Jan Djärv <jan.h.d@swipnet.se>
821
822 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
823 is related to the menu bar (Bug#6499).
824
b78f9767
J
8252010-07-14 Jan Djärv <jan.h.d@swipnet.se>
826
827 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
828
829 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
830
831 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
832 i.e. don't put back ButtonRelease (Bug#6608).
833
834 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
835 instead of Window. Call xg_event_is_for_menubar when
836 USE_GTK (Bug#6499).
837
838 * gtkutil.h (xg_event_is_for_menubar): Declare.
839
840 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
841
1f60c16a
EZ
8422010-07-14 Eli Zaretskii <eliz@gnu.org>
843
844 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
845 when it's the same as the old foreground. (Bug#6609)
846
7c33a057
CY
8472010-07-10 Chong Yidong <cyd@stupidchicken.com>
848
849 * xfaces.c (realize_face): Garbage the frame if a face is removed
850 (Bug#6593).
851
9d70a3fc
AS
8522010-07-05 Andreas Schwab <schwab@linux-m68k.org>
853
854 * keyboard.c: Remove duplicate <setjmp.h>.
855 (read_key_sequence): Remove volatile qualifiers.
856
5a874e95
YM
8572010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
858
859 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
860 (struct glyph_row): New members left_fringe_offset and
861 right_fringe_offset.
862
863 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
864 specially.
865 * w32term.c (w32_draw_fringe_bitmap): Likewise.
866 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
867
868 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
b762841f 869 Take account of bitmap offset.
5a874e95
YM
870 (draw_window_fringes): Take account of window vscroll.
871 (update_window_fringes): Likewise. Extend top-aligned top indicator
872 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
873 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
874 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
875
0682186e
JB
8762010-07-04 Juanma Barranquero <lekktu@gmail.com>
877
878 * w32fns.c (Qtooltip): Declare.
879 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
880
ad3e6f44
J
8812010-07-03 Jan Djärv <jan.h.d@swipnet.se>
882
883 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
884 grab on just Press (Bug#6499).
885
54ee7410
CY
8862010-07-02 Chong Yidong <cyd@stupidchicken.com>
887
888 * frame.c (Qtooltip): New var.
889 (delete_frame): Use it. Fix faulty if statement. Don't update
890 mode line for tooltip frames. Suggested by Martin Rudalics.
891
892 * xfns.c (x_create_tip_frame):
893 * w32fns.c (x_create_tip_frame): Use it.
894
3d8416fc
NA
8952010-06-30 Naohiro Aota <naota@elisp.net> (tiny change)
896
897 * xftfont.c (xftfont_open): Check font width one by one also when
898 spacing is dual.
899
900 * ftfont.c (ftfont_open): Ditto.
901
b1feb9b4
AS
9022010-06-26 Andreas Schwab <schwab@linux-m68k.org>
903
904 * alloc.c (Fmake_byte_code): Don't access undefined argument
905 (Bug#6517).
906
c7dd9743
CY
9072010-06-25 Chong Yidong <cyd@stupidchicken.com>
908
909 * xdisp.c (next_element_from_image): Ensure that after-strings are
910 read the next time we hit handle_stop (Bug#1336).
911
5721b4ed
AS
9122010-06-23 Andreas Schwab <schwab@linux-m68k.org>
913
914 * lread.c (read1): Signal error if #s is not followed by paren.
915
277c5f18
CY
9162010-06-19 Chong Yidong <cyd@stupidchicken.com>
917
52ab9bb2
CY
918 * image.c (free_image): Mark frame as garbaged (Bug#6426).
919
277c5f18
CY
920 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
921
6fda6a0c
GM
9222010-06-15 Glenn Morris <rgm@gnu.org>
923
924 * editfns.c (Fbyte_to_string): Pacify compiler.
925
e454a4a3
SM
9262010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
927
928 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
929 Check `object's type before accessing its guts.
930
657d4c0b
AS
9312010-06-08 Andreas Schwab <schwab@linux-m68k.org>
932
933 * minibuf.c (Fall_completions): Add more checks.
934
9b27fd9f
JB
9352010-06-08 Juanma Barranquero <lekktu@gmail.com>
936
937 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
938
0eb7675e
AS
9392010-06-03 Andreas Schwab <schwab@linux-m68k.org>
940
941 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4
f07b083d 942 address. (Bug#6346)
0eb7675e 943
78edd3b7
JB
9442010-06-03 Juanma Barranquero <lekktu@gmail.com>
945
946 * ccl.c (Fccl_program_p): Fix typo in docstring.
947
1ab8293c
SM
9482010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
949
950 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
951 of bug#6305).
952
5ca3929b
CY
9532010-05-27 Chong Yidong <cyd@stupidchicken.com>
954
955 * xdisp.c (redisplay_window): After redisplay, check if point is
956 still valid before setting it (Bug#6177).
957
f5b416d2 9582010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
959
960 * s/netbsd.h: If terminfo is found, use it in preference to
961 termcap. (Bug#6190) [Backport from trunk]
962
aeb77d46
CY
9632010-05-20 Kevin Ryde <user42@zip.com.au>
964
965 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
966 (Voverriding_terminal_local_map, Vsystem_key_alist)
967 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
968
c3bb441d
SM
9692010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
970
971 * editfns.c (Fbyte_to_string): New function.
972
754790b6
CY
9732010-05-18 Chong Yidong <cyd@stupidchicken.com>
974
975 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
976 prevent stack overflow if number of arguments is too large
977 (Bug#6214).
978
c8670ded
EZ
9792010-05-11 Eli Zaretskii <eliz@gnu.org>
980
981 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(SRC)/w32.h.
982
983 * w32fns.c: Include w32.h.
984 (Fw32_shell_execute): Decode the error message before passing it
985 to `error'. (Bug#6126)
986
3ffd4615 9872010-05-11 Karel Klic <kklic@redhat.com>
c90ca7b7
KH
988
989 * ftfont.c: Fix incorrect parentheses of #if condition for
990 definining M17N_FLT_USE_NEW_FEATURE.
991
61a808e8
CY
9922010-05-07 Chong Yidong <cyd@stupidchicken.com>
993
994 * Version 23.2 released.
995
5dcde606
AS
9962010-04-30 Andreas Schwab <schwab@linux-m68k.org>
997
998 * composite.c (autocmp_chars): Save point as marker before calling
999 auto-composition-function (Bug#5984).
1000
1001 * lisp.h (restore_point_unwind): Add prototype.
1002
1003 * fileio.c (restore_point_unwind): Remove static attribute.
1004
c4170e32
KH
10052010-04-23 Kenichi Handa <handa@m17n.org>
1006
1007 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
1008 new feature of libotf and m17n-flt.
65b3d997
A
1009 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
1010 Call OTF_check_features even if no specific feature is given.
c4170e32
KH
1011 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
1012 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
1013 that OUT is NULL. Use OTF_drive_gsub_with_log and
1014 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
1015 OTF_drive_gpos.
1016 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
65b3d997
A
1017 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
1018 Setup mflt_enable_new_feature and mflt_try_otf.
c4170e32 1019
e42cd1a7
JB
10202010-04-19 Juanma Barranquero <lekktu@gmail.com>
1021
1022 * dired.c (Ffile_attributes): Fix typo in docstring.
1023
79353a53
AR
10242010-04-13 Adrian Robert <Adrian.B.Robert@gmail.com>
1025
1026 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
1027 NSInteger (Bug#5811).
1028
658b9b93
YM
10292010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1030
1031 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
1032 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
1033
16009a0e
YM
10342010-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1035
1036 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
1037
f016f225
JD
10382010-04-07 Jan Djärv <jan.h.d@swipnet.se>
1039
1040 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
1041 FRAME_LINE_TO_PIXEL_Y.
1042
1043 * xterm.c (x_set_window_size_1): Don't add border_width/height to
1044 pixelwidth/height.
1045
84257d93
CY
10462010-04-05 Chong Yidong <cyd@stupidchicken.com>
1047
1048 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
1049 terminal frames (Bug#5837).
1050
95b1abcf
CY
10512010-03-31 Chong Yidong <cyd@stupidchicken.com>
1052
1053 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
1054 * nsterm.h: Fix prototype.
1055
4a217bed
EZ
10562010-03-31 Eli Zaretskii <eliz@gnu.org>
1057
1058 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
1059 in this function. (Bug#5703)
1060
4f103e04
CY
10612010-03-31 Chong Yidong <cyd@stupidchicken.com>
1062
1063 * nsterm.h: Fix last change.
1064
a6d676d9
CY
10652010-03-30 Bernhard Herzog <bh@intevation.de> (tiny change)
1066
1067 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
1068
67fee863
JD
10692010-03-30 Jan Djärv <jan.h.d@swipnet.se>
1070
1071 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
1072 invisible (Bug#5766).
1073
9ae6e189
CY
10742010-03-29 Adrian Robert <adrian.b.robert@gmail.com>
1075
1076 * xdisp.c (x_consider_frame_title, update_window_cursor): Remove
1077 HAVE_NS conditionals.
194d44e7 1078 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
9ae6e189
CY
1079
1080 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
1081 filename for the title.
1082 (ns_set_doc_edited): Do nothing if the selected window is a
1083 minibuffer window.
1084
1085 * nsterm.h: Add prototypes for ns_set_name_as_filename and
1086 ns_set_doc_edited.
1087
1088 * nsterm.m: Remove unneeded prototype.
1089
25c72475
GM
10902010-03-28 Glenn Morris <rgm@gnu.org>
1091
1092 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
1093 in the DOC file. (Bug#5336)
1094
f79a01db
CY
10952010-03-24 Chong Yidong <cyd@stupidchicken.com>
1096
1097 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
1098
93318cbd
JD
10992010-03-20 Jan Djärv <jan.h.d@swipnet.se>
1100
1101 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
1102
1103 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
1104
1105 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
1106
ad13a3ee
YM
11072010-03-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1108
1109 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
1110 XLoadQueryFont.
1111
fbdc1721
KH
11122010-03-16 Kenichi Handa <handa@m17n.org>
1113
1114 * coding.c (decode_coding_ccl): Fix previous change for the
1115 multibyte case.
fb608df3
KH
1116 (encode_coding_ccl): Don't setup ccl program here. Fix for the
1117 case that the output buffer is fullfilled.
1118 (encode_coding): Setup ccl program here.
fbdc1721 1119
35cd7cd6
CY
11202010-03-15 Andreas Politz <politza@fh-trier.de> (tiny change)
1121
1122 * editfns.c (Fformat): Account for string precision when computing
1123 field width (Bug#5710).
1124
618db430
SM
11252010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
1126
c0335e02
SM
1127 Make it possible to C-g in a tight bytecode loop again (bug#5680).
1128 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
1129 (QUIT): Use it to consolidate code and remove redundancy.
1130 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
1131
254c06a8
SM
1132 * regex.c (regex_compile): Setup gl_state as well.
1133
618db430
SM
1134 * syntax.c (skip_chars): Setup gl_state (bug#3823).
1135 (in_classes): Use CONSP before XCAR/XCDR.
1136
233f0c9f
CY
11372010-03-03 Chong Yidong <cyd@stupidchicken.com>
1138
1139 * keymap.c (Fwhere_is_internal): Use Fequal to compare
1140 definitions, so that keyboard macros are correctly handled
1141 (Bug#5481).
1142
75f80e63
EZ
11432010-03-02 Eli Zaretskii <eliz@gnu.org>
1144
1145 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
1146 text that could be relocated inside the call to emacs_mule_char.
1147 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
1148 (CODING_DECODE_CHAR): Add a comment describing its purpose.
1149
dcfb9bc4
KH
11502010-03-02 Kenichi Handa <handa@m17n.org>
1151
fc9a17bc
KH
1152 * character.c (parse_str_as_multibyte): Fix handling of the
1153 multibyte form of raw-bytes.
1154 (str_as_multibyte): Likewise.
1155
dcfb9bc4
KH
1156 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
1157 form of raw-bytes.
1158
412c01b6
CY
11592010-02-28 Chong Yidong <cyd@stupidchicken.com>
1160
1161 * charset.c (load_charset_map_from_file)
1162 (load_charset_map_from_vector): Zero out allocated
1163 charset_map_entries before using them.
1164
df7e1ea0
AS
11652010-02-27 Andreas Schwab <schwab@linux-m68k.org>
1166
1167 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
1168
fe69a722
CY
11692010-02-27 Chong Yidong <cyd@stupidchicken.com>
1170
4ed28cf4
CY
1171 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
1172 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
fe69a722 1173
7379cfce
KH
11742010-02-26 Kenichi Handa <handa@m17n.org>
1175
f88cc4d6
KH
1176 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
1177
7379cfce
KH
1178 * xdisp.c (reseat_to_string): Fix previous change.
1179
cf2fdcfb
CY
11802010-02-26 David Reitter <david.reitter@gmail.com>
1181
1182 * nsfont.m (nsfont_draw): ns_antialias_text should be a
1183 Lisp_Object (Bug#4736).
1184
cc6c7c75
KH
11852010-02-25 Kenichi Handa <handa@m17n.org>
1186
1187 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
1188
32e737d7
JD
11892010-02-24 Jan Djärv <jan.h.d@swipnet.se>
1190
1191 * xterm.c (XTflash): Move declarations before statements.
1192
1193 * gtkutil.c (xg_get_gdk_display): Remove (unused).
1194 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
1195 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
1196 (xg_create_tool_bar): Remove unused variables.
1197 (x_wm_set_size_hint): Move declarations before statements.
a73f9c9d 1198 (xg_create_frame_widgets): Remove variable grav.
32e737d7 1199
676cae9f
CY
12002010-02-21 Chong Yidong <cyd@stupidchicken.com>
1201
1202 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
1203
886cc2b8
SM
12042010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1205
1206 * term.c (fatal): Add a final \n if needed (bug#5596).
1207
ddb2d8e2
CY
12082010-02-18 Chong Yidong <cyd@stupidchicken.com>
1209
1210 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
1211
2a4f8d3d
GM
12122010-02-18 Glenn Morris <rgm@gnu.org>
1213
1214 * callint.c (Finteractive): Doc fix.
1215
ebaf11b6
KH
12162010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
1217
886cc2b8
SM
1218 * coding.c (record_conversion_result):
1219 Handle CODING_RESULT_INSUFFICIENT_DST.
ebaf11b6
KH
1220 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
1221 memory allocation error.
1222
d0396581
KH
12232010-02-17 Kenichi Handa <handa@m17n.org>
1224
886cc2b8
SM
1225 * coding.c (decode_coding_ccl): Don't setup ccl program here.
1226 Fix for the case that the output buffer is fullfilled.
d0396581
KH
1227 (decode_coding): Setup ccl program here. Keep looping when the
1228 decoder stopped because the output buffer is
1229 fullfilled (bug#5534).
1230
1231 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
1232
98599f74
JD
12332010-02-13 Jan Djärv <jan.h.d@swipnet.se>
1234
471e4f04 1235 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
98599f74 1236 bug #5571.
886cc2b8 1237 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
471e4f04 1238 overdrawn.
98599f74 1239
182659ae
JD
12402010-02-10 Jan Djärv <jan.h.d@swipnet.se>
1241
1242 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
1243 doing_interact here.
1244 (ice_connection_closed): New function.
1245 (x_session_check_input, smc_die_CB, ice_io_error_handler)
1246 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
1247 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
1248 returns I/O error.
1249 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
1250 bug #5512.
1251
9be32c4e 12522010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
14a225f9
CY
1253
1254 * nsfont.m (nsfont_open): The system's value for the font descent
1255 is negative, so round it down to avoid clipping.
1256
a2f3eb19
CY
12572010-02-06 Chong Yidong <cyd@stupidchicken.com>
1258
1259 * charset.c (load_charset_map_from_file)
1260 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
953d248c 1261 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
a2f3eb19 1262
3088147c
CY
12632010-02-05 Chong Yidong <cyd@stupidchicken.com>
1264
1265 * charset.c (load_charset_map_from_file): Allocate large
1266 charset_map_entries structure on the heap rather than the stack.
1267 (Bug#5526).
1268
b57d9029
KH
12692010-01-31 Kenichi Handa <handa@m17n.org>
1270
1271 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
115e4fd3 1272 size in NAME is invalid, return -1 (Bug#5396).
b57d9029 1273
c67d885b
CY
12742010-01-31 Chong Yidong <cyd@stupidchicken.com>
1275
1276 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
1277 <deactivated@gmail.com> (Bug#3605).
1278
8fab2362
CY
12792010-01-31 David De La Harpe Golden <david@harpegolden.net>
1280
1281 * fileio.c (Frename_file): Correctly rename symlinks to
1282 directories (Bug#5496).
1283
cb2a62f2
CY
12842010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
1285
1286 * nsterm.m (ns_ring_bell): Handle visible bell like X.
1287
944c7a26
AS
12882010-01-30 Andreas Schwab <schwab@linux-m68k.org>
1289
1290 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
1291
c024ac08
CY
12922010-01-29 Chong Yidong <cyd@stupidchicken.com>
1293
1294 * frame.c (DEFAULT_ROWS): Change default to 35.
1295
1296 * xfns.c (x_default_font_parameter): Change default XFT font to
1297 monospace-10 (Bug#3643).
1298
af93af83
EZ
12992010-01-29 Eli Zaretskii <eliz@gnu.org>
1300
1301 * w32inevt.c (key_event): Remove unnecessary comparison of
1302 event->uChar.AsciiChar with 128.
1303
ca0eb708
CY
13042010-01-28 Chong Yidong <cyd@stupidchicken.com>
1305
b242dbfc
CY
1306 * fileio.c (Frename_file): Fix last change (Bug#5487).
1307
ca0eb708
CY
1308 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
1309
1310 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
1311
45d45af5
JD
13122010-01-28 Jan Djärv <jan.h.d@swipnet.se>
1313
1314 * xfns.c (Fx_create_frame): Remove window size matching code from
1315 2010-01-15.
a73f9c9d 1316 (x_get_current_desktop, x_get_desktop_workarea): Remove.
45d45af5 1317
7e233730
JR
13182010-01-27 Jason Rumney <jasonr@gnu.org>
1319
1320 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
a292592c 1321 (key_event): Use unicode for characters 128 and higher (Bug#4567).
7e233730 1322
86e893e3
KH
13232010-01-27 Kenichi Handa <handa@m17n.org>
1324
1325 * regex.c (analyse_first): Fix setting of fastmap for unibyte
c8b96b2a 1326 pattern string (Bug#4209).
86e893e3 1327
8719abec
CY
13282010-01-27 David De La Harpe Golden <david@harpegolden.net>
1329
1330 * fileio.c (Frename_file): Call copy-directory and
1331 delete-directory for directories, in order to handle cross-device
1332 renaming (Bug#3353).
1333
844794c8
JD
13342010-01-25 Jan Djärv <jan.h.d@swipnet.se>
1335
aa3e13b5 1336 * xfns.c (Fx_create_frame): If frame height is too big, try
ac146f82 1337 sizes 24 and 10. Bug #3643.
844794c8 1338
bd4b5750
SM
13392010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
1340
8dc1adf6 1341 Try and fix bug#788, hopefully for real this time.
bd4b5750
SM
1342 * keymap.c (shadow_lookup): Add `remap' arg.
1343 (describe_map, describe_vector): Update calls to shadow_lookup.
1344 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
1345 `remapped' so this flag is applicable to `sequence'. Be careful to
8dc1adf6
SM
1346 perform remapping during shadow_lookup check of remapped_sequences.
1347
285d07e2
CY
13482010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
1349
1350 * image.c (png_load): Use png_sig_cmp instead of the obsolete
1351 png_check_sig, which has been removed in libpng 1.4.
1352
c6d09b8d
CY
13532010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
1354
1355 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
1356 lacks this header file).
1357
3d782998
YM
13582010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1359
1360 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
1361 as in Emacs 22.
1362
2aff7c53
YM
13632010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1364
1365 * lisp.h (make_pure_string): String pointer arg now points to const.
1366
1367 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
1368 args now point to const.
1369
74327f7a
EZ
13702010-01-22 Eli Zaretskii <eliz@gnu.org>
1371
1372 * lread.c (Fload): Don't treat files without .elc extension as
1373 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
1374 them. (bug#5303)
1375
4d1e6632
KH
13762010-01-20 Kenichi Handa <handa@m17n.org>
1377
1378 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
1379 treat the source as actual byte sequence.
1380
1fdede8f
AM
13812010-01-19 Alan Mackenzie <acm@muc.de>
1382
1383 Fix spurious before-change-functions invocation from (insert ?\n).
194d44e7 1384 * textprop.c (set_text_properties): Rename parameter
1fdede8f
AM
1385 `signal_after_change_p' to `coherent_change_p', and make the
1386 invocation of `modify_region' conditional on it.
1387
67477f30
JD
13882010-01-19 Jan Djärv <jan.h.d@swipnet.se>
1389
1390 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
1391 for debug purpose.
1392 (syms_of_xsettings): Declare xft-settings.
1393
244b023e
CY
13942010-01-18 Chong Yidong <cyd@stupidchicken.com>
1395
1396 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
1397
617364fe
CY
13982010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
1399
1400 * xterm.c (event_handler_gdk): Block input (Bug#5037).
1401
4fe22cdf
CY
14022010-01-16 Chong Yidong <cyd@stupidchicken.com>
1403
1404 * emacs.c (standard_args): Adjust arg priorities to reflect how
1405 they are processed in startup.el.
1406
e118d2be
AS
14072010-01-16 Andreas Schwab <schwab@linux-m68k.org>
1408
1409 * Makefile.in (lisp, shortlisp): Update.
1410
523ae620
SM
14112010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
1412
1413 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
1414 code, link the new kboard into all_kboard before running Lisp code,
1415 and protect the new terminal with GCPRO (Bug#5365).
1416 (x_term_init): Remove unused var `atom'.
1417 (x_delete_display, x_delete_terminal): Remove unused var `i'.
1418
f0d13888
JD
14192010-01-15 Jan Djärv <jan.h.d@swipnet.se>
1420
1421 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
1422 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
1423 to find out usable size of the desktop. Don't make frames larger than
ac146f82 1424 this. Bug #3643.
f0d13888 1425
cc320f07
KH
14262010-01-15 Kenichi Handa <handa@m17n.org>
1427
1428 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
1429
7ffdf101
CY
14302010-01-15 Chong Yidong <cyd@stupidchicken.com>
1431
1432 * nsterm.m (Qnone): Define.
1433
1434 * nsfns.m (Qnone): Move definition to nsterm.m.
1435
d12bd917
KH
14362010-01-14 Kenichi Handa <handa@m17n.org>
1437
1438 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
1439 systems.
1440
d9a7c140
KH
14412010-01-14 Kenichi Handa <handa@m17n.org>
1442
1443 Make auto-composition work on all buffers even if they are
1444 fundamental mode.
1445
1446 * composite.c (Vauto_composition_mode): New variable.
1447 (composition_compute_stop_pos): Check Vauto_composition_mode
1448 instead of Vauto_composition_function.
1449 (composition_adjust_point, Ffind_composition_internal): Likewise.
1450 (syms_of_composite): Declare Lisp variable
1451 "auto-composition-mode" here.
1452
63286bb2
CY
14532010-01-13 Chong Yidong <cyd@stupidchicken.com>
1454
1455 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
1456 during call to vendor-specific-keysyms (Bug#5365).
1457
c2623ee7
YM
14582010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1459
1460 * keyboard.c (input_available_signal) [SYNC_INPUT]:
1461 Call SIGNAL_THREAD_CHECK (Bug#5333).
1462
1463 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
1464 Call SIGNAL_THREAD_CHECK.
1465
0b5397c2
SM
14662010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1467
1468 Try to fix bug#5314. This is probably not the final word, tho.
1469 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
1470 recent-auto-save-p as a side-effect.
1471 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
1472 * buffer.c (Fkill_buffer, reset_buffer):
1473 * editfns.c (Fsubst_char_in_region):
1474 * fileio.c (Finsert_file_contents, Fdo_auto_save)
1475 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
1476
dc954cb2
KH
14772010-01-13 Kenichi Handa <handa@m17n.org>
1478
1479 Display buffer name, etc. in mode line by composing correctly.
1480
1481 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
1482 STRING is not nil.
0b5397c2 1483 (display_mode_element): Adjust for the change of
dc954cb2
KH
1484 decode_mode_spec and display_line.
1485 (decode_mode_spec): Change arg MULTIBYTE to STRING.
1486 (display_string): Handle the case that STRING is non-null and
1487 LISP_STRING is not nil.
1488
0b5397c2
SM
1489 * xterm.c (x_draw_composite_glyph_string_foreground):
1490 Pay attention to s->face->overstrike.
dc954cb2
KH
1491
1492 * composite.c (composition_reseat_it): Don't check PT if STRING is
1493 non nil.
1494
4a00eaca
YM
14952010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1496
1497 * keyboard.c (read_char): Don't apply previous change when current
1498 buffer is unchanged by command execution.
1499
60abb287
JD
15002010-01-12 Jan Djärv <jan.h.d@swipnet.se>
1501
1502 * keyboard.c (read_char): Return after executing from special map.
1503
893db5bc
GM
15042010-01-12 Glenn Morris <rgm@gnu.org>
1505
1506 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
1507 bug-gnu-emacs rather than emacs-pretest-bug.
1508
4d03ece0
CY
15092010-01-11 Chong Yidong <cyd@stupidchicken.com>
1510
1511 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
1512 initializing the Lisp variables that depend on them.
1513
1df47e38
YM
15142010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1515
1516 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
1517 Clear areas that will not be updated after change of menu bar lines.
1518 Clear the menu bar window's current matrix when the window gets empty.
1519
2f1c6384
CY
15202010-01-09 Chong Yidong <cyd@stupidchicken.com>
1521
e398c61c
CY
1522 * intervals.h, textprop.c (extend_property_ranges): Return value
1523 and args changed. Discard properties that begin at or after the
1524 new end (Bug#5306).
1525
1526 * editfns.c (Fformat): Caller changed.
1527
e5a29a10
CY
1528 * nsterm.m (ns_set_default_prefs): Delete function.
1529 (syms_of_nsterm): Initialize ns_command_modifier,
1530 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
1531 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
1532
2f1c6384
CY
1533 * xdisp.c (pos_visible_p): Check for invisible text at the correct
1534 position (Bug#4040).
1535
d427a9fa
EZ
15362010-01-09 Eli Zaretskii <eliz@gnu.org>
1537
1538 * editfns.c (Ffloat_time): Doc fix.
1539
21b9df2f
JD
15402010-01-09 Jan Djärv <jan.h.d@swipnet.se>
1541
1542 * xfns.c (Fx_create_frame): Don't create frame larger than display
1543 by default bug#3643.
1544
4b00d3b1
YM
15452010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1546
1547 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
1548 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
1549 windows above internal border.
1550
1551 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
1552 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
1553 windows above internal border.
1554
1555 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
1556 tool bar windows specially.
1557
1558 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
1559
1560 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
1561 specially.
1562 (XTflash): Take account of menu bar height.
1563
1564 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
1565 specially.
1566
5075d853
JD
15672010-01-08 Jan Djärv <jan.h.d@swipnet.se>
1568
ac146f82 1569 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
5075d853
JD
1570 also be true before we can return early (bug #5339).
1571
474217c8
CY
15722010-01-06 David Reitter <david.reitter@gmail.com>
1573
1574 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
1575 (Fns_display_usable_bounds): Rewrite, computing bounds properly
1576 (Bug#3233).
1577
c0e6d47d
JD
15782010-01-06 Jan Djärv <jan.h.d@swipnet.se>
1579
d0cf45b7
JD
1580 * font.c (font_open_entity): Enable chache and call cached_font_ok
1581 for the driver if defined.
1582 (QCuser_spec): New symbol.
1583 (font_spec_from_name): Save name as user-spec.
1584 (font_load_for_lface): Keep user-spec instead of name.
1585 (font_open_by_name): Save name as user-spec.
1586 (syms_of_font): Initialize QCuser_spec.
b7f8e4f5 1587 (font_clear_prop): Clear name if it exists in font (bug#5157).
d0cf45b7
JD
1588
1589 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
1590 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
1591 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
1592
1593 * font.h (struct font_driver): Add cached_font_ok.
1594
c0e6d47d
JD
1595 * xterm.c (x_clear_frame): Queue draw for scroll bars.
1596
7c583cd8
JD
15972010-01-05 Jan Djärv <jan.h.d@swipnet.se>
1598
1599 * xterm.c (x_new_font): Move code for setting rows/cols before
1600 resizing ...
ac146f82 1601 (x_set_window_size): ... to here. Bug #2568.
7c583cd8
JD
1602
1603 * gtkutil.c (xg_clear_under_internal_border): New function.
0b5397c2
SM
1604 (xg_frame_resized, xg_frame_set_char_size):
1605 Call xg_clear_under_internal_border.
7c583cd8 1606 (xg_update_scrollbar_pos): Clear under old scroll bar position.
69e2f185 1607
03f77f0a
CY
16082010-01-05 Chong Yidong <cyd@stupidchicken.com>
1609
1610 * keyboard.c (read_key_sequence): Catch keyboard switch after
1611 making a new tty frame (Bug#5095).
1612
2a1ef5be
KH
16132010-01-05 Kenichi Handa <handa@m17n.org>
1614
1615 * fontset.c (fontset_find_font): Fix getting the frame pointer.
1616
e3eb1dae
SM
16172010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1618
1619 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
1620 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
1621 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
1622
777013f2
MA
16232010-01-03 Michael Albinus <michael.albinus@gmx.de>
1624
1625 * dbusbind.c (xd_add_watch): Improve debug message.
1626 (xd_remove_watch): Improve debug message. If DATA is the session
1627 bus, unset D-Bus session environment.
1628 (Fdbus_init_bus): Pass the bus as argument to
1629 dbus_connection_set_watch_functions. (Bug#5283)
7c583cd8 1630
8932b1c2
CY
16312010-01-01 Chong Yidong <cyd@stupidchicken.com>
1632
87231e2c
CY
1633 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
1634
4801c5fa
CY
1635 * lread.c (syms_of_lread): Make it clearer that these are the
1636 names of loaded files (Bug#5068).
1637
8932b1c2
CY
1638 * eval.c (run_hook_with_args): Handle the case where the global
1639 value has the obsolete single-function form (Bug#5026).
1640
11e3c684
CY
16412009-12-27 Chong Yidong <cyd@stupidchicken.com>
1642
1643 * minibuf.c (Fall_completions): Minor optimization.
1644
5b28ce35
EZ
16452009-12-26 Eli Zaretskii <eliz@gnu.org>
1646
5ce6e4f4
JB
1647 * .gdbinit (pgx): Fix display of composite glyphs.
1648 Display cmp.from and cmp.to as well.
1649 (pitx): Fix last change.
5b28ce35 1650
bcffff46
KH
16512009-12-25 Kenichi Handa <handa@m17n.org>
1652
1653 * composite.h (composition_adjust_point): Update prototype.
1654
1655 * composite.c (composition_reseat_it): Don't make a composition
1656 spanning over point.
1657 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
1658 composable characters.
1659 (composition_adjust_point): New arg NEW_PT. Callers changed.
1660
1661 * keyboard.c (command_loop_1): Force redisplay if the last point
1662 was within a composition.
1663 (adjust_point_for_property): Don't adjust point for automatic
1664 composition when called after buffer modification.
1665
3f670e9a
EZ
16662009-12-19 Eli Zaretskii <eliz@gnu.org>
1667
5ce6e4f4
JB
1668 * .gdbinit (pitx): Don't use enum names, use their values.
1669 Remove reference to non-existing value GET_FROM_COMPOSITION.
be996d82
EZ
1670 (pgx): Don't use enum names, use their values.
1671 (pitmethod): New helper command.
1672 (pitx): Use it to display iteration method.
1673 (pgrowit): New command.
1674
ad903955
EZ
1675 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
1676
3f670e9a
EZ
1677 Update dependencies in Makefile.in.
1678
1679 * Makefile.in (alloc.o): Depend on termhooks.h.
1680 (atimer.o): Depend on blockinput.h.
1681 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
1682 and frame.h.
1683 (callint.o): Depend on systime.h, coding.h, and composite.h.
1684 (callproc.o): Depend on buffer.h.
1685 (casefiddle.o): Don't depend on charset.h.
1686 (casetab.o): Depend on character.h.
1687 (ccl.o): Depend on composite.h.
1688 (chartab.o): Depend on ccl.h.
1689 (cm.o): Depend on dispextern.h.
1690 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
1691 (coding.o): Don't depend on $(INTERVALS_H).
1692 (composite.o): Don't depend on dispextern.h explicitly (it's in
1693 $(INTERVALS_H)). Depend on ccl.h.
1694 (data.o): Depend on systime.h, coding.h, composite.h,
1695 dispextern.h, font.h, and ccl.h.
1696 (dired.o): Depend on composite.h.
1697 (dispnew.o): Depend on coding.h. Don't depend explicitly on
1698 composite.h (it's in $(INTERVALS_H)).
1699 (doc.o): Depend on systime.h, coding.h, and composite.h.
1700 (editfns.o): Don't depend explicitly on dispextern.h.
1701 (emacs.o): Depend on frame.h and coding.h.
1702 (eval.o): Depend on coding.h, composite.h, and xterm.h.
1703 (fileio.o): Depend on frame.h and commands.h. Don't depend
1704 explicitly on dispextern.h.
1705 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
1706 composite.h.
1707 (fns.o): Don't depend on termhooks.h.
1708 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
1709 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
1710 coding.h, $(INTERVALS_H), window.h, xterm.h.
1711 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
1712 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
1713 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
1714 fontset.h, ccl.h, and ftfont.h.
1715 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
1716 (gtkutil.o): Depend on dispextern.h and composite.h.
1717 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
1718 termhooks.h, and ccl.h.
1719 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
1720 (intervals.o): Depend on systime.h and coding.h.
1721 (keyboard.o): Depend on composite.h and coding.h.
1722 (keymap.o): Depend on coding.h and frame.h.
1723 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
1724 (macros.o): Depend on systime.h, coding.h, and composite.h.
1725 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
1726 and atimer.h.
1727 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
1728 dispextern.h explicitly.
0b5397c2
SM
1729 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
1730 Don't depend explicitly on dispextern.h and composite.h.
3f670e9a
EZ
1731 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
1732 (regex.o): Don't depend on charset.h.
1733 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
1734 (search.o): Don't depend explicitly on composite.h.
1735 (sound.o): Depend on atimer.h and systime.h.
1736 (syntax.o): Don't depend explicitly on composite.h.
1737 (sysdep.o): Depend on coding.h and composite.h.
1738 (term.o): Depend on xterm.h and buffer.h.
1739 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
1740 (textprop.o): Don't depend on dispextern.h explicitly.
1741 (undo.o): Depend on dispextern.h.
1742 (window.o): Depend on coding.h and termhooks.h. Don't depend on
1743 dispextern.h and composite.h explicitly.
1744 (xdisp.o): Depend on ccl.h.
1745 (xfaces.o): Depend on coding.h and ccl.h.
1746 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
1747 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
1748 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
1749 ftfont.h.
1750 (xgselect.o): New dependency.
1751 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
1752 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
1753 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
1754 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
1755 (xsmfns.o): Depend on frame.h and dispextern.h.
1756 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
1757 sysselect.h.
1758
7a6f7fea
AS
17592009-12-19 Andreas Schwab <schwab@linux-m68k.org>
1760
1761 * font.c (Fclear_font_cache): Pass correct cache argument to
1762 font_clear_cache.
1763
f4c21026
AS
17642009-12-16 Andreas Schwab <schwab@linux-m68k.org>
1765
1766 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
1767 twice.
1768
f7ab0997
CY
17692009-12-15 Chong Yidong <cyd@stupidchicken.com>
1770
1771 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
1772 calling file-remote-p. Reported by Jim Meyering.
1773
fa8e045a
MA
17742009-12-15 Michael Albinus <michael.albinus@gmx.de>
1775
1776 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
777013f2 1777 avoid compiler warnings. (Bug #5217)
fa8e045a 1778
a63dba42
KH
17792009-12-14 Kenichi Handa <handa@m17n.org>
1780
1781 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
1782 in 8-bit encoding.
1783
5ce6e4f4 17842009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
36acb2a7
JD
1785
1786 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
1787 tooltip windows.
1788
223e5fc6
JD
17892009-12-13 Jan Djärv <jan.h.d@swipnet.se>
1790
36acb2a7
JD
1791 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
1792 Xatom_net_window_type.
1793
1794 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
1795 Xatom_net_window_type.
1796
b8f00677
JD
1797 * xterm.c (my_log_handler): New function.
1798 (x_term_init): Set my_log_handler as log handler during gtk_init
5ce6e4f4 1799 so we can filter out buggy messages. (Bug #5120).
b8f00677 1800
e5f0bc9a
JD
1801 * xterm.c (xg_scroll_callback): Parameter list changed,
1802 use parameter GtkScrollType to determine scroll/line/page.
1803 Only allow dragging if a button < 4 is grabbed (bug #5177).
1804 (xg_end_scroll_callback): New function.
1805 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
1806 xg_create_scroll_bar.
1807
1808 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
1809 (scroll_end_callback): Remove.
1810 (xg_create_scroll_bar): Add parameter end_callback, bind it to
1811 button-release-event. Replace value-changed event with change-value,
1812 bug #5177,
1813 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
1814 bug #5177.
1815
1816 * gtkutil.h (XG_LAST_SB_DATA): Remove.
1817 (xg_create_scroll_bar): Add GCallback end_callback.
1818
223e5fc6
JD
1819 * xftfont.c (QClcdfilter): New variable.
1820 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
1821 (syms_of_xftfont): Initialize QClcdfilter.
1822
3c055b77
JD
18232009-12-12 Jan Djärv <jan.h.d@swipnet.se>
1824
1825 * xsettings.c (struct xsettings): Add member seen.
1826 (parse_xft_settings): Update member seen with what we have read.
ba68c0b0 1827 Return non-zero if Xft-settings have been parsed, 0 otherwise.
3c055b77
JD
1828 (apply_xft_settings): Only update Xft settings with what member seen
1829 indicates as new.
1830
05fe33ff
EZ
18312009-12-12 Eli Zaretskii <eliz@gnu.org>
1832
1833 * dispextern.h (struct text_pos): Use EMACS_INT;
1834 (struct glyph): Use EMACS_INT for charpos.
1835 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
1836 region_beg_charpos, region_end_charpos,
1837 redisplay_end_trigger_charpos, and also for
1838 iterator_stack_entry.end_charpos and
1839 iterator_stack_entry.stop_charpos.
1840
e8d7886a
JD
18412009-12-12 Jan Djärv <jan.h.d@swipnet.se>
1842
5ce6e4f4 1843 * gtkutil.c (scroll_end_callback): New function (bug #5177).
e8d7886a
JD
1844 (xg_create_scroll_bar): Call scroll_end_callback on button release
1845 event (bug #5177).
1846 (xg_event_is_for_scrollbar): != replaced with ==.
1847
d0db2ec8
KH
18482009-12-12 Kenichi Handa <handa@m17n.org>
1849
1850 * ftfont.c (struct ftfont_info): New member matrix.
1851 (ftfont_open): Setup xftfont_info->matrix.
1852 (MFLTFontFT): New member matrix.
1853 (FLOOR, CEIL, ROUND): New macros.
1854 (ftfont_get_metrics): Handle matrix transformation.
1855 (ftfont_shape_by_flt): New arg matrix. Callers changed.
1856
1857 * xftfont.c (struct xftfont_info): New member matrix.
1858 (xftfont_open): Setup xftfont_info->matrix.
1859
18602009-12-10 Kenichi Handa <handa@m17n.org>
1861
1862 * xdisp.c (append_space_for_newline): Consider face-remapping.
1863
2cc7b62f
AS
18642009-12-09 Andreas Schwab <schwab@linux-m68k.org>
1865
b87dd913
AS
1866 * xsettings.c: Include "keyboard.h".
1867
eba5eb94
AS
1868 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
1869
2cc7b62f
AS
1870 Fix implicit function declarations.
1871 * cmds.c: Include "frame.h".
1872 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
1873 * frame.h: Move declaration of delete_frame outside of
1874 HAVE_WINDOW_SYSTEM.
1875
a4ef73c8
CY
18762009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
1877
1878 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
1879
1880 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
1881 GTK builds.
1882
944a300c
AS
18832009-12-07 Andreas Schwab <schwab@linux-m68k.org>
1884
1885 * unexelf.c (unexec): Don't search for .data twice.
1886
022eef62
CY
18872009-12-05 Chong Yidong <cyd@stupidchicken.com>
1888
426ac949
CY
1889 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
1890 if push failed.
1891 (handle_line_prefix): Set avoid_cursor_p here. Check return value
1892 of push_display_prop (Bug#5000).
1893
022eef62
CY
1894 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
1895 value of font_list_entities (Bug#5085).
1896
be95bee9
JB
18972009-12-04 Juanma Barranquero <lekktu@gmail.com>
1898
1899 Fix `string-to-number' to deal consistently with integers and floats.
1900 * lread.c (isfloat_string): New argument ignore_trailing to accept all
1901 trailing characters, not just whitespace.
1902 (read1): Pass new arg 0 to keep old behavior.
1903 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
1904 trailing chars, as it is already done for integers. Doc fixes.
1905 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
1906
24c2d7ce
EZ
19072009-12-04 Eli Zaretskii <eliz@gnu.org>
1908
0b5397c2
SM
1909 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
1910 Delete unused enumeration value.
24c2d7ce 1911
7e694795
EZ
19122009-12-03 Eli Zaretskii <eliz@gnu.org>
1913
1914 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
1915
84b31826
SM
19162009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
1917
1918 * process.c (Fmake_network_process): Fix up the tests for
1919 "connectionless socket", so they DTRT for seqpacket sockets as well.
1920
f00c449b
SM
19212009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
1922
1923 * process.c (Qseqpacket): New symbol.
1924 (HAVE_SEQPACKET): New macro.
1925 (Fmake_network_process): Accept new :type `seqpacket'.
1926 (init_process): Add `seqpacket' feature when applicable.
1927 (syms_of_process): Initialize Qseqpacket.
1928
8096a0ff
YM
19292009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1930
1931 * font.c (font_load_for_lface, font_open_by_name): Don't store name
1932 if entity is Qnil.
1933
3e0de07f
SM
19342009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
1935
1936 * print.c (print_preprocess): Preprocess the key_and_value table of
1937 hashtables, even tho they're "hidden" (bug#5082).
1938
abeafb2a
JD
19392009-11-29 Jan Djärv <jan.h.d@swipnet.se>
1940
1941 * frame.c (frame_make_pointer_invisible)
1942 (frame_make_pointer_visible): Declare f before statements.
1943
4bf47195
EZ
19442009-11-28 Eli Zaretskii <eliz@gnu.org>
1945
1946 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
1947 omitted dependencies on lisp.h.
1948
c525b3f2
JD
19492009-11-27 Jan Djärv <jan.h.d@swipnet.se>
1950
ece2d4ed
JD
1951 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
1952 is NULL.
1953
1954 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
1955
1956 * frame.c (frame_make_pointer_invisible)
3e0de07f 1957 (frame_make_pointer_visible): Just return if there isn't any selected
ece2d4ed
JD
1958 frame.
1959
c525b3f2
JD
1960 * search.c (simple_search): Remove warning by making *p const.
1961
2f00e299
DN
19622009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
1963
1964 * xdisp.c (power_letter): Remove duplicate const.
1965
084b049b
JD
19662009-11-25 Jan Djärv <jan.h.d@swipnet.se>
1967
a1fadc6f
JD
1968 * term.c (delete_tty): Remove check for last terminal (bug#4970).
1969
5ce6e4f4 1970 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
084b049b
JD
1971 defaults (bug #5025).
1972
28259cac
SM
19732009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
1974
1975 * insdel.c (adjust_markers_for_delete): Move it in the
1976 right direction! (bug#4803)
1977
e8e14166
YM
19782009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1979
1980 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
1981
1982 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
1983
86677b58
GM
19842009-11-24 Glenn Morris <rgm@gnu.org>
1985
1986 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
1987
581e51e8
JD
19882009-11-23 Jan Djärv <jan.h.d@swipnet.se>
1989
cfc86c7a
JD
1990 * Makefile.in: Must create deps for ecrt0.o in its rule.
1991
581e51e8
JD
1992 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
1993 because that is what Gtk+ font dialog understands.
1994
1995 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
1996 of Fcopy_sequence.
1997 (font_open_by_name): Put name given into QCname for font-object returned.
1998
1999 * frame.c (x_set_font): Save original font name as frame parameter
2000 font-parameter.
2001
2002 * xsettings.c (set_default_xft_settings): New function.
2003 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
2004 is found.
2005
8b264ecb
AS
20062009-11-22 Andreas Schwab <schwab@linux-m68k.org>
2007
2008 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
2009 searching backwards through multibyte buffer.
2010
872870b2
JD
20112009-11-21 Jan Djärv <jan.h.d@swipnet.se>
2012
2013 * xterm.c: #include xgselect.h.
2014 (x_initialize): Call xgselect_initialize.
2015
2016 * xsettings.c (something_changedCB): C++ comments => C comments.
2017 (init_gconf): Do not deal with any GLib file descriptors, xg_select
2018 does that now.
2019
2020 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
2021 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
2022 (scroll_bar_button_cb): Remove.
5ce6e4f4 2023 (create_menus): C++ comments => C comments. Don't bind grab-notify
872870b2
JD
2024 event.
2025 (xg_create_scroll_bar): Don't bind button-press-event and
2026 button-release-event.
2027
2028 * process.c: Include xgselect.h if defined (USE_GTK) ||
2029 defined (HAVE_GCONF).
2030 (wait_reading_process_output): Call xg_select for the same condition.
2031
2032 * xgselect.c (xg_select): New function to better integrate with
2033 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
2034
2035 * xgselect.h: New file, declare xg_select, xgselect_initialize.
2036
2037 * Makefile.in (XOBJ): Add xgselect.o.
2038
62a6e103
AS
20392009-11-21 Andreas Schwab <schwab@linux-m68k.org>
2040
0b5397c2
SM
2041 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
2042 Remove ignored second argument. All callers changed.
62a6e103
AS
2043 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
2044 (RE_STRING_CHAR_AND_LENGTH): Likewise.
2045 * xdisp.c (string_char_and_length): Likewise.
2046
b0ca0f33
DN
20472009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
2048
2049 * xterm.c (x_new_font):
2050 * print.c (print_object):
2051 * cmds.c (Fself_insert_command): Move declarations before statements.
2052
dd5a6279
CY
20532009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
2054
2055 * s/cygwin.h: Remove unneeded linker flags.
2056
4a8e097d
JD
20572009-11-20 Jan Djärv <jan.h.d@swipnet.se>
2058
0d1d0d26
JD
2059 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
2060
2061 * xsettings.h: Declare xsettings_get_system_font.
2062
2063 * xsettings.c (xsettings_get_system_font): New function.
2064 (init_gconf): No use initiating gconf unless we have Xft also.
2065 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
2066 HAVE_GCONF.
2067
4a8e097d
JD
2068 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
2069 add a blank entry so it doesn't collapse into nothing.
2070
8ab1650e
SM
20712009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
2072
2073 * lread.c (Funintern): Comment out last change.
2074
82c602f0
RS
20752009-11-19 Richard Stallman <rms@gnu.org>
2076
2077 * lread.c (Funintern): Error if symbol is t or nil.
2078
87e32266
SM
20792009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
2080
2081 * insdel.c (make_gap_larger): Don't make as many assumptions about the
2082 representation of Lisp integers.
2083 Reported by MJ Chan <mjchan.inbox@gmail.com>.
2084
1b9ac145
AS
20852009-11-17 Andreas Schwab <schwab@linux-m68k.org>
2086
2087 * lisp.h: Remove declaration of Ffont_get_system_font.
2088 * xfns.c: Move include of "xsettings.h".
2089 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
2090
dfb3c4c6
JD
20912009-11-17 Jan Djärv <jan.h.d@swipnet.se>
2092
87e32266
SM
2093 * xsettings.c (something_changedCB, Ffont_get_system_font):
2094 Check use_system_font.
dfb3c4c6
JD
2095 (syms_of_xsettings): DEFVAR font-use-system-font.
2096
9370c1d8
AS
20972009-11-17 Andreas Schwab <schwab@linux-m68k.org>
2098
25fe851a
AS
2099 * xfns.c (x_default_font_parameter): Remove dead assignment.
2100
9370c1d8
AS
2101 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
2102
637fa988
JD
21032009-11-17 Jan Djärv <jan.h.d@swipnet.se>
2104
87e32266 2105 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
21050de1 2106 not have FC_LCD_*. #define them if not there.
a6eb20d8 2107
87e32266 2108 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
a6eb20d8 2109
637fa988
JD
2110 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
2111
2112 * xterm.c (handle_one_xevent): Call xft_settings_event for
2113 ClientMessage, PropertyNotify and DestroyNotify.
2114 (x_term_init): If we have XFT, get DPI from Xft.dpi.
2115 Call xsettings_initialize.
2116
2117 * xftfont.c (xftfont_fix_match): New function.
2118 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
2119 Call xftfont_fix_match after XftFontMatch.
2120
2121 * xfont.c (xfont_driver): Initialize all members.
2122
87e32266
SM
2123 * xfns.c (x_default_font_parameter):
2124 Try font from Ffont_get_system_font.
637fa988
JD
2125 Do not get font from x_default_parameter if we got one from
2126 Ffont_get_system_font.
87e32266 2127 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
637fa988
JD
2128
2129 * w32font.c (w32font_driver): Initialize all members.
2130
2131 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
2132
2133 * lisp.h: Declare syms_of_xsettings.
2134
87e32266
SM
2135 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
2136 Handle CONFIG_CHANGED_EVENT.
637fa988
JD
2137
2138 * ftfont.c (ftfont_filter_properties): New function.
2139
2140 * frame.c (x_set_font): Remove unused variable lval.
2141
87e32266 2142 * font.h (struct font_driver): Add filter_properties.
637fa988
JD
2143
2144 * font.c (font_put_extra): Don't return if val is nil, it means
2145 boolean option is off.
2146 (font_parse_fcname): Collect all extra properties in extra_props
2147 and call filter_properties for all drivers with extra_props and
2148 font as parameter.
87e32266
SM
2149 (font_open_entity): Do not use cache, it does not pick up new
2150 fontconfig settings like hinting.
637fa988
JD
2151 (font_load_for_lface): If spec had a name in it, store it in entity.
2152
a73f9c9d 2153 * emacs.c (main): Call syms_of_xsettings.
637fa988
JD
2154
2155 * config.in: HAVE_GCONF is new.
2156
2157 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
2158 xsettings.o is new.
2159
5a942932
KH
21602009-11-17 Kenichi Handa <handa@m17n.org>
2161
2162 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
2163 back to the default font in case that no suitable font is found.
2164
b7c7a4d1
SM
21652009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
2166
2167 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
2168 Suggested by Chad Brown <yandros@mit.edu>.
2169 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
2170
072f1e39
JD
21712009-11-16 Jan Djärv <jan.h.d@swipnet.se>
2172
2173 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
2174
5d1e70a2
AS
21752009-11-14 Andreas Schwab <schwab@linux-m68k.org>
2176
87e32266 2177 * Makefile.in: Ignore errors from mkdir when creating deps directory.
5d1e70a2 2178
a53cfbe5
JD
21792009-11-14 Jan Djärv <jan.h.d@swipnet.se>
2180
473a99b7
JD
2181 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
2182 has a parent.
2183
a53cfbe5 2184 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
5ce6e4f4 2185 dependency files in deps/. Include those files into Makefile.
a53cfbe5
JD
2186
2187 * config.in: Generated (AUTO_DEPEND).
2188
f04bb9b2
MA
21892009-11-13 Michael Albinus <michael.albinus@gmx.de>
2190
b7c7a4d1 2191 * dbusbind.c (Vdbus_registered_objects_table): Rename from
f04bb9b2
MA
2192 Vdbus_registered_functions_table, because it contains also
2193 properties. Fix docstring.
b7c7a4d1 2194 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
f04bb9b2 2195
8f11f7ec
SM
21962009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
2197
2198 * alloc.c (mark_object): Don't reprocess marked strings.
2199 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
2200 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
2201
8a605fe8
KH
22022009-11-13 Kenichi Handa <handa@m17n.org>
2203
8f11f7ec 2204 * category.c (word_boundary_p): Adjust for the change of the
8a605fe8
KH
2205 semantics of Vword_combining_categories.
2206 (Vword_combining_categories): Describe the slight change of the
2207 semantics.
2208
241c4680
EZ
22092009-11-13 Eli Zaretskii <eliz@gnu.org>
2210
2211 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
2212
2213 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
2214
5d58e44c
SM
22152009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
2216
2217 * xdisp.c (syms_of_xdisp): Fix typo in last change.
2218
5e13f9d3
JB
22192009-11-12 Juanma Barranquero <lekktu@gmail.com>
2220
2221 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
2222
cf54c754
DR
22232009-11-11 David Reitter <david.reitter@gmail.com>
2224
2225 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
2226 variables to fix 2009-11-09 change.
2227
a4ada374
DN
22282009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
2229
91433552
DN
2230 * process.c (ifflag_def): Make flag_sym constant.
2231 (Fnetwork_interface_info): Use a constant pointer.
2232 (ifflag_table):
2233 * xfns.c (cursor_bits):
2234 * xdisp.c (power_letter):
2235 * termcap.c (speeds, esctab):
2236 * sysdep.c (baud_convert):
2237 * keyboard.c (lispy_accent_codes, modifier_names):
2238 * image.c (xbm_format, xpm_format, pbm_format, png_format)
2239 (jpeg_format, tiff_format, gif_format, svg_format)
2240 (interlace_start, interlace_increment, gs_format):
2241 * gtkutil.c (separator_names):
2242 * fringe.c (swap_nibble):
2243 * fns.c (base64_value_to_char, base64_char_to_value):
2244 * fileio.c (make_temp_name_tbl):
2245 * coding.c (suffixes): Make constant.
2246
f4265f6c
DN
2247 * frame.c (make_initial_frame):
2248 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
2249 build_string.
2250 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
2251
04420943
DN
2252 * s/freebsd.h:
2253 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
2254
0a5d24ae
DN
2255 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
2256 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
2257
a4ada374
DN
2258 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
2259 * xterm.c (syms_of_xterm):
2260 * xfaces.c (syms_of_xfaces):
2261 * xdisp.c (syms_of_xdisp):
2262 * lread.c (syms_of_lread):
2263 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
2264 build_string.
91433552 2265
a4ada374
DN
2266 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
2267
af98fc7f
SM
22682009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
2269
8ab1650e 2270 * fns.c (Fplist_get): Merge the active and the commented out code.
af98fc7f 2271
e90292a9
JD
22722009-11-10 Jan Djärv <jan.h.d@swipnet.se>
2273
2274 * keyboard.h: Declare timer_check.
2275
2276 * keyboard.c (timer_check_2): New function that does what the old
2277 timer_check did.
2278 (timer_check): Call timer_check_2 until -1 or a non-zero time is
2279 returned, i.e. don't return -1 with timers pending.
2280
2281 * process.c: Remove extern declaration of timer_check.
2282
2283 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
2284 even if timer_check returned -1.
2285
af98fc7f
SM
2286 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
2287 xg_dialog_data.
e90292a9
JD
2288 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
2289 the event loop.
2290 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
2291 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
2292 Destroy the dialog after xg_dialog_run.
2293
045b83c0
SM
22942009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
2295
2296 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
2297
1fb99a3a
JD
22982009-11-10 Jan Djärv <jan.h.d@swipnet.se>
2299
2300 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
2301
04e452cb
JB
23022009-11-09 Juanma Barranquero <lekktu@gmail.com>
2303
2304 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
2305
ef7417fd
SM
23062009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2307
2308 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
2309 w32menu.c, and nsmenu.m.
2310 Simplify the obsolete case where position is nil.
2311 (cleanup_popup_menu): New function, moved from nsmenu.m.
2312 (struct skp): Remove slot `notreal'.
2313 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
2314 adjust callers.
2315 (single_menu_item): Adjust call to parse_menu_item.
2316 (syms_of_menu): Defsubr x-popup-menu.
2317 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
2318 (keymap_panes): Don't export any more.
2319 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
2320 (xmenu_show): Declare.
2321 * keyboard.c (parse_menu_item): Remove arg `notreal'.
2322 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
2323 * keyboard.h (parse_menu_item): Update declaration.
2324 * xmenu.c (Fx_popup_menu): Remove.
2325 (syms_of_xmenu): Don't defsubr x-popup-menu.
2326 * w32menu.c (Fx_popup_menu): Remove.
2327 (syms_of_w32menu): Don't defsubr x-popup-menu.
2328 * nsmenu.m (cleanup_popup_menu): Remove.
2329 (ns_menu_show): Rename from ns_popup_menu and remove all the code
2330 moved to menu.c's Fx_popup_menu.
2331 (Fx_popup_menu): Remove.
2332 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
2333 menu_items (it's done in menu.c already).
2334
424d6179
SM
23352009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2336
2337 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
2338 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
2339
c0df13a6 23402009-11-08 Chong Yidong <cyd@stupidchicken.com>
a20903d0
CY
2341
2342 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
c0df13a6 2343 xmenu_show. Hide any tooltip before opening a menu.
a20903d0
CY
2344 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
2345 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
2346
2de9f71c
SM
23472009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2348
2349 Let integers use up 2 tags to give them one extra bit and thus double
2350 their range.
2351 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
2352 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
2353 New macros.
2354 (enum Lisp_Type): Use them. Give explicit values.
2355 (Lisp_Type_Limit): Remove.
2356 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
2357 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
2358 Pay attention to USE_2_TAGS_FOR_INTS.
2359 (INTEGERP): Use LISP_INT_TAG_P.
2360 * fns.c (internal_equal): Simplify the default case.
2361 (sxhash): Use case_Lisp_Int.
2362 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
2363 any more.
2364 (Ftype_of): Use case_Lisp_Int.
2365 (store_symval_forwarding): Take into account the fact that Ints can
2366 now have more than one tag.
2367 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
2368 buffer_slot_type_mismatch):
2369 * xfaces.c (face_attr_equal_p):
2370 * print.c (print_object):
2371 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
2372 Use case_Lisp_Int.
2373
323637a2
EZ
23742009-11-06 Eli Zaretskii <eliz@gnu.org>
2375
7ac65b38
EZ
2376 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
2377
323637a2
EZ
2378 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
2379 warning.
2380
e511451f
JD
23812009-11-06 Jan Djärv <jan.h.d@swipnet.se>
2382
2383 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
2384
2385 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
2386
2387 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
2388 ButtonPressRelease and MotionNotify (bug#4870).
2389
5e2327cf
DN
23902009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
2391
5adc433e
DN
2392 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
2393
d67b4f80
DN
2394 * xterm.c (syms_of_xterm):
2395 * xselect.c (syms_of_xselect):
2396 * xmenu.c (syms_of_xmenu):
2397 * xfns.c (syms_of_xfns):
2398 * xfaces.c (syms_of_xfaces):
2399 * xdisp.c (syms_of_xdisp):
2400 * window.c (syms_of_window):
2401 * w32fns.c (syms_of_w32fns):
2402 * undo.c (syms_of_undo):
2403 * textprop.c (syms_of_textprop):
2404 * terminal.c (syms_of_terminal):
2405 * syntax.c (syms_of_syntax):
2406 * sound.c (syms_of_sound):
2407 * search.c (syms_of_search):
2408 * print.c (syms_of_print):
2409 * minibuf.c (syms_of_minibuf):
2410 * macros.c (syms_of_macros):
2411 * keymap.c (syms_of_keymap, initial_define_key)
2412 (initial_define_lispy_key):
2413 * keyboard.c (syms_of_keyboard):
2414 * insdel.c (syms_of_insdel):
2415 * image.c (syms_of_image):
2416 * fringe.c (syms_of_fringe):
2417 * frame.c (syms_of_frame):
2418 * fontset.c (syms_of_fontset):
2419 * fns.c (syms_of_fns):
2420 * fns.c (syms_of_fns):
2421 * fileio.c (syms_of_fileio):
2422 * fileio.c (syms_of_fileio):
2423 * eval.c (syms_of_eval):
2424 * doc.c (syms_of_doc):
2425 * dispnew.c (syms_of_display):
2426 * dired.c (syms_of_dired):
2427 * dbusbind.c (syms_of_dbusbind):
2428 * data.c (syms_of_data):
2429 * composite.c (syms_of_composite):
2430 * coding.c (syms_of_coding):
2431 * cmds.c (syms_of_cmds):
2432 * charset.c (define_charset_internal, syms_of_character):
2433 * ccl.c (syms_of_ccl):
2434 * category.c (syms_of_category, init_category_once):
2435 * casetab.c (syms_of_casetab):
2436 * casefiddle.c (syms_of_casefiddle):
2437 * callint.c (syms_of_callint):
2438 * bytecode.c (syms_of_bytecode):
2439 * buffer.c (keys_of_buffer, syms_of_buffer):
2440 * alloc.c (syms_of_alloc):
2441 * process.c (syms_of_process, init_process):
2442 * lread.c (syms_of_lread, init_obarray):
2443 * font.c (build_style_table):
2444 * emacs.c (syms_of_emacs, main): Replace calls to intern with
2445 intern_c_string, calls to make_pure_string with
2446 make_pure_c_string. Use pure_cons instead of Fcons.
2447
5e2327cf
DN
2448 * process.c (socket_options): Make it const.
2449 (set_socket_option, init_process): Use a const pointer.
2450
2451 * lread.c (intern_c_string): New function.
2452 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
2453 (defvar_int): Uset it. Make the name const char*.
2454
2455 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
2456 (defvar_int): Update prototypes.
2457 (DEFUN, EXFUN): Support for prototypes is now required.
2458 (intern_c_string): New prototype.
2459 (struct Lisp_Subr): Make symbol_name constant.
2460
2461 * font.c (struct table_entry): Remove unused member. Make NAMES
2462 constant.
2463 (weight_table, slant_table, width_table): Make constant.
2464
2465 * emacs.c (struct standard_args): Make name and longname constant.
2466
2467 * character.h (DEFSYM): Use intern_c_string.
2468
a56eaaef
DN
24692009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2470
2471 * alloc.c (make_pure_c_string): New function.
2472
2473 * eval.c (Fautoload): Purecopy all arguments.
2474
f6a07420
KH
24752009-11-05 Kenichi Handa <handa@m17n.org>
2476
2477 * fileio.c (Finsert_file_contents): Be sure set coding-system of
2478 the buffer in case of replace.
2479
5d28d4b1
DN
24802009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
2481
2482 * puresize.h (BASE_PURESIZE): Increase to 1620000.
2483
b349d111
SM
24842009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
2485
d528b1ce
SM
2486 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
2487 when applicable (bug#4851).
2488
b349d111
SM
2489 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
2490 (P_): Support for prototypes is now required.
2491
c38eb027
CY
24922009-10-31 Chong Yidong <cyd@stupidchicken.com>
2493
2494 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
2495 (Bug#4827).
2496
0405f8d9
EZ
24972009-10-30 Eli Zaretskii <eliz@gnu.org>
2498
d528b1ce 2499 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
0405f8d9 2500
ca0a881a
DN
25012009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
2502
2503 * puresize.h (BASE_PURESIZE): Increase to 1470000.
2504
d528b1ce
SM
2505 * lread.c (Fload): Purecopy the file name when building
2506 Vpreloaded_file_list.
ca0a881a 2507
47e0e0e4
JR
25082009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
2509
2510 * w32fns.c (syms_of_w32fns): Change default value of
2511 w32-scroll-lock-modifier to nil. (Bug#2827)
2512
057bce6f
JB
25132009-10-26 Juanma Barranquero <lekktu@gmail.com>
2514
782a943e 2515 * minibuf.c (Fall_completions): Fix typos in docstring.
057bce6f 2516
242bc74c
AS
25172009-10-26 Andreas Schwab <schwab@redhat.com>
2518
2519 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
2520
522d013a
JB
25212009-10-26 Juanma Barranquero <lekktu@gmail.com>
2522
2523 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
2524 For delta < 0, skip check that only makes sense when the mini-window
2525 is going to be enlarged. (Bug#4534)
2526
18060980
CY
25272009-10-25 Chong Yidong <cyd@stupidchicken.com>
2528
2529 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
2530 string in menu maps (Bug#4471).
2531
fec8f0fe
CY
25322009-10-24 Chong Yidong <cyd@stupidchicken.com>
2533
2534 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
2535 FRAME_NS_VIEW on terminal frames (Bug#4765).
2536
10d66ec0
AS
25372009-10-24 Andreas Schwab <schwab@linux-m68k.org>
2538
1cae01f7
AS
2539 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
2540 DBUS_TYPE_UINTnn separately to get proper sign extension.
2541
58a12889
AS
2542 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
2543 can properly handle unsigned types.
d528b1ce 2544 (make_uid, make_gid): Remove.
58a12889 2545
987c9327
AS
2546 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
2547 types again.
2548
522d013a 2549 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
10d66ec0
AS
2550 (system_process_attributes): Likewise.
2551
905a9ed3
DN
25522009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
2553
2554 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
2555
2556 * eval.c (Fautoload): Purecopy the filename. Simplify.
2557
2558 * category.c (Fdefine_category): Purecopy docstring.
2559
a599b3e8
AS
25602009-10-23 Andreas Schwab <schwab@linux-m68k.org>
2561
7b792fc9
AS
2562 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
2563
a599b3e8
AS
2564 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
2565
b35ac83e
CY
25662009-10-23 Chong Yidong <cyd@stupidchicken.com>
2567
2568 * window.c (Fwindow_edges, Fwindow_pixel_edges)
2569 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
2570 (Bug#4775).
2571
e8903e00
SM
25722009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
2573
2574 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
2575 (init_fileio_once):
2576 * lisp.h (init_fileio_once): Remove.
2577 * emacs.c (main): Don't call init_fileio_once.
2578
8f43cbf3
DN
25792009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
2580
2581 * puresize.h (BASE_PURESIZE): Increase to 1430000.
2582
26898943
AS
25832009-10-21 Andreas Schwab <schwab@linux-m68k.org>
2584
2585 * doprnt.c (doprnt): Fix overflow check.
2586
5c646d5a
JD
25872009-10-21 Jan Djärv <jan.h.d@swipnet.se>
2588
3132a7ea
JD
2589 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
2590
5c646d5a
JD
2591 * xterm.h (x_wait_for_event): Declare it.
2592
2593 * xterm.c (pending_event_wait): New variable.
2594 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
2595 see pending_event_wait.eventtype.
2596 (handle_one_xevent): Don't change gravity when parent changes.
d528b1ce
SM
2597 (x_new_font): Call change_frame_size with new rows/columns before we
2598 try to resize the frame.
5c646d5a 2599 (x_wait_for_event): New function.
d528b1ce
SM
2600 (x_set_window_size_1): Don't change gravity unless change_gravity
2601 is set.
5c646d5a
JD
2602 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
2603 don't change frame size, instead wait for the ConfigureNotify.
2604 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
2605 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
2606 (x_initialize): Initialize pending_event_wait.
2607
2608 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
2609 size.
2610
2611 * widget.c (EmacsFrameSetValues): Add comment.
2612 (EmacsFrameSetCharSize): Just call x_set_window_size.
2613
2614 * gtkutil.c (xg_frame_set_char_size): Flush events and call
2615 x_wait_for_event.
d528b1ce 2616 (flush_and_sync): Remove again.
5c646d5a
JD
2617 (xg_get_font_name): Suggest monospace if no previous font is known.
2618
e9c1637d
SM
26192009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
2620
2621 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
46be764e 2622 8th bit, since that only made sense in the ASCII world (bug#4751).
e9c1637d 2623
5a72cccb
YM
26242009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2625
2626 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
2627 processing pending events when event is filtered for input method.
ab04798f 2628 (Bug#3681)
5a72cccb 2629
2629aa37
JB
26302009-10-20 Juanma Barranquero <lekktu@gmail.com>
2631
2632 * fns.c: Add #endif accidentally removed in previous change.
2633
c3417a74
DN
26342009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
2635
2636 * fns.c: Remove code for unsupported system: MAC_OS.
2637 * image.c: Likewise. Include setjmp.h.
2638
9685cef2
JD
26392009-10-19 Jan Djärv <jan.h.d@swipnet.se>
2640
2641 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
2642 pixel -1 (bug #4742).
2643
d7306fe6
DN
26442009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
2645
019d2c4c
DN
2646 * process.c (create_pty): Remove conditionals for no longer
2647 supported systems: UNIPLUS and RTU.
2648
ee6bacd4
DN
2649 * xterm.c:
2650 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
2651
d7306fe6
DN
2652 * alloc.c: Do not define struct catchtag.
2653 * eval.c: Move struct catchtag definition ...
2654 * lisp.h: ... here.
2655
2656 * image.c: Move png.h #include earlier to avoid warnings.
2657
2658 * xterm.c:
2659 * xsmfns.c:
2660 * xselect.c:
2661 * xrdb.c:
2662 * xmenu.c:
2663 * xftfont.c:
2664 * xfont.c:
2665 * xfns.c:
2666 * xfaces.c:
2667 * xdisp.c:
2668 * window.c:
2669 * widget.c:
2670 * w32xfns.c:
2671 * w32uniscribe.c:
2672 * w32term.c:
2673 * w32select.c:
2674 * w32reg.c:
2675 * w32proc.c:
2676 * w32menu.c:
2677 * w32inevt.c:
2678 * w32heap.c:
2679 * w32font.c:
2680 * w32fns.c:
2681 * w32console.c:
2682 * w32.c:
2683 * w16select.c:
2684 * vm-limit.c:
2685 * unexsol.c:
2686 * unexec.c:
2687 * unexcw.c:
2688 * unexaix.c:
2689 * undo.c:
2690 * tparam.c:
2691 * textprop.c:
2692 * terminfo.c:
2693 * terminal.c:
2694 * termcap.c:
2695 * term.c:
2696 * syntax.c:
2697 * sound.c:
2698 * sheap.c:
2699 * search.c:
2700 * scroll.c:
2701 * region-cache.c:
2702 * regex.c:
2703 * ralloc.c:
2704 * process.c:
2705 * print.c:
b024548b
DN
2706 * nsterm.m:
2707 * nsselect.m:
2708 * nsmenu.m:
2709 * nsimage.m:
2710 * nsfont.m:
2711 * nsfns.m:
d7306fe6
DN
2712 * msdos.c:
2713 * minibuf.c:
2714 * menu.c:
2715 * marker.c:
2716 * macros.c:
2717 * keymap.c:
2718 * keyboard.c:
2719 * intervals.c:
2720 * insdel.c:
2721 * indent.c:
2722 * gtkutil.c:
2723 * ftxfont.c:
2724 * ftfont.c:
2725 * fringe.c:
2726 * frame.c:
2727 * fontset.c:
2728 * font.c:
2729 * fns.c:
2730 * floatfns.c:
2731 * filelock.c:
2732 * fileio.c:
2733 * emacs.c:
2734 * editfns.c:
2735 * dosfns.c:
2736 * doprnt.c:
2737 * doc.c:
2738 * dispnew.c:
2739 * dired.c:
2740 * dbusbind.c:
2741 * data.c:
2742 * composite.c:
2743 * coding.c:
2744 * cmds.c:
2745 * cm.c:
2746 * chartab.c:
2747 * charset.c:
2748 * character.c:
2749 * ccl.c:
2750 * category.c:
2751 * casetab.c:
2752 * casefiddle.c:
2753 * callproc.c:
2754 * callint.c:
2755 * bytecode.c:
2756 * buffer.c:
2757 * atimer.c: Include setjmp.h. (Bug#4643)
2758
fd5f21e6
SM
27592009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
2760
4c0354d7
SM
2761 Remove leftover table unibyte_to_multibyte_table.
2762 * character.c (unibyte_to_multibyte_table): Remove.
2763 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
2764 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
2765 * character.h (UNIBYTE_TO_CHAR): New macro.
2766 (MAKE_CHAR_MULTIBYTE): Use it.
2767 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
2768 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
2769 (message_dolog, set_message_1):
2770 * search.c (Freplace_match):
2771 * editfns.c (Fcompare_buffer_substrings):
2772 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
2773 (concat):
2774 * insdel.c (copy_text, count_size_as_multibyte):
2775 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
2776 * term.c (produce_glyphs):
2777 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
2778 * regex.c (RE_CHAR_TO_MULTIBYTE):
2779 * cmds.c (internal_self_insert):
2780 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
2781
fd5f21e6
SM
2782 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
2783
4418646e
DN
27842009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
2785
2786 * puresize.h (BASE_PURESIZE): Increase to 1310000.
2787
35f5c1d2
JB
27882009-10-16 Juanma Barranquero <lekktu@gmail.com>
2789
2790 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
2791
a0cd8f6b
AR
27922009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
2793
2794 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
2795 still needed under Tiger.
2796
2797 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
2798
2799 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
2800 __Apple__.
2801
2802 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
2803
01a8d3fa
KH
28042009-10-15 Kenichi Handa <handa@m17n.org>
2805
2806 * print.c (print_object): Escape a symbol like "2E10" too.
2807
bf6c75c9 28082009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
6e4780c5
JB
2809
2810 Cleanups and changes for 64-bit compile under Snow Leopard.
2811 Based on suggestions by Erik Charlebois.
bf6c75c9
AR
2812
2813 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
2814
c5959062 2815 * nsfont.m (ns_char_width): Replace deprecated call.
bf6c75c9
AR
2816 (ns_findfonts, nsfont_list_family): Use long format in printf, and
2817 cast argument.
2818 (nsfont_open): Use ns_char_width() everywhere.
d528b1ce 2819 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
bf6c75c9
AR
2820
2821 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
2822
2823 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
2824 where appropriate.
2825
2826 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
2827 where appropriate.
6e4780c5
JB
2828 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
2829 Use stringWithUTF8String.
bf6c75c9
AR
2830 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
2831
6e4780c5
JB
2832 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
2833 Add formal protocol mention to inheritance.
bf6c75c9
AR
2834 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
2835
6e4780c5
JB
2836 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
2837 Fix printf format.
bf6c75c9
AR
2838 (ns_query_color): Use CGFloat where appropriate.
2839 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
ac146f82 2840 (EmacsScroller-mouseDown:): Use long format in printf, and cast
bf6c75c9
AR
2841 argument.
2842
3d87f118
AR
2843 * config.in (NS_HAVE_NSINTEGER): Drop.
2844
a95c8102
AR
2845 * dbusbind.c (dbus-method-return-internal)
2846 (dbus-method-error-internal): Use long format in printf, and cast
2847 argument.
2848
2849 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
2850 in printf, and cast argument.
2851
6873acca 2852 * process.c (list_processes_1): Use long format in printf, and
a95c8102
AR
2853 cast argument.
2854
9ec6f100
GM
28552009-10-11 Glenn Morris <rgm@gnu.org>
2856
2857 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
2858
5be883cd
JD
28592009-10-08 Jan Djärv <jan.h.d@swipnet.se>
2860
2861 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
2862 menu bar with a small width so it doesn't enlarge the frame.
2863
d7a39b51
JB
28642009-10-08 Juanma Barranquero <lekktu@gmail.com>
2865
2866 * fontset.c (Fset_fontset_font): Fix typos in error messages.
2867
0c2b6f8e
GM
28682009-10-06 Glenn Morris <rgm@gnu.org>
2869
2870 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
2871 SOME_MACHINE_LISP (this enters indirectly via DOC).
2872
e02131a2
EZ
28732009-10-05 Eli Zaretskii <eliz@gnu.org>
2874
2875 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
2876
b4744254
EZ
28772009-10-04 Eli Zaretskii <eliz@gnu.org>
2878
2879 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
2880 Doc fix.
2881
dbf64827
JB
28822009-10-03 Martin Rudalics <rudalics@gmx.at>
2883
2884 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
2885
e9a0aef8
MA
28862009-10-02 Michael Albinus <michael.albinus@gmx.de>
2887
d528b1ce 2888 * lisp.h (Qdelete_directory_internal): Remove, because it is not
e9a0aef8
MA
2889 used anymore outside fileio.c.
2890
2891 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
2892
64eb2b56
JB
28932009-10-01 Juanma Barranquero <lekktu@gmail.com>
2894
2895 * lisp.h (Qdelete_directory_internal):
2896 Declare, instead of Qdelete_directory.
2897
2898 * w32fns.c (Fsystem_move_file_to_trash): Use it.
2899
9d28c33e
SM
29002009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
2901
2902 * eval.c (Fcalled_interactively_p): Add `kind' argument.
2903
9d8f3bd9
MA
29042009-10-01 Michael Albinus <michael.albinus@gmx.de>
2905
9d28c33e 2906 * fileio.c (Fdelete_directory_internal): Rename from
9d8f3bd9
MA
2907 Fdelete_directory. It is not a command anymore. It has no file
2908 name handler.
2909
9694740b
SM
29102009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2911
2912 * xdisp.c (get_next_display_element): Use an enum in last change.
2913
748e162f
KH
29142009-09-28 Kenichi Handa <handa@m17n.org>
2915
9694740b 2916 * xdisp.c (get_next_display_element): Pay attention to
748e162f
KH
2917 unibyte_display_via_language_environment in handling
2918 Vnobreak_char_display.
2919
17efd58d
AR
29202009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
2921
2922 * nsterm.h (ns_app_name): New extern variable.
2923
2924 * nsterm.m (ns_app_name): New variable.
2925 (ns_term_init): Set and use it.
2926 (ns_term_shutdown): Use it.
2927
2928 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
2929 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
2930
2931 * nsfns.m (ns_set_name_iconic, ns_set_name)
2932 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
2933 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
2934
9694740b
SM
2935 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
2936 Remove double-casting in client_data comparison.
31c2d412 2937
3208cb35
YM
29382009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2939
2940 * keyboard.c (make_lispy_event): Remember last wheel direction.
2941 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
2942
b7d552d6
GM
29432009-09-26 Glenn Morris <rgm@gnu.org>
2944
2945 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
2946 internal.elc. Add term/pc-win.elc.
2947 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
2948 term/x-win.elc.
2949 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
2950 term/w32-win.elc.
2951 (NS_SUPPORT): New.
2952 (lisp): Add NS_SUPPORT.
2953 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
2954
4ff670a8
DR
29552009-09-25 David Reitter <david.reitter@gmail.com>
2956
2957 * nsmenu.m (EmacsMenu-clear): Recognize application menu
2958 on Mac OS X 10.6+ (bug#4513).
2959
feabfb6c
JB
29602009-09-24 Juanma Barranquero <lekktu@gmail.com>
2961
2962 * frame.c (xrdb_get_resource): Return nil for empty string resources;
d528b1ce
SM
2963 some parts of Emacs code (like font selection) don't grok them.
2964 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
feabfb6c 2965
de59072a
AS
29662009-09-24 Andreas Schwab <schwab@redhat.com>
2967
2968 * coding.c (decode_coding_iso_2022): Fix operator precedence.
2969
a489517b
JB
29702009-09-24 Juanma Barranquero <lekktu@gmail.com>
2971
2972 * dired.c (Fdirectory_files): Fix typo in docstring.
2973
0592970c
AR
29742009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
2975
2976 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
2977 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
2978 (EmacsScroller-setPosition:portion:whole:): Remove -display call
2979 under GNUstep.
2980 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
2981
2982 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
2983 glyph advancement.
2984
48e8a88b
AR
29852009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
2986
2987 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
b3aac06a 2988 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
48e8a88b
AR
2989
2990 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
2991 deleted (bug #4492).
2992
e14f0a78
AR
2993 * nsfont.m (Vns_reg_to_script): New lisp variable.
2994 (syms_of_nsfont): Declare it.
2995 (ns_registry_to_script): New function.
2996 (ns_get_req_script): Call it.
2997 (ns_findfonts): Don't give up on non-unicode registry.
2998
2999 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
3000
5b650faa
SM
30012009-09-20 Tom Tromey <tromey@redhat.com>
3002
3003 * eval.c (find_handler_clause): Make stack-trace-on-error work in
3004 batch mode (bug#4228).
3005
a489517b 30062009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
0bae4e09
AR
3007
3008 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
a489517b 3009 carefully. (Bug #4339)
0bae4e09 3010
fcfe06f3
CY
30112009-09-18 Chong Yidong <cyd@stupidchicken.com>
3012
d798ba87 3013 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
fcfe06f3 3014
31642728
AR
30152009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
3016
3017 * emacs.c (inhibit_x_resources): Update doc string for NS.
3018 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
cff11156 3019 legacy code for -NXHost. Fix error printf in daemon case.
31642728
AR
3020
3021 * nsterm.h (ns_no_defaults): Remove.
3022
3023 * nsterm.m (ns_no_defaults): Remove.
3024 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
3025 (ns_use_qd_smoothing): Remove legacy variable.
6516d10a
AR
3026 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
3027 don't update the NSWindow itself.
3028 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
a489517b 3029 state detection and store user rect ourselves. (Bug #3581)
31642728
AR
3030
3031 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
3032 ns_use_qd_smoothing.
3033
3034 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
3035 platform versions. Drop support for emacs-20-style face specs.
8aad0aea 3036 (x-close-connection): Drop PSFlush() under OS X.
a489517b 3037 (x-focus-frame): Activate the app first. (Bug #4180)
31642728 3038
8686ac71
JB
30392009-09-17 Juanma Barranquero <lekktu@gmail.com>
3040
3041 * emacs.c (inhibit_x_resources): New variable.
3042 (main) [HAVE_NS]: Don't process --quick command line option.
3043 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
3044
3045 * lisp.h (inhibit_x_resources): Declare it extern.
3046
3047 * w32reg.c (x_get_string_resource):
3048 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
3049
e227ba05
EZ
30502009-09-17 Eli Zaretskii <eliz@gnu.org>
3051
362654a6
JB
3052 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
3053 Add lisp/term/internal.elc.
e227ba05 3054
742d40e8
SM
30552009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
3056
3057 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
3058 (bug#4461).
3059
005bd5a2
DN
30602009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
3061
3062 * puresize.h (BASE_PURESIZE): Increase to 1290000.
3063
3064 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
3065 (OBJECTS_MACHINE): Remove, unused.
3066
f9af9719
SM
30672009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
3068
3069 * frame.c (x_get_resource_string): Remove unused.
3070
0307c7d2
JD
30712009-09-15 Jan Djärv <jan.h.d@swipnet.se>
3072
3073 * xterm.c (x_new_font): Call change_frame_size before calling
3074 x_set_window_size, in case frame size won't change.
3075
3076 * frame.c (x_set_font): Remove dead code.
3077
428b13d6
SM
30782009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
3079
3080 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
3081
5766c380
SM
30822009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3083
3084 * lread.c (Fload): Don't output a message after loading an obsolete
3085 package any more (done in Lisp now).
3086
2fd0161b
CY
30872009-09-12 Chong Yidong <cyd@stupidchicken.com>
3088
3089 * fns.c (syms_of_fns): Doc fix (Bug#4227).
3090
bc5e75b6
SM
30912009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3092
3093 * keymap.c (Fwhere_is_internal): Use nconc2.
3094
c31c985e
AM
30952009-09-11 Alan Mackenzie <acm@muc.de>
3096
3097 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
3098 batch mode.
3099
78012bd2
AS
31002009-09-11 Andreas Schwab <schwab@linux-m68k.org>
3101
3102 * xdisp.c (display_mode_element): Detect cycles.
3103
9d889332
SM
31042009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
3105
3106 * keymap.c (where_is_internal): Don't erroneously return nil right after
3107 filling the cache.
3108 (where_is_internal_1): Fix up typo.
3109
7ab5d780
GM
31102009-09-11 Glenn Morris <rgm@gnu.org>
3111
3112 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
3113 share a common doc-string.
3114
5238a749
SM
31152009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
3116
66d77eda
SM
3117 * keymap.c (get_keymap): Return the actual keymap symbol rather than
3118 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
3119
5238a749
SM
3120 * keymap.c (QCadvertised_binding): New constant.
3121 (syms_of_keymap): Initialize it.
3122 (Fwhere_is_internal): Try and use bindings from :advertised-binding
3123 if applicable.
3124
19f48442
SM
31252009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3126
50d4ba39
SM
3127 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
3128 (parse_menu_item): Streamline since bindings are recomputed all the
3129 time anyway. Don't bother checking Vdefine_key_rebound_commands any
3130 more and don't support lmenu's menu-alias any more either.
3131
a88a5372
SM
3132 * keymap.c (where_is_internal_data): Make noindirect a boolean.
3133 (where_is_internal): Strip it down to only traverse the keymaps.
3134 Move the cache handling from Fwhere_is_internal to here.
3135 (Fwhere_is_internal): Move the handling of remapping and the choice of
3136 the best binding from where_is_internal to here.
3137 Unify the cached/noncached paths, so remapping is also handled
3138 correctly when the cache is used, and so the cache can be used to
3139 speed up remap-handling when applicable.
3140 Give preference to non-remapped bindings.
3141 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
3142 non-remapped bindings.
3143 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
3144 command remapping.
3145
19f48442
SM
3146 * xdisp.c (display_mode_element): Move list length limit from 50 to
3147 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
3148
599498c3 31492009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
c1905ca3
AR
3150
3151 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
3152
f9b7b5ac
SM
31532009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3154
a53af587
JB
3155 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
3156 (Bug#4334)
3157
f9b7b5ac
SM
3158 * keymap.c (where_is_internal): Filter out shadowed remappings.
3159 Assume that where_is_internal returns unshadowed bindings to simplify
3160 the code and get rid of the gotos. Use ASIZE.
3161
04f4b72d
JD
31622009-09-04 Jan Djärv <jan.h.d@swipnet.se>
3163
4da146f2
JD
3164 * xterm.c (x_focus_changed): If we get a focusout and pointer
3165 is invisible, make it visible.
3166
04f4b72d
JD
3167 * xterm.h: Remove condition for declaration of
3168 x_*_window_to_frame.
3169
7cef7ce3
SM
31702009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
3171
3172 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
3173 initial terminal as well.
3174
a54fa5b7
JD
31752009-09-02 Jan Djärv <jan.h.d@swipnet.se>
3176
3177 * xterm.h: Rename x_non_menubar_window_to_frame to
7cef7ce3 3178 x_menubar_window_to_frame.
a54fa5b7
JD
3179
3180 * xterm.c: Remove declarations also in xterm.h
3181 (XTmouse_position): Do not return valid positions
3182 for clicks in the menubar and the toolbar for Gtk+.
3183
3184 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
3185 if the widget for the event has the same top level as a frame,
3186 return the frame.
3187 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
3188 internal windows, bug #4122.
3189 (x_non_menubar_window_to_frame): Remove.
3190
5a021dd0
GM
31912009-09-02 Glenn Morris <rgm@gnu.org>
3192
3193 * buffer.c (default-major-mode): Move most of the doc from here...
3194 (major-mode): ... to here.
3195
548fe2f3
NR
31962009-08-30 Nick Roberts <nickrob@snap.net.nz>
3197
3198 * process.c (wait_reading_process_output): Keep the descriptor
3199 when pty is used by a non-child process, e.g., in I/O buffer of
3200 GDB this allows inferior to be restarted.
3201
e0840eef
EZ
32022009-08-29 Eli Zaretskii <eliz@gnu.org>
3203
3204 * xdisp.c (redisplay_internal): Remove redundant test and collapse
3205 both branches into one.
3206
82e98df4
SM
32072009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3208
3209 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
3210 (main): Use enable-multibyte-characters rather than
3211 default-enable-multibyte-characters. Output a warning message when
3212 running a unibyte session.
3213
890617cb
YM
32142009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3215
3216 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
3217 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
3218 (copy_data_segment): Also copy __program_vars section.
3219 (copy_dyld_info) [LC_DYLD_INFO]: New function.
3220 (dump_it) [LC_DYLD_INFO]: Use it.
3221
3222 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
3223
e7adeadc
EZ
32242009-08-28 Eli Zaretskii <eliz@gnu.org>
3225
3226 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
3227 $(SRC)/buildobj.h.
3228 (buildobj.h): Renamed from $(SRC)/buildobj.h.
3229 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
3230 $(SRC)/buildobj.h.
3231 (clean): Add buildobj.h.
3232
3ed8bbdc
TZ
32332009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
3234
3235 * print.c (print_object): Set escapeflag to 1 when printing
3236 hashtable keys and values.
3237
155a6764
SM
32382009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
3239
3240 * lread.c (read_integer): Use doubles (and potentially return a float
3241 number) as we do in string-to-number.
3242 (read1): Use strtol to read integers, signal errors on strtol's
3243 overflow and use floats if strtol's output is too large for
3244 Elisp integers.
3245
877610de
EZ
32462009-08-27 Eli Zaretskii <eliz@gnu.org>
3247
3248 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
3249 (make-buildobj-SH): Fix last change.
3250 (SRC): Move to before where it's first used.
3251
ef73e7be
KH
32522009-08-27 Kenichi Handa <handa@m17n.org>
3253
550c8289
KH
3254 * process.c (send_process): Use encode_coding_object instead of
3255 encode_coding_string to perform eol-conversion even if the string
3256 is unibyte.
3257
60afa08d
KH
3258 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
3259 character.
3260
ef73e7be 3261 * cmds.c (Fself_insert_command): Avoid unnecessay
8a0b709a 3262 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
ef73e7be 3263
7b3a82d7
DN
32642009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
3265
5654bf63
DN
3266 * callproc.c (Fcall_process): Remove always true #if.
3267
7b3a82d7
DN
3268 * lisp.h: Replace #if 0 code for checking with text pointing to
3269 the --enable-checking configure flag.
3270
3271 * emacs.c (main): Mention the --enable-profiling configure flag
3272 instead of using CFLAGS.
3273
878bde49
KR
32742009-08-26 Ken Raeburn <raeburn@raeburn.org>
3275
3276 * Makefile.in (buildobj.h): New target.
3277 (doc.o): Depend on it.
3278 (temacs${EXEEXT}): Don't generate buildobj.lst.
3279 (mostlyclean): Delete buildobj.h, not buildobj.lst.
3280 * makefile.w32-in ($(SRC)/buildobj.h): New target.
3281 ($(BLD)/doc.$(O)): Depend on it.
3282 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
3283 provided by Eli Zaretskii.)
3284 ($(TEMACS)): Don't generate buildobj.lst.
3285 * doc.c: Include buildobj.h.
3286 (buildobj): New static variable.
3287 (Fsnarf_documentation): Use it, instead of opening and reading
3288 buildobj.lst.
3289
1574224c
MA
32902009-08-25 Michael Albinus <michael.albinus@gmx.de>
3291
3292 * dbusbind.c (Fdbus_call_method)
3293 (Fdbus_call_method_asynchronously): Use English numeric format for
3294 timeout values in doc string.
3295
d9da2f45
KH
32962009-08-25 Kenichi Handa <handa@m17n.org>
3297
ef73e7be
KH
3298 * alloc.c (mark_char_table): New function.
3299 (mark_object): Use mark_char_table for a char-table.
3300
d9da2f45
KH
3301 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
3302 (CHAR_TABLE_REF): Use it.
3303
c8edcc01
KR
33042009-08-23 Ken Raeburn <raeburn@raeburn.org>
3305
3306 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
3307 before invoking the newly build emacs to check for load-path
3308 shadowing.
3309
7763401b
GM
33102009-08-22 Glenn Morris <rgm@gnu.org>
3311
3312 * Makefile.in (bootstrap_exe): New variable.
3313 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
3314 Use ${bootstrap_exe}.
3315
729eadda
EZ
33162009-08-22 Eli Zaretskii <eliz@gnu.org>
3317
3318 * coding.h (encode_coding_string): Don't encode unibyte strings.
3319 (Bug#4047)
3320
eb4c6ace
MA
33212009-08-22 Michael Albinus <michael.albinus@gmx.de>
3322
3323 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
3324
3325 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
3326 intended as hotfix only.
3327 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
3328
36e34d1b
AR
33292009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
3330
3331 * nsterm.m (ns_get_color): Update documentation properly for last
3332 change, and clean up loose ends in the code left by it. Fix
3333 longstanding bug with 16-bit hex parsing, and add support for
3334 yet another X11 format (rgb:r/g/b) for compatibility.
3335 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
3336 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
3337
f983eb8a
SM
33382009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
3339
3340 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
3341
3f56d3c6
MA
33422009-08-20 Michael Albinus <michael.albinus@gmx.de>
3343
3344 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
3345 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
3346 (xd_initialize, xd_pending_messages): Check, whether
3347 $DBUS_SESSION_BUS_ADDRESS is set.
3348
fb641d68
YM
33492009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3350
3351 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
3352
3353 * nsterm.m (ns_get_color): Remove incompatible color formats again.
3354
cf59a374
GM
33552009-08-20 Glenn Morris <rgm@gnu.org>
3356
3357 * emacs.c (system-type): Doc fix.
3358
1373f3be
SM
33592009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
3360
3361 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
3362 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
3363
058ed861
MA
33642009-08-18 Michael Albinus <michael.albinus@gmx.de>
3365
1373f3be
SM
3366 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
3367 New functions.
058ed861
MA
3368 (xd_initialize): Revert change from 2009-08-16.
3369
563a866e 33702009-08-18 Kenichi Handa <handa@m17n.org>
5fc05db0
KH
3371
3372 * fontset.c (Ffontset_font): If a nil element is found in a
563a866e 3373 font-group vector, return nil.
5fc05db0 3374
e42bdf01
CY
33752009-08-17 Chong Yidong <cyd@stupidchicken.com>
3376
3377 * process.c (status_notify): Don't perform redisplay.
3378 (Fdelete_process, list_processes_1, process_send_signal):
3379 Expliticly perform redisplay.
3380 (wait_reading_process_output): Always check process status, but
3381 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
3382
4230ab74
KR
33832009-08-17 Ken Raeburn <raeburn@raeburn.org>
3384
1373f3be 3385 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
f601cdf3
KR
3386 (XFLOAT_INIT): New macro for storing a float value.
3387 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
3388 * fns.c (sxhash): Copy out the value of a float in order to
3389 examine its bytes.
3390 * dbusbind.c (xd_append_arg): Likewise.
3391
4230ab74
KR
3392 * emacs.c (main): Don't call syms_of_data twice.
3393
a0645cdd
MA
33942009-08-16 Michael Albinus <michael.albinus@gmx.de>
3395
3396 * dbusbind.c (xd_initialize): Add connection file descriptor to
3397 input_wait_mask, in order to let select() detect, whether a new
3398 message has been arrived.
ca4f31ea 3399 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
a0645cdd 3400
485db0ba
MA
34012009-08-15 Michael Albinus <michael.albinus@gmx.de>
3402
1373f3be
SM
3403 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
3404 New functions.
485db0ba
MA
3405
3406 * lisp.h (xd_pending_messages): Declare.
3407
3408 * keyboard.c (readable_events): Call xd_pending_messages.
3409
b5b98ff4
CY
34102009-08-15 Chong Yidong <cyd@stupidchicken.com>
3411
1373f3be 3412 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
84b17ab0 3413
f8354c6e
CY
3414 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
3415
b5b98ff4
CY
3416 * buffer.c (set_buffer_internal_1)
3417 (swap_out_buffer_local_variables): Check for unbound local
3418 variables (Bug#4138).
3419
8b9fc636
EZ
34202009-08-14 Eli Zaretskii <eliz@gnu.org>
3421
3422 * process.c (create_pty): Fix last change.
3423
ce959360
CY
34242009-08-13 Chong Yidong <cyd@stupidchicken.com>
3425
3426 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
3427 (xbm_load_image): Caller changed.
64b807c9 3428 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
ce959360 3429
c7baf7e9
NR
34302009-08-13 Nick Roberts <nickrob@snap.net.nz>
3431
3432 * process.c (create_pty): New function.
3433 (Fstart_process): Use it to allow Emacs to just associate a pty
3434 with the buffer. See associated change in gdb-mi.el.
3435 (list_processes_1): Deal with no program name.
3436 (start_process_unwind): Use pid == -2 to mean no process.
3437
1ac9108a
SM
34382009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3439
3440 * cmds.c (nonundocount): New global variable.
3441 (keys_of_cmds): Initialize it.
3442 (Fself_insert_command): Use it to combine upto 20 sequential chars
3443 into a single undo entry, just like the Qself_insert_command code in
3444 keyboard.c does.
3445 Call frame_make_pointer_invisible, also like the Qself_insert_command
3446 code in keyboard.c does.
3447 * keyboard.c (command_loop_1): Use the new global nonundocount rather
3448 than its own local replacement for it.
3449
e267324c
KR
34502009-08-10 Ken Raeburn <raeburn@raeburn.org>
3451
1ac9108a 3452 * fns.c (concat): Don't re-set string length to its current value.
77437343 3453
1ac9108a
SM
3454 * coding.h (decode_coding_string, encode_coding_string):
3455 Use SBYTES macro.
f0bed503 3456
1ac9108a 3457 * doprnt.c (doprnt_lisp): Delete unused function.
e267324c
KR
3458 (doprnt): Merge with doprnt1, discarding lispstrings code.
3459 * lisp.h (doprnt_lisp): Don't declare.
3460
416e006d
JL
34612009-08-07 Juri Linkov <juri@jurta.org>
3462
3463 * puresize.h (BASE_PURESIZE): Increase to 1270000.
3464
6f7d5780
DN
34652009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
3466
3467 * print.c (syms_of_print): Undo previous change.
3468
f19a0f5b
TZ
34692009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
3470
3471 * lread.c (read1, syms_of_lread): Read hashtables back from the
3472 readable format.
3473
3474 * print.c (print_preprocess, print_object): Print hashtables fully
3475 and readably.
3476 (syms_of_print): Provide 'hashtable-print-readable.
3477
b9173dc2
AR
34782009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
3479
3480 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
3481 no family set.
3482 (nsfont_open): Handle case when entity has no family.
3483
1586503c
AR
34842009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
3485
3486 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
3487 element, not a list, for match case.
3488
087048cd
KH
34892009-07-28 Kenichi Handa <handa@m17n.org>
3490
3491 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
3492 rigidly.
3493
3494 * xfont.c (xfont_list_pattern): Don't ignore the return value of
3495 font_parse_xlfd. Check font properties more rigidly.
3496
780c2506
DN
34972009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
3498
31fd7c5c
JB
3499 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
3500 bsd-common.h.
780c2506 3501
a8c0cc18
KH
35022009-07-27 Kenichi Handa <handa@m17n.org>
3503
3504 * xfaces.c (face_with_height): Call font_clear_prop.
3505
4fbe2306
CY
35062009-07-26 Chong Yidong <cyd@stupidchicken.com>
3507
111d9af3
CY
3508 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
3509
3510 * xterm.c (x_term_init): Use Qx.
3511
4fbe2306
CY
3512 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
3513
1ac9108a 3514 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
4fbe2306
CY
3515 (ns_get_color): Revert 2009-07-16 change.
3516
beb0b7f9
EZ
35172009-07-25 Eli Zaretskii <eliz@gnu.org>
3518
3519 * lread.c (syms_of_lread) <force_load_messages>: New variable.
1ac9108a 3520 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
beb0b7f9 3521
2baf5e76
KR
35222009-07-25 Ken Raeburn <raeburn@raeburn.org>
3523
1ac9108a
SM
3524 * coding.h (decode_coding_string, encode_coding_string):
3525 Use SCHARS macro.
8890e5f5 3526
2baf5e76 3527 * lread.c: Rewrite 2009-07-21 changes.
1ac9108a 3528 (load_depth): Delete.
2baf5e76
KR
3529 (Qload_in_progress): New variable.
3530 (load_unwind): Don't reference load_depth or load_in_progress.
3531 (Fload): Likewise; specbind Qload_in_progress instead.
3532 (init_lread): Don't initialize load_depth.
3533 (syms_of_lread): Initialize and protect Qload_in_progress.
3534
1395c6f5
AR
35352009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
3536
3537 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
3538
4e2f36cf
AR
35392009-07-23 Yavor Doganov <yavor@gnu.org>
3540
3541 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
3542
5dd9a6f7
AR
35432009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
3544
3545 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
7f6ad209
AR
3546 Bugs 3792, 3720, 2402.
3547 (ns_lookup_indexed_color): Check for bad index.
3548 (ns_index_color): Init unused slot to 0.
3549 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
3550 Bug 3714, possibly 3082.
5dd9a6f7 3551
c902b920
JR
35522009-07-22 Jason Rumney <jasonr@gnu.org>
3553
1ac9108a
SM
3554 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
3555 Position IME window at cursor (Bug#2570).
c902b920
JR
3556 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
3557 (globals_of_w32fns): Dynamically load functions required above.
3558
3559 * w32term.c (w32_draw_window_cursor): Send message to reposition
3560 any IME window.
3561
090101cf
CY
35622009-07-21 Chong Yidong <cyd@stupidchicken.com>
3563
3564 * fileio.c: Revert 2009-07-16 changes.
3565 (Vauto_save_include_big_deletions): New variable.
3566 (Fdo_auto_save): Disable auto-save only if
3567 auto-save-include-big-deletions is nil.
3568
e6583e3d
CY
35692009-07-21 Chong Yidong <cyd@stupidchicken.com>
3570
3571 * xdisp.c (move_it_to): For continued lines ending in a tab, take
3572 the overflowed pixels into account (Bug#3879).
3573
ece435a5
KR
35742009-07-21 Ken Raeburn <raeburn@raeburn.org>
3575
3576 * lread.c (load_depth): New variable.
3577 (Fload, load_unwind, init_lread): Set it to the load recursion
3578 depth; set load_in_progress as a simple boolean based on the
3579 current load_depth. (Bug#3892)
3580
40b2d973
AR
35812009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
3582
3583 * nsfont.m (ns_has_attribute): Remove.
3584 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
3585
10be7e0d
JL
35862009-07-18 Juri Linkov <juri@jurta.org>
3587
3588 * process.c (Fset_process_query_on_exit_flag): Mention killing
3589 a buffer in docstring.
3590
fa055055
KH
35912009-07-17 Kenichi Handa <handa@m17n.org>
3592
3593 * casetab.c (shuffle): Fix the logic of setting up the cycle.
3594
042f7b69
YM
35952009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3596
3597 * nsfns.m (Fns_set_alpha): Remove function.
3598 (syms_of_nsfns): Don't defsubr it.
3599
3600 * nsterm.m (ns_get_color): Remove incompatible color formats.
3601 (ns_color_to_lisp): Generate #rrggbb color format string.
3602
4be941e3
RS
36032009-07-16 Richard Stallman <rms@gnu.org>
3604
3605 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
3606 (Fset_buffer_auto_saved): Handle save_length = -2.
3607
4e6b227d
CY
36082009-07-16 Chong Yidong <cyd@stupidchicken.com>
3609
3610 * xterm.c (Qx_gtk_map_stock): New var.
3611
3612 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
3613 of calling intern each time.
3614
a1856973
YM
36152009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3616
3617 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
3618 does tiling.
3619
3620 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
3621
497e54d8
KH
36222009-07-14 Kenichi Handa <handa@m17n.org>
3623
72d36834
KH
3624 * font.c (font_vconcat_entity_vectors): New function.
3625 (struct font_sort_data): New member font_driver_preference.
3626 (font_compare): Check font_driver_preference.
3627 (font_sort_entities): The format of the first argument changed.
3628 (font_delete_unmatched): Likewise.
3629 (font_list_entities): The return type changed.
3630 (font_select_entity): The format of the second argument changed.
1ac9108a
SM
3631 (font_find_for_lface): Adjuste for the above changes.
3632 Don't suppress the checking of C even if the repertory supports it.
3633 (Flist_fonts): Adjust for the above changes.
72d36834 3634
1ac9108a
SM
3635 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
3636 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
497e54d8
KH
3637 Reject a font who has adstyle property that is different from a
3638 langname derived from registry property.
1ac9108a 3639 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
497e54d8 3640
b6046155
EZ
36412009-07-13 Eli Zaretskii <eliz@gnu.org>
3642
3643 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
3644 local copy of dirfilename.
3645
fb6b6049
KH
36462009-07-13 Kenichi Handa <handa@m17n.org>
3647
e2402a5e
KH
3648 * chartab.c (sub_char_table_ref_and_range): Fix the range check
3649 against max_char.
3650
fb6b6049
KH
3651 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
3652 calling XSYMBOL (sym).
3653
65156807
EZ
36542009-07-11 Eli Zaretskii <eliz@gnu.org>
3655
1ac9108a
SM
3656 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
3657 New function.
3658 (directory_files_internal) [WINDOWSNT]:
3659 Bind w32-get-true-file-attributes to either t or nil, depending whether
65156807
EZ
3660 the filesystem of the directory is fast or slow.
3661
3662 * w32.c (logon_network_drive): Don't assume PATH is an absolute
3663 file name.
3664 (is_slow_fs): New function.
3665 (stat): Use it to determine whether to issue more system calls to
3666 get accurate file attributes, when w32-get-true-file-attributes is
3667 `local'.
3668
e0ab5fcf
JD
36692009-07-10 Jan Djärv <jan.h.d@swipnet.se>
3670
3671 * xfns.c (Fx_select_font): Remember last font selected in
31fd7c5c 3672 x_last_font_name and use that the next time. Also try the frame
e0ab5fcf
JD
3673 parameter font-parameter as default to the font dialog.
3674
784ceded
KH
36752009-07-10 Kenichi Handa <handa@m17n.org>
3676
3677 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
3678
fb8edc0b
EZ
36792009-07-09 Eli Zaretskii <eliz@gnu.org>
3680
1ac9108a 3681 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
017dab84 3682
fb8edc0b
EZ
3683 * w32.c (stat): Treat UNC file names as residing on remote
3684 drives. (Bug#3542)
3685
635c75b1
KH
36862009-07-09 Kenichi Handa <handa@m17n.org>
3687
3688 * fontset.c (fontset_find_font): Fix previous change.
3689
c1d5ce94
MA
36902009-07-08 Michael Albinus <michael.albinus@gmx.de>
3691
3692 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
3693 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
3694 error flag.
3695
edb61b39
KH
36962009-07-08 Kenichi Handa <handa@m17n.org>
3697
374bf7e4
KH
3698 * fontset.c (fontset_find_font): Fix the logic of handling
3699 charset_matched.
3700 (font_for_char): Delete unused var.
3701 (generate_ascii_font_name): Delete it.
3702
edb61b39
KH
3703 * coding.h (JIS_TO_SJIS2): Fix the code range check.
3704
3705 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
3706 (encode_coding_sjis): Fix the code range check.
3707
0f3f018c
CY
37082009-07-07 Chong Yidong <cyd@stupidchicken.com>
3709
3710 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
3711 (Fexpand_file_name): Copy string data properly (Bug#3772).
3712
fcaf6f3a
JD
37132009-07-07 Jan Djärv <jan.h.d@swipnet.se>
3714
3715 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
3716 first MapNotify.
3717
6809ca75
KH
37182009-07-07 Kenichi Handa <handa@m17n.org>
3719
3720 * character.h (unibyte_has_multibyte_table): Delete extern.
3721 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
3722
3723 * charset.c (Fset_charset_priority): Update charset_unibyte.
3724 (syms_of_charset): Initialize charset_unibyte.
3725
3726 * character.c (unibyte_has_multibyte_table): Delete it.
3727 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
3728 charset_unibyte.
3729 (multibyte_char_to_unibyte_safe): Likewise.
3730 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
3731
1ac9108a 3732 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
6809ca75
KH
3733 (x_produce_glyphs): Likewise.
3734
3735 * .gdbinit (xcharset): Fix the treating $arg0.
3736
ad9e2d54
EZ
37372009-07-04 Eli Zaretskii <eliz@gnu.org>
3738
3739 Emulation of `getloadavg' on MS-Windows.
3740 * w32.c: Include float.h
3741 (g_b_init_get_native_system_info, g_b_init_get_system_times)
3742 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
3743 (get_native_system_info, get_system_times): New functions.
3744 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
3745 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
3746 (globals_of_w32): Initialize g_b_init_get_native_system_info,
3747 g_b_init_get_system_times, and num_of_processors.
3748
0a3472c7
JR
37492009-07-03 Jason Rumney <jasonr@gnu.org>
3750
3751 * w32term.c (w32_initialize): Use standard types.
3752
80904120
EZ
37532009-07-03 Eli Zaretskii <eliz@gnu.org>
3754
3755 * dired.c (Ffile_attributes): Decode user and group names by the
3756 locale's encoding. (Bug#3443)
3757
6978862d
DN
37582009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
3759
f8d23104
DN
3760 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
3761 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
3762
3763 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
3764
3765 * term.c (init_tty): Remove spurious #ifdef.
3766
6978862d
DN
3767 * m/mips.h: Mention this file is also used for netbsd.
3768 * m/pmax.h: Remove file.
3769
e044e4fc
JD
37702009-07-03 Jan Djärv <jan.h.d@swipnet.se>
3771
3772 * xterm.h (struct x_display_info): Add invisible_cursor.
3773 (struct x_output): Add current_cursor.
3774
3775 * xterm.c (XTtoggle_invisible_pointer): New function.
3776 (x_define_frame_cursor): Don't define cursor if invisible or the
3777 same as before. Set current_cursor.
3778 (x_create_terminal): Set toggle_invisible_pointer_hook.
3779
3780 * xfns.c (make_invisible_cursor): New function.
3781 (x_set_mouse_color): Call make_invisible_cursor.
3782 Set current_cursor.
3783 (x_window): Set current_cursor.
3784
3785 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
3786
3787 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
3788 inserting a character.
3789 (read_avail_input): Call frame_make_pointer_visible.
3790
3791 * frame.c (Vmake_pointer_invisible): New variable.
1ac9108a
SM
3792 (frame_make_pointer_invisible, frame_make_pointer_visible):
3793 New functions.
e044e4fc
JD
3794 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
3795
3796 * frame.h: Declare frame_make_pointer_invisible and
3797 frame_make_pointer_visible.
3798 (struct frame): Add pointer_invisible.
3799
574c8efa
JD
38002009-07-02 Jan Djärv <jan.h.d@swipnet.se>
3801
7b507248
JD
3802 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
3803 frame isn't visible.
3804 (xg_frame_resized): If width/height is -1, get size of window
3805 from X server.
3806
3807 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
3808 for MapNotify.
3809
835bdaa7 3810 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
31fd7c5c 3811 here or call change_frame_size. Just call flush_and_sync.
1ac9108a 3812 (flush_and_sync): Reintroduce.
574c8efa 3813
3f1c6666 38142009-07-01 Jan Djärv <jan.h.d@swipnet.se>
69b16610 3815
31fd7c5c 3816 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
acd51077
JD
3817
3818 * xterm.c (x_handle_net_wm_state): Also look for sticky.
3819 (x_term_init): Initialize Xatom_net_wm_state_sticky.
3820
3821 * frame.h: Declare Qsticky.
3822
cad9ef74
JD
3823 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
3824
3825 * nsfns.m (ns_frame_parm_handlers): Ditto.
3826
3827 * frame.c: Declare Qsticky.
3828 (frame_parms): Add sticky.
3829
3830 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
3831
3832 * xterm.h: Declare x_set_sticky.
3833
3834 * xterm.c (x_set_sticky): New function.
3835
69b16610
JD
3836 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
3837 (xg_tool_bar_menu_proxy): Attach enter/leave events to
3838 xg_tool_bar_proxy_help_callback.
3f1c6666
JD
3839
3840 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
3841
3842 * frame.c: Qmaximized is new.
3843 (x_set_frame_parameters): Do not handle fullscreen specially.
3844 Only set width and height if explicitly set.
3845 (x_set_fullscreen): Handle Qmaximized.
3846 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
3847 (syms_of_frame): Initialize Qmaximized.
3848
1ac9108a
SM
3849 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
3850 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
3f1c6666
JD
3851
3852 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
31fd7c5c
JB
3853 for Expose event. Add call to x_check_fullscreen for MapNotify event.
3854 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
3f1c6666
JD
3855 set gravity to NorthWestGravity when USE_GTK.
3856 (set_wm_state): New function.
31fd7c5c 3857 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
3f1c6666
JD
3858 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
3859 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
31fd7c5c 3860 or the case when no window manager is running. That means remove calls
3f1c6666
JD
3861 to x_real_positions and x_fullscreen_adjust.
3862
3863 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
3864 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
3865 flush_and_sync.
3866 (xg_height_changed): New function.
3867 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
1ac9108a
SM
3868 and gtk_window_set_policy. Set frame gravity after parsing the
3869 geometry string.
3f1c6666
JD
3870 (xg_update_frame_menubar, free_frame_menubar)
3871 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
3872 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
3873 Remove calls to xg_frame_set_char_size.
3874
fd503d99
KH
38752009-07-01 Kenichi Handa <handa@m17n.org>
3876
3877 * keyboard.c (decode_keyboard_code): New function.
3878 (tty_read_avail_input): Decode the input bytes if necessary.
3879
1ac9108a
SM
3880 * coding.c (setup_coding_system):
3881 Initialize coding->carryover_bytes to 0.
fd503d99
KH
3882 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
3883 use Qno_conversion.
3884
24ed93fb
YM
38852009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3886
3887 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
3888
99061dfc
CY
38892009-06-30 Chong Yidong <cyd@stupidchicken.com>
3890
1ac9108a 3891 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
99061dfc 3892
ff90fbde
JR
38932009-06-30 Jason Rumney <jasonr@gnu.org>
3894
3895 * w32term.c (w32_initialize): Use GetModuleHandle for library that
3896 is already loaded.
3897 Set user model ID if supported (bug#1849).
3898
5f445726
JM
38992009-06-29 Jim Meyering <meyering@redhat.com>
3900
3901 Remove useless if-before-xfree test.
3902 * nsfont.m (nsfont_close): Remove useless test.
3903 * term.c (delete_tty): Likewise.
3904 * w32.c (system_process_attributes): Likewise.
3905 * w32font.c (w32font_close): Likewise.
3906 * xfaces.c (x_free_gc): Likewise.
3907 * xselect.c (buffer): Likewise.
3908
b9607587
AS
39092009-06-28 Andreas Schwab <schwab@linux-m68k.org>
3910
3911 * process.c (send_process): Keep decoded string in a local
3912 variable and protect it from GC. (Bug#3521)
3913
89ba96f4
EZ
39142009-06-28 Eli Zaretskii <eliz@gnu.org>
3915
3916 * term.c (create_tty_output) [MSDOS]: #ifdef away.
3917 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
3918
098a1589
CY
39192009-06-28 Chong Yidong <cyd@stupidchicken.com>
3920
485422be
CY
3921 * xdisp.c (start_display, handle_face_prop)
3922 (move_it_vertically_backward, cursor_row_fully_visible_p)
1ac9108a
SM
3923 (redisplay_window, try_window_id, produce_image_glyph):
3924 Delete some #ifdef-ed out code chunks that are now obsolete.
485422be 3925
098a1589
CY
3926 * xterm.c (x_update_window_begin, x_new_focus_frame)
3927 (x_scroll_bar_handle_click, handle_one_xevent)
3928 (handle_one_xevent, XTread_socket, x_focus_on_frame)
3929 (x_make_frame_visible, x_make_frame_invisible)
3930 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
3931 code chunks that are now obsolete.
3932
78c38319
MA
39332009-06-28 Michael Albinus <michael.albinus@gmx.de>
3934
3935 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
3936 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
3937 for hours, when optimzation is enabled.
3938 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
3939 (xd_read_message): Make them static.
3940
4189ed40
CY
39412009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
3942
3943 * term.c (turn_on_face): Allow simultaneously bold and dim
3944 terminal faces (Bug#3530).
3945
cd9b5e16
CY
39462009-06-27 Chong Yidong <cyd@stupidchicken.com>
3947
4e23bedb
CY
3948 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
3949
cd9b5e16
CY
3950 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
3951 truncation glyphs (Bug#3686).
3952
07cc3c35
GM
39532009-06-27 Glenn Morris <rgm@gnu.org>
3954
3955 * m/pmax.h: Restore file, with only netbsd portions.
3956
31fd7c5c 39572009-06-26 David Reitter <david.reitter@gmail.com>
25c5550f 3958
cd9b5e16 3959 * nsterm.m (keydown): Avoid infinite loop.
25c5550f 3960
42d4a64f
KH
39612009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
3962
3963 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
3964 the arg FORCE_SYMBOL.
3965
930fe55b 39662009-06-25 Kenichi Handa <handa@m17n.org>
a71ccf3a
KH
3967
3968 * fontset.c (fontset_find_font): When a usable rfont_def is found
3969 in a fallback font-group, make it the first element of the group.
3970
57ebc3fd
CY
39712009-06-24 Chong Yidong <cyd@stupidchicken.com>
3972
3973 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
3974
f084f942
KH
39752009-06-24 Kenichi Handa <handa@m17n.org>
3976
3977 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
3978 set for C.
3979 (fontset_font): Record the availability of a font for C both in
3980 the realized fontsets of the current one and the default one.
3981
2f686c87
DN
39822009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
3983
3984 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
3985 conditional, it is always defined on AIX.
3986
666e158e
MB
39872009-06-23 Miles Bader <miles@gnu.org>
3988
3989 * window.c (Vrecenter_redisplay): New variable.
3990 (syms_of_window): Initialize it.
3991 (Qtty): New extern declaration.
3992 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
3993
c6da7cd2
JM
39942009-06-23 Jim Meyering <meyering@redhat.com>
3995
1ac9108a
SM
3996 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
3997 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
632c2030 3998 pointer dereferences are guaranteed to be valid.
c6da7cd2 3999
678dca3d
KH
40002009-06-23 Kenichi Handa <handa@m17n.org>
4001
74d75424
KH
4002 * emacs.c (main): Call init_font ().
4003
4004 * font.h (Vfont_log): Extern it.
4005 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
4006
4007 * font.c (font_sort_entities, font_list_entities)
4008 (font_matching_entity, font_open_entity)
4009 (font_close_object): Change font_add_log to FONT_ADD_LOG.
4010 (Vfont_log): Delete static.
4011 (font_log_env_checked): Delete this variable.
4012 (font_add_log): Don't check font_log_env_checked.
4013 (font_deferred_log): Check Vfont_log.
4014 (init_font): New function.
4015
678dca3d
KH
4016 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
4017
4018 * w32font.c: Change font_add_log to FONT_ADD_LOG.
4019
4020 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
4021
4022 * xfont.c: Change font_add_log to FONT_ADD_LOG.
4023
4024 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
4025 (face_for_char): Don't call font_deferred_log here.
4026 (font_for_char): Likewise.
4027
8a668709
CY
40282009-06-22 Chong Yidong <cyd@stupidchicken.com>
4029
9a01ee33
CY
4030 * w32term.c (x_draw_glyph_string): Use the glyph string's width
4031 rather than its background_width for drawing the overline and
4032 underline (Bug#489).
4033
4034 * xterm.c (x_draw_glyph_string): Use the glyph string's width
4035 rather than its background_width for drawing the overline and
4036 underline (Bug#489).
ec7c9926
CY
4037 (xg_default_icon_file): New variable.
4038 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
4039 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
9a01ee33 4040
8a668709
CY
4041 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
4042 (load_overlay_strings): Remove externs.
4043 (fast_find_position): Function deleted.
4044 (mouse_face_from_buffer_pos): New function, based on
4045 fast_find_position. Correctly handle before-strings,
4046 display-strings, and after-strings (Bug#1220).
4047 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
4048
4d4c02d8
CY
40492009-06-21 Chong Yidong <cyd@stupidchicken.com>
4050
1ac9108a 4051 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
4d4c02d8
CY
4052 (move_it_in_display_line_to, move_it_in_display_line_to)
4053 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
4054
70243478
CY
40552009-06-21 Chong Yidong <cyd@stupidchicken.com>
4056
4057 * Branch for 23.1.
4058
13087e59
JR
40592009-06-21 Jason Rumney <jasonr@gnu.org>
4060
4061 * w32term.c (keyboard_codepage): New static variable.
4062 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
4063 (w32_read_socket) [WM_CHAR]: Use it to decode character
4064 input (bug#3237).
4065 (w32_initialize): Initialize it.
4066 (codepage_for_locale): New function.
4067
4735b74e
KR
40682009-06-20 Ken Raeburn <raeburn@raeburn.org>
4069
4070 * process.c (status_message): Pass Faset index argument as a lisp
4071 object, so as to work with USE_LISP_UNION_TYPE.
4072
0e727afa
YM
40732009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4074
4075 * coding.c (Ffind_coding_systems_region_internal):
4076 Cache checked characters.
4077
cf299835
KH
40782009-06-18 Kenichi Handa <handa@m17n.org>
4079
1ac9108a 4080 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
cf299835 4081
90f20d94
AS
40822009-06-18 Andreas Schwab <aschwab@redhat.com>
4083
4084 * xdisp.c (redisplay_internal): Check that the frame is still
4085 live after redisplay of its windows.
4086 (redisplay_windows): Check that the window is still live.
4087
7f1faf1c
KH
40882009-06-17 Andreas Schwab <schwab@linux-m68k.org>
4089
4090 * coding.c (detect_coding_utf_16): Fix previous change.
4091
cc13543e
KH
40922009-06-16 Kenichi Handa <handa@m17n.org>
4093
4094 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
4095 UTF-16 by checking the dispersion of Eth and Oth bytes.
4096
977b85f4
AS
40972009-06-15 Andreas Schwab <schwab@linux-m68k.org>
4098
4099 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
4100
66bd43d1
KH
41012009-06-15 Kenichi Handa <handa@m17n.org>
4102
4103 * process.c (status_message): Fix previous change. Be sure to
4104 decode a localized string.
4105
cb5ca9c5
YM
41062009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4107
4108 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
4109 add comment explaining why.
4110
ec7709ba 41112009-06-14 Sidney Markowitz <sidney@sidney.com>
5ee6f629 4112
ec7709ba 4113 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
5ee6f629 4114
4b7f335c
AR
41152009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
4116
4117 * nsfont.m (ns_attribute_value): Remove.
4118 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
4119 (ns_has_attribute): Shrink the normal range.
4120 (ns_findfonts): Don't worry about requested spec in determining
4121 need for synthItal.
e41820ee 4122 (ns_get_covering_families): Retain scriptToFamilies.
4b7f335c 4123
73b26103
SZ
41242009-06-14 Seiji Zenitani <zenitani@mac.com>
4125
4126 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
4127
5753e4da
KH
41282009-06-11 Kenichi Handa <handa@m17n.org>
4129
4130 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
4131 overhang for the static composition case.
4132
3561b671
KH
41332009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4134
5753e4da
KH
4135 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
4136 overhang for the automatic composition case.
4137
3561b671
KH
4138 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
4139 composition case.
4140
852bbd41
CY
41412009-06-10 Chong Yidong <cyd@stupidchicken.com>
4142
4143 * xdisp.c (get_next_display_element): When handling wrap-prefix
4144 and line-prefix, treat \n as a control character (bug#3502).
4145
9903d1e6
KH
41462009-06-10 Kenichi Handa <handa@m17n.org>
4147
4148 * font.c (font_parse_family_registry): Fix for one-char foundry.
4149 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
4150
0bcbaaaa
CY
41512009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
4152
4153 * process.c (status_message): Fix handling of multibyte signal
4154 string (Bug#3499).
4155
40aa3f13
JM
41562009-06-09 Jim Meyering <meyering@redhat.com>
4157
1f80c7e2
CY
4158 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
4159 color name is missing.
40aa3f13 4160
72d51285
KH
41612009-06-09 Kenichi Handa <handa@m17n.org>
4162
4163 * charset.c (Fmap_charset_chars): In docstring, state clearly that
4164 FROM-CODE and TO-CODE are codepoints of CHARSET.
4165
c1d04d84
AR
41662009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
4167
4168 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
4169
41702009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
4171
4172 Changes to support :script/:lang/:otf in NS font driver.
4173 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
4174 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
4175 indicate not part of font driver interface, and change callers.
4176 (ns_get_family): Remove pointless null check.
4177 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
4178 ns_spec_to_descriptor, ns_descriptor_to_entity.
4179 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
4180 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
4181 (ns_spec_to_descriptor, ns_descriptor_to_entity)
4182 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
4183 (ns_get_req_script, ns_accumulate_script_ranges)
4184 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
4185 New functions.
4186 (nsfont_list, nsfont_match): Use ns_findfonts.
4187 (nsfont_open): Use font descriptor instead of traits.
4188 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
4189 (dump_glyphstring): Rename to ns_dump_glyphstring.
4190
c7eb9816
AR
4191 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
4192
c1d04d84
AR
4193 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
4194
4195 * fontset.c (fontset_from_font): Remove NS-specific code.
4196
ec7709ba 41972009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
c1d04d84
AR
4198
4199 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
4200 nonactive windows.
4201
31fd7c5c 42022009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
c1d04d84 4203
1ac9108a 4204 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
c1d04d84 4205
68852c13 42062009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
e7777236
AR
4207
4208 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
4209
6756cd1d
CY
42102009-06-07 Chong Yidong <cyd@stupidchicken.com>
4211
4212 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
4213 account for the overflowing of newlines into the last glyph on the
4214 display line (Bug#3482).
4215
28bf482a
DR
42162009-06-05 David Reitter <david.reitter@gmail.com>
4217
ec7709ba
JB
4218 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
4219 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
28bf482a
DR
4220 Fns_selection_exists_p, Fns_selection_owner_p.
4221
fdb55376
JR
42222009-06-03 Jason Rumney <jasonr@gnu.org>
4223
4224 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
4225 available. (Bug#3379)
4226
05129fbe
KH
42272009-05-29 Kenichi Handa <handa@m17n.org>
4228
1ac9108a
SM
4229 * coding.c (get_translation_table):
4230 Check Venable_character_translation.
05129fbe 4231
ec7709ba 42322009-05-26 David Reitter <david.reitter@gmail.com>
15891144 4233
ec7709ba
JB
4234 * nsterm.m (ns_raise_frame): Only raise frame if visible.
4235 (x_make_frame_visible): Move frame to front rather than calling
15891144 4236 ns_raise_frame().
ec7709ba 4237 (keyDown:): Do not swallow events that aren't re-sent if frame
15891144 4238 isn't key window.
ec7709ba 4239 (drawRect:): Do not set visibility/iconified flags because
15891144
DR
4240 drawRect may be called by NSView even if the frame is hidden.
4241
ec7709ba
JB
4242 * nsfns.m (Fx_create_frame): Follow other ports in
4243 determining visibility; default to t. Ensure async_visible is set.
15891144 4244
21f73755
EZ
42452009-05-23 Eli Zaretskii <eliz@gnu.org>
4246
4247 * dired.c (Ffile_attributes): Doc fix.
4248
34001e41
CY
42492009-05-22 Chong Yidong <cyd@stupidchicken.com>
4250
4251 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
4252
46306a17
SM
42532009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
4254
4255 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
4256 and xfont_scratch_props.
4257 (syms_of_xfont): Do it here instead.
4258 (xfont_find_ccl_program): Delete, unused.
4259 (xfont_open): Delete unused var `i'.
4260
ef6e0694
KH
42612009-05-21 Kenichi Handa <handa@m17n.org>
4262
4263 * fontset.c (Qlatin): Don't make it static.
4264
46306a17
SM
4265 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
4266 New functions.
ef6e0694
KH
4267 (xfont_scripts_cache, xfont_scratch_props): New variables.
4268 (Qlatin, Vscalable_fonts_allowed): Extern it.
46306a17
SM
4269 (xfont_list_pattern): Argument changed. Callers changed.
4270 Check Vscalable_fonts_allowed. Check the support of a script.
ef6e0694
KH
4271 (xfont_list): Don't reject a font spec with :script property.
4272 (xfont_has_char): Fix setting of encoding.
4273 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
4274 xfont_scratch_props.
4275
42762009-05-19 Kenichi Handa <handa@m17n.org>
4277
46306a17 4278 * font.c (font_sort_entities): Rename from font_sort_entites.
ef6e0694
KH
4279 Callers changed.
4280
42812009-05-18 Kenichi Handa <handa@m17n.org>
4282
4283 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
4284
ac71ced7
SM
42852009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
4286
4287 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
4288 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
4289
1c6d1051
YM
42902009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4291
4292 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
4293 (x_delete_terminal): Dissociate resource database from display and
4294 then call XrmDestroyDatabase before closing display.
4295
9b9b779c
AR
42962009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
4297
4298 * nsterm.m (ns_read_socket): Remove unused variable.
1564e649
AR
4299 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
4300 whether selected frame is viable before raising it (based on patch
4301 by David Reitter), and improve commentary.
4302 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
9b9b779c 4303
cccd42d5
KH
43042009-05-15 Kenichi Handa <handa@m17n.org>
4305
4306 * font.c (Ffont_spec): Check arguments.
4307
337fbd17
CY
43082009-05-14 Chong Yidong <cyd@stupidchicken.com>
4309
4310 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
4311 weight when testing attributes (Bug#3282).
4312
47a6002f
JD
43132009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4314
4315 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
4316 what we expect to get in the next ConfigureNotify event.
4317
9cb363db
YM
4318 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
4319 before Xft one (Bug#1696).
4320
b9126609
CY
43212009-05-07 David Reitter <david.reitter@gmail.com>
4322
4323 * nsfns.m (Fx_display_planes): Compute bitplanes using
4324 NSBitsPerPixelFromDepth (Bug#3207).
4325
27a69fd9
CY
43262009-05-10 Chong Yidong <cyd@stupidchicken.com>
4327
4328 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
4329
00f37552
TTN
43302009-05-10 Ulrich Mueller <ulm@gentoo.org>
4331
4332 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
4333
2d82a920
DR
43342009-05-07 David Reitter <david.reitter@gmail.com>
4335
ec7709ba
JB
4336 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
4337 Respect mouse face background.
2d82a920 4338
46b0d52d
DR
43392009-05-07 David Reitter <david.reitter@gmail.com>
4340
ec7709ba
JB
4341 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
4342 Mouse movement/highlight: bracket drawing operations
46b0d52d
DR
4343 in ns_update_begin and ns_update_end.
4344
ce1b23bb
SM
43452009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
4346
5996e1b7
SM
4347 * nsfns.m (ns_get_screen): Rewrite.
4348 Don't presume selected-frame is of type `ns'.
4349
ba98e3a0
SM
4350 * font.c (font_update_drivers): Sanity fallback to avoid disabling
4351 all drivers.
4352
ce1b23bb
SM
4353 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
4354
bcda200f
YM
43552009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4356
4357 * keyboard.h (add_user_signal): Fix typo in extern.
4358
4359 * lisp.h (add_user_signal): Remove extern.
4360
4361 * unexelf.c (unexec): Consider a section to precede the .bss section
4362 if its addresses overlap that of .bss.
4363 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
4364 instead of dumping process.
4365
864660a2
SM
43662009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
4367
4368 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
4369
50da4e56
SM
43702009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4371
4372 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
4373
51520a1a
DN
43742009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
4375
4376 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
4377 any statements.
4378
409ea3a1
AS
43792009-05-02 Andreas Schwab <schwab@linux-m68k.org>
4380
59c4c60f
AS
4381 * process.c (read_process_output): Make sure the current buffer is
4382 always restored.
4383
409ea3a1
AS
4384 * coding.c (record_conversion_result): Don't modify
4385 Vlast_code_conversion_error for successful result.
4386 (alloc_destination): Don't clobber conversion result. (Bug#1650)
4387
56f00ed2
KH
43882009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
4389
4390 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
896b1cc9 4391 (load_charset_map): Remove unnecessary code.
56f00ed2 4392
4491c9d2
DR
43932009-04-30 David Reitter <david.reitter@gmail.com>
4394
35f5b128 4395 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
4491c9d2
DR
4396 through f24.
4397
6970f632
CY
43982009-04-30 Chong Yidong <cyd@stupidchicken.com>
4399
4400 * xfaces.c (face_at_buffer_position): New arg base_face_id.
4401
4402 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
4403 face_at_buffer_position.
4404 (face_before_or_after_it_pos, get_next_display_element)
4405 (note_mouse_highlight): Update face_at_buffer_position call.
4406
4407 * term.c (term_mouse_highlight):
4408 * msdos.c (IT_note_mouse_highlight):
4409 * fontset.c (Finternal_char_font):
35f5b128 4410 * font.c (font_at, font_range): Update face_at_buffer_position call.
6970f632
CY
4411
4412 * dispextern.h (face_at_buffer_position): Update prototype.
4413
0c616f63
KH
44142009-04-30 Kenichi Handa <handa@m17n.org>
4415
35f5b128 4416 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
0c616f63 4417
ad3aaf33
AS
44182009-04-29 Andreas Schwab <schwab@linux-m68k.org>
4419
4420 * callproc.c (Fcall_process): Fix GC protection. Make sure
4421 current buffer is always restored.
4422
c3c963a0
YM
44232009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4424
4425 * atimer.c (init_atimer): Also clear stopped_atimers.
4426
4427 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
4428
7e3386cb
YM
4429 * process.c (create_process): Clean up merger residues of
4430 2008-07-17 change.
4431
91f68422
CY
44322009-04-29 Ulrich Mueller <ulm@gentoo.org>
4433
4434 * lread.c (Vread_circle): New variable.
4435 (read1): Disable recursive read if Vread_circle is nil.
4436
24b34550
KH
44372009-04-29 Kenichi Handa <handa@m17n.org>
4438
4439 * fontset.h (set_default_ascii_font): Delete extern.
4440
4441 * fontset.c (set_default_ascii_font): Delete this unused function.
4442
4443 * frame.c (x_set_font): When ARG is a font-object, check if the
4444 font-object matches with the ASCII font-spec of the frame's
9c358bda 4445 fontset. If not, create a new fontset for the frame. (Bug #3075)
24b34550 4446
77bf07e1
AS
44472009-04-28 Andreas Schwab <schwab@linux-m68k.org>
4448
4449 * fns.c (Flocale_info): Protect vector from GC during decoding.
4450
4451 * process.c (Fstart_process): Protect argv strings from GC during
4452 encoding.
4453
2c55aacf
AS
44542009-04-27 Andreas Schwab <schwab@linux-m68k.org>
4455
4456 * sysdep.c: Include <ctype.h>.
4457
b892d3c9
DR
44582009-04-27 David Reitter <david.reitter@gmail.com>
4459
35f5b128 4460 * nsfont.m (nsfont_open): Remove unused variable shrink.
b892d3c9
DR
4461 Remove commented-out code.
4462
9d0644c4
JB
44632009-04-26 Johan Bockgård <bojohan@gnu.org>
4464
4465 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
4466
b7053016
JR
44672009-04-25 Jason Rumney <jasonr@gnu.org>
4468
4469 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
4470
4e8231f3
YM
44712009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4472
4473 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
4474 Swap bytes in short integer if fringe bitmap width > 8.
4475
493dcf2c
KH
44762009-04-23 Kenichi Handa <handa@m17n.org>
4477
4478 * xfaces.c (Fx_list_fonts): If a font size is specified in
4479 PATTERN, set it in returned scalable fonts.
4480
401e9e57
CY
44812009-04-22 Chong Yidong <cyd@stupidchicken.com>
4482
708e05dc
CY
4483 * keyboard.c (Fset_input_meta_mode): Doc fix.
4484
4485 * dispnew.c (Fsend_string_to_terminal): Doc fix.
4486
1ac9108a 4487 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
708e05dc
CY
4488
4489 * coding.c (Fterminal_coding_system): Doc fix.
4490
4491 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
4492 (Fx_display_pixel_height, Fx_display_planes)
4493 (Fx_display_color_cells, Fx_server_max_request_size)
4494 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
4495 (Fx_display_mm_height, Fx_display_mm_width)
4496 (Fx_display_backing_store, Fx_display_visual_class)
1ac9108a
SM
4497 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
4498 Doc fixes, replacing "terminal id" with "terminal object".
708e05dc
CY
4499 (check_x_display_info): Handle terminal objects instead of
4500 terminal ids.
4501
401e9e57
CY
4502 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
4503 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
1ac9108a
SM
4504 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
4505 Doc fixes, replacing "terminal id" with "terminal object".
401e9e57 4506
df80c7f0
KH
45072009-04-21 Kenichi Handa <handa@m17n.org>
4508
5a8f12af 4509 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
c0a6070d 4510 (font_score): Check AVGWIDTH too.
908567ef 4511
df80c7f0
KH
4512 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
4513 worst case.
1ac9108a
SM
4514 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
4515 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
df80c7f0 4516
705af33f
JR
45172009-04-19 Jason Rumney <jasonr@gnu.org>
4518
4519 The following changes fix Bug#3005 for wide glyphs on each platform,
b71ac3dd 4520 without reintroducing Bug#1258 for stretch glyphs.
705af33f
JR
4521
4522 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
4523 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
4524 get_phys_cursor_geometry.
4525
b71ac3dd 4526 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
705af33f
JR
4527 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
4528 using get_phys_cursor_geometry.
4529
4530 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
4531 correctly calculated.
4532
dc2933eb
JD
45332009-04-19 Jan Djärv <jan.h.d@swipnet.se>
4534
1ac9108a
SM
4535 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
4536 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
dc2933eb
JD
4537 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
4538 is deprecated.
4539
973e7849
AS
45402009-04-18 Andreas Schwab <schwab@linux-m68k.org>
4541
4542 * font.c (font_put_frame_data): Use xfree instead of free.
4543
314d66f4
JB
45442009-04-17 Juanma Barranquero <lekktu@gmail.com>
4545
4546 * w32font.c (Qja, Qko): Remove declarations.
4547 (syms_of_w32font): Don't DEFSYM them.
4548
cf702558
CY
45492009-04-17 Chong Yidong <cyd@stupidchicken.com>
4550
4551 * font.c (Qja, Qko): Move definitions here from ftfont.c.
4552
4553 * font.h (Qja, Qko): Extern them.
4554
4555 * ftfont.c (Qja, Qko): Remove declarations.
4556
4557 * xfont.c (Qja, Qko): Remove declarations.
4558
b50504f5
KH
45592009-04-17 Kenichi Handa <handa@m17n.org>
4560
bde25748
KH
4561 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
4562 string from a vector to handle Latin-1 characters correctly.
4563
b50504f5
KH
4564 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
4565 entity even if the cache hits.
4566
f4646fff
AS
45672009-04-16 Andreas Schwab <schwab@linux-m68k.org>
4568
4569 * search.c (boyer_moore): Use zero as marker value for a possible
6340c70e 4570 match instead of depending on overflow behavior. (Bug#2844)
f4646fff 4571
e7deaab0
AS
4572 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
4573 * lisp.h: Adjust prototypes.
4574
0a0e7d49
CY
45752009-04-16 Chong Yidong <cyd@stupidchicken.com>
4576
4577 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
4578 change (Bug#3003).
4579
3c908a57
KH
45802009-04-16 Kenichi Handa <handa@m17n.org>
4581
1ac9108a 4582 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
bd0af90d
KH
4583
4584 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
4585 adstyle.
4586
4587 * ftfont.c (Qja, Qko): Don't make them static.
4588 (enum ftfont_cache_for): New enum.
4589 (fc_charset_table): Undo the previous change.
4590 (ftfont_get_latin1_charset): Delete it.
1ac9108a
SM
4591 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
4592 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
bd0af90d
KH
4593 non-scarable font, try to get AVERAGE_WIDTH.
4594 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
4595 Change ft_face_cache from a list of a hash-table. Don't check
4596 `ja' and `ko' adstyle here.
4597 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
4598 FTFONT_CACHE_FOR_CHARET.
4599 (ftfont_get_charset): Undo the previous change.
1ac9108a 4600 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
bd0af90d
KH
4601 (ftfont_close): Likewise.
4602 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
4603
4604 * font.c (font_sort_entites): Change the meaning of the arg
4605 BEST-ONLY. Don't optimize for VEC of lenght 1.
4606 (font_select_entity): Just return the value of font_sort_entites.
4607
4608 * xfaces.c (merge_face_vectors): Reflect font properties in
4609 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
4610 font_clear_prop if a face attribute doesn't change.
4611
3c908a57
KH
4612 * charset.h (charset_ksc5601): Extern it.
4613
4614 * charset.c (charset_ksc5601): New variable.
4615 (Fdefine_charset_internal): Set charset_ksc5601.
4616 (init_charset_once): Initialize charset_ksc5601 to -1.
4617
d65859c3
DN
46182009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
4619
4620 * fileio.c (history_delete_duplicates): Remove unused declaration.
4621
4622 * callint.c (history_delete_duplicates): New declaration.
4623 (Fcall_interactively): Remove command history duplicates when
4624 history_delete_duplicates is true.
4625
3ba010e5
EZ
46262009-04-14 Eli Zaretskii <eliz@gnu.org>
4627
4628 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
4629
06f19b91
KH
46302009-04-14 Kenichi Handa <handa@m17n.org>
4631
4632 * font.c (Ffont_info): Fix docstring. Fix the second element of
4633 the returned value (bug#2949).
4634
2cce8bfc
CY
46352009-04-14 Chong Yidong <cyd@stupidchicken.com>
4636
4637 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
4638
d156542d
KH
46392009-04-14 Kenichi Handa <handa@m17n.org>
4640
4641 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
4642 encoding charset is ascii_compatible.
4643
4644 * charset.c (Fdefine_charset_internal): Make charset
4645 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
4646 code_offset is 0, and covers all ASCII characters.
4647
86fa089e
SM
46482009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4649
4650 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
4651 (ns_string_to_pasteboard_internal):
4652 * nsmenu.m (process_dialog):
4653 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
4654 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
4655 * lisp.h (Fx_load_color_file): Declare.
4656
a8a3728b
KH
46572009-04-13 Kenichi Handa <handa@m17n.org>
4658
1ac9108a 4659 * font.c (font_delete_unmatched): Preserve the order of list elements.
a8a3728b
KH
4660 (font_select_entity): Suppress the code to optimize for the same
4661 kind of fonts.
4662 (font_load_for_lface): Get a font that supports at least ASCII
4663 characters.
4664
4665 * ftfont.c (Qja, Qko): New variables.
4666 (fc_charset_table): Delete uniquifier data for iso8859-1.
4667 (ftfont_get_latin1_charset): New function.
4668 (get_adstyle_property): New function.
4669 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
4670 bitmap fonts.
4671 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
4672 Delete iso-8859-1 range from the charset of fonts whose adstyle is
4673 `ko' or `ja'.
4674 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
1ac9108a 4675 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
a8a3728b
KH
4676 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
4677 property.
4678 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
4679 (syms_of_ftfont): DEFSYM Qja and Qko.
4680
483670b5
KH
46812009-04-09 Kenichi Handa <handa@m17n.org>
4682
12b55765
KH
4683 * charset.c (map_charset_chars): For a charset of `superset'
4684 method, fix calculation of code range.
4685
483670b5
KH
4686 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
4687 from the list of extra properties.
4688 (font_clear_prop): Be sure to delete `:name' font property.
4689
57d3b93b
KH
46902009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4691
b4b2c2ca
YM
4692 * dispnew.c (redraw_overlapping_rows): Fix detection of
4693 overlapping for topmost and bottommost rows.
4694
1ac9108a 4695 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
57d3b93b 4696
472c3609
JR
46972009-04-06 Jason Rumney <jasonr@gnu.org>
4698
4699 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
4700
ab193662
KH
47012009-04-06 Kenichi Handa <handa@m17n.org>
4702
4703 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
4704
4705 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
4706
0c26f026
KH
47072009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4708
4709 * ftfont.c (ftfont_open): Fix checking of the return value of
4710 FT_Load_Char. Fix setting font->underline_thickness.
4711
e173bbce
CY
47122009-04-04 Chong Yidong <cyd@stupidchicken.com>
4713
4714 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
4715 (Fterminal_parameters, Fterminal_parameter)
4716 (Fset_terminal_parameter): In doc string, refer to terminal
4717 objects rather than terminal ids.
4718
693a2698
EZ
47192009-04-04 Eli Zaretskii <eliz@gnu.org>
4720
4721 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
4722 ret_lim_data. (Bug#2867)
4723
d5221487
CY
47242009-04-03 Chong Yidong <cyd@stupidchicken.com>
4725
4726 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
4727 so they don't get wider than the window, matching 2006-01-23
4728 change to the partner function in xdisp.c (Bug#2800).
4729
223509a3
KH
47302009-04-03 Kenichi Handa <handa@m17n.org>
4731
4732 * print.c (print_object): Make each lowest sub_char_table start a
4733 new line (Bug#2866).
4734
74fcd0b1
KH
47352009-04-02 Kenichi Handa <handa@m17n.org>
4736
4737 * fontset.c (fontset_font): Record no-font when a fontset
4738 explicitly tells not to try another font-specs.
4739
c542407d
SM
47402009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
4741
4742 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
4743
e3869731
KH
47442009-03-30 Kenichi Handa <handa@m17n.org>
4745
d8d2f142
KH
4746 * fontset.c (fontset_from_font): Specify only registry in a
4747 font-spec for all characters supported by that registry.
4748
e3869731
KH
4749 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
4750 even if HAVE_M17N_FLT is not defined.
4751
5da5f805
CY
47522009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
4753
4754 * ftfont.c: Conditionalize prototyping and use of
4755 ftfont_variation_glyphs.
4756
ab226c50
SM
47572009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4758
9628fed7
SM
4759 * frame.c (delete_frame): Work around compiler bug.
4760
4761 * editfns.c (general_insert_function): Adjust to insdel.c changes.
4762 * insdel.c (prepare_to_modify_buffer, signal_before_change):
4763 Some more EMACS_INT.
4764 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
4765
4766 * xdisp.c (dump_glyph): Fix typo.
4767
ae19ba7c
SM
4768 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
4769 (adjust_markers_gap_motion, adjust_markers_for_delete)
4770 (adjust_markers_for_insert, adjust_point)
4771 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
4772 (make_gap, copy_text, count_size_as_multibyte, insert)
4773 (insert_and_inherit, insert_before_markers)
4774 (insert_before_markers_and_inherit, insert_1)
4775 (count_combining_before, count_combining_after, insert_1_both)
4776 (insert_from_string, insert_from_string_before_markers)
4777 (insert_from_string_1, insert_from_gap, insert_from_buffer)
4778 (insert_from_buffer_1, adjust_after_replace)
4779 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
4780 (replace_range_2, del_range, del_range_1, del_range_byte)
4781 (del_range_both, del_range_2, modify_region)
4782 (prepare_to_modify_buffer, signal_before_change)
4783 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
4784 for buffer positions and sizes.
4785 * lisp.h: Adjust prototypes accordingly.
4786
4787 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
4788 (non_regular_inserted, non_regular_nbytes, read_non_regular)
4789 (Finsert_file_contents): Use EMACS_INT for buffer positions.
4790
ab226c50
SM
4791 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
4792
46dfb8fb
JD
47932009-03-27 Jan Djärv <jan.h.d@swipnet.se>
4794
4795 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
4796 lines and columns so we keep the same pixel height and width.
4797
4798 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
4799 the property _NET_WM_STATE has changed.
46dfb8fb
JD
4800 (x_handle_net_wm_state): New function to update frame parameter
4801 fullscreen.
4802 (x_term_init): Initialize atoms for _NET_WM_STATE.
4803
4804 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
4805
d347e494
SM
48062009-03-27 Kevin Ryde <user42@zip.com.au>
4807
4808 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
4809 Gpm_GetEvent as an error that justifies closing the filedescriptor.
4810 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
4811 (Fgpm_mouse_stop): Pass that new parameter.
4812 * termhooks.h (close_gpm): Adjust prototype.
4813
84db11d6
SM
48142009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4815
c95a5008
SM
4816 * lisp.h (Fx_focus_frame): Declare.
4817
84db11d6
SM
4818 * callint.c (Fcall_interactively): For '^' just delegate the work to
4819 handle-shift-selection.
4820 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
4821
0a1958d6
CY
48222009-03-24 Chong Yidong <cyd@stupidchicken.com>
4823
0bfdff23
CY
4824 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
4825
0a1958d6
CY
4826 * data.c (Qinteractive_form): New variable.
4827 (Finteractive_form): Use it.
4828
4829 * eval.c (Fcommandp): Use Qinteractive_form.
4830
58aec0d6
JR
48312009-03-24 Jason Rumney <jasonr@gnu.org>
4832
4833 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
4834 Calculate total size precisely. Decode environment variables
4835 before substituting. (Bug#38)
4836
553dd618
KH
48372009-03-24 Kenichi Handa <handa@m17n.org>
4838
4839 * font.c (find_font_encoding): Return Qnil for unsupported
639239cf 4840 encoding (Bug#2722).
553dd618 4841
c39ea606
JD
48422009-03-23 Jan Djärv <jan.h.d@swipnet.se>
4843
4844 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
4845 that gdpy is set.
4846
bc9b2b5e
AM
48472009-03-22 Alan Mackenzie <acm@muc.de>
4848
4849 * callint.c (Finteractive): Clarify the doc string - even
4850 promptless elements need \n separators.
4851
9f995a76
JR
48522009-03-22 Jason Rumney <jasonr@gnu.org>
4853
4854 * w32term.c (syms_of_w32term): Doc fix for
4855 x-use-underline-position-properties.
4856
22749e9a
EZ
48572009-03-21 Eli Zaretskii <eliz@gnu.org>
4858
4859 * w32.c (getpwuid): Change argument type to unsigned.
4860 (struct w32_id): Change type of `rid' member to unsigned.
4861 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
4862 argument ID to unsigned. All callers changed.
4863 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
4864
e00553bf
EZ
48652009-03-20 Eli Zaretskii <eliz@gnu.org>
4866
4867 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
4868 negative, produce a float value.
4869
4870 * dired.c (make_uid, make_gid): New functions.
4871 (Ffile_attributes): Use them to avoid negative UID and GID.
4872
f761d6b6
JB
48732009-03-20 Juanma Barranquero <lekktu@gmail.com>
4874
4875 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
4876 (syms_of_keyboard) <command-hook-internal, input-method-function>:
4877 Fix typos in docstrings.
4878
d507f8d7
KH
48792009-03-19 Kenichi Handa <handa@m17n.org>
4880
4881 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
f761d6b6
JB
4882 changed, use font_load_for_lface to get a new font object.
4883 Call free_realized_fontset after handling ASCII font change.
d507f8d7
KH
4884
4885 * frame.c (x_set_font): Handle the case that ARG is a cons.
4886
c68845e0
GM
48872009-03-19 Glenn Morris <rgm@gnu.org>
4888
4889 * fileio.c (Fsubstitute_in_file_name): Doc fix.
4890
bfa49dd1
CY
48912009-03-19 Chong Yidong <cyd@stupidchicken.com>
4892
4893 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
4894
8458d4c1
KH
48952009-03-19 Kenichi Handa <handa@m17n.org>
4896
4897 * charset.c (load_charset_map_from_file): When a mapfile can't be
4898 loaded, signal an error.
4899
78e7d1fe
EZ
49002009-03-18 Eli Zaretskii <eliz@gnu.org>
4901
4902 * dired.c (Ffile_attributes): Make sure UID and GID are always
4903 positive, even if the value is too large for a positive EMACS_INT.
4904 Doc fix.
4905
4906 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
4907
5da9fdfa
YM
49082009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4909
4910 * xmenu.c (xdialog_show): Move Fredisplay call ...
4911 (Fx_popup_dialog): ... here.
4912
7519c40d
SM
49132009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
4914
4915 * dired.c (file_name_completion): Disable the first optimization just
4916 installed, since it is not implemented correctly.
4917
2cd298e2
SM
49182009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
4919
4920 * dired.c (file_name_completion): Check completion-ignored-extensions
c95a5008 4921 only if the entry can affect bestmatch.
2cd298e2
SM
4922 Stop the search early, as Ftry_completion already does.
4923
48d37adf
CY
49242009-03-17 Chong Yidong <cyd@stupidchicken.com>
4925
e10c9c93 4926 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
48d37adf 4927
9286b16a
CY
49282009-03-15 Chong Yidong <cyd@stupidchicken.com>
4929
4930 * keyboard.c (parse_menu_item): Don't display remappings as menu
4931 equivalent bindings (Bug#788).
4932
f7b146dc
JR
49332009-03-15 Jason Rumney <jasonr@gnu.org>
4934
4935 * w32term.h (WM_EMACS_PAINT): New message.
4936 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
4937 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
4938 before passing to lisp thread. (Bug#950)
4939
f761d6b6 49402009-03-14 David Reitter <david.reitter@gmail.com>
c6c62e78 4941
d93f9575
CY
4942 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
4943 variable as it was never reset.
4944 (ns_term_init): Remove initialization of Lisp-settable defaults
4945 and ns_expand_space.
4946 (-setPanelFromDefaultValues): Remove ns_expand_space.
4947 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
4948 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
c6c62e78
DR
4949 i.e. no additional spacing, similar to Carbon port.
4950
d93f9575
CY
4951 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
4952 * nsfns.m (ns-popup-prefs-panel): Remove.
c6c62e78 4953
305018ec
JD
49542009-03-14 Jan Djärv <jan.h.d@swipnet.se>
4955
4956 * sound.c (alsa_configure): Remove call to deprecated
4957 snd_pcm_sw_params_set_xfer_align.
4958
f761d6b6 49592009-03-14 Stephen Berman <stephen.berman@gmx.net>
4a02423f
JD
4960
4961 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
4962 after clicking in a detached tool bar.
4963 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
4964
46e722a9
SM
49652009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
4966
348db3dd
SM
4967 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
4968 int/Lisp_Object mixup).
46e722a9 4969
a3d16f39
KH
49702009-03-13 Kenichi Handa <handa@m17n.org>
4971
4972 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
fe24f56a 4973 Handle NAME nil and t correctly. Callers changed.
a3d16f39
KH
4974 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
4975 (set_fontset_font): Change ARG to a vector. Handle range_list in
4976 ARG correctly.
4977 (Fset_fontset_font): Fix the case that TARGET is both a script
fe24f56a 4978 name and charset name. Adjust the arg to set_fontset_font for
a3d16f39
KH
4979 the above change.
4980 (fontset_from_font): Fix previous change.
fe24f56a 4981 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
a3d16f39
KH
4982 entry. If FONTSET is the default fontset, don't set the extra
4983 slot of the returning char-table.
4984
b066e6b6
JB
49852009-03-12 Juanma Barranquero <lekktu@gmail.com>
4986
4987 * nsfns.m (Fx_close_connection): Doc fix.
4988 (Fns_do_applescript): Reflow docstring.
4989 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
4990 (Fx_display_pixel_width, Fx_display_pixel_height)
4991 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
4992 Fix typos in docstrings.
4993 (Fns_set_alpha): Fix typos in error messages.
4994
d472514e 49952009-03-12 David Reitter <david.reitter@gmail.com>
d6220c13 4996
d472514e 4997 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
d6220c13
DR
4998 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
4999 were used for such events.
5000
d472514e
JB
5001 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
5002 (toggleToolbar, performDragOperation, runHelp): Use it.
d6220c13 5003
d472514e 5004 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
d6220c13
DR
5005 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
5006
fb930676
KH
50072009-03-11 Kenichi Handa <handa@m17n.org>
5008
ff85581a
KH
5009 * font.h (font_open_by_spec): Extern it.
5010
c50b7e98
KH
5011 * font.c (font_open_by_spec): New function.
5012 (font_open_by_name): Use font_open_by_spec.
5013
fb930676
KH
5014 * frame.c (x_set_font): When ARG is a font-object, don't alter the
5015 fontset of the frame.
5016
5017 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
5018 modify the default font of frames that use this fontset.
5019 (num_auto_fontsets): New variable.
5020 (fontset_from_font): Use num_auto_fontsets to decide a fontset
5021 name. Be sure to set FONTSET_ASCII to the correct font name.
5022 (update_auto_fontset_alist): New function.
5023
df4e8455
JB
50242009-03-11 Juanma Barranquero <lekktu@gmail.com>
5025
5026 * makefile.w32-in: Update dependencies.
5027
0a375797
AR
50282009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
5029
5030 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
5031
61313fa3
SM
50322009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
5033
5034 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
5035
b55103fb
CY
50362009-03-10 Chong Yidong <cyd@stupidchicken.com>
5037
5038 * lread.c (Feval_buffer): Doc fix.
5039
dde2559c
KH
50402009-03-09 Kenichi Handa <handa@m17n.org>
5041
5042 * charset.c (Qfile_name_handler_alist): Extern it.
5043 (load_charset_map_from_file): Temporarily bind
5044 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
5045
df4e8455 50462009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
340e08a4 5047
47f588bb
GM
5048 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
5049 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
340e08a4 5050
4ddf94bd
AR
50512009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
5052
4c9bdfc2
AR
5053 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
5054 (x_set_window_size): Change back to calculated method of setting
5055 toolbar height under Cocoa. (Bug#2546)
4ddf94bd
AR
5056 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
5057 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
5058
fe41ae9e
AR
5059 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
5060
4c9bdfc2
AR
5061 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
5062 accelerator in parens under GNUstep.
5063
825d0875
KH
50642009-03-06 Kenichi Handa <handa@m17n.org>
5065
5066 These changes are to detect incorrect composition sequence without
f3b3be74 5067 looking ahead the source. (Bug#2370)
825d0875
KH
5068
5069 * coding.h: Include "composite.h".
5070 (enum compisition_state): New enum.
5071 (struct compisition_status): New struct.
5072 (struct iso_2022_spec): New member cmp_status.
5073 (struct emacs_mule_spec): New struct.
5074 (struct coding_system): New members ctext_extended_segment_len and
5075 embedded_utf_8. Change the union member
5076 spec.emacs_mule_full_support to spec.emacs_mule.
5077
5078 * coding.c (CODING_ISO_CMP_STATUS): New macro.
5079 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
98a326f7 5080 (MAX_ANNOTATION_LENGTH): Define to 5.
825d0875
KH
5081 (ADD_COMPOSITION_DATA): New arg nbytes.
5082 (emacs_mule_char): New arg cmp_status.
5083 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
5084 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
5085 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
5086 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
5087 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
5088 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
5089 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
5090 (EMACS_MULE_COMPOSITION_END): New macro.
5091 (emacs_mule_finish_composition): New function.
5092 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
5093 (decode_coding_emacs_mule): Avoid long looking ahead while
5094 handling composition.
5095 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
5096 (ENCODE_COMPOSITION_RULE): New macro.
5097 (finish_composition): New function.
5098 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
5099 (DECODE_COMPOSITION_START): New implementation.
5100 (DECODE_COMPOSITION_END): Likewise.
5101 (STORE_COMPOSITION_RULE): New macro.
5102 (decode_coding_iso_2022): Avoid long looking ahead while handling
5103 composition, CTEXT extended segment, and embedded UTF-8.
5104 (setup_coding_system): For a coding of type iso-2022, reset
5105 CODING_ISO_EXTSEGMENT_LEN (coding) and
5106 CODING_ISO_EMBEDDED_UTF_8 (coding).
5107 (get_translation): Delete arguments last_block, from_nchars,
5108 to_nchars. Callers changed.
5109 (produce_chars): Don't modify charbuf. Adjusted for the change of
5110 get_translation.
98a326f7 5111 (produce_composition): Adjust for the new annotation sequence.
825d0875 5112 (handle_composition_annotation): Likewise.
98a326f7 5113 (consume_chars): Adjust for the change of get_translation.
825d0875 5114
ccbc4452
AR
51152009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
5116
4ddf94bd 5117 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
ccbc4452 5118
988a7ddb
KH
51192009-03-05 Kenichi Handa <handa@m17n.org>
5120
5121 * font.c (font_select_entity): New function.
5122 (font_find_for_lface): Use font_select_entity to select a font.
5123
5124 * fontset.c (fontset_find_font): If a font found without
a8a3728b 5125 restricting to the characters C doesn't support C, try to find a
988a7ddb
KH
5126 font with C restriction.
5127
98a326f7 51282009-03-04 Nikolaj Schumacher <me@nschum.de>
2f462d73 5129
be1bce46 5130 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
2f462d73 5131
10ea2b82
JR
51322009-03-04 Jason Rumney <jasonr@gnu.org>
5133
2c93b248 5134 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
4891ba1d 5135 characters that have already been read. (Bug#2569)
2c93b248 5136
10ea2b82
JR
5137 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
5138 Log an error message if check_image_size failed.
5139 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
4891ba1d 5140 (gs_load): Mention max-image-size in size error message. (Bug#2560)
10ea2b82 5141
71a0c011
EZ
51422009-03-02 Eli Zaretskii <eliz@gnu.org>
5143
5144 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
5145 when decoding process output.
5146
2f63bba8
RS
51472009-03-01 Richard M Stallman <rms@gnu.org>
5148
5149 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
5150
5151 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
5152
0a9564cb
EZ
51532009-02-28 Eli Zaretskii <eliz@gnu.org>
5154
5155 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
5156 (decode_coding_emacs_mule, decode_coding_iso_2022)
5157 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
5158 (decode_coding_raw_text, decode_coding_charset)
5159 (setup_coding_system, decode_eol, decode_coding, consume_chars):
5160 Honor inhibit-eol-conversion. (Bug #2186)
5161
449148b3
JR
51622009-02-28 Jason Rumney <jasonr@gnu.org>
5163
5164 * coding.c (detect_coding_charset): If not checking latin extra,
5165 fail on characters between 0x80 and 0xA0. (Bug#2354)
5166
a4aee864
EZ
51672009-02-28 Eli Zaretskii <eliz@gnu.org>
5168
5169 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
2a1573ff 5170 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
a4aee864 5171
d88bee5a
GM
51722009-02-27 Glenn Morris <rgm@gnu.org>
5173
5174 * callint.c (Finteractive): Doc fix.
5175
a808f22d
KH
51762009-02-27 Kenichi Handa <handa@m17n.org>
5177
5178 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
5179
caf8d60c
CY
51802009-02-27 Chong Yidong <cyd@stupidchicken.com>
5181
5182 * font.c (font_style_to_value): Set value for unknown symbols to
5183 100 instead of 255.
b61137ea
CY
5184 (weight_table, slant_table, width_table): Treat "unspecified" as
5185 the default value.
caf8d60c 5186
1a0de25c
JB
51872009-02-26 Juanma Barranquero <lekktu@gmail.com>
5188
5189 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
5190
8fc45744
JB
51912009-02-25 Juanma Barranquero <lekktu@gmail.com>
5192
107bd7d1
JB
5193 * lread.c (Fload): Stop checking Vloads_in_progress and signal
5194 error as soon as a recursive load is detected.
8fc45744 5195
f097e223
AR
51962009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
5197
5198 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
5199 before caching.
5200
8810a12f
KH
52012009-02-24 Kenichi Handa <handa@m17n.org>
5202
5203 * fontset.c (fontset_find_font): Fix the condition for checking
5204 unavailable font.
5205
2c7d1565
GM
52062009-02-24 Glenn Morris <rgm@gnu.org>
5207
5208 * xfaces.c (Finternal_set_font_selection_order): Remove leading
5209 whitespace that confuses documentation.
5210
a20878b6
MB
52112009-02-23 Miles Bader <miles@gnu.org>
5212
5213 * process.c (Flist_system_processes, Fprocess_attributes)
5214 (syms_of_process): Rename `system-process-attributes' to
5215 `process-attributes'.
5216
b3b58c01
AS
52172009-02-22 Andreas Schwab <schwab@linux-m68k.org>
5218
1b3b981b
AS
5219 * coding.h (struct coding_system): Make safe_charsets a pointer to
5220 unsigned char.
5221 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
5222 being 255.
5223 (SAFE_CHARSET_P): Likewise.
5224 (setup_iso_safe_charsets): Properly setup safe_charsets.
5225 (Fdefine_coding_system_internal): Likewise.
5226 (setup_coding_system): Likewise. Remove unneeded casts.
5227 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
5228 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
5229 unneeded casts.
5230
b3b58c01
AS
5231 * insdel.c (del_range_2): Don't modify gap contents when called
5232 from decode_coding_object. (Bug#1809)
5233
0b6f228c
CY
52342009-02-21 Chong Yidong <cyd@stupidchicken.com>
5235
5236 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
5237 Qfont_object.
5238 (Ftype_of): Recognize font objects.
5239
5240 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
5241
5242 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
5243 moved to data.c.
5244
52f8870b
AR
52452009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
5246
5247 * nsterm.m (x_make_frame_invisible): Unset async_visible,
5248 async_iconified. Based on a patch by Christian Lynbech
5249 <christian.lynbech@tieto.com>.
5250 (EmacsView-windowDidMiniaturize:): Unset async_visible.
5251
7087d5e9
GM
52522009-02-20 Glenn Morris <rgm@gnu.org>
5253
5254 * syntax.c (Fskip_chars_forward): Fix doc typo.
5255
41d2ceef
CY
52562009-02-20 Chong Yidong <cyd@stupidchicken.com>
5257
5258 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
5259
1a3b7ca6
CY
52602009-02-19 Chong Yidong <cyd@stupidchicken.com>
5261
5262 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
5263
73cce38d
KH
52642009-02-19 Kenichi Handa <handa@m17n.org>
5265
5266 * coding.c (detect_coding): Preserve coding->mode.
2bc550cb 5267 Don't overflow coding->carryover. (Bug#2370)
73cce38d 5268
a51092ee
DN
52692009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
5270
5271 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
5272
c423ecca
KH
52732009-02-18 Kenichi Handa <handa@m17n.org>
5274
5275 * font.c (font_check_otf_features): Fix handling of `nil' element.
5276 (Ffont_spec): Describe :lang and :otf in the docstring.
5277
4c1958f4
AS
52782009-02-16 Andreas Schwab <schwab@suse.de>
5279
5280 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
5281 string.
5282
5704f39a
KH
52832009-02-16 Kenichi Handa <handa@m17n.org>
5284
5285 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
a057d86a 5286 (Bug#1723)
5704f39a 5287
8f0085aa
CY
52882009-02-14 Chong Yidong <cyd@stupidchicken.com>
5289
a057d86a 5290 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
8f0085aa
CY
5291
5292 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
5293 (handle_line_prefix): Suppress wrapping of wrap prefixes.
5294
aff01dd9
EZ
52952009-02-14 Eli Zaretskii <eliz@gnu.org>
5296
5297 * msdos.c (MAX_SCREEN_BUF): New macro.
5298 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
5299 Encode the entire run of glyphs sharing the same face, instead of
5300 doing that one glyph at a time (fixes a bug with displaying
5301 double-size characters).
5302
ba301db3
AR
53032009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
5304
5305 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
5306
5307 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
5308 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
a057d86a 5309 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
ba301db3
AR
5310
5311 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
a057d86a 5312 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
ba301db3 5313
51d861de
SM
53142009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
5315
ac146f82 5316 * keyboard.c (adjust_point_for_property): Allow stopping between two
51d861de
SM
5317 invisible areas.
5318
7fed8996
JR
53192009-02-12 Jason Rumney <jasonr@gnu.org>
5320
631ea4fb
JR
5321 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
5322 (add_font_entity_to_list): Call check_face_name even when family
5323 is unspecified.
5324
cb4a3e42
JR
5325 * w32term.c (x_display_pixel_height, x_display_pixel_width):
5326 Release DC when finished. Use NULL window to refer to desktop.
631ea4fb 5327 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
cb4a3e42 5328
7fed8996 5329 * w32font.c (add_font_entity_to_list): Fix check for substituted
631ea4fb 5330 raster fonts. (Bug#2219)
7fed8996 5331
895416e3
KH
53322009-02-12 Kenichi Handa <handa@m17n.org>
5333
5334 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
5335 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
5336 (autocmp_chars): Use fast_looking_at. Don't compose more
1dacf998 5337 characters than MAX_COMPOSITION_COMPONENTS.
895416e3
KH
5338 (find_automatic_composition): While looking forward and backward,
5339 check static composition. Fix where to stop looking forward.
5340 (composition_adjust_point): Fix checking of static composition.
5341 (Fcomposition_get_gstring): Pay attention to
1dacf998 5342 MAX_COMPOSITION_COMPONENTS.
895416e3
KH
5343
5344 * lisp.h (fast_looking_at): Extern it.
5345
5346 * search.c (fast_looking_at): New function.
5347
51d861de 5348 * term.c (encode_terminal_code): Adjust for the change of
895416e3
KH
5349 <struct glyph>.u.cmp.to.
5350 (append_composite_glyph): Likewise.
5351
51d861de 5352 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
895416e3
KH
5353 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
5354 composition.
51d861de 5355 (append_composite_glyph): Adjust for the change of
895416e3
KH
5356 <strcut glyph>.u.cmp.to.
5357
8510724d
JB
53582009-02-11 Juanma Barranquero <lekktu@gmail.com>
5359
5360 * casetab.c (init_casetab_once):
5361 * coding.c (ALLOC_CONVERSION_WORK_AREA):
5362 * font.c (font_update_lface):
5363 * fontset.c (Fnew_fontset):
5364 * ftfont.c (ftfont_drive_otf):
5365 * xfont.c (xfont_open):
5366 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
5367
294fa707
SM
53682009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5369
5370 * fileio.c (Fwrite_region): !NILP -> CONSP.
5371
b5bfebec
AS
53722009-02-10 Andreas Schwab <schwab@suse.de>
5373
5374 * process.c (send_process): Properly relocate pointer into data
adab88bd 5375 when using encoded data. (Bug#2272)
b5bfebec 5376
cb84a2be
KH
53772009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
5378
5379 * coding.c (detect_coding_charset): Fix previous change.
5380
89e09428
JR
53812009-02-08 Jason Rumney <jasonr@gnu.org>
5382
5383 * w32fns.c (w32_hide_hourglass): Handle case where frame
adab88bd 5384 disappeared while hourglass was displayed. (Bug #2193)
89e09428 5385
4470a277
AS
53862009-02-07 Andreas Schwab <schwab@suse.de>
5387
5388 * unexelf.c (unexec): Fix error message.
5389
3175b12a
AR
53902009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
5391
5392 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
adab88bd 5393 when modal window is active. (Bug #2152)
3175b12a
AR
5394 (applicationShouldTerminate:): Remove now-unneeded while loop
5395 around NSRunAlertPanel.
5396
5397 * nsmenu.m (popupSession): New file-global variable.
5398 (pop_down_menu): End the popupSession before closing dialog.
5399 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
5400 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
5401 don't query NSApp for events (just sleep instead).
5402
8434d0b8
EZ
54032009-02-07 Eli Zaretskii <eliz@gnu.org>
5404
51d861de
SM
5405 * coding.c (syms_of_coding) <translation-table-for-input>:
5406 Modify doc string to discourage use for character code unification.
8434d0b8 5407
aa82edfd
CY
54082009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5409
5410 * atimer.c (run_timers): Update pending_atimers.
5411
2d283c7c
CY
54122009-02-06 Chong Yidong <cyd@stupidchicken.com>
5413
eb306cab
CY
5414 * image.c (svg_load_image): Fix last change.
5415
2d283c7c
CY
5416 * xfns.c (Fx_create_frame): Signal an error if no font is
5417 found (Bug#2147).
5418
4d8e170e
JB
54192009-02-05 Juanma Barranquero <lekktu@gmail.com>
5420
5421 * character.c (syms_of_character) <script-representative-chars>:
5422 Fix typo in docstring.
5423
c96169a0
AR
54242009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
5425
5426 * nsmenu.m (pop_down_menu): New function.
5427 (ns_popup_dialog): Call it on unwind.
5428 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
5429 call timer_check() (Bug#2154).
5430 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
5431 handling_signal is set.
5432 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
5433
31fd7c5c 5434 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
c96169a0
AR
5435
5436 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
5437
5438 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
5439
51d861de
SM
5440 * keyboard.c (poll_for_input_1, handle_async_input):
5441 Set handling_signal under HAVE_NS.
c96169a0 5442
aacd8ba1
GM
54432009-02-04 Glenn Morris <rgm@gnu.org>
5444
5445 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
5446
4cb75c4b
KH
54472009-02-04 Kenichi Handa <handa@m17n.org>
5448
5449 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
5450
5451 * charset.c (Fchar_charset): New optional arg restriction.
5452
5453 * coding.h (coding_system_charset_list): Extern it.
5454
5455 * coding.c (coding_system_charset_list): New function.
5456
5457 * composite.c: Include coding.h and termhooks.h.
5458 (composition_gstring_p): Fix for the terminal case.
5459 (composition_gstring_width): Likewise.
5460 (fill_gstring_body): Likewise.
5461 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
5462 the frame.
5463 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
5464 is within a composition.
867d4bb3 5465 (Fcomposition_get_gstring): Fix the terminal case.
4cb75c4b
KH
5466
5467 * term.c (encode_terminal_code): Fix handling of composition.
5468 (produce_composite_glyph): For static composition, get pixel_width
5469 from struct composition.
5470
826ba17e
AS
54712009-02-02 Andreas Schwab <schwab@suse.de>
5472
5473 * unexelf.c (unexec): Handle unaligned bss offset.
5474
8ad093db
AR
54752009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
5476
5477 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
5478 XT,w32read_socket changes to ns_read_socket.
d0a76a6e 5479
8ad093db
AR
5480 * keyboard.c (handle_interrupt): Don't call
5481 quit_throw_to_read_char() under NS.
d0a76a6e 5482
8ad093db
AR
5483 * blockinput.h: Remove NS-specific code.
5484
4d18a7a2
DN
54852009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
5486
db878925
DN
5487 * dispnew.c (window_change_signal): Don't try to get the size of a
5488 suspended tty frame.
5489 * term.c (Fresume_tty): Resize if the size has changed while the
5490 tty was suspended.
5491
4d18a7a2
DN
5492 * alloc.c (mark_stack): Properly conditionalize previous change.
5493
8984df7c
JB
54942009-01-30 Juanma Barranquero <lekktu@gmail.com>
5495
5496 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
5497 * w32term.c (w32_read_socket) [SYNC_INPUT]:
5498 Remove; this code is not used on Windows.
5499
75f4f1ac
EZ
55002009-01-30 Eli Zaretskii <eliz@gnu.org>
5501
5502 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
5503 EOLs that also has stray ^M characters.
5504
07a1e794
JB
55052009-01-30 Juanma Barranquero <lekktu@gmail.com>
5506
5507 * atimer.c (run_timers, alarm_signal_handler):
5508 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
5509 * w32inevt.c (w32_console_read_socket):
5510 * w32term.c (w32_read_socket):
5511 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
5512
a8b11cc9
CY
55132009-01-30 Chong Yidong <cyd@stupidchicken.com>
5514
5515 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
5516 Initialize it as a relative filename pattern.
5517 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
5518 (Fcall_process_region): Simplify temp file creation using
5519 temporary-file-directory.
5520
c279587b
EZ
55212009-01-29 Eli Zaretskii <eliz@gnu.org>
5522
5523 * msdos.c: Rename pending_signals to msdos_pending_signals.
5524 (sig_suspender, sigprocmask): Adjust.
5525
a8fe3242
CY
55262009-01-29 Chong Yidong <cyd@stupidchicken.com>
5527
5528 * keyboard.c (pending_signals): New var.
5529 (poll_for_input, input_available_signal, init_keyboard): Set it.
5530 (process_pending_signals): New function.
5531
5532 * lisp.h (QUIT): Check pending_signals instead of
5533 interrupt_input_pending. Use process_pending_signals.
5534
51d861de 5535 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
a8fe3242 5536
51d861de 5537 * process.c (wait_reading_process_output): Use process_pending_signals.
a8fe3242
CY
5538
5539 * sysdep.c (emacs_write): Use process_pending_signals.
5540
5541 * xterm.c (XTread_socket): Update pending_signals.
5542
5543 * w32term.c (w32_read_socket): Update pending_signals.
5544
5545 * w32inevt.c (w32_console_read_socket): Update pending_signals.
5546
6570a1c4
KH
55472009-01-29 Kenichi Handa <handa@m17n.org>
5548
5549 * xftfont.c (xftfont_has_char): New function.
5550 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
5551
d72a4afa
AR
55522009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
5553
5554 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
5555 under GNUstep.
5556 (ns_query_color): New declaration.
5557
5558 * nsterm.m (ns_confirm_quit): New variable.
5559 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
5560 (EmacsApp-applicationShouldTerminate:): Use it.
5561 (EmacsPrefsController): Let user set it.
5562 (ns_query_color): New function.
5563 (ns_defined_color): Use it.
5564 (ns_initialize): Drop.
5565 (ns_term_init): Add two lines from ns_initialize(), and set
5566 input_interrupt_mode to nil.
5567
5568 * image.c (svg_load_image): Don't right-shift background RGB when
6af84d77 5569 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
d72a4afa 5570
9fe78804
KH
55712009-01-28 Kenichi Handa <handa@m17n.org>
5572
5573 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
f088b054
KH
5574 (fontset_get_font_group): Remember that no font-group is specified
5575 for C.
9fe78804 5576
fa57de36
CY
55772009-01-27 Chong Yidong <cyd@stupidchicken.com>
5578
930600e9
CY
5579 * fns.c (concat): Check for string overflow (bug#1787).
5580
fa57de36
CY
5581 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
5582 Quadruple undo limits (bug#1501).
5583
7179ce7b
KH
55842009-01-27 Kenichi Handa <handa@m17n.org>
5585
5586 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
5587 directly use GT_Get_Char_index.
5588
5589 * xftfont.c (struct xftfont_info): New member `index'.
5590
5591 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
51d861de 5592 (Ffontset_font): Adjust for the change of fontset entry.
7179ce7b 5593
5be8fcc0
CY
55942009-01-26 Kenichi Handa <handa@m17n.org>
5595
5596 * fontset.c (fontset_find_font): Fix handling of non-cons return
5597 value of fontset_get_font_group.
5598 (fontset_font): Revert last change.
5599
19ae3e61
JR
56002009-01-26 Jason Rumney <jasonr@gnu.org>
5601
5602 * w32font.c (w32font_list_internal): Return quickly if registry is
5603 unknown. Simplify final return.
5604 (add_font_entity_to_list): Break complex logic down into more
5605 manageable chunks. Move unknown registry check to
5606 w32font_list_internal.
5607
8612b71a
AR
56082009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
5609
5610 Changes to remove Feval calls from GUI under NS.
5611
d8038940
JB
5612 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
5613 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
8612b71a
AR
5614 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
5615
5616 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
5617 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
5618 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
5619 instead of NON_ASCII_KEYSTROKE_EVENT.
5620 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
5621 (EmacsApp-applicationShouldTerminate:): Query user.
5622 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
5623 instead of Feval.
5624
5625 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
5626
5627 * keyboard.c (kbd_buffer_get_event): Check for it.
5628 (keys_of_keyboard): Define lispy keys for
5629 ns-put/unput-working-text.
5630
5631 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
5632 versions.
5633 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
5634
6288ae55
CY
56352009-01-25 Chong Yidong <cyd@stupidchicken.com>
5636
5637 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
64cc3cf6 5638 setting current_buffer directly. (Bug#2044)
6288ae55 5639
289e7f8f
CY
56402009-01-24 Chong Yidong <cyd@stupidchicken.com>
5641
5ce87308 5642 * fontset.c (fontset_font): If we know there is no font, don't do
d8038940 5643 any work. (Bug#1952, bug#1990).
5ce87308 5644
64cc3cf6 5645 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
289e7f8f 5646
b3243e6f
AR
56472009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
5648
5649 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
d900b2af
AR
5650 (ns_no_defaults): New declaration.
5651 (main): Use it.
e0d2e69a 5652
d900b2af 5653 * nsterm.h (ns_no_defaults): New declaration.
e0d2e69a 5654
d900b2af 5655 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
e0d2e69a 5656
d900b2af
AR
5657 * nsterm.m (ns_no_defaults): New variable.
5658 (ns_initialize): Don't read defaults when ns_no_defaults.
5659 (EmacsView-readSelectionFromPasteboard:)
5660 (writeSelectionToPasteboard:types:): New stubbed-out methods for
d8038940 5661 NSServicesRequests protocol. (Bug#1435)
27521ca6
AR
5662 (ns_dumpglyphs_stretch): New function.
5663 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
d8038940 5664 of 2008-11-15 to other terms. (Bug#615)
b3243e6f 5665
e0d2e69a
AR
5666 * nsimage.m (setPixmapData:): Set to ignore image DPI.
5667
3ac71f5d
CY
56682009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
5669
5670 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
5671 call for Sparc64.
5672
3fe53a83
AR
56732009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
5674
5675 * nsfns.m:
5676 * nsgui.h:
5677 * nsmenu.m:
5678 * nsselect.m:
5679 * nsterm.h:
5680 * nsterm.m: Remove '23' comments that indicated code added during
5681 update from emacs-20 -> emacs-23.
5682
10f87c6f 56832009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
a3b53a85
AR
5684
5685 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
3a88a825 5686 ns_alternate_modifier. (Bug#1217)
a3b53a85 5687
c7cef62d
AR
5688 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
5689 Display all shortcuts, including those w/o super modifier.
5690
575fb8bd
AR
5691 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
5692
918b848b
CY
56932009-01-22 Chong Yidong <cyd@stupidchicken.com>
5694
5695 * fileio.c (Vwrite_region_post_annotation_function)
5696 (Vwrite_region_annotation_buffers): New vars.
5697 (build_annotations_unwind): Just reset
5698 Vwrite_region_annotation_buffers.
5699 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
5700 Call write-region-post-annotation-function.
5701 (build_annotations): Add to Vwrite_region_annotation_buffers if
5702 buffer changes.
5703
a39e2539
AR
57042009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
5705
5706 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
5707 Tiger.
51d861de
SM
5708 * nsfns.m (ns_do_applescript):
5709 Conditionalize typeUTF16ExternalRepresentation on Tiger.
a39e2539 5710
35ed44db
AR
57112009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
5712
5713 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
5714
cbe0b5bf
AR
57152009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
5716
5717 * nsmenu.m (NSMENUPROFILE): Change #if style.
4c7077c3 5718
6049d3a0
AR
5719 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
5720
5721 * nsterm.m (x_set_frame_alpha): Add prototype.
a9b4df69
AR
5722 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
5723 handle Ctrl-tab. (Bug#1841)
5724 (ns_get_color): Use unsigned long long for scanned hex string value.
5725 (ns_term_shutdown): Abort on non SIGTERM signals.
e889fa06 5726 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
b71ac3dd 5727 (EmacsPrefsController-setPanelFromDefaultValues): New function.
3a88a825 5728 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
35ed44db 5729 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
d3810c21 5730 (ns_defined_color): Fix settings of the XColor variable fields:
3a88a825 5731 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
cbe0b5bf 5732
d3810c21 5733 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
3a88a825 5734 DPI. (Bug#1316)
d3810c21
AR
5735 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
5736 values in onTiger section.
4c7077c3 5737
e301e634
CY
57382009-01-19 Chong Yidong <cyd@stupidchicken.com>
5739
7f82490b
CY
5740 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
5741 Check return value of font_spec_from_name.
64cc3cf6 5742 (Fx_list_fonts): Doc fix. (Bug#1951)
7f82490b
CY
5743
5744 * font.c (font_spec_from_name): Return Qnil if font name could not
5745 be parsed.
5746 (font_parse_name): Treat a `?' character as part of an XLFD.
5747
e301e634
CY
5748 * fns.c (Fsubstring): Doc fix.
5749
1c0db158
KH
57502009-01-19 Kenichi Handa <handa@m17n.org>
5751
51d861de 5752 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
1c0db158
KH
5753 (ftfont_list): Likewise.
5754
acf20901
JB
57552009-01-18 Juanma Barranquero <lekktu@gmail.com>
5756
fff4e459
JB
5757 * dbusbind.c (Fdbus_register_signal):
5758 * process.c (conv_sockaddr_to_lisp):
5759 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
5760
acf20901
JB
5761 * callproc.c (Fgetenv_internal): Doc fix.
5762
e7abcdfb
CY
57632009-01-16 Chong Yidong <cyd@stupidchicken.com>
5764
5765 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
5766 it is not even used.
5767
b60861e6
GM
57682009-01-16 Glenn Morris <rgm@gnu.org>
5769
5770 * font.c (Ffont_variation_glyphs): Silence compiler.
5771
8db52afe
JB
57722009-01-15 Juanma Barranquero <lekktu@gmail.com>
5773
5774 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
5775 Reported by David Robinow <drobinow@gmail.com>.
5776
4cddb209
KH
57772009-01-15 Kenichi Handa <handa@m17n.org>
5778
51d861de 5779 * coding.c (detect_coding_system): Fix handling of null_byte_found.
4cddb209 5780
f247f67b
JR
57812009-01-14 Jason Rumney <jasonr@gnu.org>
5782
5783 * frame.c (x_set_font): Always store a font to the font parameter,
fff4e459 5784 never a fontset. (Bug#1562)
f247f67b 5785
f56a4450
KH
57862009-01-14 Kenichi Handa <handa@m17n.org>
5787
5788 * coding.c (TWO_MORE_BYTES): New macro.
fff4e459 5789 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
f56a4450 5790
4e99855e
CY
57912009-01-13 Chong Yidong <cyd@stupidchicken.com>
5792
5793 * font.c (font_clear_prop): If clearing the family, clear the font
5794 width index too.
5795
fff4e459 5796 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
4e99855e 5797
24f01470
JB
57982009-01-12 Juanma Barranquero <lekktu@gmail.com>
5799
5800 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
5801 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
5802 functions, use sizeof.
5803
a41240a3
MR
58042009-01-12 Martin Rudalics <rudalics@gmx.at>
5805
5806 * keyboard.c (read_char): Fix case where last_nonmenu_event
5807 returned a bad value with submenus. (Bug#447)
5808
944636b8
CY
58092009-01-12 Chong Yidong <cyd@stupidchicken.com>
5810
5811 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
5812 family, clear the font width index too.
5813
0dad7c6f
JR
58142009-01-11 Jason Rumney <jasonr@gnu.org>
5815
5816 * keyboard.c (cmd_error_internal): Exit when errors occur before
5817 frame creation and not in daemon mode. (Bug#1836)
5818
7c2363af
CY
58192009-01-10 Chong Yidong <cyd@stupidchicken.com>
5820
5821 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
5822 of a display vector, backtrack.
5823 (try_window_reusing_current_matrix): Check glyph type before
5824 referencing charpos member.
5825
97b1b294
EZ
58262009-01-10 Eli Zaretskii <eliz@gnu.org>
5827
5828 Fix Bug #876:
5829
5830 * coding.c (inhibit_null_byte_detection): New variable.
5831 (detect_coding, detect_coding_system): Don't pay attention to null
5832 bytes if inhibit_null_byte_detection is non-zero.
51d861de 5833 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
97b1b294
EZ
5834 <inhibit-iso-escape-detection>: Doc fix.
5835
4624b6e3
JR
58362009-01-09 Jason Rumney <jasonr@gnu.org>
5837
5838 * w32font.c (add_font_entity_to_list): Don't report unknown
fff4e459 5839 Windows charset as any unrecognized registry. (Bug#1548)
4624b6e3
JR
5840 Only report Unicode Plane 2 fonts as unicode-sip.
5841
323b840c
CY
58422009-01-09 Chong Yidong <cyd@stupidchicken.com>
5843
51d861de
SM
5844 * xfaces.c (Fx_font_family_list): Delete function.
5845 Move compatibility version to faces.el.
323b840c 5846
51d861de 5847 * font.c (Ffont_family_list): Return a list of strings, not symbols.
323b840c 5848
eba7400d
MR
58492009-01-09 Martin Rudalics <rudalics@gmx.at>
5850
5851 * frame.c (x_set_frame_parameters): Remember requested value for
5852 fullscreen before it's reset by the parameter handler.
5853
4b09796d
GM
58542009-01-09 Glenn Morris <rgm@gnu.org>
5855
5856 * keyboard.c (last_command_char): For clarity, rename to...
46e722a9 5857 (last_command_event): ... and update all users.
4b09796d
GM
5858 (last_input_char): For clarity, rename to...
5859 (last_input_event): ... and update all users.
5860 (last-command-char, last-input-char): Move to subr.el as aliases.
5861 * cmds.c, commands.h: Update for last_command_char rename.
5862
14ccea62
CY
58632009-01-08 Chong Yidong <cyd@stupidchicken.com>
5864
51d861de 5865 * font.c (font_open_for_lface): Handle unspecified height attribute.
14ccea62 5866
5f004711
JR
58672009-01-08 Jason Rumney <jasonr@gnu.org>
5868
5869 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
5870 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
5871 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
5872 Don't declare.
fff4e459 5873 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
5f004711
JR
5874 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
5875
b71f6f73
KH
58762009-01-07 Kenichi Handa <handa@m17n.org>
5877
50b06221 5878 * fileio.c (Finsert_file_contents): In the case of replace,
f56a4450 5879 remember the coding system used for decoding in
50b06221
KH
5880 coding_system (Bug#1039).
5881
b71f6f73 5882 * coding.c (decode_coding_utf_8): Check byte_after_cr before
79a97217 5883 breaking the loop. (Bug#870)
b71f6f73
KH
5884 (decode_coding_utf_16, decode_coding_emacs_mule)
5885 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
5886 (decode_coding_charset): Likewise.
5887
56f668f7
MR
58882009-01-05 Martin Rudalics <rudalics@gmx.at>
5889
5890 * frame.c (x_set_frame_parameters): Make sure height (width) get
5891 applied when fullwidth (fullheight) is set. (Bug#1522)
5892
5da9424d
JB
58932009-01-04 Juanma Barranquero <lekktu@gmail.com>
5894
5895 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
5896 (utc_base): Declare as ULONGLONG, not long double.
5897 (convert_time_raw): Delete.
5898 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
5899 (initialize_utc_base): New function.
5900 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
5901 (convert_from_time_t): Use initialize_utc_base; compute result with
5902 64-bit arithmetic.
5903 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
5904
c4605e09
EZ
59052009-01-03 Eli Zaretskii <eliz@gnu.org>
5906
9acef61c 5907 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
c4605e09
EZ
5908 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
5909 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
5910 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
5911 [!subprocesses]: Define.
5912 (syms_of_process) [!subprocesses]: Intern and staticpro them.
5913 (Flist_system_processes, Fsystem_process_attributes)
5914 [!subprocesses]: Call list_system_processes and
5915 system_process_attributes instead of returning Qnil.
5916
9acef61c
JB
5917 * dosfns.c (system_process_attributes, list_system_processes):
5918 New functions.
c4605e09
EZ
5919
5920 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
5921
5922 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
5923 Don't use the default (no-op) implementation.
5924
8b7d0a16
JR
59252009-01-03 Jason Rumney <jasonr@gnu.org>
5926
a6d46bc1
JR
5927 * keyboard.c (parse_modifiers_uncached): Wheel events are
5928 clicks (bug#687).
5929
8b7d0a16
JR
5930 * w32term.c (x_query_colors, x_query_color): New functions.
5931
5932 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
5933 (svg_load_image): Cast returned pointers from dynamically loaded
5934 functions. Eliminate W32 specific code.
5935
bfe11752
DN
59362009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
5937
89e2438a
DN
5938 * nsfns.m (x_set_foreground_color, x_set_background_color)
5939 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
5940 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
5941 x_ prefix instead of ns_. Update references.
5942 (syms_of_nsfns): Add a FIXME comment.
5943
5944 * nsterm.m (x_set_cursor_type): New prototype.
5945 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
5946
bfe11752
DN
5947 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
5948 for Solaris instead of incorrectly providing Qutime and Qcutime.
5949
031da700
EZ
59502009-01-02 Eli Zaretskii <eliz@gnu.org>
5951
5952 * w32.c (process_times): Compute sum of utime and stime.
5953 (system_process_attributes): Add Qtime to the alist.
5954
5955 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
5956 and add them to the alist.
5957
5958 * process.c (top level) <Qtime, Qctime>: New variables.
5959 (syms_of_process): staticpro them.
5960 (Fsystem_process_attributes): Add their documentation to the doc
5961 string.
5962
5963 * process.h: Declare Qtime and Qctime.
5964
df23bf08
JR
59652009-01-02 Jason Rumney <jasonr@gnu.org>
5966
9acef61c 5967 * image.c (Qgobject): New symbol.
df23bf08
JR
5968 (syms_of_image): Initialize it.
5969 (init_svg_functions): Load some functions from gobject library.
5970
5bbdf7aa
DN
59712009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
5972
5973 * frame.c (make_terminal_frame): Remove redundant code and useless
5974 block.
5975
63136da6
AS
59762009-01-01 Andreas Schwab <schwab@suse.de>
5977
5978 * process.c (conv_sockaddr_to_lisp): Add workaround for
5979 getsockname bug on BSD.
5980
9ef69046
CY
59812009-01-01 Chong Yidong <cyd@stupidchicken.com>
5982
d6fafbe0
CY
5983 * xfns.c (x_create_tip_frame): Set border width of the X window.
5984
51d861de 5985 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
9ef69046 5986
f9c34147
JR
59872009-01-01 Jason Rumney <jasonr@gnu.org>
5988
9acef61c 5989 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
f9c34147
JR
5990 Don't block input, as per earlier xterm.c changes.
5991
f5497e45
AR
59922008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
5993
5994 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
5995 (ns_appkit_version_int): New function.
5996 (x-server-version): Use ns_appkit_version_int and follow 21+
5997 convention of returning 3 integers.
5998
c19cab20
KH
59992008-12-30 Kenichi Handa <handa@m17n.org>
6000
6001 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
6002 (CHAR_SURROGATE_PAIR_P): New macro.
6003
6004 * font.h (struct font_driver): New member get_variation_glyphs.
6005
9acef61c 6006 * font.c (font_range): Don't require a font for a variation selector.
c19cab20
KH
6007 (Ffont_variation_glyphs): New function.
6008 (syms_of_font): Defsubr it.
6009
6010 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
6011 ftfont_variation_glyphs.
6012 (setup_otf_gstring): New function.
6013 (ftfont_drive_otf): Use it.
6014 (ftfont_shape_by_flt): Handle variation selector.
6015 (ftfont_variation_glyphs): New function.
6016
28cd591f
MR
60172008-12-30 Martin Rudalics <rudalics@gmx.at>
6018
6019 * frame.c (Vemacs_iconified): Remove.
6020
7f714baf
JR
60212008-12-30 Jason Rumney <jasonr@gnu.org>
6022
6023 * frame.c (store_frame_param, x_get_arg): Enable newer code on
9acef61c 6024 WINDOWSNT too, as related changes have already been synced. (Bug#117)
7f714baf 6025
9d2d22ab
CY
60262008-12-30 Chong Yidong <cyd@stupidchicken.com>
6027
6028 * indent.c (Fvertical_motion): Don't advance iterator if we have
6029 reseated to the desired position.
6030
6031 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
6032 checking for pos match.
6033
545312c2
KH
60342008-12-30 Kenichi Handa <handa@m17n.org>
6035
1ede3eb6
KH
6036 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
6037 just get the low 8-bit of the code.
6038
545312c2
KH
6039 * font.c (font_intern_prop): Validate str as multibyte.
6040
bd7bbf29
DN
60412008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
6042
31e0750e
DN
6043 * dispextern.h (struct face): Move lface and hash from the middle
6044 of bitfields.
6045
bd7bbf29
DN
6046 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
6047
b5672e7c
DN
60482008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
6049
6050 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
6051 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
6052 instead of intervals.h.
6053
d704470f
AS
60542008-12-26 Andreas Schwab <schwab@suse.de>
6055
6056 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
6057 cons.
6058
54b33868
MR
60592008-12-26 Martin Rudalics <rudalics@gmx.at>
6060
6061 * textprop.c (Qminibuffer_prompt): New variable.
6062 (syms_of_textprop): Initialize it.
6063 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
6064 in minibuffer-prompt face. (Bug#1662)
6065
40b615d6
JR
60662008-12-25 Jason Rumney <jasonr@gnu.org>
6067
6068 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
6069
baae5c2d
JR
60702008-12-24 Jason Rumney <jasonr@gnu.org>
6071
6072 * ralloc.c (r_alloc_reset_variable): New function.
6073
6074 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
9acef61c 6075 record of what points where. (Bug#716)
baae5c2d 6076
a9051c88
DN
60772008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
6078
6079 * minibuf.c (read_minibuf): Follow the non-interactive case when
6080 running as a daemon, before detaching.
6081
8b146312
AS
60822008-12-22 Andreas Schwab <schwab@suse.de>
6083
6084 * buffer.c (init_buffer): Use realloc instead of xrealloc.
6085 * gtkutil.c (free_widget_value): Use xfree instead of free.
6086
56f2de10
MR
60872008-12-22 Martin Rudalics <rudalics@gmx.at>
6088
6089 * frame.c (delete_frame): New function derived from
6090 Fdelete_frame to handle Qnoelisp value for FORCE argument.
6091 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
6092 (Fdelete_frame): Call delete_frame. Remove line from doc-string
6093 saying that FORCE non-nil doesn't run `delete-frame-functions'.
6094 * frame.h: Extern delete_frame.
6095 * window.c (window_loop):
6096 * terminal.c (delete_terminal):
6097 * xterm.c (x_connection_closed):
6098 * xfns.c (Fx_hide_tip):
9acef61c 6099 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
56f2de10 6100
1fc200d6
JR
61012008-12-21 Jason Rumney <jasonr@gnu.org>
6102
6103 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
6104 when character maps to .notdef character.
6105
5e252df2
SM
61062008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
6107
6108 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
6109
99b72cc4
JR
61102008-12-20 Jason Rumney <jasonr@gnu.org>
6111
6112 * frame.c (Fmake_terminal_frame): Raise an error when called from
9acef61c 6113 a graphical frame on Windows. (Bug#1325)
99b72cc4 6114
acc49a52
JD
61152008-12-20 Jan Djärv <jan.h.d@swipnet.se>
6116
6117 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
6118
6ea15123
CY
61192008-12-20 Chong Yidong <cyd@stupidchicken.com>
6120
6121 * minibuf.c (Fread_buffer): Doc fix.
6122
b2dab6c8
JR
61232008-12-20 Jason Rumney <jasonr@gnu.org>
6124
54ea0c87 6125 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
9acef61c 6126 server name in UNC paths. (Bug#719)
54ea0c87 6127
b2dab6c8 6128 * coding.c (decode_coding): Clear chars_at_source flag when using
9acef61c 6129 charbuf. (Bug#1035)
b2dab6c8 6130
6d1921be
DN
61312008-12-19 Daniel Engeler <engeler@gmail.com>
6132
6133 * sysdep.c (serial_configure): Fix typo.
6134
53934c98
DN
61352008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
6136
6137 * sysdep.c: Include alloca.h.
f4f634e8
DN
6138 (system_process_attributes): Add implementation for Solaris.
6139
6140 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
53934c98 6141
06e111a6
DN
61422008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
6143
6144 Reorganize implementation of Flist_system_processes and
6145 Fsystem_process_attributes. No functional changes.
6146 * process.c: Don't #include pwd.h, grp.h and limits.h.
6147 (Flist_system_processes): Just call list_system_processes.
6148 (Fsystem_process_attributes): Just call system_process_attributes.
6149 (procfs_list_system_processes, time_from_jiffies)
6150 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
6151 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
6152
6153 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
6154 (list_system_processes): Rename from
6155 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
6156 Provide a do nothing implementation.
6157 (system_process_attributes): Rename from
6158 procfs_list_system_processes.
6159 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
9acef61c 6160 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
06e111a6
DN
6161
6162 * w32.c (list_system_processes): Rename from
6163 w32_list_system_processes.
6164 (system_process_attributes): Rename from
6165 w32_system_process_attributes.
6166
6167 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
6168
6169 * process.h (w32_list_system_processes)
6170 (w32_system_process_attributes): Remove.
362654a6
JB
6171 (list_system_processes, system_process_attributes):
6172 New prototypes.
06e111a6 6173
6a705b23
KH
61742008-12-19 Kenichi Handa <handa@m17n.org>
6175
6176 * xfont.c (xfont_decode_coding_xlfd): New function.
6177 (xfont_encode_coding_xlfd): New function.
6178 (xfont_list_pattern): Decode XLFD by iso-8859-1.
6179 (xfont_list): Decode and encode XLFD by iso-8859-1.
6180 (xfont_match): Likewise.
6181 (xfont_list_family): Likewise.
6182 (xfont_open): Likewise.
6183
d66c0241 6184 * ftfont.c (ftfont_open): Generate a multibyte string if given
6a705b23
KH
6185 names are utf-8.
6186
d66c0241 6187 * xftfont.c (xftfont_open): Generate a multibyte string if given
6a705b23
KH
6188 names are utf-8.
6189
5a130941
JD
61902008-12-18 Jan Djärv <jan.h.d@swipnet.se>
6191
6192 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
6193 changed.
bfd20325
JD
6194 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
6195 clicked on a detached tool bar button.
5a130941 6196
fd95644b
DN
61972008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
6198
6199 * emacs.c (main): Print and error and exit when no data is read
6200 from the pipe.
6201
e6eee6ae
JR
62022008-12-17 Jason Rumney <jasonr@gnu.org>
6203
6204 * w32font.c (w32font_has_char): Always return -1.
6205
a35dd56b
KH
62062008-12-16 Kenichi Handa <handa@m17n.org>
6207
6208 * font.c (font_open_entity): Fix previous change.
6209
0e3635c2
DN
62102008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
6211
6212 * process.c: Include <limits.h>.
6213
d4835507 62142008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
b5356c39
CY
6215
6216 * font.c (font_update_drivers): Fix mistake in reconstructing the
6217 driver list.
6218
62192008-12-16 Chong Yidong <cyd@stupidchicken.com>
6220
6221 * font.c (font_clear_cache): Fix format of font cache data.
6222
e2cbc401
CY
62232008-12-15 Chong Yidong <cyd@stupidchicken.com>
6224
6225 * xftfont.c (xftfont_open): Free Xft font pattern if
6226 XftFontOpenPattern fails.
6227
6228 * xterm.c (x_free_frame_resources): Remove extraneous call to
6229 free_frame_faces.
6230
b131d535
CY
62312008-12-13 Chong Yidong <cyd@stupidchicken.com>
6232
6233 * xterm.c (x_delete_display): Move xim_close_dpy call to
6234 x_delete_terminal.
6235 (x_delete_terminal): Call xim_close_dpy.
6236
e6df5336
JR
62372008-12-13 Jason Rumney <jasonr@gnu.org>
6238
6239 * w32font.c (intern_font_name): New function.
6240 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
6241 (w32font_open_internal, Fx_select_font): Decode font name.
6242 (fill_in_logfont, list_all_matching_fonts): Encode font name.
6243
6244 * w32font.h (intern_font_name): Declare new function.
6245
6246 * w32uniscribe.c (add_opentype_font_name_to_list):
6247 Use intern_font_name.
6248
20d68145
CY
62492008-12-13 Chong Yidong <cyd@stupidchicken.com>
6250
9f2554de
CY
6251 * frame.c (Fdelete_frame): Call free_font_driver_list.
6252
3d9bec9a
CY
6253 * font.c (free_font_driver_list): Implement missing function.
6254
20d68145
CY
6255 * w32term.c (w32_term_init): Don't initialize the image cache
6256 here; it will be done in init_frame_faces.
6257
6258 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
6259 (struct x_display_info): Remove unused member null_pixel. New
6260 member xim_callback_data.
6261
6262 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
6263 (xim_initialize): Save pointer to callback function data.
6264 (xim_close_dpy): Free callback function data. Call XCloseIM,
6265 reverting 2008-11-04 change by David Smith.
6266 (x_term_init): Don't initialize the image cache here; it will be
6267 done in init_frame_faces. Remove ancient "null_pixel" cruft.
6268 (x_delete_display): Free x_dnd_atoms member.
6269
96f9306b
KH
62702008-12-13 Kenichi Handa <handa@m17n.org>
6271
6dec9044
JB
6272 * font.c (font_rescale_ratio): Moved from xfaces.c.
6273 Argument type changed. Handle a font-spec too.
96f9306b 6274 (font_score): Check Vface_font_rescale_alist.
6dec9044 6275 (font_open_entity): Likewise. (Bug#1547)
96f9306b
KH
6276
6277 * xfaces.c (font_rescale_ratio): Moved to font.c.
6278
8d5b4964
CY
62792008-12-13 Chong Yidong <cyd@stupidchicken.com>
6280
6281 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
6282
e6df5336
JR
62832008-12-12 Jason Rumney <jasonr@gnu.org>
6284
6285 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
6286 Vwindow_system_version to the real w32 major version.
6287
97c6058a
DN
62882008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
6289
6290 * term.c (init_tty): Move setting the terminal name before the
6291 potential user: maybe_fatal.
6292
ec4e88d7
CY
62932008-12-11 Chong Yidong <cyd@stupidchicken.com>
6294
d4835507
JB
6295 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
6296 all callers changed. Call free_frame_faces to free the face cache.
ec4e88d7 6297
b4233ec9
JR
62982008-12-11 Jason Rumney <jasonr@gnu.org>
6299
8ec71e23 6300 * w32font.c (fill_in_logfont): Don't assume symbol script means
9acef61c 6301 SYMBOL_CHARSET. (Bug#547)
8ec71e23 6302
b4233ec9 6303 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
9acef61c 6304 size for surrogates. (Bug#1096, bug#872)
b4233ec9 6305
011a0143
JB
63062008-12-11 Juanma Barranquero <lekktu@gmail.com>
6307
6308 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
6309
3c309f34
JB
63102008-12-11 Juanma Barranquero <lekktu@gmail.com>
6311
6312 * process.c (Fsystem_process_attributes, syms_of_process):
6313 Fix typo in name of Ssystem_process_attributes.
6314 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
6315
fedc6ab5
JB
63162008-12-11 Juanma Barranquero <lekktu@gmail.com>
6317
6318 * syntax.c (Fmodify_syntax_entry): Doc fix.
6319
ba3de0e8
JB
63202008-12-10 Juanma Barranquero <lekktu@gmail.com>
6321
6322 * font.c (Ffont_spec): Move usage to end of docstring.
6323
174f1c74
JR
63242008-12-10 Jason Rumney <jasonr@gnu.org>
6325
6326 * w32font.c (Qcham): New symbol.
6327 (font_supported_scripts): Add cham, and comments for other new
6328 scripts in bitfield from OpenType spec.
9d32f818
JR
6329 (add_font_entity_to_list): Limit unicode-sip fonts to those that
6330 contain characters beyond the bmp.
174f1c74 6331
7b649478
KH
63322008-12-10 Kenichi Handa <handa@m17n.org>
6333
6334 * ftfont.c (fc_charset_table): Add "unicode-sip".
2ae37cf0 6335 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
7b649478
KH
6336 Qunicode_sip.
6337
2133e2d1
JB
63382008-12-10 Juanma Barranquero <lekktu@gmail.com>
6339
6340 * coding.c (QCdefault_char): Rename from QCdefalut_char.
6341 (Fcoding_system_put): Use QCdefault_char.
6342 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
6343
9af886ee
CY
63442008-12-09 Chong Yidong <cyd@stupidchicken.com>
6345
74d819eb
CY
6346 * xftfont.c (syms_of_xftfont): Fix typo.
6347
4ccfa1c0 6348 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
9af886ee 6349
7c19d3ae
DN
63502008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
6351
6352 * emacs.c (main): Close daemon_pipe on exec.
6353
567826bb
CY
63542008-12-08 Chong Yidong <cyd@stupidchicken.com>
6355
6356 * termchar.h (struct tty): New members termcap_term_buffer and
6357 termcap_strings_buffer.
6358
6359 * term.c (encode_terminal_code): Free any previous memory blocks
4ccfa1c0 6360 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
567826bb
CY
6361 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
6362 All callers changed.
6363 (init_tty): Store termcap data and string buffers in new struct
6364 tty members termcap_term_buffer and termcap_strings_buffer.
6365 (delete_tty): Free them.
4ccfa1c0 6366 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
567826bb 6367
aa96c42b
SZ
63682008-12-07 Seiji Zenitani <zenitani@mac.com>
6369
6370 * nsfns.m (ns_set_background_color): Remove code duplication.
4ccfa1c0 6371 It was a substitute for face-transparency on OS X 10.3.
aa96c42b 6372
b7e1d896
CY
63732008-12-06 Chong Yidong <cyd@stupidchicken.com>
6374
6375 * coding.c (make_conversion_work_buffer): Disable buffer
6376 modification hooks in the work buffer.
6377
b5ec91a5
EZ
63782008-12-05 Eli Zaretskii <eliz@gnu.org>
6379
6380 * process.c (procfs_system_process_attributes): If `nread' has a
6381 negative value, assign zero to it.
6382
a5d2a52b
CY
63832008-12-05 Chong Yidong <cyd@stupidchicken.com>
6384
68c5540b 6385 * eval.c (Vdebug_on_error): Doc fix.
a5d2a52b 6386
7bf1bb21
KH
63872008-12-05 Kenichi Handa <handa@m17n.org>
6388
6389 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
6390 second character is a combining character.
6391
2fdc7d00
EZ
63922008-12-05 Eli Zaretskii <eliz@gnu.org>
6393
6394 * process.c (procfs_system_process_attributes): Don't use cmd,
6395 cmdsize, and q without initializing them first.
6396
bf6bfba8
JR
63972008-12-04 Jason Rumney <jasonr@gnu.org>
6398
6399 * w32font.c (w32font_draw): Initialize orig_clip before getting
6400 it, and delete it when finished.
6401
a3b1a468
DN
64022008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
6403
6404 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
6405 case when running as a daemon before detaching.
6406
8b8be8eb
JB
64072008-12-03 Juanma Barranquero <lekktu@gmail.com>
6408
805f2638 6409 * w32.c (init_environment): Don't unload library shell32.dll.
8b8be8eb 6410
b1bde622
KH
64112008-12-03 Kenichi Handa <handa@m17n.org>
6412
e500c47d
KH
6413 * font.c (font_at): Set `multibyte' at first.
6414
ca516334
KH
6415 * coding.c (decode_coding_charset): Check type of an element of
6416 vector VALIDS.
7bf1bb21 6417 (encode_coding_emacs_mule): Be sure to set `code'.
ca516334 6418
4ccfa1c0 6419 * fontset.c (face_for_char): Handle invalid charset property correctly.
b1bde622
KH
6420 (font_for_char): Likewise.
6421
1e5ecd37
CY
64222008-12-03 Chong Yidong <cyd@stupidchicken.com>
6423
d5b01609 6424 * font.c (Fopen_font): Compute pixel size correctly.
ba207571
CY
6425 (font_update_lface): Handle fonts with corrupted size specs,
6426 i.e. non-int and non-float.
d5b01609 6427
11e3a6e4 6428 * ftfont.c (ftfont_match): Initialize entity variable.
9a48c8cb 6429 (ftfont_resolve_generic_family): Avoid using uninitialized var.
8adb3a3b 6430 (ftfont_list_family): Initialize list var earlier.
11e3a6e4 6431
ab06788b
CY
6432 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
6433
1e5ecd37 6434 * xterm.c (x_draw_glyph_string): Fall back on
0cff82ab 6435 underline_minimum_offset for underline position.
1e5ecd37 6436
63c125ab
DN
64372008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
6438
6439 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
6440
6441 * character.c (c_string_width): Specify the type for LEN.
6442
3a8406e1
KH
64432008-12-03 Kenichi Handa <handa@m17n.org>
6444
4ccfa1c0 6445 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
453b38f0 6446 (decode_coding_utf_8): Likewise.
4ccfa1c0 6447 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
4533845d 6448 (produce_chars): Initialize consumed_chars to 0.
3a8406e1 6449
651df7d9
CY
64502008-12-02 Chong Yidong <cyd@stupidchicken.com>
6451
6452 * keyboard.c (make_lispy_position): Only use PT if the selected
6453 window is current.
6454
1f625c6c
AS
64552008-12-02 Andreas Schwab <schwab@suse.de>
6456
f7741ce9
AS
6457 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
6458
1f625c6c
AS
6459 * doprnt.c (doprnt1): Fix size of charbuf.
6460
92bc2678
CY
64612008-12-02 Chong Yidong <cyd@stupidchicken.com>
6462
6463 * keyboard.c (timer_check): Revert last change.
6464
93b9e8cc
JB
64652008-12-02 Juanma Barranquero <lekktu@gmail.com>
6466
6467 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
6468
fd7a37d5
JB
64692008-12-01 Juanma Barranquero <lekktu@gmail.com>
6470
6471 * makefile.w32-in: Update dependencies.
6472 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
6473
c115043b
AS
64742008-12-01 Andreas Schwab <schwab@suse.de>
6475
6476 * font.c (register_font_driver): Use xmalloc.
6477 (font_put_frame_data): Likewise.
6478
f5668d2a
CY
64792008-12-01 Chong Yidong <cyd@stupidchicken.com>
6480
860d96be
CY
6481 * xfaces.c (realize_x_face): Make abort condition clearer.
6482
f5668d2a
CY
6483 * gtkutil.c (update_frame_tool_bar): Initialize variable.
6484
379c17e7
CY
64852008-11-30 Chong Yidong <cyd@stupidchicken.com>
6486
6487 * keyboard.c (timer_check): After a timer runs, ensure that the
6488 selected window's buffer is current.
6489
35f36d65
JB
64902008-11-30 Juanma Barranquero <lekktu@gmail.com>
6491
f952c61c
JB
6492 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
6493 It was accidentally restored by the Unicode merge.
6494
35f36d65
JB
6495 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
6496
b23077df
JB
64972008-11-29 Juanma Barranquero <lekktu@gmail.com>
6498
6499 * w32proc.c: Include "coding.h".
6500 (Fw32_short_file_name): Encode filename passed to Windows API.
6501 (Fw32_long_file_name): Encode filename passed to Windows API and
6502 decode back the result. (Bug#1433)
6503
b8ebe9dd
KH
65042008-11-29 Kenichi Handa <handa@m17n.org>
6505
8cc53f96
KH
6506 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
6507 not before accessing it.
6508
b8ebe9dd
KH
6509 * charset.c (Fdefine_charset_internal): After calculating
6510 min_char, max_char, and fastmap, copy the charset structure again.
6511 (encode_char): Fix the previous change.
6512
59bc82c0
SZ
65132008-11-28 Seiji Zenitani <zenitani@mac.com>
6514
6515 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
6516
6517 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
6518
6519 * nsterm.m (x_set_frame_alpha): New function.
6520
32247e3d
EZ
65212008-11-27 Eli Zaretskii <eliz@gnu.org>
6522
6523 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
6524
b003e5ff
JB
65252008-11-27 Juanma Barranquero <lekktu@gmail.com>
6526
6527 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
6528 pointer to check_face_name.
6529
708550f5
KH
65302008-11-27 Kenichi Handa <handa@m17n.org>
6531
6532 * category.h (SET_CATEGORY_SET): Call set_category_set.
6533 (set_category_set): Extern it.
6534
6535 * category.c (hash_get_category_set): New function.
6536 (Fmodify_category_entry): Adjusted for the change of
6537 char_table_ref_and_range. Call hash_get_category_set to get a
6538 category set to store in the table.
6539
6540 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
6541 Funify_charset.
6542
2ae37cf0 6543 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
708550f5
KH
6544 (DECODE_CHAR): Check if the decoder vector is ready.
6545 (ENCODE_CHAR): Check if the encoder char-table is ready.
6546 (maybe_unify_char): Extern it.
6547
6548 * charset.c (Vchar_unified_charset_table): Delete it.
6549 (inhibit_load_charset_map): New variable.
6550 (temp_charset_work): New variable.
6551 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
6552 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
6553 New macros.
6554 (load_charset_map): Meaning of control_flag changed. If
6555 inhibit_load_charset_map is nonzero, setup a table in
6556 temp_charset_work.
6557 (load_charset): New argument control_flag.
6558 (map_charset_for_dump): New function.
6559 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
6560 map_charset_for_dump.
6561 (Fdefine_charset_internal): If the charset method is MAP, load
6562 mapping tables by calling load_charset.
6563 (Funify_charset): Don't load a mapping table but directly set
6564 Vchar_unify_table.
6565 (maybe_unify_char): New function.
6566 (decode_char): Don't handle the deleted method MAP_DEFERRED.
6567 Handle the case of inhibit_load_charset_map being nonzero.
6568 (encode_char): Don't handle the deleted method MAP_DEFERRED.
6569 Handle the case of inhibit_load_charset_map being nonzero.
6570 (Fclear_charset_maps): Just free temp_charset_work.
6571 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
6572 variable.
6573
6574 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
6575 change of char_table_ref_and_range.
6576 (char_table_ref_and_range): Change the meaning of argument FROM
6577 and TO. Now the caller must provide initial values for *FROM
6578 and *TO.
6579
6580 * fontset.c (fontset_add): Adjusted for the change of
6581 char_table_ref_and_range.
6582 (fontset_get_font_group): Likewise.
6583 (Ffontset_info): Likewise.
6584
6585 * keymap.c (describe_vector): Adjusted for the change of
6586 char_table_ref_and_range. For char-table, put boundary between
6587 non-ASCII and 8-bit characters.
6588
6589 * print.c (print_object): For bool-vector, delete unnecessary
6590 check of ASCII_BYTE_P.
6591
9196133b
JR
65922008-11-26 Jason Rumney <jasonr@gnu.org>
6593
6594 * w32font.c (w32font_open_internal): Don't include external
9acef61c 6595 leading in font height. (Bug#879)
9196133b 6596
9f688acf
GM
65972008-11-26 Glenn Morris <rgm@gnu.org>
6598
6599 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
6600 redefinition with ifdef. (Bug#1383)
6601
90d19aff
AR
66022008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
6603
6604 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
6605
4ccfa1c0 66062008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
90d19aff
AR
6607
6608 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
6609 New EmacsView methods.
6610 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
6611 Fixes bug #1048,1357,1414.
6612
66132008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
6614
6615 Fix bug #1362.
6616 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
6617 is not an indexed color.
6618 * nsterm.m (free_indexed_color): Add argument checking.
6619 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
6620
e7d5ecb3
CY
66212008-11-24 Chong Yidong <cyd@stupidchicken.com>
6622
6623 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
6624 Document confirm-after-completion value for
6625 minibuffer-completion-confirm.
6626
c285743c
JR
66272008-11-24 Jason Rumney <jasonr@gnu.org>
6628
6629 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
6630 warning.
6631
b0857706
JR
66322008-11-23 Jason Rumney <jasonr@gnu.org>
6633
6634 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
6635 restored before returning.
6636
6637 * w32font.c (check_face_name): New function.
6638 (add_font_entity_to_list): Use it to filter out common substituted
9acef61c 6639 fonts. (Bug#642)
b0857706 6640
ee50ff07
MR
66412008-11-22 Martin Rudalics <rudalics@gmx.at>
6642
6643 * buffer.c (Fswitch_to_buffer): Reword and mention new option
6644 confirm-nonexistent-file-or-buffer in doc-string.
6645
b8ff72fa
SM
66462008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6647
6648 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
6649 Fix copy/paste typo. Add checks.
6650
cee53ed4
KH
66512008-11-21 Kenichi Handa <handa@m17n.org>
6652
6653 * coding.c (detect_coding_iso_2022): Reject invalid composition
6654 sequence.
6655 (DECODE_COMPOSITION_START): If the current source is the last
6656 block, and the current composition doesn't end, regard this
6657 sequence as invalid.
6658 (decode_coding_iso_2022): Handle invalid composition sequence.
6659
f6ef1e65
MR
66602008-11-20 Martin Rudalics <rudalics@gmx.at>
6661
6662 * window.c (coordinates_in_window): Don't return
6663 ON_VERTICAL_BORDER for the rightmost position of a mode/header
6664 line when the window is not the rightmost one. (Bug#1372)
6665
e08b1705
MR
66662008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
6667
6668 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
6669
ad98e89f
EZ
66702008-11-15 Eli Zaretskii <eliz@gnu.org>
6671
6672 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
6673 and bright_bg if noninteractive is non-zero.
6674
fb098a4b
CY
66752008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6676
6677 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
6678 x_draw_glyph_string_background.
6679
6680 * w32term.c (x_draw_glyph_string): Likewise.
6681
ce952b6e
CY
66822008-11-15 Chong Yidong <cyd@stupidchicken.com>
6683
6684 * xterm.c (x_draw_glyph_string): Stop drawing the background of
6685 the next glyph string once past the overhang width.
6686
6687 * nsterm.m (ns_draw_glyph_string): Likewise.
6688
6689 * w32term.c (x_draw_glyph_string): Likewise.
6690
26ea7079
CY
66912008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
6692
6693 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
6694 double file close.
6695
1c33c906
MR
66962008-11-14 Martin Rudalics <rudalics@gmx.at>
6697
6698 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
6699 dedicated status of window before attempting to display another
6700 buffer in it.
6701
8fc29035
JB
67022008-11-14 Juanma Barranquero <lekktu@gmail.com>
6703
6704 * msdos.c (Fmsdos_long_file_names):
6705 (syms_of_msdos) <dos-unsupported-char-glyph>:
6706 * dosfns.c (Fint86): Fix typos in docstrings.
6707
55fb4286
EZ
67082008-11-14 Eli Zaretskii <eliz@gnu.org>
6709
6710 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
6711
3fda0315
KY
67122008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
6713
6714 * puresize.h (BASE_PURESIZE): Increase to 1260000.
6715
7e849c17
CY
67162008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
6717
6718 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
6719
6720 * frame.h: Negative alpha means "don't touch".
6721
6722 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
6723
6724 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
6725
b9fd67bd
DN
67262008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
6727
6728 * hftctl.c:
6729 * chpdef.h:
6730 * acldef.h: Remove files used only for systems no longer supported.
6731
6732 * Makefile.in: Fix .o alphabetical ordering.
6733 (hftctl.o): Remove dependency, file removed.
6734 (keymap.o, print.o): Depend on charset.h.
6735
d5998e03
KH
67362008-11-10 Kenichi Handa <handa@m17n.org>
6737
2ae37cf0 6738 * character.c (Fget_byte): Fix and make it faster for unibyte target.
d5998e03 6739
be70e183
CY
67402008-11-08 Chong Yidong <cyd@stupidchicken.com>
6741
6742 * dired.c (file_name_completion): If completion_ignore_case is
6743 enabled, ignore case when checking completion-regexp-list.
6744
7cf94eac
EZ
67452008-11-08 Eli Zaretskii <eliz@gnu.org>
6746
6747 * vm-limit.c (get_lim_data): Fix last change.
6748
ee107a89
KH
67492008-11-08 Kenichi Handa <handa@m17n.org>
6750
6751 * character.c (Fget_byte): New function.
6752 (syms_of_character): Defsubr Fget_byte.
6753
5fd15622
CY
67542008-11-07 Chong Yidong <cyd@stupidchicken.com>
6755
6756 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
6757 cursor position is valid after scrolling.
6758
13d62fad
JB
67592008-11-06 Juanma Barranquero <lekktu@gmail.com>
6760
6761 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
6762
a1dd2936
GM
67632008-11-06 Glenn Morris <rgm@gnu.org>
6764
6765 * xterm.c (handle_one_xevent): Don't let popup menus cause
6766 mouse-autoselect-window related window switching. (Bug#1261)
6767
860cd236
CY
67682008-11-04 David Smith <davidsmith@acm.org> (tiny change)
6769
6770 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
6771
653a3150
AS
67722008-11-04 Andreas Schwab <schwab@suse.de>
6773
6774 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
6775
870f5cac
CY
67762008-11-03 Chong Yidong <cyd@stupidchicken.com>
6777
6778 * xfns.c (Fx_wm_set_size_hint): New function.
6779
1e02f3cb
MR
67802008-11-03 Martin Rudalics <rudalics@gmx.at>
6781
6782 * textprop.c (Fprevious_single_char_property_change): Return 0
6783 when there's no change in a string. (Bug#1301)
6784
e630dfc6
MR
67852008-11-02 Martin Rudalics <rudalics@gmx.at>
6786
6787 * frame.c (do_switch_frame): New argument NORECORD passed to
6788 Fselect_window.
6789 (Fselect_frame): New argument NORECORD passed to
6790 do_switch_frame.
6791 (Fset_frame_selected_window): New argument NORECORD passed to
6792 Fselect_frame.
6793 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
6794 in call of do_switch_frame.
6795 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
6796 Handle NORECORD argument in call of Fselect_frame.
6797 * lisp.h (do_switch_frame, Fselect_frame)
6798 (Fset_frame_selected_window): Adjust declarations.
6799 * window.c (select_frame_norecord): New function.
6800 (run_window_configuration_change_hook): Use it and call
6801 Fselect_frame with NORECORD set.
6802 (Fselect_window): Pass NORECORD to Fselect_frame.
6803 (Fset_window_configuration): Handle NORECORD argument in call of
6804 do_switch_frame.
6805 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
6806 Fset_frame_selected_window.
6807 * keyboard.c (command_loop_1): Handle NORECORD in call of
6808 Fselect_frame (currently ifdefd).
6809
9020b223
GM
68102008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
6811
6812 * emacs.c (USAGE2): Untabify.
6813
793ffee8
SM
68142008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
6815
6816 * composite.c (fill_gstring_header): Fix copy/paste typo.
6817
ab6d1131
MR
68182008-10-31 Martin Rudalics <rudalics@gmx.at>
6819
6820 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
6821 (Fother_window): Rename argument and rewrite doc-string.
6822 (select_window_norecord): Fix return value. (Bug#1276)
6823
601a9cf1
JB
68242008-10-30 Juanma Barranquero <lekktu@gmail.com>
6825
6826 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
6827 new frames overriding foreground for tooltips. Based on similar patch
6828 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
6829
813b0652
CY
68302008-10-29 Chong Yidong <cyd@stupidchicken.com>
6831
6832 * emacs.c (Fdaemon_initialized): Initialize nfd.
6833
4414f58f
MR
68342008-10-29 Martin Rudalics <rudalics@gmx.at>
6835
6836 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
6837 (Fwindow_text_height): Clarify doc-strings.
6838 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
6839 doc-string of window-scroll-functions.
6840
ecdcaa09
RS
68412008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
6842
6843 * category.c (syms_of_category): Fix typo in docstring.
6844
23fe745a
JB
68452008-10-28 Juanma Barranquero <lekktu@gmail.com>
6846
6847 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
6848 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
6849 Fix typos in docstrings.
6850
ff808935
DN
68512008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
6852
6853 * emacs.c (daemon_pipe): Make non-static.
6854 (IS_DAEMON): Move definition ...
6855 * lisp.h (IS_DAEMON): ... here.
6856 (daemon_pipe): Declare.
6857 (is_daemon): Remove.
6858 * dispnew.c (init_display): Use IS_DAEMON.
6859
fc012771
SM
68602008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6861
6862 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
6863 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
6864
6865 * emacs.c (is_daemon): Remove.
6866 (main): Don't set is_daemon.
6867 (IS_DAEMON): New macro.
6868 (Fdaemonp, Fdaemon_initialized): Use it.
601a9cf1 6869 (Fdaemon_initialized): Write a char into the pipe to make sure the
fc012771
SM
6870 parent exits.
6871 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
6872
d8bdbe6f
CY
68732008-10-27 Chong Yidong <cyd@stupidchicken.com>
6874
d1a072bf
CY
6875 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
6876 over-sized glyph, draw it with the default glyph width.
6877
e2e325aa
CY
6878 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
6879 glyph, draw it with the default glyph width.
6880
6881 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
6882 glyph, draw it with the default glyph width.
6883
d8bdbe6f
CY
6884 * xdisp.c (try_scrolling): When computing the distance from the
6885 scroll margin to PT, try moving some distance past the window
6886 bottom before giving up.
6887
7bfac547
MR
68882008-10-27 Martin Rudalics <rudalics@gmx.at>
6889
6890 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
6891 (Fset_window_buffer): Explain in doc-string that a window can be
6892 "strongly" dedicated to its buffer.
6893
4ff029f6
DN
68942008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
6895
6896 * emacs.c (daemon_name): New variable.
6897 (main): Deal with --daemon=SERVER_NAME.
6898 (Fdaemonp): Return a name if one was passed to --daemon.
6899
5790ef40
DN
69002008-10-26 Romain Francoise <romain@orebokech.com>
6901
f9bd0df9 6902 * emacs.c (daemon_pipe): New variable.
5790ef40
DN
6903 (main): Create a pipe before forking, make the parent exit only after
6904 the child has closed its end of the pipe. Move closing the
6905 descriptors ...
6906 (Fdaemon_initialized): ... here. New function.
6907
f5385255
SM
69082008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
6909
4d632321
SM
6910 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
6911 the previous unoptimized table.
6912
f5385255
SM
6913 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
6914 the distinction between non-nil and non-t value of `dedicated'.
6915
6c56a0f3
CY
69162008-10-25 Chong Yidong <cyd@stupidchicken.com>
6917
6918 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
f5385255 6919 read_char_minibuf_menu_text is large enough to hold the menu string.
6c56a0f3 6920
fec89261
MR
69212008-10-25 Martin Rudalics <rudalics@gmx.at>
6922
6923 * window.c (Fget_buffer_window, Fdelete_windows_on)
6924 (Freplace_buffer_in_windows): Make buffer argument optional and
6925 rename to buffer_or_name.
6926
34fcddd0
CY
69272008-10-24 Chong Yidong <cyd@stupidchicken.com>
6928
f5385255
SM
6929 * xdisp.c (handle_single_display_spec, handle_display_prop):
6930 Undo 2005-05-16 change.
34fcddd0
CY
6931 (handle_stop): Pop iterator if it's loaded with an empty string.
6932 (get_overlay_strings_1): Don't save iterator if it's loaded with
6933 an empty string (bug#1201).
6934
064766f2
KH
69352008-10-24 Kenichi Handa <handa@m17n.org>
6936
6937 * ftfont.c (ftfont_otf_features): Fix previous change.
6938 (ftfont_otf_capability): Check FeatureList.FeatureCount before
6939 calling ftfont_otf_features.
6940
f9bd0df9 69412008-10-24 Kenichi Handa <handa@m17n.org>
064766f2
KH
6942
6943 * font.c (font_match_p): Fix for the case that a vector of
6944 characters is in script-representative-chars.
6945
1dae9197
MA
69462008-10-24 Michael Albinus <michael.albinus@gmx.de>
6947
6948 * dbusbind.c (xd_in_read_queued_messages): New variable.
f5385255 6949 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
1dae9197
MA
6950 (xd_read_queued_messages): Catch Qdbus_error from the macros.
6951 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
777013f2 6952 macro. (Bug#1186)
1dae9197 6953
f9bd0df9 69542008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
9b3362b8
DN
6955
6956 * s/sol2-10.h: New file.
6957
878a4584
JB
69582008-10-23 Juanma Barranquero <lekktu@gmail.com>
6959
6960 * xdisp.c (fill_glyph_string): Fix typo in source (though the
6961 poor beast has survived 9+ years and the jump from xterm.c!).
6962
cd265ca6
MR
69632008-10-23 Martin Rudalics <rudalics@gmx.at>
6964
6965 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
6966 Reword doc-string.
f5385255 6967 (Fbury_buffer): In doc-string say what happens to the buffer's window.
cd265ca6 6968
472a4dc9
JB
69692008-10-23 Juanma Barranquero <lekktu@gmail.com>
6970
6971 * character.c (syms_of_character) <script-representative-chars>:
6972 <unicode-category-table>: Doc fixes.
6973
159bd5a2
NF
69742008-10-23 Noah Friedman <friedman@splode.com>
6975
6976 * coding.c (make_conversion_work_buffer): Check that
6977 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
6978 Fget_buffer_create.
6979
49f9c344
KH
69802008-10-23 Kenichi Handa <handa@m17n.org>
6981
6982 * font.c (font_add_log): Check the values of extra properties.
6983
12bb3111
MR
69842008-10-22 Martin Rudalics <rudalics@gmx.at>
6985
6986 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
6987 Reword doc-string.
6988 (Fset_window_parameter): Use NILP.
6989 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
f5385255 6990 (Frecenter): Use "selected" instead of "current" window in doc-strings.
12bb3111 6991
bbeb4e99
JB
69922008-10-22 Juanma Barranquero <lekktu@gmail.com>
6993
6994 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
6995
69962008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
cb83c00b
AR
6997
6998 * nsfns.m (ns_appkit_version): New function.
6999 (x-server-version): Use it.
7000 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
7001 (x-server-vendor): Don't check_ns().
7002
7003 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
7004
a9b555d3
JB
70052008-10-22 Juanma Barranquero <lekktu@gmail.com>
7006
7007 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
7008 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
7009
4626499f
KH
70102008-10-22 Kenichi Handa <handa@m17n.org>
7011
e3681952
KH
7012 * syntax.c (scan_words): Call word_boundary_p instead of comparing
7013 scripts.
7014
4626499f
KH
7015 * category.c (word_boundary_p): Check scripts instead of charset.
7016 Handle nil value in word-separating-categories and
7017 word-combining-categories.
7018 (syms_of_category): Fix docstrings of word-separating-categories
7019 and word-combining-categories.
7020
1560f91a
EZ
70212008-10-21 Eli Zaretskii <eliz@gnu.org>
7022
7023 * coding.c (Fencode_coding_region, Fdecode_coding_region)
7024 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
7025
f4668441
MR
70262008-10-21 Martin Rudalics <rudalics@gmx.at>
7027
7028 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
7029 Rename arg "buffer" to "buffer_or_name".
7030 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
7031 it optional.
7032 (no_switch_window): Remove since the return value is not used.
a9b555d3 7033 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
f4668441
MR
7034 Consider window as dedicated when Fwindow_dedicated_p returns a
7035 non-nil value.
7036 * lisp.h: Remove prototype for no_switch_window.
7037
fd75ddb2
JD
70382008-10-21 Jan Djärv <jan.h.d@swipnet.se>
7039
7040 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
2ae37cf0 7041 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
fd75ddb2 7042
07295713
KH
70432008-10-21 Kenichi Handa <handa@m17n.org>
7044
7045 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
7046 check Vlatin_extra_code_table.
7047
712adc82
EZ
70482008-10-20 Eli Zaretskii <eliz@gnu.org>
7049
7050 * fileio.c (Fset_file_modes): Doc fix.
7051
f549eb0b
MA
70522008-10-19 Michael Albinus <michael.albinus@gmx.de>
7053
7054 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
7055 in arrays.
7056
aac0c6e3
MR
70572008-10-19 Martin Rudalics <rudalics@gmx.at>
7058
7059 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
7060 Mention kill-buffer in doc-string.
7061 (Fset_window_buffer): Reinsert tem check removed in last commit.
7062 (Fenlarge_window, Fshrink_window): Have argument names and
7063 doc-string follow Elisp manual more closely.
7064
70652008-10-18 Eli Zaretskii <eliz@gnu.org>
7066
7067 * fileio.c (Fset_file_modes): Doc fix.
7068
70692008-10-18 Martin Rudalics <rudalics@gmx.at>
7070
7071 * window.c (Fwindow_width, Fset_window_start)
7072 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
f5385255
SM
7073 (Fdelete_windows_on, Freplace_buffer_in_windows):
7074 Make doc-strings follow code and Elisp manual more closely.
aac0c6e3
MR
7075 (Fwindow_dedicated_p): Make window argument optional.
7076 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
7077 (Fset_window_buffer): Respect any non-nil dedicated value for
7078 window. Rename "buffer" argument to "buffer_or_name".
7079
70802008-10-18 Ulrich Mueller <ulm@gentoo.org>
7081
7082 * m/sh3.h: New file, machine description for SuperH.
7083
70842008-10-17 Martin Rudalics <rudalics@gmx.at>
7085
7086 * window.c (Fsplit_window): Rename arg horflag to horizontal.
7087
70882008-10-17 Kenichi Handa <handa@m17n.org>
7089
7090 * ftfont.c (ftfont_otf_features): Fix indexing
7091 gsub_gpos->FeatureList.Feature. Check the validity of indices.
7092
70932008-10-16 Magnus Henoch <mange@freemail.hu>
7094
7095 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
7096 (Fdbus_call_method_asynchronously): Ditto.
7097 This change makes C-h f display the argument list.
7098
70992008-10-16 Chong Yidong <cyd@stupidchicken.com>
7100
7101 * fileio.c (Fexpand_file_name): Doc fix.
7102
7103 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
7104 of :foreground and :background equivalent to unspecified (20.x
7105 compatibility).
7106
71072008-10-15 Eli Zaretskii <eliz@gnu.org>
7108
7109 * buffer.c (syms_of_buffer): Doc fix.
7110
71112008-10-14 Kenichi Handa <handa@m17n.org>
7112
7113 * font.c (font_clear_prop): When clearing font width, clear the
7114 average width field too.
7115
71162008-10-12 Andreas Schwab <schwab@suse.de>
7117
7118 * ftfont.c (ftfont_shape_by_flt): Make static.
7119 * ftfont.h (ftfont_shape_by_flt): Don't declare.
7120
7121 * font.c: Don't include <m17n-flt.h>.
7122
71232008-10-10 Eli Zaretskii <eliz@gnu.org>
7124
7125 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
7126
71272008-10-09 Eli Zaretskii <eliz@gnu.org>
7128
7129 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
7130 away code.
7131
71322008-10-09 Chong Yidong <cyd@stupidchicken.com>
7133
7134 * dispnew.c (update_text_area): Avoid looping due to large glyph
7135 overhangs (bug#1070).
7136
71372008-10-09 Kenichi Handa <handa@m17n.org>
7138
7139 * fontset.c (face_for_char): If face->fontset is negative, just
7140 return ascii_face.
7141
f5385255
SM
7142 * font.c (font_delete_unmatched): Fix previous change.
7143 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
aac0c6e3
MR
7144
71452008-10-09 Martin Rudalics <rudalics@gmx.at>
7146
7147 * frame.c (Fraise_frame): On text-only terminals select frame in
7148 order to make it visible. (Bug#1061)
7149
71502008-10-08 Chong Yidong <cyd@stupidchicken.com>
7151
7152 * fontset.c (fontset_find_font): Check frame validity.
7153
71542008-10-07 Chong Yidong <cyd@stupidchicken.com>
7155
a9b555d3 7156 * gtkutil.c (xg_display_open): Reset default display if none exists.
aac0c6e3
MR
7157 (xg_display_close): Allow Emacs to close all displays (bug#985).
7158
71592008-10-06 Andreas Schwab <schwab@suse.de>
7160
f5385255 7161 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
aac0c6e3
MR
7162
71632008-10-06 Chong Yidong <cyd@stupidchicken.com>
7164
f5385255 7165 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
aac0c6e3 7166
a9b555d3 7167 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
aac0c6e3
MR
7168
7169 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
7170 during initialization.
7171
71722008-10-04 Eli Zaretskii <eliz@gnu.org>
7173
7174 * xdisp.c (redisplay_internal): If frame switched, redisplay the
7175 whole thing on MSDOS frames as well as on a TTY.
7176
7177 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
7178 well as for TTY.
7179 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
7180 well as on a TTY.
7181
7182 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
7183 as well as for TTY.
7184
7185 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
7186
7187 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
7188 MSDOS frames as well.
7189
71902008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
7191
7192 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
7193 correct arguments.
b71ac3dd 7194 * menu.c (find_and_return_menu_selection): Add cast.
aac0c6e3
MR
7195
71962008-10-03 Glenn Morris <rgm@gnu.org>
7197
7198 * emacs.c (USAGE1): Add --daemon.
7199
72002008-10-02 Eli Zaretskii <eliz@gnu.org>
7201
7202 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
7203 100, so it's in percents as advertised.
7204
72052008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
7206
7207 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
7208 (ns_output.current_cursor, ns_output.desired_cursor)
7209 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
7210 (FRAME_NEW_CURSOR_COLOR): Remove.
7211
7212 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
a9b555d3 7213 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
aac0c6e3
MR
7214 enumeration (HOLLOW_BOX_CURSOR, etc.).
7215
7216 * nsterm.m (ns_frame_rehighlight): Remove commented code.
7217 (draw_window_cursor): Simplify code.
f5385255
SM
7218 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
7219 Don't change cursor type. In latter, call rehighlight instead of doing
aac0c6e3 7220 updates manually.
a9b555d3
JB
7221 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
7222 Use core Emacs cursor types.
aac0c6e3 7223
b8ff72fa 7224 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
aac0c6e3
MR
7225
72262008-10-02 Martin Rudalics <rudalics@gmx.at>
7227
7228 * process.c (Faccept_process_output): Fix doc-string.
7229
72302008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
7231
7232 * gmalloc.c (__sbrk): Also define for uClibc.
7233
7234 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
7235 for uClibc.
7236
72372008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
7238
7239 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
7240 styles.
7241 (nsfont_open): Reenable the cache.
7242
72432008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
7244
7245 * font.c (font_matching_entity): Reflect ATTRS in font selection.
7246 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
7247
72482008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
7249
7250 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
7251 a suspended terminal.
7252
72532008-09-30 Michael Albinus <michael.albinus@gmx.de>
7254
7255 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
7256
72572008-09-30 Eli Zaretskii <eliz@gnu.org>
7258
7259 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
7260
72612008-09-30 Chong Yidong <cyd@stupidchicken.com>
7262
7263 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
7264 in a continued line coincides with a line beginning.
7265
72662008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
7267
7268 * nsfont.m (nsfont_trait_distance): Fix bug.
7269 (nsfont_list): Return a list rather than a vector (syncs with Handa
7270 changes of 2008-05-14).
7271 (nsfont_open): Improve logging.
7272
72732008-09-29 Andreas Schwab <schwab@suse.de>
7274
7275 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
7276
72772008-09-28 Martin Rudalics <rudalics@gmx.at>
7278
7279 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
7280 name as char-resolve-modifiers.
7281 Reported by: Markus Triska <markus.triska@gmx.at>
7282
72832008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
7284
7285 * dispnew.c (init_display): Return earlier when running as a daemon.
7286
72872008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
7288
7289 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
7290
72912008-09-27 Eli Zaretskii <eliz@gnu.org>
7292
7293 * composite.c (Fcomposition_get_gstring)
7294 (Fcompose_region_internal, Fcompose_string_internal)
7295 (Ffind_composition_internal): Doc fix.
7296 (syms_of_composite) <compose-chars-after-function>: Doc fix.
7297 (syms_of_composite) <auto-composition-function>: Doc fix.
7298 (syms_of_composite) <composition-function-table>: Doc fix.
7299
73002008-09-25 Chong Yidong <cyd@stupidchicken.com>
7301
7302 * search.c (wordify): New argument for lax word-ends.
7303 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
7304
73052008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
7306
7307 * lisp.h (is_daemon): Declare.
7308 * dispnew.c (init_display): Do not try to initialize the terminal
7309 when running as a daemon.
7310
73112008-09-22 Chong Yidong <cyd@stupidchicken.com>
7312
7313 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
7314 x_display_pixel_height.
7315
73162008-09-22 Martin Rudalics <rudalics@gmx.at>
7317
7318 * undo.c (record_point): Don't call Fundo_boundary for first
7319 change. (Bug#731)
7320
73212008-09-22 Juanma Barranquero <lekktu@gmail.com>
7322
7323 * emacs.c (Fdaemonp): Doc fix.
7324
73252008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
7326
7327 * emacs.c (main): Place #ifdef in the proper place.
7328
73292008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
7330
7331 * emacs.c (standard_args): Add --daemon.
7332 (main): Disconnect from the terminal when --daemon is passed.
7333 (is_daemon): New variable.
7334 (Fdaemonp): New function.
7335 (syms_of_emacs): Defsubr it.
7336
73372008-09-20 Chong Yidong <cyd@stupidchicken.com>
7338
7339 * xdisp.c (get_next_display_element): Handle string display
7340 correctly when checking for the end of a box run.
7341
73422008-09-20 Glenn Morris <rgm@gnu.org>
7343
7344 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
7345 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
7346 (Frename_file): Avoid copying to trash if a rename involves
7347 a delete. (Bug#964).
7348
73492008-09-20 Eli Zaretskii <eliz@gnu.org>
7350
7351 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
7352 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
7353 frames as well as termcap frames.
7354 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
7355 get_named_tty.
7356
73572008-09-19 Eli Zaretskii <eliz@gnu.org>
7358
7359 * process.c (procfs_system_process_attributes): Fix cmdline in
7360 case /proc/PID/cmdline is empty.
7361
7362 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
7363 x_display_pixel_height.
7364
73652008-09-19 Juanma Barranquero <lekktu@gmail.com>
7366
7367 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
7368
7369 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
7370 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
7371
73722008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
7373
7374 * dispextern.h (struct it): Move line_wrap away from the middle of
7375 bitfields. Move voffset in struct iterator_stack_entry after the
7376 bitfields. Move tab_width near after another short.
7377
73782008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
7379
7380 * frame.h (struct frame): Move alpha from the middle of bitfields.
7381
7382 * window.h (struct window): Move frozen_window_start_p after the
7383 rest of the bitfields to reduce padding.
7384
73852008-09-18 Chong Yidong <cyd@stupidchicken.com>
7386
7387 * xterm.h (x_display_info): Remove `height' and `width' members.
7388
7389 * nsterm.h (ns_display_info): Remove `height' and `width' members.
7390
7391 * w32term.h (w32_display_info): Remove `height', `width',
7392 `height_in', and `width_in' members.
7393
b8ff72fa
SM
7394 * xterm.c (x_display_pixel_height, x_display_pixel_width):
7395 New functions.
aac0c6e3
MR
7396 (x_calc_absolute_position): Use them.
7397 (x_term_init): Omit removed `height' and `width' members.
7398
b8ff72fa
SM
7399 * w32term.c (x_display_pixel_height, x_display_pixel_width):
7400 New functions.
aac0c6e3
MR
7401 (w32_read_socket, x_calc_absolute_position): Use them.
7402 (w32_initialize_display_info, w32_term_init): Omit removed members
7403 of w32_display_info.
7404
b8ff72fa
SM
7405 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
7406 New functions.
7407 (ns_initialize_display_info): Omit removed members of ns_display_info.
aac0c6e3 7408
b8ff72fa
SM
7409 * xterm.c (x_display_pixel_height, x_display_pixel_width):
7410 New functions.
aac0c6e3
MR
7411 (x_calc_absolute_position): Use them.
7412 (x_term_init): Omit removed `height' and `width' members.
7413
7414 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
b8ff72fa
SM
7415 (compute_tip_xy):
7416 * frame.c (x_fullscreen_adjust):
aac0c6e3
MR
7417 * xmenu.c (menu_position_func): Use x_display_pixel_height and
7418 x_display_pixel_width.
7419
74202008-09-18 Kenichi Handa <handa@m17n.org>
7421
7422 * composite.c (fill_gstring_header): Don't check FROM and TO here.
7423 (composition_compute_stop_pos): Fix handling of static composition.
7424 (Fcomposition_get_gstring): Check FROM and TO at first.
7425
74262008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
7427
46e722a9 7428 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
aac0c6e3
MR
7429 mixup (YAILOM).
7430
74312008-09-17 Chong Yidong <cyd@stupidchicken.com>
7432
7433 * indent.c (Fvertical_motion): Use position reported by iterator
7434 instead of PT for determining screen motion (bug#943).
7435
74362008-09-17 Romain Francoise <romain@orebokech.com>
7437
7438 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
7439
74402008-09-17 Kenichi Handa <handa@m17n.org>
7441
7442 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
7443
7444 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
7445 if necessary.
7446
74472008-09-16 Kenichi Handa <handa@m17n.org>
7448
7449 * coding.c (make_conversion_work_buffer): Avoid calling
7450 Fget_buffer_create if it is not necessary.
7451
74522008-09-15 Martin Rudalics <rudalics@gmx.at>
7453
7454 * window.c (Fselect_window): Don't update window_select_count and
7455 use_time when norecord is not nil.
7456
74572008-09-14 Kenichi Handa <handa@m17n.org>
7458
7459 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
7460 specpdl_ptr.
7461
74622008-09-12 Kenichi Handa <handa@m17n.org>
7463
7464 * indent.c (scan_for_column): Don't handle automatic composition
7465 if the current buffer is not associated with a window.
7466
7467 * composite.c (composition_reseat_it): If the current buffer is
7468 not associated with a window, ignore the automatic composition.
7469 (find_automatic_composition): Likewise.
7470
74712008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7472
7473 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
7474 (Fgpm_mouse_stop): Use it.
7475 * termhooks.h (close_gpm): Declare.
7476 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
7477 connection if Gpm_GetEvent fails.
7478
7479 * window.c (set_window_buffer): Always preserve current-buffer.
7480
74812008-09-12 Glenn Morris <rgm@gnu.org>
7482
7483 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
7484
74852008-09-11 Glenn Morris <rgm@gnu.org>
7486
7487 * charset.c (charset-map-path): Doc fix.
7488
74892008-09-10 Kenichi Handa <handa@m17n.org>
7490
7491 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
7492
7493 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
7494 compose a grapheme cluster with the preceding base glyph.
7495
7496 * composite.c (composition_compute_stop_pos): Fix previous change.
7497 Reset cmp_it->id to -1 at first.
7498
74992008-09-10 Glenn Morris <rgm@gnu.org>
7500
7501 * Makefile.in (character.o, chartab.o): Fix config.h typo.
7502
75032008-09-09 Chong Yidong <cyd@stupidchicken.com>
7504
7505 * keyboard.c (read_key_sequence): Reapply translation maps when
7506 switching keyboards.
7507
75082008-09-09 Kenichi Handa <handa@m17n.org>
7509
7510 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
7511 characters.
7512
7513 * composite.c (FORWARD_CHAR): Fix calculation
7514 of (POSITION).pos_byte.
7515 (composition_compute_stop_pos): Limit the search of composition to
7516 at most 500 characters ahead. If we reach the limit or find a
7517 newline, set cmp_it->ch to -2 and return 0.
7518 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
7519
75202008-09-08 Kenichi Handa <handa@m17n.org>
7521
7522 * indent.c (Fvertical_motion): Be sure to set
7523 it_overshoot_expected if it.cmp_it.id is non-negative.
7524
75252008-09-07 Andreas Schwab <schwab@suse.de>
7526
7527 * callproc.c (Fcall_process): Don't hold references to string data
7528 across garbage collection. Move initialisation of new_argv down
7529 to avoid compiler bug.
7530
75312008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7532
7533 * process.c (Fsystem_process_attributes): Doc fix.
7534
75352008-09-07 Chong Yidong <cyd@stupidchicken.com>
7536
7537 * callproc.c (Fcall_process): Canonicalize current directory name.
7538
7539 * xdisp.c (move_it_to): When moving by vpos, ensure that the
7540 iterator advances to the next line if the current line ends in a
7541 continued tab.
7542
75432008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
7544
7545 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
7546 member to point to cmp_from.
7547
7548 * xdisp.c: Doc fix for references to gidx data member.
7549
75502008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
7551
7552 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
7553
75542008-09-07 Kenichi Handa <handa@m17n.org>
7555
7556 * composite.c (FORWARD_CHAR): Check STOP after
7557 incrementing (POSITION).pos.
7558
75592008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7560
7561 * process.c (Fsystem_process_attributes): Doc fix.
7562
75632008-09-06 Chong Yidong <cyd@stupidchicken.com>
7564
7565 * keyboard.c (Ftop_level): Doc fix.
7566
75672008-09-06 Eli Zaretskii <eliz@gnu.org>
7568
7569 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
7570 minibuffer, don't let lower part of menu invade the echo area.
7571
7572 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
7573 "char *q" to access menu text and advance through it. Revert the
7574 change that displayed ">" instead of ASCII character 0x10.
7575
75762008-09-05 Eli Zaretskii <eliz@gnu.org>
7577
7578 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
7579 toggle boxes and radio buttons on MS-DOS as well.
7580
75812008-09-05 Kenichi Handa <handa@m17n.org>
7582
7583 * composite.c (autocmp_chars): Check lookback count.
7584 (composition_compute_stop_pos): Set cmp_it->lookback.
7585 (composition_reseat_it): Check lookback count.
7586 (struct position_record): New struct.
7587 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
7588 (find_automatic_composition): New function.
7589 (composition_adjust_point): Use find_automatic_composition.
7590
7591 * dispextern.h (struct composition_it): New member lookback.
7592
75932008-09-02 Chong Yidong <cyd@stupidchicken.com>
7594
7595 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
7596 if moving by a single line.
7597
75982008-09-02 Andreas Schwab <schwab@suse.de>
7599
7600 * xterm.c (x_delete_display): Fix merge error.
7601
7602 * fileio.c (Fexpand_file_name): Remove unused variables.
7603
76042008-09-02 Eli Zaretskii <eliz@gnu.org>
7605
7606 * fileio.c (Fexpand_file_name): Copy argument `name' into local
7607 storage on all platforms, not just on DOS_NT.
7608
76092008-09-02 Jason Rumney <jasonr@gnu.org>
7610
b8ff72fa
SM
7611 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
7612 Ensure mouse is not grabbed after menu is finished.
aac0c6e3
MR
7613
76142008-09-01 Chong Yidong <cyd@stupidchicken.com>
7615
7616 * xfaces.c (Finternal_set_alternative_font_family_alist)
7617 (Finternal_set_alternative_font_registry_alist): Properly copy
7618 entire alist structure.
7619
76202008-09-01 Kenichi Handa <handa@m17n.org>
7621
d66c0241 7622 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
aac0c6e3 7623 representative chars of the script is a vector.
d66c0241
JB
7624 (ftfont_list): Handle the case where the representative chars of
7625 the script is a vector.
aac0c6e3
MR
7626
7627 * character.c (syms_of_character): Docstring of
7628 script-representative-chars fixed.
7629
76302008-08-31 Eli Zaretskii <eliz@gnu.org>
7631
7632 * msdos.c (BUILD_CHAR_GLYPH): New macro.
7633 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
7634 the menu. Allocate larger buffer for `text', to account for
7635 possible ^C characters.
7636
76372008-08-31 Martin Rudalics <rudalics@gmx.at>
7638
7639 * xdisp.c (prepare_menu_bars): Don't call
7640 Vwindow_size_change_functions with arg Qt.
7641
76422008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
7643
7644 * font.h (font_range):
7645 * fileio.c (report_file_error):
46e722a9
SM
7646 * composite.c (composition_update_it): Yet another int/Lisp_Object
7647 mixup (YAILOM).
aac0c6e3
MR
7648
76492008-08-30 Glenn Morris <rgm@gnu.org>
7650
7651 * data.c (Fmake_variable_frame_local): Doc fix.
7652
7653 * frame.c (Fmodify_frame_parameters): Doc fix.
7654
76552008-08-30 Eli Zaretskii <eliz@gnu.org>
7656
7657 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
7658 needed by GetTokenInformation.
7659 (w32_system_process_attributes): Check return values of all system
7660 APIs.
7661
7662 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
7663 only when the state changes.
7664 (IT_update_begin, IT_update_end): Add termscript trace.
7665
7666 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
7667 clipboard is unavailable. Set dst to NULL if it doesn't point to
7668 malloc'ed data.
7669 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
7670 passing random values to xfree.
7671
7672 * dispnew.c (init_display): Set `tty's association in frame's
b8ff72fa 7673 parameters alist to the name of the terminal device, if that is known.
aac0c6e3
MR
7674
76752008-08-29 Jason Rumney <jasonr@gnu.org>
7676
7677 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
7678
76792008-08-29 Eli Zaretskii <eliz@gnu.org>
7680
7681 * composite.c (fill_gstring_body): Avoid compiler warnings.
7682
7683 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
7684 LGLYPH_SET_CODE to avoid compiler warnings.
7685
2ae37cf0 7686 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
aac0c6e3
MR
7687
7688 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
7689
7690 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
7691 LGLYPH_SET_CODE.
7692
76932008-08-29 Kenichi Handa <handa@m17n.org>
7694
7695 * fileio.c (report_file_error): Don't downcase the first character
7696 of errstring if it is still unibyte.
7697
76982008-08-29 Kenichi Handa <handa@m17n.org>
7699
7700 These changes are to re-implement the automatic composition so
7701 that it doesn't use text properties.
7702
7703 * Makefile.in (ftfont.o): Depend on composite.h.
7704 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
7705
7706 * character.h (Vunicode_category_table): Extern it.
7707
7708 * character.c (Vunicode_category_table): New variable.
7709 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
7710
7711 * chartab.c (optimize_sub_char_table): Perform more greedy
7712 optimization.
7713
b8ff72fa
SM
7714 * composite.h (enum composition_method):
7715 Delete COMPOSITION_WITH_GLYPH_STRING.
aac0c6e3
MR
7716 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
7717 (Vcomposition_function_table): Extern it.
7718 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
7719 (composition_gstring_put_cache, composition_gstring_from_id)
7720 (composition_gstring_p, composition_gstring_width)
7721 (composition_compute_stop_pos, composition_reseat_it)
7722 (composition_update_it, composition_adjust_point): Extern them.
7723 (Fcomposition_get_gstring): EXFUN it.
7724
d66c0241 7725 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
aac0c6e3
MR
7726 (Vcomposition_function_table)
7727 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
b8ff72fa
SM
7728 (gstring_hash_table, gstring_work, gstring_work_headers):
7729 New variables.
aac0c6e3
MR
7730 (gstring_lookup_cache, composition_gstring_put_cache)
7731 (composition_gstring_from_id, composition_gstring_p)
7732 (composition_gstring_width, fill_gstring_header)
7733 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
7734 (composition_reseat_it, composition_update_it)
b8ff72fa 7735 (composition_adjust_point, Fcomposition_get_gstring): New functions.
aac0c6e3
MR
7736 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
7737 and gstring_work_headers. DEFVAR_LISP composition-function-table.
a73f9c9d 7738 Defsubr composition_get_gstring.
aac0c6e3
MR
7739
7740 * dispextern.h (struct glyph): New union u.cmp. Delete the member
7741 cmp_id.
7742 (struct glyph_string): Delete the member gidx. New members
7743 cmp_id, cmp_from, and cmp_to.
7744 (enum it_method): Delete GET_FROM_COMPOSITION.
7745 (struct composition_it): New struct.
7746 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
7747 Delete c, len, cmp_id, cmp_len in u.comp.
7748
7749 * font.h (enum lgstring_indices): Delete it.
b8ff72fa 7750 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
aac0c6e3 7751 (enum lglyph_indices): Likewise.
b8ff72fa 7752 (font_range): Adjust extern.
aac0c6e3
MR
7753 (font_fill_lglyph_metrics): Extern it.
7754
7755 * font.c (QCf): New variable.
7756 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
7757 (font_prepare_composition): Delete this function.
7758 (font_range): Type and arguments changed.
7759 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
7760 (font_fill_lglyph_metrics): New function.
b8ff72fa 7761 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
aac0c6e3 7762 (syms_of_font): DEFSYM QCf. Delete defsubr for
b8ff72fa
SM
7763 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
7764 Defsubr Sfont_shape_gstring.
aac0c6e3
MR
7765
7766 * fontset.h (font_for_char): Extern it.
7767
7768 * fontset.c (font_for_char): New function.
7769
7770 * ftfont.c: Include composite.h.
7771 (ftfont_resolve_generic_family): Add langset "en" to pattern.
b8ff72fa 7772 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
aac0c6e3
MR
7773
7774 * indent.c: Include composite.h and dispextern.h.
7775 (check_composition): Delete this function.
7776 (scan_for_column): Handle composition by
7777 composition_compute_stop_pos, composition_reseat_it, and
7778 composition_update_it.
7779 (compute_motion): Likewise.
7780 (Fvertical_motion): Fix checking of composition.
7781
7782 * keyboard.c (adjust_point_for_property): Check composition by
7783 composition_adjust_point.
7784
b8ff72fa 7785 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
aac0c6e3
MR
7786 struct glyph_string.
7787
b8ff72fa
SM
7788 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
7789 (append_composite_glyph): Adjust for the change of struct it and
aac0c6e3
MR
7790 struct glyph.
7791 (produce_composite_glyph): Likewise.
7792
b8ff72fa
SM
7793 * w32term.c (x_draw_composite_glyph_string_foreground):
7794 Adjust for the change of struct glyph_string.
aac0c6e3
MR
7795 (x_draw_glyph_string): Likewise.
7796
7797 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
7798 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
7799
7800 * xdisp.c: Include font.h.
7801 (it_props): Delete the entry for Qauto_composed.
7802 (init_iterator): Initialize it->cmp_it.id to -1.
7803 (compute_stop_pos): Call composition_compute_stop_pos.
b8ff72fa 7804 (face_before_or_after_it_pos): Adjust for the change of struct it.
aac0c6e3
MR
7805 (handle_auto_composed_prop): Delete it.
7806 (handle_composition_prop): Handle only static composition.
7807 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
7808 from xassert. Initialize it->cmp_it.stop_pos.
b8ff72fa 7809 (push_it): Adjust for the change of struct it.
aac0c6e3
MR
7810 (pop_it): Likewise.
7811 (get_next_element): Delete next_element_from_composition.
7812 (CHAR_COMPOSED_P): New macro.
7813 (get_next_display_element): For automatic composition, get a face
7814 from the font in the glyph-string.
7815 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
b8ff72fa 7816 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
aac0c6e3
MR
7817 (next_element_from_string): Check if the character at the current
7818 position is composed by CHAR_COMPOSED_P.
7819 (next_element_from_buffer): Likewise.
d66c0241
JB
7820 (next_element_from_composition): Adjust for the change of struct it.
7821 Update it->cmp_it.
b8ff72fa
SM
7822 (dump_glyph): Adjust for the change of struct glyph.
7823 (fill_composite_glyph_string): Adjust for the change of struct
aac0c6e3
MR
7824 it and struct glyph. Don't handle automatic composition here.
7825 (fill_gstring_glyph_string): New function.
7826 (x_get_glyph_overhangs): Handle automatic composition.
b8ff72fa 7827 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
aac0c6e3
MR
7828 (BUILD_GSTRING_GLYPH_STRING): New macro.
7829 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
7830 automatic composition.
b8ff72fa 7831 (append_composite_glyph): Adjust for the change of struct it and
aac0c6e3 7832 struct glyph.
b8ff72fa 7833 (x_produce_glyphs): Adjust for the change of struct it.
aac0c6e3 7834
b8ff72fa 7835 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
aac0c6e3
MR
7836 the change of struct glyph_string.
7837 (x_draw_glyph_string): Likewise.
7838
78392008-08-29 Glenn Morris <rgm@gnu.org>
7840
7841 * buffer.c (word-wrap): Doc fix.
7842 * xdisp.c (truncate-partial-width-windows): Doc fix.
7843 Increase default to 50.
7844
78452008-08-29 Chong Yidong <cyd@stupidchicken.com>
7846
7847 * xdisp.c (update_tool_bar_unwind): New function.
7848 (update_tool_bar): Temporarily set selected frame before building
7849 tool-bar items.
7850
78512008-08-28 Michael Albinus <michael.albinus@gmx.de>
7852
7853 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
7854 snprintf, respectively.
7855 (xd_append_arg): Convert strings with Fstring_make_unibyte.
7856
78572008-08-28 Chong Yidong <cyd@stupidchicken.com>
7858
7859 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
7860 LDFLAGS to GNUstep CC invocation.
7861
78622008-08-27 Chong Yidong <cyd@stupidchicken.com>
7863
7864 * indent.c (Fvertical_motion): Revert last change. Handle the
7865 general case where we are moving forward, and PT spans multiple
7866 screen lines.
7867
7868 * eval.c (find_handler_clause): Temporarily increase
7869 max-lisp-eval-depth while printing the backtrace buffer, to
7870 guarantee that help-mode code can run.
7871
78722008-08-27 Eli Zaretskii <eliz@gnu.org>
7873
7874 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
7875 colors under -rv.
7876 (IT_set_frame_parameters): Don't swap foreground and background
7877 colors if `(reverse . t)' is present in the frame properties.
7878 (internal_terminal_init): Call init_frame_faces only for the
7879 initial frame.
7880
78812008-08-27 Andreas Schwab <schwab@suse.de>
7882
7883 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
7884
78852008-08-27 Andreas Schwab <schwab@suse.de>
7886
7887 * search.c (search_buffer): Set char_base to zero only at the end.
7888
78892008-08-27 Kenichi Handa <handa@m17n.org>
7890
b8ff72fa 7891 * fileio.c (report_file_error): Fix handling of multibyte error string.
aac0c6e3
MR
7892
78932008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
7894
7895 * xterm.c (x_term_init): Temporarily hide the partially
7896 initialized terminal while calling vendor-specific-keysyms.
7897
78982008-08-26 Eli Zaretskii <eliz@gnu.org>
7899
7900 * msdos.c (internal_terminal_init): Most initializations done only
7901 once, especially initial_screen_colors[] and termscript open.
7902
79032008-08-26 Chong Yidong <cyd@stupidchicken.com>
7904
7905 * eval.c (Fcondition_case): Doc fix.
7906
7907 * widgetprv.h (EmacsFramePart): Change font member to the new font
7908 struct.
7909
7910 * widget.c: Include character.h and font.h for XSETFONT.
7911 (setup_frame_gcs): Compute X font id from font struct, just once.
7912
79132008-08-26 Eli Zaretskii <eliz@gnu.org>
7914
7915 * term.c (get_named_tty): Fix last change.
7916
79172008-08-26 Chong Yidong <cyd@stupidchicken.com>
7918
7919 * indent.c (Fvertical_motion): If moving forward starting from a
b8ff72fa 7920 multi-line string, move the iterator to the last line of that string.
aac0c6e3
MR
7921
79222008-08-25 Eli Zaretskii <eliz@gnu.org>
7923
7924 * frame.c (do_switch_frame): Mark previously displayed frame as
7925 obscured for FRAME_MSDOS_P frames as well.
7926
79272008-08-24 Eli Zaretskii <eliz@gnu.org>
7928
7929 * frame.c (make_terminal_frame): Initialize f->terminal,
7930 f->terminal->reference_count, and scroll bars on MS-DOS as well.
7931 Set the top frame to newly created frame.
7932 (Fmake_terminal_frame): Reuse the_only_display_info.
7933
7934 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
7935 estimating available memory.
7936
b97439ce 79372008-08-23 David Reitter <david.reitter@gmail.com>
aac0c6e3
MR
7938
7939 * nsterm.m (ns_draw_window_cursor): Don't call
7940 NSDisableScreenUpdates and NSEnableScreenUpdates on
7941 non-NS_IMPL_COCOA systems.
7942
79432008-08-23 Andreas Schwab <schwab@suse.de>
7944
7945 * process.c (procfs_system_process_attributes): Fix use of
7946 uninitialized variables.
7947
79482008-08-23 Eli Zaretskii <eliz@gnu.org>
7949
7950 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
7951
7952 * dispnew.c (init_display): Remove MS-DOS specific conditions for
7953 calling tty-set-up-initial-frame-faces.
7954
b8ff72fa
SM
7955 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
7956 Allow MSDOS frames along with X frames.
aac0c6e3
MR
7957
7958 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
7959 addition to output_termcap.
7960
7961 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
7962
7963 * termchar.h (FRAME_TTY): Support output_msdos_raw.
7964 (struct tty_display_info) [MSDOS]: Add fields related to mouse
7965 highlight.
7966
7967 * process.c [!subprocesses]: Define QCname.
7968 (syms_of_process): Intern and staticpro it.
7969
7970 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
b8ff72fa
SM
7971 Adjust for changes in encoding/decoding routines.
7972 Use encode_coding_object and decode_coding_object instead of
aac0c6e3
MR
7973 encode_coding and decode_coding.
7974
b8ff72fa 7975 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
aac0c6e3
MR
7976
7977 * dosfns.c: Include frame.h before termhooks.h.
7978 (dos_cleanup): Use CURTTY ()->termscript instead of a global
7979 variable termscript.
7980
7981 * s/msdos.h (USER_FULL_NAME): Define.
7982 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
7983
7984 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
7985 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
7986 pw->pw_gecos.
7987
7988 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
7989 SELECTED_FRAME as additional (1st) argument.
7990 (tty_read_avail_input): Handle output_msdos_raw in
7991 addition to output_termcap.
7992
7993 * msdos.c: Include frame.h before termhooks.h.
7994 (mouse_on, mouse_off, mouse_moveto, mouse_init)
7995 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
7996 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
7997 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
7998 (IT_set_terminal_modes, IT_reset_terminal_modes)
7999 (IT_set_frame_parameters): Use tty->termscript instead of a global
8000 variable termscript.
8001 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
8002 global variable terminal_coding. Don't refer to
8003 Vnonascii_translation_table.
8004 (internal_terminal_init): Set Vwindow_system in current_kboard.
8005 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
8006 Announce date and time of session start, if termscript is open.
8007 Don't zero out the_only_display_info (it is done in
b8ff72fa
SM
8008 term.c:init_tty). Open termscript only of not already open.
8009 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
aac0c6e3
MR
8010 here instead of dos_ttraw. Don't initialize display if this is an
8011 initial tty. Don't set FRAME_FONT.
8012 (Vwindow_system_version): Bump to 23.
8013 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
8014 is available, set up mouse_position_hook.
8015 (dos_ttraw, IT_set_terminal_modes): If called with initial
8016 terminal, do nothing.
8017 (IT_set_frame_parameters): Handle the Qtty_type frame
8018 parameter by calling internal_terminal_init.
8019 (dos_set_window_size, show_mouse_face)
8020 (clear_mouse_face, IT_note_mode_line_highlight)
8021 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
8022 (dos_rawgetc): Use tty_display_info instead of x_display_info.
8023 (initialize_msdos_display): New function.
8024 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
8025 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
8026 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
8027 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
b8ff72fa 8028 Accept additional argument: a pointer to a frame. Update all callers.
aac0c6e3
MR
8029 (request_sigio, unrequest_sigio): Don't define, now defined on
8030 sysdep.c.
8031 (IT_write_glyphs): Rewrite to use encode_terminal_code.
8032
8033 * term.c [MSDOS]: Include msdos.h.
8034 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
8035 conditional to DOS_NT. Allow only one call to this function in a
8036 session. Don't allocate a new struct tty_display_info; instead,
8037 reuse the_only_display_info. Call get_tty_size to get screen
8038 dimensions. Call init_baud_rate to set bad_rate.
8039 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
8040 (Fsuspend_tty) [MSDOS]: Don't close input and output.
b8ff72fa 8041 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
aac0c6e3
MR
8042 (get_tty_terminal, get_named_tty, Ftty_type)
8043 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
8044 output_termcap.
b8ff72fa
SM
8045 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
8046 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
2ae37cf0 8047 only when subprocesses are supported.
aac0c6e3
MR
8048
8049 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
8050 f->output_data.x.
8051 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
8052 terminal devices.
8053
5582fbc7 8054 * msdos.h: Remove definition of struct x_display_info and struct
aac0c6e3
MR
8055 x_output.
8056 (FRAME_FONT): Use output_data.tty.
8057 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
b8ff72fa
SM
8058 (struct x_display_info): Rename from display_info. Update all users in
8059 msdos.c.
aac0c6e3 8060 (struct x_output): Remove background_pixel and foreground_pixel.
b8ff72fa 8061 (the_only_display_info): Rename from the_only_x_display.
aac0c6e3
MR
8062 (dos_ttraw): Update prototype.
8063
8064 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
8065 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
8066
80672008-08-23 Jason Rumney <jasonr@gnu.org>
8068
8069 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
8070 (fn_TIFFSetDirectory): New library function used.
8071 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
8072 (tiff_load): Use :index to select among multiple images. Set count
8073 property when multiple images exist.
8074 (gif_format): Use :index, not :image.
8075
80762008-08-23 Chong Yidong <cyd@stupidchicken.com>
8077
8078 * xdisp.c (try_scrolling): Check INT_MAX instead of
8079 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
8080 to obtain INT_MAX.
8081
80822008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
8083
8084 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
8085
80862008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
8087
8088 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
8089 GNUstep library location.
8090
80912008-08-21 Chong Yidong <cyd@stupidchicken.com>
8092
8093 * xfaces.c (x_update_menu_appearance): Check validity of menu font
8094 before using it.
8095
8096 * puresize.h (BASE_PURESIZE): Increase to 1250000.
8097
80982008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
8099
8100 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
8101 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
8102 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
8103 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
8104 (EmacsApp-cursor_blink_handler): Remove declaration.
8105 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
8106 match 01 Feb 2008 changes in xterm.c.
8107 (ns_read_socket): Add cast to avoid warning.
8108 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
8109 GNUstep.
8110
81112008-08-20 Chong Yidong <cyd@stupidchicken.com>
8112
8113 * xselect.c (x_get_foreign_selection): Return nil if desired
8114 selection could not be obtained, instead of signalling an error.
8115
81162008-08-20 David Reitter <david.reitter@gmail.com>
8117
8118 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
8119 * nsterm.m: Remove ns-specific code for cursor blinking.
8120 (ns_draw_window_cursor): Clear cursor properly rather than
8121 redrawing the area. Respect width of bar cursors.
8122 These changes enable the use of generic blink-cursor-mode and
8123 generic cursor types in NS and support smooth cursor movements (do
8124 not blink off after command).
8125 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
8126 Nextstep, too.
8127
81282008-08-19 Kenichi Handa <handa@m17n.org>
8129
8130 * font.c (Vfont_log_deferred): New variable.
8131 (font_add_log): Check Vfont_log_deferred.
8132 (font_deferred_log): New function.
8133
8134 * font.h (font_deferred_log): Extern it.
8135
8136 * fontset.c (reorder_font_vector): Use encoding charset of fonts
8137 for sorting.
8138 (face_for_char): Use deferred log.
8139
81402008-08-18 Kenichi Handa <handa@m17n.org>
8141
8142 * fontset.c (face_for_char): Add font log.
8143
8144 * font.c (font_add_log): Add the font properties :script, :lang,
8145 and :otf in the log.
8146
81472008-08-17 Chong Yidong <cyd@stupidchicken.com>
8148
8149 * xdisp.c: Remove dead code.
8150 (handle_invisible_prop, next_overlay_string): Defer call to
8151 setup_for_ellipsis.
8152 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
8153
81542008-08-15 Chong Yidong <cyd@stupidchicken.com>
8155
8156 * xfaces.c (lookup_derived_face): Properly handle possible zero
8157 return value of get_lface_attributes.
8158 (merge_faces): Don't tell lookup_derived_face to signal an error
8159 if face is not found.
8160
8161 * dired.c (Fdirectory_files): Doc fix.
8162
8163 * process.c (make_process): Initialize kill_without_query struct
8164 member.
8165
81662008-08-15 Eli Zaretskii <eliz@gnu.org>
8167
8168 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
8169 Alternative calculation of totphys for Visual Studio 6.
8170
8171 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
8172
8173 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
8174 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
8175 All users changed.
8176 (stat): Only root directory passed to GetDriveType. Allow RAM
8177 disk as well as local fixed disk when w32-get-true-file-attributes
8178 is set to `local'.
8179 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
8180 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
8181 (w32_cached_id, w32_add_to_cache): New functions.
8182 (get_name_and_id): Look account names in the cache before calling
8183 lookup_account_sid.
8184 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
8185 New initialization flags.
8186 (globals_of_w32): Initialize them to zero.
8187 (w32_system_process_attributes): Use w32_cached_id and
8188 w32_add_to_cache.
8189
81902008-08-14 Lawrence Mitchell <wence@gmx.li>
8191
8192 * lread.c (Fread_char, Fread_char_exclusive): If no character
8193 event is read before timeout is reached, return nil, rather than
8194 converting to a number.
8195
81962008-08-14 Chong Yidong <cyd@stupidchicken.com>
8197
8198 * fns.c (use_dialog_box): Doc fix.
8199
8200 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
8201 on OS X.
8202
82032008-08-13 Chong Yidong <cyd@stupidchicken.com>
8204
8205 * frame.c (Qns_parse_geometry): New var.
8206 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
8207
82082008-08-11 Chong Yidong <cyd@stupidchicken.com>
8209
8210 * xdisp.c (x_produce_glyphs): Handle the case when font has no
8211 space character in calculating tabs.
8212
82132008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
8214
8215 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
8216
82172008-08-10 Glenn Morris <rgm@gnu.org>
8218
8219 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
8220 silence gcc "limited range of data type" warnings in some
8221 make_fixnum_or_float calls.
8222
82232008-08-09 Eli Zaretskii <eliz@gnu.org>
8224
8225 * w32.c (w32_system_process_attributes): If the process does not
8226 exist, return nil.
8227
8228 * w32.c: Include thelp32.h, psapi.h and coding.h.
8229 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
8230 declarations.
8231 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
8232 (Process32Next_Proc): New typedefs.
8233 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
8234 (g_b_init_process32_next, g_b_init_open_thread_token)
8235 (g_b_init_impersonate_self, g_b_init_revert_to_self)
8236 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
8237 (g_b_init_get_process_working_set_size)
8238 (g_b_init_global_memory_status_ex): New static variables.
8239 (globals_of_w32): Initialize them.
8240 (create_toolhelp32_snapshot, process32_first, process32_next)
8241 (open_thread_token, impersonate_self, revert_to_self)
8242 (get_process_memory_info, get_process_working_set_size)
8243 (global_memory_status, global_memory_status_ex): New wrapper
8244 functions.
8245 (w32_list_system_processes, w32_system_process_attributes)
8246 (enable_privilege, restore_privilege, ltime, process_times):
8247 New functions.
8248 (convert_time_raw): New function.
8249 (convert_time): Remove conversion of FILETIME into time in 100
8250 nsec units, call convert_time_raw instead.
8251
8252 * process.h (w32_list_system_processes, w32_system_process_attributes):
8253 Add prototypes.
8254 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
8255 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
8256 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
8257 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
8258
8259 * process.c (Fsystem_process_attributes): Doc fix.
8260
82612008-08-08 Chong Yidong <cyd@stupidchicken.com>
8262
8263 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
8264 a continued multi-char glyph; if so, advance to the actual glyph.
8265
82662008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
8267
8268 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
8269
8270 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
8271 (.m.o): Use it.
8272 * config.in: Regenerate.
8273
82742008-08-07 Chong Yidong <cyd@stupidchicken.com>
8275
8276 * xdisp.c (redisplay_window): Revert last change.
8277 (try_window): Check bottom scroll margin too.
8278
82792008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
8280
8281 * config.in: Regenerate.
8282
8283 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
8284 -list-load-path-shadows'.
8285 (nsgui.h): Reduce number of things depending on it.
8286
82872008-08-06 Chong Yidong <cyd@stupidchicken.com>
8288
8289 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
8290 instead of window-end which does the wrong thing at eob.
8291 (try_cursor_movement): Minor optimization.
8292 (redisplay_window): If scroll margin is defined, don't assume
8293 window doesn't need scrolling.
8294
82952008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
8296
8297 * config.in: Regenerate.
8298
8299 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
8300 (mostlyclean): Don't delete *.d under NS.
8301
8302 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
8303
83042008-08-06 Kenichi Handa <handa@m17n.org>
8305
8306 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
8307
83082008-08-06 Andreas Schwab <schwab@suse.de>
8309
8310 * config.in: Regenerate.
8311
83122008-08-05 Chong Yidong <cyd@stupidchicken.com>
8313
8314 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
8315 forcing a window start.
8316
8317 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
8318 (auto_save_1): Update modtime when auto-save-list-file-name is on.
8319
83202008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
8321
8322 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
8323 argument.
8324
83252008-08-05 Juanma Barranquero <lekktu@gmail.com>
8326
8327 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
8328 <scroll-down-aggressively, before-change-functions>:
8329 <after-change-functions>: Reflow docstrings.
8330
83312008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
8332 Ken Raeburn <raeburn@gnu.org>
8333
8334 Dock menu customization, based on a patch by Ken Raeburn, plus some
8335 other fixes.
8336 * nsmenu.m (dockMenu): New variable.
8337 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
8338
8339 * nsterm.h (dockMenu): Declare.
8340
8341 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
8342 (ns_term_init): Initialize dockMenu.
8343 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
8344 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
8345 left.
8346
8347 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
8348
83492008-08-04 Chong Yidong <cyd@stupidchicken.com>
8350
8351 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
8352
8353 * config.in: Regenerate.
8354
83552008-08-04 Seiji Zenitani <zenitani@mac.com>
8356
8357 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
8358
83592008-08-04 Chong Yidong <cyd@stupidchicken.com>
8360
8361 * nsterm.h (find_and_call_menu_selection): Fix prototype.
8362
83632008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
8364
8365 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
8366
8367 * keyboard.h: Comment an #endif.
8368
8369 * lisp.h (have_menus_p): Adjust comment.
8370
8371 * menu.c (find_and_return_menu_selection): Fix comparison with
8372 client_data.
8373
8374 * nsmenu.m (popup_activated_flag): New variable.
8375 (popup_activated): New function.
8376 (menu-or-popup-active-p): New exported lisp definition.
8377 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
8378 when popup done.
8379 (ns_popup_dialog): Set popup_activated_flag.
8380
8381 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
8382 version for GNUstep (handled by conditional typedef in nsterm.m).
8383 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
8384 in rgb.txt).
8385
8386 * process.c (init_process): Use DARWIN_OS, not DARWIN.
8387
8388 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
8389
8390 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
8391
8392 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
8393 shortcircuit if popup_activated like GTK and X toolkit.
8394
8395 * m/inter386.h: Change DARWIN to DARWIN_OS.
8396
8397 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
8398 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
8399 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
8400 comment on NO_SOCK_SIGIO.
8401
84022008-08-03 Chong Yidong <cyd@stupidchicken.com>
8403
8404 * nsterm.m (windowDidResize): Remove stopModal call.
8405
84062008-08-03 Andreas Schwab <schwab@suse.de>
8407
8408 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
8409 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
8410
84112008-08-02 Chong Yidong <cyd@stupidchicken.com>
8412
8413 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
8414 Don't use uninitialized pointer variable when using getrlimit.
8415
84162008-08-02 Jason Rumney <jasonr@gnu.org>
8417
8418 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
8419
84202008-08-02 Eli Zaretskii <eliz@gnu.org>
8421
8422 * alloc.c (NSTATICS): Bump to 0x640.
8423
8424 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
8425
8426 * lisp.h: Add prototype for directory_files_internal.
8427
8428 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
8429 New functions.
8430 (syms_of_process): Defsubr them. Add initializations for various
8431 Q* symbols used in procfs_system_process_attributes.
8432 (procfs_list_system_processes, procfs_system_process_attributes)
8433 [HAVE_PROCFS]: New functions.
8434 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
8435 (procfs_get_total_memory): New functions.
8436
84372008-08-01 Juanma Barranquero <lekktu@gmail.com>
8438
8439 * xfaces.c (Fx_load_color_file): Fix previous change;
8440 it is #ifdef WINDOWSNT, not WINDOWS_NT.
8441
84422008-08-01 Michael Albinus <michael.albinus@gmx.de>
8443
8444 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
8445
84462008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8447
8448 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
8449
84502008-08-01 Chong Yidong <cyd@stupidchicken.com>
8451
8452 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
8453
8454 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
8455 define NSApplicationDelegateReplySuccess.
8456 (EmacsView -converstationIdentifier): Use long instead of
8457 NSInteger for GNUstep, since it doesn't have NSInteger.
8458
8459 * xmenu.c: Revert last change.
8460
8461 * keyboard.h: Fix last change.
8462
84632008-08-01 Juanma Barranquero <lekktu@gmail.com>
8464
8465 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
8466 on Windows.
8467
84682008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8469
8470 Warning clearing and clean-up in NS port.
8471 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
8472 Add prototypes.
8473 * nsgui.h (FACE_DEFAULT): Remove, unused.
8474 (XGCValues): Change colors to unsigned long.
8475 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
8476 nsterm.m.
8477 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
8478 (ns_list_fonts): Remove, unused.
8479 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
8480 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
8481 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
8482 (nsfont_draw): Compare face colors to 0, not nil.
8483 * nsmenu.m (struct widget_value): Drop unneeded declaration.
8484 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
8485 (-addSubmenuWithTitle:): Use NSMenuItem class.
8486 (ns_popup_menu): Use NO, not NULL, for enabled setting.
8487 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
8488 (ns_clip_to_row): Make gc arg a BOOL.
8489 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
8490 ns_clip_to_row() call.
8491 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
8492 used). Cast FRAME_FONT assignments.
8493 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
8494 (ns_string_to_lispmod): Change arg to const char.
8495 (ns_term_init): Use NSMenuItem class.
8496 (EmacsApp -openFile:): Move to different section of file.
8497 (EmacsApp -application:openFiles:): Don't return a value, call
8498 -replyToOpenOrPrint:.
8499 (EmacsView -keyDown:): Fix up cast.
8500 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
8501 (EmacsView -menuDown:): Cast tag in call to
8502 find_and_call_menu_selection().
8503 (ns_list_fonts): Remove, unused.
8504 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
8505 (ns_fontname_to_xlfd): Make static.
8506 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
8507 Remove prototypes (now in keyboard.h).
8508 (next_menubar_widget_id): Remove, unused.
8509 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
8510 Remove prototypes (now in keyboard.h).
8511 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
8512
85132008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
8514
8515 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
8516 (floatfns.o): Depend on syssignal.h.
8517 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
8518
8519 * systty.h: Fix previous change that removed BSD_TERMIOS.
8520 Add comments to #ifdefs.
8521
85222008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8523
8524 * w32fns.c (w32-load-color-file): Remove.
8525 (x-open-connection): Use renamed Fx_load_color_file.
8526 * xfaces.c (x-load-color-file): Add.
8527 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
8528 Emacs.clr.
8529 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
8530
85312008-07-31 Michael Albinus <michael.albinus@gmx.de>
8532
8533 * dbusbind.c (Fdbus_call_method_asynchronously)
8534 (Fdbus_method_error_internal): New defuns.
8535 (xd_read_message): Handle also reply messages.
8536 (Vdbus_registered_functions_table): Extend docstring.
8537
85382008-07-31 Juanma Barranquero <lekktu@gmail.com>
8539
8540 * keyboard.c (gobble_input): Fix previous change.
8541
85422008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
8543
8544 * bitmaps/README:
8545 * xfns.c:
8546 * termcap.c:
8547 * term.c:
8548 * syswait.h:
8549 * systty.h:
8550 * systime.h:
8551 * syssignal.h:
8552 * sysdep.c:
8553 * process.h:
8554 * process.c:
8555 * print.c:
8556 * ndir.h:
8557 * lread.c:
8558 * keyboard.c:
8559 * getpagesize.h:
8560 * floatfns.c:
8561 * fileio.c:
8562 * emacs.c:
8563 * doc.c:
8564 * dispnew.c:
8565 * dired.c:
8566 * data.c:
8567 * callproc.c:
8568 * buffer.c:
8569 * README:
8570 * Makefile.in:
8571 * s/template.h:
8572 * s/msdos.h:
8573 * m/vax.h: Remove VMS support.
8574 * s/vms.h:
8575 * vlimit.h:
8576 * uaf.h:
8577 * temacs.opt:
8578 * param.h:
8579 * ioctl.h: Remove file.
8580
85812008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
8582
8583 * s/ms-w32.h (MULTI_KBOARD): Remove.
8584 * xterm.c:
8585 * xselect.c:
8586 * xfns.c:
8587 * window.c:
8588 * w32term.c:
8589 * w32fns.c:
8590 * terminal.c:
8591 * termhooks.h:
8592 * term.c:
8593 * sysdep.c:
8594 * keyboard.h:
8595 * keyboard.c:
8596 * frame.h:
8597 * frame.c:
8598 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
8599 * config.in: Regenerate.
8600
86012008-07-30 Jason Rumney <jasonr@gnu.org>
8602
8603 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
8604
8605 * w32font.c (w32font_encode_char): Leave as unicode if in range.
8606 (w32font_open_internal): Get unicode version of textmetrics.
8607 Don't enable or disable glyph indices here.
8608 (w32font_open): Disable use of glyph indices.
8609
8610 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
8611
86122008-07-30 Chong Yidong <cyd@stupidchicken.com>
8613
8614 * minibuf.c (Vread_buffer_function): Doc fix.
8615
86162008-07-30 John Paul Wallington <jpw@pobox.com>
8617
8618 * minibuf.c (read_buffer_completion_ignore_case): New var.
8619 (Fread_buffer): Use it.
8620
86212008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
8622
8623 * systty.h (sensemode): Remove empty #if. Remove reference to
8624 BSD_TERMIOS, unused.
8625
8626 * sysdep.c: Remove reference to DGUX.
8627 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
8628
8629 * config.in: Regenerate.
8630
86312008-07-30 Jason Rumney <jasonr@gnu.org>
8632
8633 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
8634
86352008-07-29 Jason Rumney <jasonr@gnu.org>
8636
8637 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
8638 is populated.
8639 (uniscribe_encode_char): Always use uniscribe.
8640 Avoid using context if cache is populated.
8641
86422008-07-29 Jan Djärv <jan.h.d@swipnet.se>
8643
8644 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
8645 open menu.
8646
8647 * gtkutil.c (menu_nav_ended): Remove.
8648 (create_menus): Remove signal connect for menu_nav_ended.
8649
86502008-07-28 Chong Yidong <cyd@stupidchicken.com>
8651
8652 * xdisp.c (redisplay_window): Check return value of
8653 compute_window_start_on_continuation_line before forcing a window
8654 start.
8655
86562008-07-28 Jason Rumney <jasonr@gnu.org>
8657
8658 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
8659
8660 * w32term.c (w32_enable_unicode_output, cleartype_active):
8661 Remove obsolete display options.
8662 (x_draw_glyph_string_background): Don't use old cleartype_active
8663 workaround.
8664 (w32_initialize): Remove cleartype_active initialization.
8665 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
8666
86672008-07-28 Andreas Schwab <schwab@suse.de>
8668
8669 * lisp.h (init_weak_hash_tables, syms_of_font)
8670 (xd_read_queued_messages, syms_of_dbusbind): Declare.
8671 (remove_hash_entry): Don't declare.
8672 * eval.c (maybe_call_debugger): Make static and move before use.
8673 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
8674 * xdisp.c: Include "gtkutil.h" if USE_GTK.
8675 * xterm.h (x_set_frame_alpha): Declare.
8676
86772008-07-28 Jan Djärv <jan.h.d@swipnet.se>
8678
8679 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
8680 (create_menus): Connect selection-done to menu_nav_ended.
8681
86822008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8683
8684 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
8685 Set Vx_resource_name to a fallback. Replace read of 'buffered'
8686 parameter with read of 'alpha' one.
8687 (Qns_frame_parameter): Remove.
5582fbc7 8688 * nsselect.m (selection-coding-system)
aac0c6e3
MR
8689 (next-selection-coding-system, Vselection_coding_system)
8690 (Vnext_selection_coding_system): Drop.
8691
86922008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8693
8694 * nsfns.m (do-applescript, do_applescript): Rename to
8695 ns-do-applescript, ns_do_applescript, and move within file.
8696
86972008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
8698
8699 Remove support for Mac Carbon.
8700 * mactoolbox.c:
8701 * macterm.h:
8702 * macterm.c:
8703 * macselect.c:
8704 * macmenu.c:
8705 * macgui.h:
8706 * macfns.c:
8707 * mac.c: Remove file.
8708 * s/darwin.h:
8709 * m/intel386.h:
8710 * xfaces.c:
8711 * xdisp.c:
8712 * window.c:
8713 * tparam.c:
8714 * termhooks.h:
8715 * termcap.c:
8716 * term.c:
8717 * syssignal.h:
8718 * sysselect.h:
8719 * sysdep.c:
8720 * process.c:
8721 * lread.c:
8722 * lisp.h:
8723 * keyboard.c:
8724 * image.c:
8725 * fringe.c:
8726 * frame.h:
8727 * frame.c:
8728 * fontset.c:
8729 * font.h:
8730 * font.c:
8731 * fns.c:
8732 * fileio.c:
8733 * emacs.c:
8734 * dispnew.c:
8735 * dispextern.h:
8736 * config.in:
8737 * atimer.c:
2ae37cf0 8738 * Makefile.in: Remove code for Carbon.
aac0c6e3 8739
f0131492 87402008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3
MR
8741
8742 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
8743
87442008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8745
8746 * macterm.h (kCGBitmapByteOrder32Host): New define for
8747 non-universal SDKs.
8748
8749 * image.c (mac_create_cg_image_from_image, image_load_image_io)
8750 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
8751
8752 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
8753 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
8754
87552008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
8756
8757 * w32inevt.c: Include dispextern.h.
8758
87592008-07-26 Andreas Schwab <schwab@suse.de>
8760
8761 * print.c (print_object): Fix off-by-one in last change.
8762
87632008-07-25 Juanma Barranquero <lekktu@gmail.com>
8764
8765 * term.c (syms_of_term): Don't initialize default_orig_pair,
8766 default_set_foreground and default_set_background on Windows.
8767
87682008-07-25 Jason Rumney <jasonr@gnu.org>
8769
8770 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
8771 ScriptItemize. Clean up return value checking. Remove unused
8772 variables.
8773 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
8774 shaping engine.
8775
8776 * w32font.c (w32font_has_char): Handle the case where we can't
8777 determine the script for a character.
8778
87792008-07-25 Chong Yidong <cyd@stupidchicken.com>
8780
8781 * term.c (syms_of_term): Initialize default_orig_pair,
8782 default_set_foreground, and default_set_background.
8783
8784 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
8785 clash (bug#86).
8786 (getloadavg): Callers changed.
8787
8788 * image.c (svg_load_image): Fix last change.
8789 (svg_load_image): Use rsvg_handle_get_dimensions to check that
8790 image size is valid. Use g_object_unref instead of deprecated
8791 rsvg_handle_free to free rsvg handle.
8792 (x_from_xcolors): Don't initialize pixmap (silence compiler).
8793
87942008-07-25 Jason Rumney <jasonr@gnu.org>
8795
8796 * w32font.c (w32font_encode_char): Encode characters outside BMP as
8797 surrogates before looking up glyph index.
8798 (w32font_text_extents): Encode as surrogates if falling back to
8799 functions that need UTF-16 wide chars.
8800
8801 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
8802 BMP as surrogates before looking up glyph index.
8803
88042008-07-25 Chong Yidong <cyd@stupidchicken.com>
8805
8806 * image.c (svg_load_image): Check for failure in return value of
8807 rsvg_handle_get_pixbuf. Free rsvg handle when done.
8808
88092008-07-25 Jason Rumney <jasonr@gnu.org>
8810
8811 * w32font.c (Fx_select_font): Reverse sense of second arg.
8812
88132008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
8814
8815 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
8816 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
8817
8818 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
8819 (PURESIZE): Use it.
8820
88212008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
8822
8823 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
8824 * m/alpha.h (TEXT_END):
8825 * m/ibmrs6000.h (TEXT_END):
8826 * m/macppc.h (TEXT_END):
8827 * s/darwin.h (TEXT_END):
8828 * s/msdos.h (TEXT_END): Remove, unused.
8829 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
8830 * s/cygwin.h: Remove comment.
8831
8832 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
8833 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
8834 * m/intel386.h (DOT_GLOBAL_START):
8835 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
8836 (USG): Remove, file not used on USG platforms.
8837
8838 * Makefile.in (HAVE_X11): Remove empty #else.
8839
88402008-07-24 Andreas Schwab <schwab@suse.de>
8841
8842 * fileio.c (Finsert_file_contents): Properly adjust undo list
8843 after format conversion.
8844
88452008-07-24 Jan Djärv <jan.h.d@swipnet.se>
8846
8847 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
8848 (menu_nav_ended): Remove.
8849 (create_menus): Remove signal connect for menu_nav_ended.
8850 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
8851 create_menus.
8852 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
8853
88542008-07-23 Jason Rumney <jasonr@gnu.org>
8855
8856 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
8857 with opened font.
8858 (w32font_open): Set font type to gdi.
8859
8860 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
8861
88622008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
8863
8864 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
8865 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
8866 defines it.
8867 * unexec.c (ADDR_CORRECT): Define unconditionally.
8868
8869 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
8870
8871 * unexec.c: Remove code depending on !COFF and USG, the file is
8872 not used for such systems.
8873
8874 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
8875 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
8876 (LD_SWITCH_SYSTEM_1): Remove, update users.
8877
8878 * s/darwin.h (DATA_END):
8879 * m/intel386.h (DATA_END):
8880 * m/ibmrs6000.h (DATA_END):
8881 * m/alpha.h (DATA_END): Remove, unused.
8882
8883 * config.in: Regenerate.
8884 * s/ms-w32.h (subprocesses): Define unconditionally.
8885 * s/template.h (subprocesses): Update comment.
8886 * s/vms.h (subprocesses):
8887 * s/usg5-4.h (subprocesses):
8888 * s/hpux10-20.h (subprocesses):
8889 * s/gnu-linux.h (subprocesses):
8890 * s/cygwin.h (subprocesses):
8891 * s/bsd-common.h (subprocesses):
8892 * s/aix4-2.h (subprocesses):
8893 * s/darwin.h (subprocesses): Do not define, defined by default now.
8894
8895 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
8896 Remove all references.
8897 (temacs): Add GNUstep specific ld flags.
8898
8899 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
8900 similarly to what X does.
8901
89022008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8903
8904 * nsfns.m (x-list-fonts): Remove.
8905 (syms_of_nsfns): Drop the x-list-fonts declaration.
8906 * nsterm.m: Get rid of remaining "//" comments.
8907
89082008-07-22 Chong Yidong <cyd@stupidchicken.com>
8909
8910 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
8911
8912 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
8913 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
8914 (Fns_own_selection_internal, Fx_disown_selection_internal)
8915 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
8916
8917 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
8918 ... */' style of docstrings. Doc fixes.
8919
89202008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
8921
8922 * terminfo.c (UP, BC, PC): Undo previous change.
8923
8924 * nsfns.m: Rename ns prefixed functions/variables to the
8925 corresponding x versions. Update references.
8926
89272008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
8928
8929 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
8930
89312008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
8932
8933 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
8934 Remove forwarding functions.
8935 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
8936 non-static.
8937 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
8938 non-static.
8939 (ns_frame_parm_handlers): Use the new names.
8940 (syms_of_nsfns): Move to the end of file.
8941
8942 * nsterm.m (syms_of_nsterm): Move to the end of file.
8943
8944 * dispnew.c (init_display): Remove code for X10.
8945
89462008-07-22 Jason Rumney <jasonr@gnu.org>
8947
8948 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
8949 bare drive.
8950
89512008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8952
8953 * nsterm.m (syms_of_nsterm): Remove debugging println.
8954
89552008-07-22 David Reitter <david.reitter@gmail.com>
8956
8957 * nsfns.m (do_applescript, F_do_applescript): NS version of the
8958 Carbon implementation of the same functionality: execute arbitrary
8959 AppleScript code.
8960
89612008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
8962
8963 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
8964 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
8965 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
8966 (Fx_display_mm_height, Fx_display_mm_width)
8967 (Fx_display_backing_store, Fx_display_visual_class)
8968 (Fx_display_save_under, Fx_open_connection)
8969 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
8970 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
8971 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
8972 (Fx_display_pixel_width, Fx_display_pixel_height)
8973 (Fx_display_usable_bounds, Fx_display_planes)
8974 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
8975 ... */' style of docstrings.
8976
89772008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
8978
8979 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
8980 on this platform.
8981 (mips):
8982 * m/iris4d.h (mips): Do not define.
8983 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
8984
8985 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
8986
8987 * image.c:
8988 * nsfns.m:
8989 * nsselect.m:
8990 * nsterm.h:
8991 * nsterm.m: Rename ns prefixed functions/variables to the
8992 corresponding x versions. Update references.
8993
8994 * m/ibms390x.h (NO_REMAP): Do not undefine.
8995
8996 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
8997
89982008-07-21 Chong Yidong <cyd@stupidchicken.com>
8999
9000 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
9001 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
9002 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
9003 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
9004 (Fns_display_mm_height, Fns_display_mm_width)
9005 (Fns_display_backing_store, Fns_display_visual_class)
9006 (Fns_display_save_under, Fns_open_connection)
9007 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
9008 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
9009 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
9010 (Fns_display_pixel_width, Fns_display_pixel_height)
9011 (Fns_display_usable_bounds, Fx_display_planes)
9012 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
9013
90142008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
9015
9016 * print.c (print_object): Check print_depth before searching for
9017 circularities.
9018
90192008-07-21 Michael Albinus <michael.albinus@gmx.de>
9020
9021 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
9022 only sprintf.
9023
90242008-07-21 Kenichi Handa <handa@m17n.org>
9025
9026 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
9027
90282008-07-20 Andreas Schwab <schwab@suse.de>
9029
9030 * syntax.c (find_start_pos, find_start_value)
9031 (find_start_value_byte, find_start_begv, find_defun_start)
9032 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
9033
90342008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
9035
9036 * s/sol2-3.h: Insert contents of s/sol2.h.
9037 (LD_SWITCH_SYSTEM): Remove redundant definition.
9038 * s/sol2.h: Remove, unused.
9039
90402008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
9041
9042 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
9043
90442008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
9045
9046 * Makefile.in (ns_appdir): Fix typo in find command.
9047
90482008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
9049
9050 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
9051
9052 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
9053 added not supported anymore.
9054
9055 * s/usg5-4-2.h (LIBS_SYSTEM):
9056 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
9057
9058 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
9059 * s/lynxos.h (GETPGRP_NO_ARG):
9060 * s/hpux10-20.h (NO_SIOCTL_H):
9061 * s/gnu.h (GETPGRP_NO_ARG):
9062 * s/gnu-linux.h (NO_SIOCTL_H):
9063 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
9064 * s/cygwin.h (GETPGRP_NO_ARG):
9065 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
9066 (C_DEBUG_SWITCH): Remove duplicate definition.
9067
9068 * m/ibms390.h: Remove boilerplate comments.
9069
9070 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
9071
9072 * process.c (HAVE_SERIAL): Consolidate ifdefs.
9073 (wait_reading_process_output): Remove code for SunOS, platform not
9074 supported anymore. Use SOLARIS2 instead of sun.
9075
90762008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9077
9078 * font.c (font_open_by_name): Under NS, default lface height to zero.
9079 (font_open_for_lface): Under NS, set size based on frame fontsize.
9080 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
9081 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
9082
90832008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9084
9085 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
9086 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
9087 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
9088 YES/NO.
9089 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
9090 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
9091 * Makefile.in (clean): Clear out build destination dir.
9092
90932008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9094
9095 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
9096 xterm, xselect.
9097 * lisp.h: Remove declaration of hash_remove.
9098 * nsgui.h: Remove redefinitions of hash_remove.
9099 * fns.c (hash_remove): Rename to hash_remove_from_table.
9100
91012008-07-19 Seiji Zenitani <zenitani@mac.com>
9102
9103 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
9104 strdup() the family UTF8String before modifying it.
9105
91062008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9107
9108 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
9109 NS_FACE_BACKGROUND with 0 instead of nil.
9110 * nsfont.m (nsfont_draw): Same.
9111
91122008-07-19 Chong Yidong <cyd@stupidchicken.com>
9113
9114 * nsfns.m (ns_set_background_color): Fix crash.
9115
91162008-07-18 Chong Yidong <cyd@stupidchicken.com>
9117
9118 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
9119
91202008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
9121
9122 * puresize.h (BASE_PURESIZE): Increase to 1240000.
9123
91242008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9125
9126 * gtkutil.c: Include <config.h> instead of "config.h".
9127
9128 * lisp.h (Foverlay_buffer): Add EXFUN.
9129
9130 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
9131 child process to complete child_setup. Undo 2005-09-21 change.
9132
9133 * s/darwin.h: Mention setsid after vfork.
9134
91352008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9136
9137 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
9138 Depend on macgui.h.
9139
9140 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
9141 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
9142
9143 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
9144 and f19.
9145 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
9146
9147 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
9148 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
9149 Remove enumerators.
9150
9151 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
9152 Check if FACE_FROM_ID returns NULL.
9153
91542008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
9155
9156 * w32inevt.c (change_frame_size): Remove extern declaration.
9157 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
9158 change_frame_size.
9159
91602008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
9161
9162 * getloadavg.c: Revert last change (2008-07-15).
9163
91642008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
9165
9166 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
362654a6 9167 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
aac0c6e3
MR
9168 from configure.
9169
91702008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
9171
9172 * s/sol2.h:
9173 * s/sol2-4.h: Reorganize conditionals.
9174
9175 * ecrt0.c: Remove code depending on m68000, not used anymore.
9176
9177 * fns.c (hash_remove): Make static.
9178 * lisp.h (hash_remove): Don't prototype.
9179
9180 * m/ibmrs6000.h:
9181 * m/ibms390x.h:
9182 * m/macppc.h: Remove boilerplate comments.
9183
9184 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
9185 Solaris, which does not need them.
9186
9187 * m/vax.h: Remove comments about unsupported systems.
9188
9189 * s/darwin.h: Reorganize ifdefs.
9190
91912008-07-17 Andreas Schwab <schwab@suse.de>
9192
9193 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
9194
91952008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9196
9197 Use SDATA. Follow coding convention of placing operators at
9198 beginning of next line rather than end of previous line, and placing
9199 spaces around infix operators.
9200
9201 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
9202 in case it was defined already.
9203 USE @GNUSTEP_MAKEFILES@ rather than envvars.
9204 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
9205 ns_default.
9206 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
9207 Lisp_Objects.
9208 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
9209 (ns_defined_color, ns_color_to_lisp): Declare.
9210 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
9211 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
9212 it's accepted even with USE_LISP_UNION_TYPE.
9213 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
9214 (update_frame_tool_bar): Remove apparently obsolete tests for
9215 non-integerness of f->tool_bar_lines.
9216 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
9217 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
9218 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
9219 (nsfont_open): Don't confuse NULL for Qnil.
9220 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
9221 * menu.h (find_and_call_menu_selection):
9222 * menu.c (find_and_call_menu_selection): Use just int for vector size.
9223 (find_and_return_menu_selection): Always return something.
9224 * frame.h: Include dispextern.h for Display_Info.
9225 (display_x_get_resource): Declare.
9226
92272008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
9228
9229 * syntax.c: Remove stdio.h include accidentally introduced in
9230 Emacs.app commit.
9231 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
9232 NS_IMPL_COCOA.
9233 * keyboard.c (handle_async_input, input_available_signal): Remove
9234 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
9235
92362008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
9237
9238 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
9239 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
9240 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
9241 Use SDATA.
9242
9243 * keymap.c: Remove all NS-specific code.
9244 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
9245 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
9246 where_is_preferred_modifier, return a different value depending on how
9247 preferred is the binding.
9248 (where_is_internal): Adjust accordingly.
9249 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
9250 Adjust to new preferred_sequence_p.
9251 (syms_of_keymap): Declare `where-is-preferred-modifier'.
9252 * keyboard.c (parse_solitary_modifier): Not static any more.
9253 * keyboard.h (parse_solitary_modifier): Declare.
9254
92552008-07-16 Andreas Schwab <schwab@suse.de>
9256
9257 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
9258 of easymenu.
9259
92602008-07-16 Chong Yidong <cyd@stupidchicken.com>
9261
9262 * xdisp.c (move_it_in_display_line): Account for word wrap, so
9263 that we don't move off the line.
9264
92652008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
9266
9267 * keyboard.c (Qsuper): Remove.
9268 (parse_menu_item): Don't call where_is_internal specially for NS.
9269
92702008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
9271
9272 * s/gnu-linux.h: Remove boilerplate comments.
9273
9274 * m/alpha.h (__ELF__): Consolidate conditions.
9275
9276 * m/m68k.h (linux): Use GNU_LINUX instead.
9277 Remove boilerplate comments.
9278
9279 * m/intel386.h: Undo refactoring from previous change.
9280 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
9281 too, remove dead code.
9282 (linux): Use GNU_LINUX instead.
9283
92842008-07-16 Jason Rumney <jasonr@gnu.org>
9285
9286 * w32gui.h: Repeat 26 June changes lost by last change.
9287
92882008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
9289
9290 * systty.h: Remove code for Aix on 386, unsupported platform.
9291
9292 * s/ms-w32.h: Remove boilerplate comments.
9293 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
9294
9295 * s/gnu-linux.h (TERM): Remove support.
9296 (HAVE_SYSVIPC): Remove, unused.
9297 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
9298 for this system.
9299
9300 * process.c: Remove support for IRIS, unused.
9301 Remove support for TERM, not relevant anymore.
9302
9303 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
9304 used with the definition.
9305
9306 * s/aix4-2.h (static): Do not undef.
9307
9308 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
9309 only used on Aix.
9310 (HAVE_SYSVIPC): Remove, unused.
9311
9312 * m/hp800.h (CANNOT_DUMP): Do not undef.
9313
9314 * m/alpha.h: Fix comment.
9315
9316 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
9317 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
9318 used by this configuration.
9319 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
9320 * unexec.c: Remove code depending on HPUX and
9321 USG_SHARED_LIBRARIES, not used with this file. Remove code
9322 depending on IRIS, unused. Remove if 0-ed code.
9323
9324 * s/template.h: Remove comments about static.
9325
9326 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
9327 Remove if 0-ed code.
9328 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
9329 were the same as the default.
9330 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
9331 Remove boilerplate comments.
9332 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
9333 (HAVE_SYSVIPC): Remove, unused.
9334 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
9335
9336 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
9337 Remove boilerplate comments.
9338 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
9339 Remove boilerplate comments.
9340 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
9341 Remove boilerplate comments.
9342 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
9343
9344 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
9345 USG systems which do not use DATA_SEG_BITS.
9346 Refactor code. Remove boilerplate comments.
9347
9348 * m/ibms390.h:
9349 * m/m68k.h:
9350 * s/bsd-common.h:
9351 * s/cygwin.h:
9352 * s/darwin.h:
9353 * s/freebsd.h:
9354 * s/gnu.h:
9355 * s/msdos.h: Remove boilerplate comments.
9356
9357 * m/iris4d.h: Remove boilerplate comments and code for systems that
6873acca 9358 do not use this file.
aac0c6e3
MR
9359 (IRIS_4D): Remove, unused.
9360
9361 * m/mips.h: Remove boilerplate comments and code for systems that
6873acca 9362 do not use this file.
aac0c6e3
MR
9363 (SIGN_EXTEND_CHAR):
9364 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
9365 * unexmips.c: Remove file, unused.
9366
9367 * editfns.c (Fuser_full_name): Replace the only use of
9368 USER_FULL_NAME with its value.
9369 * config.in: Regenerate.
9370
93712008-07-16 David Reitter <david.reitter@gmail.com>
9372
9373 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
9374 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
9375
93762008-07-16 Glenn Morris <rgm@gnu.org>
9377
9378 * emacs.c (system-type): Doc fix.
9379
93802008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
9381
9382 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
9383 If the cache doesn't work, let's fix it, rather than work around it.
9384
93852008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
9386
9387 * Makefile.in: Correct additions for nsfont.o in last commit.
9388 * nsfont.m: New file (forgot last commit).
9389
93902008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
9391
9392 * callproc.c (set_initial_environment): Initialize
9393 Vprocess_environment under CANNOT_DUMP (fixes crash when
9394 batch-compiling for bootstrap).
9395
93962008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
9397 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9398
9399 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
9400 fix crash due to different init order.
9401
94022008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
9403
9404 Changes and additions for NeXTstep windowing system (Cocoa and
9405 GNUstep) support.
9406
9407 * Makefile.in:
9408 * config.in: Support defines and build commands for NS port.
9409 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
9410 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
9411 * dispextern.h: Include nsgui.h and add needed typedefs under NS
9412 windowing.
9413 (struct face): Add synth_ital field.
9414 * dispnew.c: Include nsterm.h when compiling under NS windowing.
9415 (init_display): Initialize Vinitial_window_system to "ns" when so
9416 compiled.
9417 * emacs.c: Include GSConfig.h when compiling under GNUstep.
9418 (display_arg): Use under NS.
9419 (main): Under NS, allocate autorelease pool and handle command line
9420 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
9421 (standard_args): Add NS-specific args.
9422 (shut_down_emacs): Shut down NS terminal if compiled under NS.
9423 * font.c (DEFAULT_ENCODING): New variable.
9424 (font_find_for_lface): Use it.
9425 (syms_of_font): Load syms_of_nsfont under NS.
9426 * font.h: Declare nsfont_driver when compiled under NS.
9427 * fontset.c: When compiling under NS, include nsterm.h.
9428 (fontset_from_font): Autoconstruct fontset under NS.
9429 * frame.c (various): Under NS, include nsterm.h, add Qns window system
9430 symbol, document and use it.
9431 (do_switch_frame): When for_deletion under Cocoa, add
9432 Fraise_frame(Qnil).
9433 (x_set_frame_parameters): Ensure font attribute changes are picked up.
9434 (x_get_arg): Allow "yes" and "no" as boolean values.
9435 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
9436 Qright under Cocoa.
9437 (focus-follows-mouse): Default to 0 under NS.
9438 * frame.h (enum output_method): Add output_ns.
9439 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
9440 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
9441 (FRAME_WINDOW_P): NS-specific definition.
9442 * fringe.c (max_used_fringe_bitmap): Make public.
9443 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
9444 (getloadavg): Use NeXT code under descendant OS's.
9445 * image.c (includes and header section, x_create_bitmap_from_data)
9446 (x_create_bitmap_from_file, free_bitmap_record, image_background)
9447 (image_background_transparent, x_clear_image_1)
9448 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
9449 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
9450 (x_to_xcolors, x_from_xcolors, x_disable_image)
9451 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
9452 other GUIs, including XPM support using code originally written for
9453 Carbon GUI.
9454 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
9455 using NS API.
9456 (image_ascent): Use font metrics macros instead of direct struct field
9457 access.
9458 * keyboard.c (includes): Add nsterm.h when compiling under NS.
9459 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
9460 Also, handle NS as GTK for menu bar purposes.
9461 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
9462 toolkit where they differ.
9463 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
9464 use cachelist, still needed under NS.
9465 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
9466 (struct widget_value): Define it here for menu.c.
9467 * keymap.c (includes): Include modifier internals.
9468 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
9469 NS.
9470 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
9471 support for preferring sequences using certain modifiers, specified by
9472 the FIRSTONLY argument.
9473 * lisp.h (hash_remove): Rename to avoid name clash when compiling
9474 under NS GNUstep implementation.
9475 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
9476 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
9477 * menu.c: Include nsterm.h under NS.
9478 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
9479 (free_menubar_widget_tree_value, update_submenu_strings)
9480 (find_and_call_menu_selection): Treat NS as X and NT.
9481 (find_and_return_menu_selection): New function, used for popup menus.
9482 * nsgui.h:
9483 * nsterm.h:
9484 * nsfns.m:
9485 * nsimage.m:
9486 * nsmenu.m:
9487 * nsselect.m:
9488 * nsterm.m: New files.
9489 * process.c (wait_reading_process_output): Under NS, call ns_select()
9490 instead of plain select().
9491 * syntax.c (char_quoted): Under NS, avoid a crash when called near
9492 beginning of buffer.
9493 * sysselect.h (init_process): Rename when compiling under Cocoa to
9494 avoid name conflict.
9495 * termhooks.h (display_info): Add ns_display_info to union.
9496 * terminal.c (Fterminal_live_p): Add ns to terminal types.
9497 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
9498 COCOA environment.
9499 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
9500 unexec() signature. (Note, this will dump, but the resulting file
9501 crashes; unexosx is used instead; keeping around for reference and
9502 possible aid in getting dump working under GNUstep.)
9503 * w32gui.h (button_type, widget_value): Remove definitions (now in
9504 keyboard.h).
9505 * window.c: Include nsterm.h when compiling under NS.
9506 * xdisp.c (includes): Include nsterm.h when compiling under NS.
9507 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
9508 other GUI windowing systems.
9509 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
9510 GTK.
9511 (x_consider_frame_title): Under NS, set icon type and frame
9512 modified-state indicator; use ns_set_name_as_filename() when using
9513 formatted title.
9514 (update_window_cursor): Make public when compiling under NS.
9515 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
9516 (hourglass_atimer, Vhourglass_delay
9517 * xfaces.c (header section, init_frame_faces, clear_font_table)
9518 (defined_color, unload_color, x_face_list_fonts)
9519 (prepare_face_for_display): Add NS support parallel to other GUIs.
9520 Emulate GCs like other non-X GUIs.
9521 (split_font_name): Don't lowercase font name under NS.
9522 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
9523 under NS.
9524 * s/darwin.h: Add support for compilation under NS.
9525
95262008-07-15 Jason Rumney <jasonr@gnu.org>
9527
9528 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
9529 (w32_show_hourglass): Rename from show_hourglass.
9530 (w32_hide_hourglass): Rename from hide_hourglass.
9531 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
9532 (Vhourglass_delay): Declare extern.
9533 (hourglass_started): Remove.
9534
9535 * xdisp.c (Vhourglass_delay): Remove static.
9536 (hourglass_started, start_hourglass, cancel_hourglass):
9537 Don't include these versions on WINDOWSNT.
9538
95392008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
9540
9541 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
9542 variables (formerly in xfns.c).
9543 (show_hourglass, hide_hourglass): New prototypes (same).
9544 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
9545 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
9546 in xfns.c).
9547 (syms_of_xdisp): Declare/initialize display-hourglass,
9548 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
9549 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
9550 formerly in xfns.c.
9551 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
9552 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
9553 (start_hourglass, cancel_hourglass): Remove.
9554 (show_hourglass, hide_hourglass): Remove prototypes and static
9555 modifiers.
9556 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
9557 hourglass_atimer, hourglass_shown_p declaration/initialization.
9558 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
9559 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
9560 (start_hourglass, cancel_hourglass): Remove.
9561 (show_hourglass, hide_hourglass): Remove prototypes and static
9562 modifiers.
9563 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
9564 hourglass_atimer, hourglass_shown_p declaration/initialization.
9565 * w32fns.c (display_hourglass_p, Vhourglass_delay)
9566 (DEFAULT_HOURGLASS_DELAY): Remove.
9567 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
9568 hourglass_shown_p declaration/initialization.
9569
95702008-07-14 Jason Rumney <jasonr@gnu.org>
9571
9572 * w32fns.c (w32_get_arg): Remove wrapper function.
9573 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
9574 directly.
9575 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
9576
95772008-07-14 Kenichi Handa <handa@m17n.org>
9578
9579 * xfont.c (xfont_open): Add workaround for X's bug.
9580
95812008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
9582
9583 * fontset.c: Include <stdio.h> unconditionally.
9584
95852008-07-13 Michael Albinus <michael.albinus@gmx.de>
9586
9587 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
9588 for filtering.
9589
95902008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
9591
9592 * s/vms.h: Use __GNUC__ instead of _GNUC_.
9593
9594 * m/macppc.h:
9595 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
9596
9597 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
9598 (SPECIAL_EMACS_INT):
9599 * m/ia64.h (SPECIAL_EMACS_INT):
9600 * m/amdx86-64.h (SPECIAL_EMACS_INT):
9601 * s/gnu.h (NLIST_STRUCT):
9602 * s/aix4-2.h (X11R5_INHIBIT_I18N):
9603 * s/gnu-linux.h (LINUX):
9604 * s/msdos.h (HAVE_FACES):
9605 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
9606
9607 * systty.h:
9608 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
9609 anymore.
9610
96112008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
9612
9613 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
9614 always defined as int.
9615
9616 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
9617 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
9618 * s/gnu-linux.h (HAVE_WAIT_HEADER):
9619 * s/freebsd.h (HAVE_WAIT_HEADER):
9620 * s/bsd-common.h (HAVE_UNION_WAIT):
9621 * s/aix4-2.h (HAVE_WAIT_HEADER):
9622 * m/mips.h (HAVE_UNION_WAIT):
9623 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
9624 (COFF, static): Do not define, they are undefined later in the file.
9625
9626 * process.c (update_status): Don't use a union.
9627 (status_convert):
9628 (sigchld_handler): Use int instead of WAITTYPE.
9629
96302008-07-12 Chong Yidong <cyd@stupidchicken.com>
9631
9632 * indent.c (Fvertical_motion): Restore hscroll before moving to
9633 goal column.
9634
96352008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
9636
9637 * lisp.h: Remove left over code.
9638
96392008-07-11 Andreas Schwab <schwab@suse.de>
9640
9641 * lisp.h: Fix logic in last change.
9642
9643 * menu.h: New file.
9644 * menu.c: Include it.
9645 * xmenu.c: Likewise.
9646 * Makefile.in: Update dependencies.
9647
96482008-07-11 Kenichi Handa <handa@m17n.org>
9649
9650 * fontset.c (fontset_from_font): Cancel the previous change.
9651
96522008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
9653
9654 * lisp.h:
9655 * w32heap.c:
9656 * emacs.c:
9657 * alloc.c: Replace all references of NO_UNION_TYPE with
9658 USE_LISP_UNION_TYPE.
9659
9660 * m/xtensa.h (NO_UNION_TYPE):
9661 * m/vax.h (NO_UNION_TYPE):
9662 * m/template.h (NO_UNION_TYPE):
9663 * m/sparc.h (NO_UNION_TYPE):
9664 * m/mips.h (NO_UNION_TYPE):
9665 * m/macppc.h (NO_UNION_TYPE):
9666 * m/m68k.h (NO_UNION_TYPE):
9667 * m/iris4d.h (NO_UNION_TYPE):
9668 * m/intel386.h (NO_UNION_TYPE):
9669 * m/ibms390x.h (NO_UNION_TYPE):
9670 * m/ibms390.h (NO_UNION_TYPE):
9671 * m/ibmrs6000.h (NO_UNION_TYPE):
9672 * m/ia64.h (NO_UNION_TYPE):
9673 * m/hp800.h (NO_UNION_TYPE):
9674 * m/arm.h (NO_UNION_TYPE):
9675 * m/amdx86-64.h (NO_UNION_TYPE):
9676 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
9677 defining it the same.
9678
96792008-07-10 Chong Yidong <cyd@stupidchicken.com>
9680
9681 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
9682
96832008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
9684
9685 * fileio.c:
9686 * sysdep.c
9687 * systty.h:
9688 * m/ibmrs6000.h:
9689 * m/iris4d.h:
9690 * s/aix4-2.h:
9691 * s/freebsd.h:
9692 * s/gnu-linux.h:
9693 * s/hpux10-20.h:
9694 * s/hpux11.h:
9695 * s/netbsd.h:
9696 * s/sol2-3.h:
9697 * s/sol2-4.h:
9698 * s/sol2.h:
9699 * s/usg5-4.h:
9700 * s/vms.h: Remove references to unused variables.
9701
97022008-07-10 Andreas Schwab <schwab@suse.de>
9703
9704 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
9705 pattern before matching the generic family.
9706
97072008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
9708
9709 * unexec.c:
9710 * s/vms.h:
9711 * s/usg5-4-2.h:
9712 * s/sol2-5.h:
9713 * s/freebsd.h:
9714 * s/darwin.h: Remove dead code.
9715
9716 * m/template.h:
9717 * m/sparc.h:
9718 * m/mips.h:
9719 * m/m68k.h:
9720 * m/iris4d.h:
9721 * m/intel386.h:
9722 * m/ibms390x.h:
9723 * m/ibms390.h:
9724 * m/ia64.h:
9725 * m/hp800.h:
9726 * m/arm.h:
9727 * m/amdx86-64.h: Remove dead code and references to unused
9728 and compiler defined symbols.
9729
9730 * unexmips.c:
9731 * unexelf.c: Remove references to desupported systems.
9732
9733 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
9734
9735 * m/powermac.h: Remove boilerplate comments.
9736 (NO_REMAP): Remove unused definition.
9737
9738 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
9739 define them.
9740
97412008-07-10 Kenichi Handa <handa@m17n.org>
9742
9743 * xfont.c (xfont_open): Log the reason of failure.
9744
97452008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
9746
9747 * fontset.c (fontset_get_font_group):
9748 * font.c (font_check_otf): Specify argument types.
9749
97502008-07-09 Kenichi Handa <handa@m17n.org>
9751
9752 * coding.c (detect_coding_utf_8): Set detect_info->found only when
9753 non-ASCII char is found.
9754
9755 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
9756 (reorder_font_vector): Change the arg preferred_family to font.
9757 Prefer the spec matching with font.
9758 (fontset_get_font_group): New function.
9759 (fontset_find_font): Change the format of an element of a realized
9760 fontset. Use fontset_get_font_group.
9761 (fontset_font): Try the current fontset, the default fontset, the
9762 fallbacks of the current fontset, and the fallbacks of the default
9763 fontset in this order.
9764 (face_for_char): Delete the shortcut to use the current font.
9765 (fontset_from_font): Don't set fonts for Latin in the fontset.
9766
9767 * font.h (font_make_object, font_match_p): Adjust prototypes.
9768
9769 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
9770
9771 * font.c (font_make_object): New arg entity and pixelsize.
9772 (font_check_otf_features, font_check_otf): New functions.
9773 (font_match_p): Check :lang, :script, and :otf properties.
9774
9775 * xfont.c (xfont_open): Adjust it for the change of
9776 font_make_object.
9777 (xfont_text_extents): Fix initial setting of metrics.
9778
9779 * ftfont.c (struct ftfont_info): New member index, delete member
9780 fc_charset_idx. Make the member order compatible with struct
9781 xftfont_info.
9782 (fc_charset_table): Change charset names to registry names.
9783 (ftfont_pattern_entity): Delete the args registry and
9784 fc_charset_idx. Change the value of :font-entity property
9785 to (FONTNAME . INDEX). Always set :registry property to
9786 `iso10646-1'.
9787 (struct ftfont_cache_data): New struct.
9788 (ftfont_lookup_cache): New arg for_face.
9789 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
9790 (ftfont_driver): Set the member otf_capability.
9791 (ftfont_get_charset): Adjust it for the change of
9792 fc_charset_table.
9793 (OTF_TAG_SYM): New macro.
9794 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
9795 for the change of fc_charset_table.
9796 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
9797 ftfont_pattern_entity. Add FC_INDEX to objset.
9798 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
9799 and ftfont_pattern_entity.
9800 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
9801 font_make_object, struct ftfont_info.
9802 (ftfont_has_char): Use ftfont_get_fc_charset.
9803 (ftfont_otf_features, ftfont_otf_capability): New functions.
9804 (ftfont_shape): Use ftfont_get_otf.
9805 (ftfont_text_extents): Fix initial setting of metrics.
9806
9807 * xftfont.c (struct xftfont_info): New member ft_size. Make the
9808 member order compatible with struct ftfont_info.
9809 (xftfont_open): Add FC_CHARSET to the pattern. Set
9810 xftfont_info->ft_size. Don't unlock the face. Check BDF
9811 properties if appropriate.
9812 (xftfont_close): Unlock the face.
9813 (xftfont_anchor_point, xftfont_shape): Deleted.
9814 (syms_of_xftfont): Don't set members anchor_point and shape of
9815 xftfont_driver.
9816
9817 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
9818 font_make_object.
9819
9820 * w32font.c (w32font_open): Adjust it for the change of
9821 font_make_object.
9822 (w32font_open_internal): Don't set properties of font_object here.
9823
98242008-07-08 Chong Yidong <cyd@stupidchicken.com>
9825
9826 * macfns.c (x_create_tip_frame):
9827 * w32fns.c (x_create_tip_frame):
9828 * xfns.c (x_create_tip_frame): Pass parameter argument to
9829 face-set-after-frame-default.
9830
9831 * xfaces.c (Finternal_merge_in_global_face): Save merged
9832 attributes for the default face back into the face vector.
9833
98342008-07-08 Andreas Schwab <schwab@suse.de>
9835
9836 * fontset.h: Declare fontset_from_font. Don't declare
9837 new_fontset_from_font and fontset_from_font_name.
9838 * xterm.c: Include "fontset.h".
9839 * Makefile.in (xterm.o): Update dependencies.
9840
98412008-07-08 Glenn Morris <rgm@gnu.org>
9842
9843 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
9844 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
9845
98462008-07-07 Chong Yidong <cyd@stupidchicken.com>
9847
9848 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
9849 (x_set_frame_parameters): Don't bind it.
9850
98512008-07-07 Juanma Barranquero <lekktu@gmail.com>
9852
9853 * w32fns.c (map_w32_filename): Declare extern.
9854
98552008-07-07 Jason Rumney <jasonr@gnu.org>
9856
9857 * w32term.c (WS_EX_LAYERED): Define if not already.
9858
98592008-07-06 Chong Yidong <cyd@stupidchicken.com>
9860
9861 * xfaces.c (set_font_frame_param): Don't try to set the font
9862 parameter if it is still unspecified in the lface.
9863
98642008-07-05 Chong Yidong <cyd@stupidchicken.com>
9865
9866 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
9867 face if it didn't already exist.
9868
9869 * xdisp.c (try_window_id): Give up if word-wrapping is on.
9870
98712008-07-05 Andreas Schwab <schwab@suse.de>
9872
9873 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
9874
98752008-07-05 Chong Yidong <cyd@stupidchicken.com>
9876
9877 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
9878 word-wrapping.
9879 (IT_DISPLAYING_WHITESPACE): New macro.
9880 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
9881 when word-wrapping. Simplify word-wrapping logic. Use correct
9882 pixel positions when saving copies of the iterator.
9883 (display_line): Use proper wrap point if the last character on a
9884 line was preceded by whitespace.
9885
98862008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9887
9888 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
9889
98902008-07-04 Kenichi Handa <handa@m17n.org>
9891
9892 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
9893
9894 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
9895
98962008-07-02 Jason Rumney <jasonr@gnu.org>
9897
9898 * xfns.c (syms_of_xfns): Only define x-select-font when both
2ae37cf0 9899 HAVE_FREETYPE and USE_GTK.
aac0c6e3
MR
9900
9901 * xdisp.c (next_element_from_display_vector): Move assignment out
9902 of if statement.
9903
99042008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
9905
9906 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
9907
9908 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
9909 (syms_of_fileio): Initialize and export them.
9910 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
9911
9912 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
9913 (Fsystem_move_file_to_trash): New function.
9914 (syms_of_w32fns): Export it to lisp.
9915
99162008-07-01 Jason Rumney <jasonr@gnu.org>
9917
9918 * w32font.c (w32font_text_extents): Don't count overhang as part
9919 of width.
9920
99212008-06-30 Miles Bader <miles@gnu.org>
9922
9923 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
9924 Add `avoid_cursor_p' field.
9925
9926 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
9927 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
9928 (append_glyph, append_composite_glyph, produce_image_glyph)
9929 (append_stretch_glyph): Initialize avoid_cursor_p.
9930 (get_it_property): Rename from `get_line_height_property'.
9931 (x_produce_glyphs): Use get_it_property.
9932 (handle_line_prefix, push_display_prop): New functions.
9933 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
9934 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
9935 New variables.
9936 (syms_of_xdisp): Initialize them.
9937
99382008-06-30 Kenichi Handa <handa@m17n.org>
9939
9940 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
9941 XftDefaultSubstitute (they are called in XftFontMatch).
9942 (xftfont_open): Fix args to ftfont_font_format.
9943
9944 * ftfont.c (fc_charset_table): New member lang.
9945 (ftfont_resolve_generic_family): New arg pattern.
60612c8f 9946 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
aac0c6e3
MR
9947 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
9948 (ftfont_open): Fix args to ftfont_font_format.
9949 (ftfont_font_format): New arg filename.
9950
99512008-06-30 Chong Yidong <cyd@stupidchicken.com>
9952
9953 * xfaces.c (Finternal_merge_in_global_face): If default face was
9954 modified, realize it again. Update the font face attribute.
9955
99562008-06-29 Jason Rumney <jasonr@gnu.org>
9957
9958 * w32term.c (x_set_frame_alpha): Fix logic.
9959
99602008-06-29 Kenichi Handa <handa@m17n.org>
9961
9962 * fontset.c (Finternal_char_font): Return font-object instead of
9963 font-name.
9964
9965 * composite.c (get_composition_id): Fix the width calculation for TAB.
9966
99672008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9968
9969 * indent.c (Fvertical_motion): Properly handle float column arg.
9970
99712008-06-28 Jason Rumney <jasonr@gnu.org>
9972
9973 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
9974 (pfnSetLayeredWindowAttributes): New function pointer.
9975 (w32_initialize): Initialize it when supported.
9976 (x_set_frame_alpha): New function.
9977
9978 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
9979 (w32_frame_parm_handlers): Set alpha handler.
9980
9981 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
9982
99832008-06-27 Jason Rumney <jasonr@gnu.org>
9984
9985 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
9986 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
9987 (w32_to_x_charset, x_to_w32_charset)
9988 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
9989 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
9990 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
9991 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
9992 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
9993 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
9994 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
9995 (Qw32_charset_unicode): Remove.
9996 (syms_of_w32fns): Update for above changes.
9997
9998 * w32font.c (w32_to_x_charset, x_to_w32_charset)
9999 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
10000 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
10001 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
10002 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
10003 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
10004 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
10005 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
10006 (syms_of_w32font): Update for above changes.
10007
100082008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
10009
10010 * s/usg5-4.h: Fix previous change: keep the correct branch of a
10011 removed #if.
10012 (USG_SHARED_LIBRARIES): Remove duplicate definition.
10013
100142008-06-26 Juanma Barranquero <lekktu@gmail.com>
10015 Eli Zaretskii <eliz@gnu.org>
10016
10017 * makefile.w32-in (LOCAL_FLAGS):
10018 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
10019
10020 * sysdep.c (_spawnlp, _getpid):
10021 Declare with explicit _cdecl instead of _CRTAPI1.
10022
10023 * editfns.c (Fget_internal_run_time):
10024 Check for WINDOWSNT with #ifdef, not #if.
10025
100262008-06-26 Jason Rumney <jasonr@gnu.org>
10027
10028 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
10029
10030 * w32term.c (x_draw_glyph_string_foreground)
10031 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
10032 Use FONT_HANDLE macro.
10033 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
10034
10035 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
10036 (uniscribe_encode_char): Use FONT_HANDLE macro.
10037
10038 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
10039 (w32font_text_extents): Use precast w32_font.
10040 (w32font_close): Free cached metrics.
10041 (w32font_open_internal): Allocate space for name on stack.
10042
100432008-06-26 Chong Yidong <cyd@stupidchicken.com>
10044
10045 * xdisp.c (extend_face_to_end_of_line): Fix last change.
10046
100472008-06-26 Jason Rumney <jasonr@gnu.org>
10048
10049 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
10050 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
10051
100522008-06-26 Juanma Barranquero <lekktu@gmail.com>
10053
10054 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
10055
100562008-06-26 Jason Rumney <jasonr@gnu.org>
10057
10058 * w32bdf.c, w32bdf.h: Remove obsolete files.
10059
10060 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
10061
10062 * w32gui.h: Don't include w32bdf.h.
10063 (XCharStruct, enum w32_char_font_type, W32FontStruct):
10064 Remove obsolete font support.
10065
10066 * w32font.h (struct w32font_info): Remove compat_w32_font.
10067 Add hfont member.
10068 (FONT_COMPAT): Remove obsolete macro.
10069
10070 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
10071 (w32font_encode_char, w32font_text_extents): Use new hfont member.
10072 (w32font_open_internal): Remove compat code. Set new hfont member.
10073 (Fx_select_font): Use new hfont member.
10074
10075 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
10076 (uniscribe_encode_char): Use new hfont member.
10077
10078 * w32term.c (x_draw_glyph_string_foreground)
10079 (x_draw_composite_glyph_string_foreground): Use new hfont member.
10080 (x_draw_glyph_string): Use metrics in w32font_info.
10081
100822008-06-26 Kenichi Handa <handa@m17n.org>
10083
10084 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
10085
100862008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
10087
10088 * unexnext.c:
10089 * m/ews4800.h:
10090 * m/hp9000s300.h:
10091 * m/ibm370aix.h:
10092 * m/mips-siemens.h:
10093 * m/ncr386.h:
10094 * m/next.h:
10095 * m/pmax.h:
10096 * m/powerpcle.h:
10097 * m/tandem-s2.h:
10098 * s/386bsd.h:
10099 * s/bsd386.h:
10100 * s/bsd4-1.h:
10101 * s/bsd4-2.h:
10102 * s/bsdos2-1.h:
10103 * s/bsdos2.h:
10104 * s/bsdos3.h:
10105 * s/bsdos4.h:
10106 * s/nextstep.h:
10107 * s/ultrix4-3.h:
10108 * s/usg5-0.h:
10109 * s/usg5-2-2.h:
10110 * s/usg5-2.h:
10111 * s/usg5-4-3.h:
10112 * s/ux4800.h:
10113 * s/uxpds.h:
10114 * s/uxpv.h: Remove support for obsolete systems.
10115 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
8f3a3ac2 10116 Remove, insert contents in s/hpux10-20.h.
aac0c6e3
MR
10117 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
10118 Remove, insert contents in s/aix4-2.h.
10119 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
10120 * s/bsd4-3.h: Rename to ...
10121 * s/bsd-common.h: ... this.
10122 * data.c:
10123 * doc.c:
10124 * ecrt0.c:
10125 * emacs.c:
10126 * fileio.c:
10127 * floatfns.c:
10128 * keyboard.c:
10129 * mem-limits.h:
10130 * print.c:
10131 * process.c:
10132 * sysdep.c:
10133 * syssignal.h:
10134 * systty.h:
10135 * syswait.h:
10136 * term.c:
10137 * unexec.c:
10138 * unexelf.c:
10139 * unexhp9k800.c:
10140 * m/hp800.h:
10141 * m/ibmrs6000.h:
10142 * m/mips.h:
10143 * m/vax.h:
10144 * s/darwin.h:
10145 * s/freebsd.h:
10146 * s/gnu.h:
10147 * s/ms-w32.h:
10148 * s/msdos.h:
10149 * s/netbsd.h:
10150 * s/template.h: Remove references to obsolete variables.
10151
10152 * Makefile.in: Add dependencies for all unexec files.
10153 (admindir): Remove unused variable.
10154 (UNEXEC_SRC): Remove references.
10155
101562008-06-25 Chong Yidong <cyd@stupidchicken.com>
10157
10158 * xfns.c (x_default_font_parameter): If Xft is available, first
10159 try Monospace-12 for the default font.
10160
101612008-06-25 Jason Rumney <jasonr@gnu.org>
10162
10163 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
10164
101652008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
10166
10167 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
10168
10169 * buffer.c (syms_of_buffer): Remove default-word-wrap.
10170
101712008-06-25 Juanma Barranquero <lekktu@gmail.com>
10172
10173 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
10174 <scroll-conservatively>: Fix typo in docstring.
10175
10176 * xselect.c (Fx_send_client_event): Doc fix.
10177
101782008-06-25 Kenichi Handa <handa@m17n.org>
10179
10180 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
10181
10182 * font.c (font_parse_fcname): Remove unused variables.
10183 (font_sort_entites): Delete the arg SPEC. Caller changed.
10184 Fix for the case of ! best_only.
10185 (font_delete_unmatched): Check DPI and AVGWIDTH too.
10186
10187 * lisp.h (Fstring_to_unibyte): EXFUN it.
10188
10189 * character.h (str_to_unibyte): Extern it.
10190
10191 * character.c (str_to_unibyte): New function.
10192
10193 * fns.c (Fstring_to_unibyte): New function.
10194 (syms_of_fns): Defsubr it.
10195
101962008-06-24 Kenichi Handa <handa@m17n.org>
10197
10198 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
10199 DPI too.
10200 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
10201
102022008-06-24 Andreas Schwab <schwab@suse.de>
10203
10204 * Makefile.in (${lispsource}loaddefs.el): Rename from
10205 ../lisp/loaddefs.el.
10206 (bootstrap-clean): Do what distclean does but don't remove
10207 Makefile.
10208 (distclean): Depend on bootstrap-clean and remove Makefile.
10209
102102008-06-24 Chong Yidong <cyd@stupidchicken.com>
10211
10212 * buffer.h (struct buffer): New member word_wrap.
10213
10214 * buffer.c (syms_of_buffer): New variables default-word-wrap and
10215 word-wrap.
10216 (init_buffer_once): Initialize them.
10217
10218 * dispextern.h (struct it): Replace bool truncate_lines_p with a
10219 line_wrap enum possessing three possible values.
10220
10221 * termopts.h: Replace truncate_partial_width_windows with
10222 Vtruncate_partial_width_windows.
10223
10224 * dispnew.c (direct_output_for_insert): Avoid direct output when
10225 inserting a space with word wrap on.
10226
10227 * indent.c (compute_motion): Obey integer values of
10228 truncate-partial-width-windows.
10229
10230 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
10231 replacing truncate_partial_width_windows.
10232 (init_iterator): If Vtruncate_partial_width_windows is an integer,
10233 truncate only if the window width is below that integer.
10234 (start_display, resize_mini_window, produce_stretch_glyph)
10235 (display_string, move_it_in_display_line_to): Use line_wrap.
10236 (back_to_previous_visible_line_start, reseat_1): Reset
10237 string_from_display_prop_p.
10238 (display_line): Extend default face to end of line when wrapping.
10239
102402008-06-24 Kim F. Storm <storm@cua.dk>
10241
10242 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
10243 to wrap continued lines at word boundaries.
10244
102452008-06-24 Jason Rumney <jasonr@gnu.org>
10246
10247 * font.c (Ffont_face_attributes): Multiply pixel size before point
10248 conversion to avoid multiplying rounding error.
10249
102502008-06-23 Jason Rumney <jasonr@gnu.org>
10251
10252 * w32term.c (x_draw_glyph_string_background)
10253 (x_draw_glyph_string): Remove old bdf font code.
10254
10255 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
10256
102572008-06-22 Kenichi Handa <handa@m17n.org>
10258
10259 * font.c (font_find_for_lface): Try the adstyle specified in
10260 the property of LFACE_FONT of LFACE (if any).
10261
102622008-06-21 Seiji Zenitani <zenitani@mac.com>
10263 Ryo Yoshitake <ryo@shiftmode.net>
10264
10265 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
10266
102672008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10268
10269 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
10270 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
10271 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
10272 (witness-emacs): Remove.
10273 (lisp, shortlisp): Move loaddefs.el earlier.
10274 (mostlyclean): Forget about witness-emacs.
10275
102762008-06-22 Glenn Morris <rgm@gnu.org>
10277
10278 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
10279 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
10280
102812008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
10282
10283 * Makefile.in (PRECOMP): Remove.
10284 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
10285 (witness-emacs): Run `compile-first'.
10286 (.el.elc): Use the new compile-onefile target.
10287
102882008-06-21 Kenichi Handa <handa@m17n.org>
10289
10290 * xftfont.c (xftfont_open): Handle QCembolden only when
10291 FC_EMBOLDEN is defined.
10292
102932008-06-21 Andreas Schwab <schwab@suse.de>
10294
10295 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
10296 (.el.elc): Likewise.
10297
102982008-06-21 Miles Bader <miles@gnu.org>
10299
10300 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
10301 build dir, not the lisp source dir.
10302
103032008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
10304
10305 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
10306 (bootstrapclean): Remove.
10307 (.el.elc): New rule.
10308 (PRECOMP): New var.
10309 (../lisp/subdirs.el): Remove.
10310 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
10311 (witness-emacs): New target.
10312 (mostlyclean): Remove witness-emacs as well.
10313 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
10314 Add witness-emacs dependency.
10315
103162008-06-20 Chong Yidong <cyd@stupidchicken.com>
10317
10318 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
10319 defined by the font.
10320
103212008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
10322
10323 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
10324 (bootstrap-clean): New target that keeps TAGS around.
10325 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
10326 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
10327
103282008-06-20 Jason Rumney <jasonr@gnu.org>
10329
10330 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
10331 Remove obsolete font code.
10332
10333 * w32font.c (font_matches_spec): Use csb bitfield from font signature
10334 to determine language support.
10335
103362008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
10337
10338 * sysdep.c (cfsetspeed): New fun extracted from the code.
10339 (cfmakeraw): Move before first use.
10340
103412008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
10342
10343 * sysdep.c (cfmakeraw): Provide fallback implementation.
10344 (serial_configure): Provide fallback implementation of cfsetspeed.
10345
103462008-06-20 Kenichi Handa <handa@m17n.org>
10347
10348 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
10349 the pattern.
10350
10351 * fontset.c (fontset_from_font): Copy font_spec before changing
10352 the elements.
10353
10354 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
10355
103562008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
10357
10358 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
10359 for explicit `font' parameters.
10360
10361 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
10362
103632008-06-19 Kenichi Handa <handa@m17n.org>
10364
10365 * frame.c: Include <ctype.h>.
10366 (x_set_font_backend): Allow spacing characters in the X resource
10367 for FontBackend.
10368
103692008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
10370
10371 * w32fns.c, xfns.c (Qfont_param): New var.
10372 (syms_of_w32fns): Initialize it.
10373 (x_default_font_parameter): Record explicit `font' into
10374 `font-parameter'.
10375
103762008-06-18 Kenichi Handa <handa@m17n.org>
10377
10378 * font.c (font_parse_xlfd): Fix previous change.
10379 (font_parse_fcname): Don't use :fc-unknown-spec.
10380 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
10381 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
10382 (font_add_log): Prepend the driver name to the resulting fonts.
10383
10384 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
10385 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
10386 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
10387
10388 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
10389 (QCembolden): New variables.
10390 (syms_of_xftfont): DEFSYM them.
10391 (xftfont_open): Call XftFontMatch. Don't trust the result of
10392 XftTextExtents8 if the pixel_size is less than 5.
10393
103942008-06-18 Andreas Schwab <schwab@suse.de>
10395
10396 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
10397 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
10398
103992008-06-18 Jason Rumney <jasonr@gnu.org>
10400
10401 * w32font.c (w32font_list, w32font_match): Add logging.
10402
10403 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
10404
104052008-06-17 Chong Yidong <cyd@stupidchicken.com>
10406
10407 * font.c (font_parse_fcname): Store divider characters for
10408 unknown-spec list. For known key symbols, intern using correct
10409 symbol name.
10410
104112008-06-17 Kenichi Handa <handa@m17n.org>
10412
10413 * xfaces.c (realize_default_face): If the frame is not on window
10414 system, set the fontset of face to nil.
10415
104162008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
10417
10418 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
10419
104202008-06-16 Juanma Barranquero <lekktu@gmail.com>
10421
10422 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
10423 (build_font_name_from_vector): Delete externs.
10424
10425 * xfaces.c (struct font_name): Don't declare.
10426
104272008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
10428
10429 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
10430
104312008-06-16 Chong Yidong <cyd@stupidchicken.com>
10432
10433 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
10434
104352008-06-16 Juanma Barranquero <lekktu@gmail.com>
10436
10437 * font.c (Ffont_spec): Fix usage in docstring.
10438 (Ffont_face_attributes): Doc fix.
10439
104402008-06-16 Andreas Schwab <schwab@suse.de>
10441
10442 * font.c (Ffont_face_attributes): Fix definition.
10443
104442008-06-16 Jason Rumney <jasonr@gnu.org>
10445
10446 * font.h (font_style_symbolic_from_value): Remove.
10447
10448 * font.c (font_style_symbolic_from_value): Remove.
10449 (font_style_symbolic): Revert to pre 2008-06-13 version.
10450
10451 * w32font.c (w32_to_fc_weight): New function.
10452 (w32font_full_name, logfont_to_fcname): Use it.
10453
104542008-06-16 Kenichi Handa <handa@m17n.org>
10455
10456 * font.c (font_check_object): Delete it.
10457 (font_clear_cache): Check if a font-object is alive.
10458 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
10459 font-object to nil.
10460 (font_close_object): Don't check FONT_CLOSE_OBJECT.
10461 (font_at): Don't call font_check_object.
10462 (Ffont_get): Return a symbol for :weight, :slant, and :width.
10463
104642008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
10465
10466 * puresize.h (BASE_PURESIZE): Increase to 1230000.
10467
104682008-06-16 Chong Yidong <cyd@stupidchicken.com>
10469
10470 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
10471
104722008-06-15 Chong Yidong <cyd@stupidchicken.com>
10473
10474 * font.c (font_parse_fcname): Only one decimal point.
10475 (font_unparse_fcname): Handle data in family and foundry indices
10476 as symbols, not strings.
10477 (font_unparse_gtkname, Ffont_face_attributes): New functions.
10478
10479 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
10480
10481 * font.h (font_unparse_gtkname): Add prototype.
10482
104832008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
10484
10485 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
10486
104872008-06-15 Andreas Schwab <schwab@suse.de>
10488
10489 * font.c (font_update_drivers): Fix crash when no drivers match.
10490
104912008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10492
10493 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
10494 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
10495
104962008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
10497
10498 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
10499
105002008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10501
10502 * process.c (Fserial_process_configure, Fprocess_send_eof):
10503 Use EQ to compare Lisp_Objects.
10504
105052008-06-13 Jason Rumney <jasonr@gnu.org>
10506
10507 * w32fns.c (Fw32_select_font): Remove old font API function.
10508
10509 * w32font.c (logfont_to_fcname): New function.
10510 (Fx_select_font): New font dialog function compatible with
10511 GTK/fontconfig version.
10512
10513 * font.c (font_style_symbolic_from_value): New function.
10514 (font_style_symbolic): Use it.
10515
10516 * font.h (font_style_symbolic_from_value): Declare new function.
10517
105182008-06-13 Juanma Barranquero <lekktu@gmail.com>
10519
10520 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
10521 <font-width-table>: Fix typos in docstrings.
10522
105232008-06-13 Daniel Engeler <engeler@gmail.com>
10524
10525 These changes add serial port access.
10526 * process.c: Add HAVE_SERIAL.
10527 (Fdelete_process, Fprocess_status, Fset_process_buffer)
10528 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
10529 (list_processes_1, select_wrapper, Fstop_process)
10530 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
10531 (status_notify): Modify to handle serial processes.
10532 [HAVE_SERIAL] (Fserial_process_configure)
10533 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
10534 New functions.
10535 * process.h (struct Lisp_Process): Add `type'.
10536 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
10537 New functions.
10538 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
10539 serial ports.
b71ac3dd 10540 (serial_open, serial_configure): New functions.
aac0c6e3
MR
10541 * w32.h: Add FILE_SERIAL.
10542 (struct _child_process): Add ovl_read, ovl_write.
10543
105442008-06-13 Kenichi Handa <handa@m17n.org>
10545
10546 * dispextern.h (enum lface_attribute_index): New member
10547 LFACE_FOUNDRY_INDEX.
10548
10549 * font.c (font_score): Delete arg alternate_families. Check only
10550 weight, slant, width, and size. Ignore the difference of alias
10551 style symbols.
10552 (font_sort_entites): Adjust for the above change. Reflect the
10553 order of font-driver to scores.
10554 (font_list_entities): Don't check alternate_familes here.
10555 (font_clear_prop): Handle foundry.
10556 (font_update_lface): Don't parse "foundry-family" form here.
10557 Handle FONT_FOUNDRY_INDEX.
10558 (font_find_for_lface): Likewise. Handle alternate families here.
10559 If registry is nil, try iso8859-1 and ascii-0.
10560 (font_open_for_lface): Pay attention to size in ENTITY.
10561 (font_open_by_name): Simplify by calling font_load_for_lface.
10562 (free_font_driver_list): Delete it.
10563 (font_update_drivers): Preserve the order of backends.
10564 (syms_of_font): Setting of sort_shift_bits adjusted for the change
10565 of font_score and font_sort_entites.
10566 (font_update_sort_order): Likewise.
10567
10568 * xfaces.c (LFACE_FOUNDRY): New macro.
10569 (check_lface_attrs): Check foundry.
10570 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
10571 (merge_face_vectors): Check foundry.
10572 (merge_face_ref): Likewise.
10573 (Finternal_set_lisp_face_attribute): Likewise.
10574 (x_update_menu_appearance): Likewise.
10575 (Finternal_get_lisp_face_attribute): Likewise.
10576 (lface_hash): Likewise.
10577 (lface_same_font_attributes_p): Likewise.
10578 (x_supports_face_attributes_p): Likewise.
10579 (tty_supports_face_attributes_p): Likewise.
10580 (Finternal_set_alternative_font_family_alist): Intern strings.
10581 (Finternal_set_alternative_font_registry_alist): Downcase strings.
10582 (realize_default_face): Set LFACE_FOUNDRY (lface).
10583
10584 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
10585 font-driver at first.
10586
10587 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
10588
105892008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
10590
10591 * lread.c (Fload): Use xfree, not free on saved_doc_string.
10592
105932008-06-12 Jim Meyering <meyering@redhat.com>
10594
10595 Make unexec_free handle NULL the same way free does.
10596 * unexmacosx.c (unexec_free): Ignore a NULL argument.
10597
105982008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10599
10600 * character.h (CHAR_TO_BYTE_SAFE): New macro.
10601 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
10602 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
10603 (WEAK_ALIAS): Simplify.
10604 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
10605 when searching a unibyte buffer.
10606
106072008-06-12 Chong Yidong <cyd@stupidchicken.com>
10608
10609 * xfns.c (Fx_select_font): Rename from x-font-dialog.
10610
106112008-06-12 Juanma Barranquero <lekktu@gmail.com>
10612
10613 * w32font.c: Include ctype.h.
10614
106152008-06-11 Jason Rumney <jasonr@gnu.org>
10616
10617 * w32font.c (w32font_encode_char): Detect missing glyphs that are
10618 misreported as space.
10619 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
10620 as aliases for registry iso10646-1.
10621
106222008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10623
10624 * buffer.c (clone_per_buffer_values): Skip `name'.
10625
106262008-06-11 Chong Yidong <cyd@stupidchicken.com>
10627
10628 * font.c (font_parse_fcname): Fix last change; accept decimal
10629 points in font size.
10630
106312008-06-10 Jason Rumney <jasonr@gnu.org>
10632
10633 * w32uniscribe.c (add_opentype_font_name_to_list):
10634 Skip non unicode fonts.
10635
106362008-06-10 Chong Yidong <cyd@stupidchicken.com>
10637
10638 * xfns.c (Fx_font_dialog): New function.
10639
10640 * gtkutil.c (xg_dialog_response_cb): Rename from
10641 xg_file_response_callback.
10642 (pop_down_dialog): Rename from pop_down_file_dialog.
10643 (xg_get_file_name): Callers changed.
10644 (xg_get_font_name): New function.
10645
10646 * gtkutil.h (xg_get_font_name): Insert prototype.
10647
106482008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10649
10650 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
10651 x_underline_minimum_display_offset.
10652 (syms_of_xdisp): Declare it here rather than in xterm.c.
10653 * dispextern.h (underline_minimum_offset): Declare it.
10654 * w32term.c (x_draw_glyph_string): Use it.
10655 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
10656 (syms_of_xterm): Don't declare it any more.
10657 (x_draw_glyph_string): Adjust to the new name.
10658
8719abec 106592008-06-10 David De La Harpe Golden <david@harpegolden.net>
aac0c6e3
MR
10660
10661 * xterm.c (x_underline_minimum_display_offset): New var.
10662 (x_draw_glyph_string): Use it.
10663 (syms_of_xterm): Declare it.
10664
106652008-06-10 Chong Yidong <cyd@stupidchicken.com>
10666
10667 * font.c (font_parse_fcname): Accept GTK-style font names too.
10668
106692008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10670
10671 * dired.c (file_name_completion): Don't return t if the match is exact
10672 but with different capitalization.
10673 * minibuf.c (Ftry_completion): Simplify.
10674
10675 * window.c (Vwindow_point_insertion_type): New var.
10676 (set_window_buffer): Use it.
10677 (syms_of_window): Init and export it to Lisp.
10678
106792008-06-10 Kenichi Handa <handa@m17n.org>
10680
10681 * font.h (font_intern_prop): Prototype adjusted.
10682
10683 * font.c (font_intern_prop): New arg force_symbol.
10684 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
10685 Adjust for the change of font_intern_prop.
10686
10687 * ftfont.c (ftfont_pattern_entity):
10688 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
10689 (w32_registry):
10690 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
10691 the change of font_intern_prop.
10692
106932008-06-09 Juanma Barranquero <lekktu@gmail.com>
10694
10695 * w32menu.c (digest_single_submenu): Declare extern.
10696
106972008-06-09 Jason Rumney <jasonr@gnu.org>
10698
10699 * w32term.c (x_make_frame_visible): Use alternate restore flags.
10700
10701 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
10702 (parse_single_submenu): Remove.
10703 (digest_single_submenu): Remove.
10704 (syms_of_w32menu): Don't initialise variables that have moved
10705 to menu.c.
10706 (set_frame_menubar): Sync with version in xmenu.c.
10707 (w32_menu_show): Sync with xmenu_show in xmenu.c.
10708
10709 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
10710 Make static again.
10711
107122008-06-09 Jason Rumney <jasonr@gnu.org>
10713
10714 Changes to w32 files related to the move of common menu code
10715 to menu.c on 2008-06-08 by Chong Yidong.
10716
10717 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
10718 defs to w32gui.h.
10719 (single_keymap_panes, push_menu_item, push_menu_pane):
10720 Make globally visible.
10721
10722 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
10723 (local_free, malloc_widget_value, free_widget_value)
10724 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
10725 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
10726 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
10727 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
10728 (menu_items, menu_items_allocated, menu_items_used)
10729 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
10730 (init_menu_items, finish_menu_items, discard_menu_items)
10731 (grow_menu_items, push_submenu_start, push_submenu_end)
10732 (push_left_right_boundary, push_menu_pane, push_menu_item)
10733 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
10734 (free_menubar_widget_tree_value, parse_single_submenu)
10735 (update_submenu_strings): Remove functions.
10736 (xmalloc_widget_value): Remove and declare extern.
10737
10738 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
10739 (OBJ1): Build it.
10740
10741 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
10742 (local_heap, local_alloc, local_free, malloc_widget_value)
10743 (free_widget_value): Define here.
10744
107452008-06-09 Kenichi Handa <handa@m17n.org>
10746
10747 * font.h (Qascii_0): Extern it.
10748
10749 * font.c (Qascii_0): New variable.
10750 (syms_of_font): DEFSYM it.
10751 (font_open_by_name): If the registry "iso8859-1" fails, try also
10752 "ascii-0".
10753
10754 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
10755
107562008-06-08 Kenichi Handa <handa@m17n.org>
10757
10758 * .gdbinit (xfont): New command.
10759
107602008-06-08 Andreas Schwab <schwab@suse.de>
10761
10762 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
10763 * Makefile.in (menu.o): Update dependencies.
10764
10765 * Makefile.in (obj): Always add menu.o.
10766 * emacs.c (main): Always call syms_of_menu.
10767 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
10768
107692008-06-08 Chong Yidong <cyd@stupidchicken.com>
10770
10771 * Makefile.in: Compile menu.c.
10772
10773 * lisp.h: Declare syms_of_menu.
10774
10775 * emacs.c (main): Call syms_of_menu.
10776
10777 * keyboard.h: Relocate platform-independent menu definitions from
10778 xmenu.c.
10779
10780 * menu.c: New file. Relocate platform-independent menu
10781 definitions from xmenu.c. Suggested by Adrian Robert.
10782
10783 * xmenu.c: Remove platform-independent menu definitions.
10784 (menu_items menu_items_inuse, menu_items_allocated)
10785 (menu_items_used, menu_items_n_panes)
10786 (menu_items_submenu_depth): Move to keyboard.h.
10787 (init_menu_items, finish_menu_items, unuse_menu_items)
10788 (discard_menu_items, restore_menu_items, save_menu_items)
10789 (grow_menu_items, push_submenu_start, push_submenu_end)
10790 (push_left_right_boundary, push_menu_pane, push_menu_item)
10791 (keymap_panes, single_keymap_panes, single_menu_item)
10792 (list_of_panes, list_of_items, find_and_call_menu_selection)
10793 (xmalloc_widget_value, free_menubar_widget_value_tree)
10794 (parse_single_submenu, digest_single_submenu)
10795 (update_submenu_strings): Move to menu.c.
10796
107972008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10798
10799 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
10800
108012008-06-06 Miles Bader <miles@gnu.org>
10802
10803 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
10804 face, not frame default.
10805
108062008-06-05 Martin Rudalics <rudalics@gmx.at>
10807
10808 * window.c (pop_up_windows, pop_up_frames)
10809 (display_buffer_reuse_frames, Vpop_up_frame_function)
10810 (Vdisplay_buffer_function, Veven_window_heights)
10811 (Vspecial_display_buffer_names, Vspecial_display_regexps)
10812 (Vspecial_display_function, Vsame_window_buffer_names)
10813 (Vsame_window_regexps, split_height_threshold)
10814 (Vsplit_window_preferred_function): Move those vars to window.el.
10815 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
10816 (Fdisplay_buffer): Move those functions to window.el.
10817 (syms_of_window): Remove corresponding declarations.
10818 (display_buffer): New function.
10819 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
10820 * dispnew.c (Flast_nonminibuf_frame): New function.
10821 * buffer.c (Fpop_to_buffer): Move to window.el.
10822
108232008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10824
10825 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
10826
108272008-06-05 Kenichi Handa <handa@m17n.org>
10828
10829 * coding.c (detect_coding): Fix previous change.
10830 (detect_coding_system): Likewise.
10831
108322008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10833
10834 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
10835
10836 * keymap.c (Vminibuffer_local_filename_must_match_map):
10837 Rename from Vminibuffer_local_must_match_filename_map.
10838 (syms_of_keymap):
10839 * minibuf.c (Fcompleting_read): Adjust accordingly.
10840 * commands.h: Rename declaration as well.
10841
108422008-06-05 Kenichi Handa <handa@m17n.org>
10843
10844 * font.c (Ffont_spec): Don't use font_parse_family_registry for
10845 family name.
10846 (Ffont_put): Likewise.
10847
10848 * fontset.c (fontset_find_font): Call font_open_for_lface with the
10849 current font-spec.
10850
10851 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
10852 is unspecified.
10853
10854 * xfaces.c (realize_x_face): If the font-related face attributes
10855 are the same as those of default face, realize a new fontset from
10856 default->fontset.
10857 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
10858
108592008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
10860
10861 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
10862 (move_it_in_display_line): New wrapper.
10863
10864 * window.c (window_scroll_pixel_based_preserve_x)
10865 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
10866 (window_scroll_pixel_based, window_scroll_line_based):
10867 Use them to preserve column positions.
10868 (syms_of_window): Initialize them.
10869
10870 * indent.c (Fvertical_motion): Extend first arg to allow passing an
10871 (HPOS . VPOS) pair.
10872
10873 * dispextern.h (move_it_in_display_line): Declare.
10874
108752008-06-05 Juanma Barranquero <lekktu@gmail.com>
10876
10877 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
10878 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
10879 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
10880
108812008-06-04 Juanma Barranquero <lekktu@gmail.com>
10882
10883 * window.c (Fset_window_parameter): Doc fix.
10884 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
10885
108862008-06-04 Joakim Verona <joakim@verona.se>
10887
10888 * window.h (struct window): Add new member window_parameters.
10889
10890 * window.c (Fwindow_parameters, Fwindow_parameter)
10891 (Fset_window_parameter): New defuns.
10892 (syms_of_window): Defsubr the new defuns.
10893 (make_window): Initialize window_parameters to nil.
10894
108952008-06-04 John Paul Wallington <jpw@pobox.com>
10896
10897 * eval.c (Fdefmacro): Doc fix.
10898
108992008-06-04 Kenichi Handa <handa@m17n.org>
10900
10901 * coding.c (detect_coding): Fix handling of coding->head_ascii.
10902 Be sure to call setup_coding_system when we find a proper coding system.
10903 (detect_coding_system): Fix handling of coding->head_ascii.
10904
109052008-06-03 Andreas Schwab <schwab@suse.de>
10906
10907 * font.c (font_prop_validate_spacing): Fix last change.
10908
109092008-06-03 Kenichi Handa <handa@m17n.org>
10910
10911 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
10912 (font_parse_fcname): Fix handling of unknown key.
10913
10914 * xfont.c (xfont_list): Try an alias.
10915
10916 * charset.c (char_charset): Return NULL if the arg charset_list is
10917 specified and C doesn't belong to any of them.
10918
109192008-06-02 Chip Coldwell <coldwell@redhat.com>
10920
10921 * font.c (font_pixel_size): Don't take cdr of an integer.
10922
109232008-06-02 Jim Meyering <meyering@redhat.com>
10924
10925 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
10926 * alloc.c (xfree): Return right away for a NULL arg.
10927 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
10928 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
10929 * mac.c (create_apple_event_from_event_ref): Likewise.
10930 (create_apple_event_from_drag_ref, cfstring_create_normalized):
10931 Likewise.
10932 * doprnt.c (doprnt1): Likewise.
10933 * frame.c (frame): Likewise.
10934 * keyboard.c (wipe_kboard): Likewise.
10935 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
10936 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
10937 * term.c (tty_default_color_capabilities, maybe_fatal)
10938 (delete_tty): Likewise.
10939 * w16select.c (string): Likewise.
10940 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
10941 * w32bdf.c (w32_free_bdf_font): Likewise.
10942 * w32fns.c (w32_unload_font): Likewise.
10943 * w32font.c (w32font_close): Likewise.
10944 * window.c (size_window): Likewise.
10945 * xselect.c (receive_incremental_selection): Likewise.
10946 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
10947 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
10948 * w32.c (stat): Likewise.
10949
10950 Remove useless if-before-free tests.
10951 * editfns.c (Fset_time_zone_rule): Likewise.
10952 * lread.c (nosuffix): Likewise.
10953 * ralloc.c (get_bloc): Likewise.
10954 * regex.c (reg_free): Likewise.
10955 * xftfont.c (xftfont_open, xftfont_close): Likewise.
10956 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
10957 * xsmfns.c (smc_save_yourself_CB): Likewise.
10958
109592008-06-02 Kenichi Handa <handa@m17n.org>
10960
10961 * font.c (font_find_for_lface): Handle float font size.
10962 (font_open_for_lface): Likewise.
10963
10964 * xfaces.c (x_supports_face_attributes_p): Check face->font before
10965 comparing the properties.
10966
109672008-06-01 Jason Rumney <jasonr@gnu.org>
10968
10969 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
10970 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
10971 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
10972 Don't add empty script list.
10973 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
10974
109752008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
10976
10977 * Makefile.in (dot, dotdot): Remove, update users.
10978 ".." has been used elsewhere in the file for a long time.
10979 (LIBXT_STATIC): Remove conditional based on unused variable.
10980
109812008-06-01 Miles Bader <miles@gnu.org>
10982
10983 * xfaces.c (Vface_remapping_alist): New variable.
10984 (syms_of_xfaces): Initialize it.
10985 (enum named_merge_point_kind): New type.
10986 (struct named_merge_point): Add `named_merge_point_kind' field.
10987 (push_named_merge_point): Make cycle detection respect different
10988 named-merge-point kinds.
10989 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
10990 Remove face-name alias resolution.
10991 (lface_from_face_name): New definition using
10992 `lface_from_face_name_no_resolve'.
10993 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
10994 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
10995 (get_lface_attributes): New definition that layers face-remapping on
10996 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
10997 (lookup_basic_face): New function.
10998 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
10999 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
11000 `get_lface_attributes'.
11001 (face_at_buffer_position): Use `lookup_basic_face' to lookup
11002 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
11003 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
11004
11005 * xdisp.c (init_iterator): Pass base_face_id through
11006 `lookup_basic_face' when we actually use it as a face-id.
11007 (handle_single_display_prop): Use `lookup_basic_face' to lookup
11008 DEFAULT_FACE_ID.
11009
11010 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
11011 lookup the initial face-id.
11012
11013 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
11014
110152008-06-01 Juanma Barranquero <lekktu@gmail.com>
11016
11017 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
11018 (Fremove_text_properties): Fix typos in docstrings.
11019
110202008-05-31 Kenichi Handa <handa@m17n.org>
11021
11022 * font.c (font_list_entities): Fix the car part of data to be
11023 stored in the cache.
11024
11025 * ftfont.c (ftfont_font_format): Don't use strcasestr.
11026
110272008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11028
11029 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
11030 Add a `test' argument so another predicate than `equal' can be used.
11031 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
11032 (map_char_table): Remove unused vars `c' and `i'.
11033 * lisp.h (Foptimize_char_table): Adjust declaration.
11034 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
11035
110362008-05-30 Kenichi Handa <handa@m17n.org>
11037
11038 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
11039 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
11040 defined.
11041
110422008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11043
11044 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
11045 (Fmake_variable_frame_local): Disallow mixing buffer-local and
11046 frame-local settings for the same variable.
11047
110482008-05-30 Kenichi Handa <handa@m17n.org>
11049
11050 * fontset.c (Ffont_info): Move to font.c.
11051 (syms_of_fontset): Delete defsubr of Sfont_info.
11052
11053 * font.c (font_style_to_value, font_score): Delete casting of the
11054 args to xstcasecmp.
11055 (register_font_driver): Increment num_font_drivers only when
11056 registering the driver globally.
11057 (Ffont_info): Move from fontset.c. Handle a font object too.
11058 (syms_of_font): Defsubr Sfont_info.
11059
110602008-05-29 Kenichi Handa <handa@m17n.org>
11061
11062 * coding.h (enum define_coding_utf8_arg_index): New enum.
11063 (enum coding_attr_index): Change coding_attr_utf_16_bom to
11064 coding_attr_utf_bom.
11065 (enum utf_bom_type): Rename from utf_16_bom_type.
11066 (struct utf_16_spec): Adjust for the above change.
11067 (struct coding_system): Add utf_8_bom in `spec' union.
11068
11069 * coding.c (CODING_UTF_8_BOM): New macro.
11070 (enum coding_category): Delete coding_category_utf_8, add
11071 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
11072 coding_category_utf_8_sig.
11073 (CATEGORY_MASK_UTF_8): Delete it.
11074 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
11075 (CATEGORY_MASK_UTF_8_SIG): New macros.
11076 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
11077 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
11078 CATEGORY_MASK_UTF_8_SIG.
11079 (CATEGORY_MASK_UTF_8): New macro.
11080 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
11081 (detect_coding_utf_8): Check BOM.
11082 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
11083 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
11084 (encode_coding_utf_16): Likewise.
11085 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
11086 (detect_coding, detect_coding_system): Handle utf-8-auto.
11087 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
11088 (syms_of_coding): Fix setting up of Vcoding_category_table.
11089
110902008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
11091
11092 * process.c (Faccept_process_output): If `millisec' is non-nil,
11093 `seconds' default to 0.
11094 (wait_reading_process_output): Also return non-nil if we read output
11095 from a non-running process.
11096
110972008-05-29 Jason Rumney <jasonr@gnu.org>
11098
11099 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
11100 `raster' specified.
11101 (add_font_entity_to_list): Allow non-opentype truetype fonts back
11102 in the uniscribe backend, but disallow any font that has no
11103 unicode subrange support.
11104
111052008-05-29 Juanma Barranquero <lekktu@gmail.com>
11106
11107 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
11108 Fix typos in docstrings.
11109
111102008-05-29 Kenichi Handa <handa@m17n.org>
11111
11112 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
11113 (Fx_family_fonts): Set frame correctly.
11114
111152008-05-28 Jason Rumney <jasonr@gnu.org>
11116
11117 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
11118
111192008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
11120
11121 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
11122 calling build_annotations.
11123
111242008-05-28 Juanma Barranquero <lekktu@gmail.com>
11125
11126 * coding.c (Fdecode_coding_region, Fencode_coding_region)
11127 (Fencode_coding_string):
11128 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
11129 <latin-extra-code-table>: Fix typos in docstrings.
11130 (syms_of_coding) <coding-system-alist>: Doc fix.
11131 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
11132
111332008-05-28 Kenichi Handa <handa@m17n.org>
11134
11135 * fontset.c (Ffont_info): Don't call font_close_object.
11136
11137 * font.c (font_parse_family_registry): Use Ffont_put to validate
11138 foundry and family.
11139 (font_delete_unmatched): Don't check spacing.
11140 (font_list_entities): Add spacing to the spec to list fonts.
11141
11142 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
11143 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
11144
11145 * coding.c (encode_coding_raw_text): Fix previous change.
11146 (encode_coding_object): When the dst_object is a buffer and is
11147 different from src_object, move gap to PT.
11148
111492008-05-27 Chong Yidong <cyd@stupidchicken.com>
11150
11151 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
11152
111532008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
11154
11155 * coding.c (encode_coding_raw_text): Set coding->produced_char for
11156 all branches. Compute it differently.
11157
11158 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
11159
111602008-05-27 Juanma Barranquero <lekktu@gmail.com>
11161
11162 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
11163 into "else if () ... else ...".
11164
111652008-05-27 Jason Rumney <jasonr@gnu.org>
11166
11167 * w32font.c (w32font_open_internal): Determine if glyph indices
11168 are likely to work here.
11169
111702008-05-27 Chong Yidong <cyd@stupidchicken.com>
11171
11172 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
11173 draw overlap glyphs with appropriate highlighting.
11174
111752008-05-27 Kenichi Handa <handa@m17n.org>
11176
11177 * xfont.c (xfont_open): Fix calculation of font->average_width.
11178
111792008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
11180
11181 * casefiddle.c (casify_object): Try to guess better whether the
11182 argument is a byte or a char.
11183
111842008-05-26 Andreas Schwab <schwab@suse.de>
11185
11186 * xselect.c (x_reply_selection_request): Properly handle format == 32.
11187 Always send multiples of format size.
11188
11189 * xterm.c (x_set_frame_alpha): Fix type mismatch.
11190
111912008-05-26 Jason Rumney <jasonr@gnu.org>
11192
11193 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
11194 (compute_metrics): Don't set failure if we just cleared the cache.
11195 (w32_weight_table): Remove unused variable.
11196 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
11197 backwards compatibility.
11198
111992008-05-25 Kenichi Handa <handa@m17n.org>
11200
11201 * w32term.c (x_draw_glyph_string):
11202 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
11203
11204 * xfaces.c: Delete unused function prototypes.
11205 (xstrlwr, font_frame): Delete them.
11206 (clear_face_cache): Delete unused variable.
11207
11208 * xftfont.c (xftfont_open): Delete unused variable.
11209 If underline_thickness is not 1, adjust underline_position.
11210
11211 * ftxfont.c (ftxfont_open): Delete unused variable.
11212
11213 * fontset.c (face_for_char): Optimize for the case of no charset
11214 property.
11215
11216 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
11217 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
11218 (otf_open, font_otf_capability, generate_otf_features)
11219 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
11220 Comment out by surrounding "#if 0" and "#endif" for the moment.
11221 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
11222 (syms_of_font): Codes for accessing above commented out.
11223
112242008-05-24 Eli Zaretskii <eliz@gnu.org>
11225
11226 * w32proc.c: Include dispextern.h.
11227
11228 * w32.c: Include dispextern.h.
11229
112302008-05-23 Juanma Barranquero <lekktu@gmail.com>
11231
11232 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
11233 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
11234 Fix typos in docstrings.
11235
112362008-05-23 Jason Rumney <jasonr@gnu.org>
11237
11238 * xsmfns.c: Remove includes that are already included by config.h.
11239
112402008-05-23 Kenichi Handa <handa@m17n.org>
11241
11242 * charset.c (Qemacs, charset_emacs): New variables.
11243 (char_charset): Fix for non-Unicode characters.
11244 (syms_of_charset): Define charset_emacs.
11245
11246 * w32term.c (x_draw_glyph_string): Be sure to update
11247 s->underline_thickness and s->underline_position. Be sure to draw
11248 underline within the current line area.
11249
11250 * xterm.c (x_draw_glyph_string): Be sure to update
11251 s->underline_thickness and s->underline_position. Be sure to draw
11252 underline within the current line area.
11253
11254 * fontset.c: Delete unused variables and add casting for char *
11255 throughout the file.
11256 (fontset_font): Try the fallback fonts of the current fontset
11257 before consulting the default fontset.
11258
11259 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
11260
11261 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
11262
112632008-05-22 Jason Rumney <jasonr@gnu.org>
11264
11265 * font.c: Don't include strings.h.
11266
11267 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
11268
11269 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
11270 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
11271 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
11272 to call xstrcasecmp.
11273
11274 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
11275
11276 * fontset.c (fs_query_fontset): Use xstrcasecmp.
11277
11278 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
11279
11280 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
11281
112822008-05-22 Kenichi Handa <handa@m17n.org>
11283
11284 * puresize.h (BASE_PURESIZE): Increase to 1220000.
11285
11286 * font.c (font_prop_validate_style): Adjust for the format
11287 change of font_style_table.
11288
11289 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
11290 two args.
11291
11292 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
11293 two args.
11294
112952008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
11296
11297 * minibuf.c (keys_of_minibuf): Delete.
11298 * lisp.h (keys_of_minibuf): Delete.
11299 * emacs.c (main): Don't call keys_of_minibuf.
11300
113012008-05-22 Kenichi Handa <handa@m17n.org>
11302
11303 * ftfont.c (ftfont_resolve_generic_family): Rename from
11304 ftfont_list_generic_family. Return a single family for each
11305 generic family.
11306 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
11307 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
11308 Call font_add_log.
11309 (ftfont_match): Call font_add_log.
11310
11311 * font.h (Ffont_xlfd_name): EXFUN adjusted.
11312 (FONT_DEBUG): Define it.
11313 (font_add_log): Extern it.
11314 (font_assert): Rename from xassert.
11315
11316 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
11317 (xfont_list_family): Call font_add_log.
11318 (xfont_match): Likewise.
11319 (memq_no_quit): Delete.
11320
11321 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
11322 call of Ffont_xlfd_name.
11323
11324 * xfaces.c (struct table_entry, slant_table, weight_table)
11325 (swidth_table): Move to font.c.
11326
11327 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
11328 xassert are changed to font_assert. Delete many unused variables.
11329 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
11330 New variables.
11331 (struct table_entry): Move from xfaces.c and modified.
11332 (weight_table, slant_table, width_table): Move from xfaces.c and
11333 contents adjusted for the change of struct table_entry.
11334 (font_style_to_value, font_style_symbolic): Adjust for the
11335 format change of font_style_table.
11336 (font_parse_family_registry): Don't overwrite existing foundry and
11337 family of font_spec.
11338 (font_score): Fix calculation of diff for sizes.
11339 (font_sort_entites): Call font_add_log.
11340 (font_delete_unmatched): Return a newly created list.
11341 (font_list_entities): Fix previous change. Call font_add_log.
11342 (font_matching_entity, font_open_entity, font_close_entity):
11343 Call font_add_log.
11344 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
11345 (Finternal_set_font_style_table): Delete.
11346 (BUILD_STYLE_TABLE): New macro.
11347 (build_style_table): New function.
11348 (Vfont_log, font_log_env_checked): New variables.
11349 (font_add_log): New function.
11350 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
11351 Declare Lisp variables "font-weight-table", "font-slant-table",
11352 "font-width-table", and "font-log". Initialize font_style_table.
11353
113542008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
11355
11356 * xterm.c (x_set_frame_alpha): Move declarations before statements.
11357
113582008-05-21 Seiji Zenitani <zenitani@mac.com>
11359 Ryo Yoshitake <ryo@shiftmode.net>
11360
11361 * frame.c (Qalpha): Add a new frame parameter `alpha'.
11362 (Vframe_alpha_lower_limit): New variable.
11363 (x_set_alpha): New function.
11364
11365 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
11366
11367 * xfns.c (x-create-frame, Qalpha):
11368 Initialize the frame parameter `alpha'.
11369 * xterm.c (OPAQUE, OPACITY): New.
11370 (x_set_frame_alpha): New function.
11371 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
11372
11373 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
11374 * w32fns.c (w32_frame_parm_handlers): Likewise.
11375
113762008-05-20 Jason Rumney <jasonr@gnu.org>
11377
11378 * w32font.c (add_font_entity_to_list): Don't add non-opentype
11379 truetype fonts to opentype list.
11380
113812008-05-20 Juanma Barranquero <lekktu@gmail.com>
11382
11383 * fontset.c (Ffontset_info): Doc fix.
11384 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
11385 <ignore-relative-composition>: Fix typos in docstrings.
11386
11387 * font.c (syms-of-font) <font-encoding-alist>:
11388 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
11389 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
11390 (Ffont_otf_alternates): Doc fixes.
11391
113922008-05-20 Kenichi Handa <handa@m17n.org>
11393
11394 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
11395 font.h through out the file.
11396 (FONT_DRIVERS): Rename from FONTOBJ.
11397 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
11398 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
11399
11400 * emacs.c (main): Call syms_of_font unconditionally.
11401
11402 * font.h (find_font_encoding): Extern it.
11403
11404 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
11405 fontset.c.
194d44e7 11406 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
aac0c6e3
MR
11407 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
11408 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
11409 only when HAVE_WINDOW_SYSTEM is defined.
11410 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
11411 when HAVE_WINDOW_SYSTEM is defined.
11412
11413 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
11414 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
11415
11416 * xfaces.c: Include font.h unconditionally.
11417 (merge_face_ref, merge_face_vectors)
11418 (Finternal_set_lisp_face_attribute): Cancel the previous change.
11419
114202008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
11421
11422 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
11423 indirect_variable.
11424 * eval.c (lisp_indirect_variable): New fun.
11425 (Fuser_variable_p): Use it.
11426
114272008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11428
11429 * lisp.h (indirect_variable):
11430 * data.c (indirect_variable, let_shadows_buffer_binding_p):
11431 Use Lisp_Symbol pointers rather than Lisp_Object.
11432 Adjust callers.
11433 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
11434 To this end, change calling-convention.
11435
11436 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
11437 if some non-hidden buffers are selected by string&pred.
11438
114392008-05-19 Chong Yidong <cyd@stupidchicken.com>
11440
11441 * process.c (wait_reading_process_output): Always check status
11442 when in batch mode.
11443
114442008-05-19 Kenichi Handa <handa@m17n.org>
11445
11446 * font.c (font_list_entities): Fix handling of cache.
11447 (font_matching_entity): Likewise.
11448
11449 * ftfont.c (cs_iso8859_1): Delete.
11450 (ft_face_cache): New variable.
11451 (struct ftfont_info): New member fc_charset_idx.
11452 (ftfont_build_basic_charsets): Delete.
11453 (fc_charset_table): New variable.
11454 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
11455 . FC_CHARSET_IDX) as :font-entity property in the font entity.
11456 Callers changed.
11457 (ftfont_lookup_cache, ftfont_get_charset): New functions.
11458 (ftfont_spec_pattern): New argument fc_charset_idx.
11459 Check registry more rigidly. Change callers.
11460 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
11461 change of :font-entity property of the font.
11462
11463 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
11464 property of the font.
11465
114662008-05-18 Juanma Barranquero <lekktu@gmail.com>
11467
11468 * coding.c (Fcoding_system_p): Rename argument to match docstring.
11469 (Funencodable_char_position, Fcheck_coding_systems_region)
11470 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
11471 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
11472 (Ffind_operation_coding_system, Fset_coding_system_priority)
11473 (Fcoding_system_eol_type): Doc fixes.
11474
114752008-05-17 Glenn Morris <rgm@gnu.org>
11476
11477 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
11478
114792008-05-16 Eli Zaretskii <eliz@gnu.org>
11480
11481 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
11482 and st_gid.
11483
11484 * frame.c (Fdelete_frame): Don't call font_update_drivers if
11485 HAVE_WINDOW_SYSTEM is not defined.
11486
11487 * xfaces.c (merge_face_ref, merge_face_vectors)
11488 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
11489 HAVE_WINDOW_SYSTEM is defined.
11490 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
11491
114922008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
11493
11494 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
11495
114962008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11497
11498 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
11499
115002008-05-15 Kenichi Handa <handa@m17n.org>
11501
11502 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
11503 preference.
11504
115052008-05-15 Glenn Morris <rgm@gnu.org>
11506
11507 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
11508
115092008-05-15 Chong Yidong <cyd@stupidchicken.com>
11510
11511 * fns.c (init_fns): Don't initialize weak_hash_tables here.
11512 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
11513
11514 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
11515
115162008-05-15 Kenichi Handa <handa@m17n.org>
11517
11518 * ftfont.c (ftfont_list): Downcase family name to check generic
11519 families.
11520
11521 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
11522 font-spec for QCfont value.
11523
11524 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
11525 buffer. Check the return value of it.
11526
115272008-05-14 Jason Rumney <jasonr@gnu.org>
11528
11529 * w32term.c (w32_get_glyph_overhangs): Remove.
11530 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
11531
115322008-05-14 Kenichi Handa <handa@m17n.org>
11533
11534 * font.c (font_prop_validate): Make nil a valid value.
11535 (font_clear_cache): Check if the cached vector of entities is nil
11536 or not.
11537
115382008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11539
11540 * emacs.c (main_thread): Conditionalize on
11541 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
11542 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
11543
11544 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
11545 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
11546 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
11547
115482008-05-14 Kenichi Handa <handa@m17n.org>
11549
11550 * coding.c (detect_coding_iso_2022): Ignore a coding category that
11551 has no corresponding coding system.
11552
115532008-05-14 Jason Rumney <jasonr@gnu.org>
11554
11555 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
11556
11557 * w32font.h (w32font_open_internal): Update declaration.
11558
11559 * w32font.c (w32font_open_internal): Change last argument from
11560 w32font_info struct to font object. Fill in font object from
11561 font_entity. Get Outline metrics if possible. Use them to
11562 calculate underline position and thickness. Use xlfd name as name
11563 property. Don't set codepage.
11564 (w32font_open): Pass font_object to w32font_open_internal. Don't
11565 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
11566 (w32font_draw): Use s->font.
11567 (clear_cached_metrics): Don't clear non-existent blocks.
11568
11569 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
11570 font was not found.
11571 (x_draw_glyph_string): Use underline position and thickness from font.
11572
11573 * w32uniscribe.c (uniscribe_open): Pass font_object to
11574 w32font_open_internal.
11575
115762008-05-14 Kenichi Handa <handa@m17n.org>
11577
11578 These changes are to delete all legacy font-handling codes, and
11579 make Emacs use only font-backends.
11580
11581 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
11582 (frame.o, image.o, print.o): Depend on $(FONTSRC).
11583
11584 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
11585
11586 * charset.h (Vcharset_non_preferred_head)
11587 (Vcurrent_iso639_language): Extern them.
11588
11589 * charset.c (Vcharset_non_preferred_head): New variable.
11590 (Vcurrent_iso639_language): New variable.
11591 (syms_of_charset): Declare it as a Lisp variable.
11592 (char_charset): Don't check non preferred charsets. As a last
11593 resort, return charset_unicode.
11594 (Fset_charset_priority): Update Vcharset_non_preferred_head.
11595
11596 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
11597 conditionals. Don't check enable_font_backend. Delete all codes
11598 used only when USE_FONT_BACKEND is not defined.
11599
11600 * dispextern.h (struct glyph_string): Change type of `font' to
11601 `struct font *'.
11602 (struct glyph_string): New member underline_position and
11603 underline_thickness.
11604 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
11605 (struct face): Change type of `font' to `struct font *'. Remove
11606 members `font_name', `font_info_id'.
11607 (per_char_metric, encode_char): Delete externs.
11608 (calc_pixel_width_or_height): Adjust the prototype.
11609
11610 * emacs.c (enable_font_backend): Delete extern.
11611 (main): Don't set enable_font_backend. Don't check the command
11612 line argument "-disable-font-backend".
11613
11614 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
11615 (enum font_property_index): New members FONT_DPI_INDEX,
11616 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
11617 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
11618 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
11619 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
11620 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
11621 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
11622 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
11623 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
11624 (struct font_spec, struct font_entity): New structs.
11625 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
11626 (struct font): Many members from old "struct font_info" moved to
11627 here. Members font and entity deleted.
11628 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
11629 the new font-related objects.
11630 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
11631 (CHECK_FONT_GET_OBJECT): Likewise.
11632 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
11633 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
11634 (struct font_driver): New members case_sensitive anc check. Type
11635 of the member list and open changed.
11636 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
11637 (font_symbolic_width, font_find_object, font_get_spec)
11638 (font_set_lface_from_name): Delete extern.
11639 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
11640
11641 * font.c: Include <strings.h>.
11642 (enable_font_backend): Delete it.
11643 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
11644 (CHECK_VALIDATE_FONT_SPEC): Delete it.
11645 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
11646 (null_string): Delete it.
11647 (null_vector): Make it static.
11648 (font_family_alist): Delete it.
11649 (Qnormal): Extern it.
11650 (QCextra, QClanguage): Delete it.
11651 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
11652 (font_make_spec, font_make_entity, font_make_object)
11653 (font_intern_prop): Renamed from intern_downcase. Don't downcase
11654 the string. Callers changed.
11655 (font_pixel_size): Adjusted for the format change of font-related
11656 objects.
11657 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
11658 (font_style_to_value, font_style_symbolic): New function.
11659 (build_font_family_alist): Delete it.
11660 (font_registry_charsets): Use Fassoc_string instead of
11661 assq_no_quit.
11662 (font_prop_validate_symbol): Don't return null_string.
11663 (font_prop_validate_style): Adjusted for the change of
11664 style-related values in a font vector.
11665 (font_property_table): Delete entries for QClanguage and
11666 QCantialias, add entries for QCavgwidth.
11667 (get_font_prop_index): Delete the 2nd argument FROM.
11668 (font_prop_validate): Arguments changed.
11669 (font_put_extra): Adjusted for the change of font-related objects.
11670 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
11671 (font_parse_fcname, font_unparse_fcname)
11672 (font_prepare_composition): Likewise.
11673 (font_parse_family_registry): Renamed from font_merge_old_spec.
11674 (otf_open): Delete the 1st arg entity.
11675 (font_otf_capability): Adjusted for the above change.
11676 (font_score): New arg alternate_families. Adjusted for the change
11677 of font-related objects.
11678 (font_sort_entites): New arg best_only.
11679 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
11680 Delete them.
11681 (font_match_p): Check alternate families.
11682 (font_find_object): Delete it.
11683 (font_check_object): New function.
11684 (font_clear_cache): Adjusted for the change of font-related objects.
11685 (font_delete_unmatched): New arg.
11686 (font_list_entities): Call font_driver->list with a spec that
11687 doesn't specify style-related properties.
11688 (font_matching_entity): Arguments changed. Caller changed.
11689 (font_open_entity): Adjusted for the change of font-related objects.
11690 (font_close_object, font_has_char, font_encode_char)
11691 (font_get_name, font_get_spec): Likewise.
11692 (font_spec_from_name, font_clear_prop, font_update_lface):
11693 New functions.
11694 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
11695 (font_prepare_for_face, font_done_for_face, font_open_by_name)
11696 (font_at): Adjusted for the change of font-related objects.
11697 (font_range): New function.
11698 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
11699 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
11700 (Fcopy_font_spec, Fmerge_font_spec): New function.
11701 (Ffont_family_list): Renamed from list-families.
11702 (Finternal_set_font_style_table): Arguments changed.
11703 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
11704 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
11705 change of font-related objects.
11706 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
11707
11708 * fontset.h (struct font_info): Delete it. Most members go to
11709 struct font.
11710 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
11711 (enum FONT_SPEC_INDEX): Delete it.
11712 (font_info, list_fonts_func, load_font_func, query_font_func)
11713 (set_frame_fontset_func, find_ccl_program_func)
11714 (get_font_repertory_func, new_fontset_from_font_name): Delete
11715 externs.
11716 (fontset_from_font_name): Extern it.
11717 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
11718 (FONT_INFO_FROM_FACE): Deleted.
11719 (face_for_font): Adjust prototype.
11720
11721 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
11722 conditionals. Don't check enable_font_backend. Delete all codes
11723 used only when USE_FONT_BACKEND is not defined.
11724 (get_font_info_func, list_font_func, load_font_func)
11725 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
11726 (get_font_repertory_func): Delete them.
11727 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
11728 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
11729 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
11730 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
11731 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
11732 (fontset_compare_rfontdef): New function.
11733 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
11734 rfont-defs by qsort. Adjusted for the change of font-group vector.
11735 (load_font_get_repertory): Deleted.
11736 (fontset_find_font): Use new macros to ref/set elements of
11737 font-def and rfont-def.
11738 (fontset_font): Fix the timing of remembering that no font for C.
11739 (free_face_fontset): Do nothing if the face has no fontset.
11740 (face_suitable_for_char_p): Use new macros to ref/set elements of
11741 rfont-def.
11742 (face_for_char): Likewise. Call face_for_char with font_object.
11743 (fs_load_font): Delete. Delete #pragma surrounding it.
11744 (fs_query_fontset): Use strcasecmp instead of strcmp.
11745 (generate_ascii_font_name): Adjusted for the format change of
11746 font-spec.
11747 (Fset_fontset_font): Likewise. Use new macros to set elements of
11748 font-def.
11749 (Fnew_fontset): Use font_unparse_xlfd to generate
11750 FONTSET_ASCII (fontset).
11751 (new_fontset_from_font_name): Deleted.
11752 (fontset_from_font): Renamed from new_fontset_from_font. Check if
11753 a fontset is already created for the font. FIx updating of
11754 Vfontset_alias_alist.
11755 (fontset_ascii_font): Deleted.
11756 (Ffont_info): Adjusted for the format change of font-spec.
11757 (Finternal_char_font): Likewise.
11758 (Ffontset_info): Likewise.
11759 (syms_of_fontset): Don't check load_font_func.
11760
11761 * fns.c (internal_equal): Handle PREV_FONT.
11762
11763 * frame.h: Delete USE_FONT_BACKEND conditional.
11764
11765 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
11766 conditionals. Don't check enable_font_backend. Delete all codes
11767 used only when USE_FONT_BACKEND is not defined.
11768 (x_set_font): Call x_new_font, not x_new_fontset2.
11769 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
11770 already set for the frame.
11771
11772 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
11773 a font-entity by font_make_entity. Use font_intern_prop instead
11774 of intern_downcase. Use FONT_SET_STYLE to set a style-related
11775 font property. If a font is scalable, set avgwidth property to 0.
11776 Set font-entity property by font_put_extra.
11777 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
11778 (ffont_driver): Adjusted for the change of struct font_driver.
11779 (ftfont_spec_pattern): New function.
11780 (ftfont_list): Return a list, not vector.
11781 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
11782 (ftfont_list_family): Don't downcase names.
11783 (ftfont_free_entity): Deleted.
11784 (ftfont_open): Return a font-object. Adjusted for the change of
11785 struct font. Get underline_thickness and underline_position from
11786 font property. Don't update dpyinfo->smallest_font_height and
11787 dpyinfo->smallest_char_width.
11788 (ftfont_close): Don't free `struct font'.
11789 (ftfont_has_char): Adjusted for the format change of font-entity.
11790 (ftfont_encode_char, ftfont_text_extents): Likewise.
11791
11792 * ftxfont.c (ftxfont_list): Return a list, not vector.
11793 (ftxfont_open): Return a font-object. Adjusted for the change of
11794 struct font. Get underline_thickness and underline_position from
11795 font property. Don't update dpyinfo->smallest_font_height and
11796 dpyinfo->smallest_char_width.
11797 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
11798 (ftxfont_draw): Adjusted for the change of struct font.
11799
11800 * image.c (image_ascent): Don't include "charset.h". Include
11801 "character.h" and "font.h".
11802
11803 * lisp.h (enum pvec_type): New member PREV_FONT.
11804 (Fassoc_string): EXFUN it.
11805
11806 * print.c: Include font.h.
11807 (print_object): Handle font-related objects.
11808
11809 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
11810 conditionals. Don't check enable_font_backend. Delete all codes
11811 used only when USE_FONT_BACKEND is not defined.
11812 (handle_auto_composed_prop): Do nothing if it->f is not on a
11813 window system. Check how many following characters can be
11814 displayed by the same font.
11815 (calc_pixel_width_or_height): Type of the 4th arg is changed to
11816 'struct font *'.
11817 (get_char_face_and_encoding): Assign the whole encoding task to
11818 the `encode-char' method of a font driver.
11819 (fill_composite_glyph_string): Adjusted for the change of `struct
11820 face' and `struct glyph_string'.
11821 (fill_glyph_string): Likewise.
11822 (get_per_char_metric): Arguments changed.
11823 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
11824 and `struct glyph_string'.
11825 (produce_stretch_glyph, calc_line_height_property)
11826 (x_produce_glyphs): Likewise.
11827
11828 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
11829 conditionals. Don't check enable_font_backend. Delete all codes
11830 used only when USE_FONT_BACKEND is not defined. Use
11831 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
11832 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
11833 (Qp): Extern them.
11834 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
11835 Deleted.
11836 (struct font_name): Deleted.
11837 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
11838 (compare_fonts_by_sort_order): New function.
11839 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
11840 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
11841 Deleted.
11842 (Fx_family_fonts): Use font_list_entities, and sort fonts by
11843 compare_fonts_by_sort_order.
11844 (Fx_font_family_list): Call Ffont_family_list.
11845 (face_numeric_value, face_numeric_weight, face_numeric_slant)
11846 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
11847 (face_symbolic_slant, face_symbolic_swidth)
11848 (split_font_name_into_vector, build_font_name_from_vector)
11849 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
11850 (font_rescale_ratio, split_font_name, build_font_name)
11851 (free_font_names, sort_fonts, x_face_list_fonts)
11852 (face_font_available_p, sorted_font_list, cmp_font_names)
11853 (font_list_1, concat_font_list, font_list, remove_duplicates):
11854 Deleted.
11855 (Fx_list_fonts): Use Ffont_list.
11856 (LFACE_AVGWIDTH): Deleted.
11857 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
11858 by FONTP.
11859 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
11860 (set_lface_from_font_name): Delete it.
11861 (set_lface_from_font): Renamed from
11862 set_lface_from_font_and_fontset. Caller changed. Don't set
11863 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
11864 for face.
11865 (merge_face_vectors): Copy font-spec if necessary.
11866 Clear properties of the font-spec if necessary.
11867 (merge_face_ref): Clear properties of the font-spec if necessary.
11868 (Finternal_set_lisp_face_attribute): Likewise.
11869 (set_font_frame_param): Use font_load_for_lface to load a
11870 font-object, and call Fmodify_frame_parameters with it.
11871 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
11872 font name by Ffont_xlfd_name.
11873 (Finternal_lisp_face_attribute_values): Don't check QCweight,
11874 QCslant, and QCwidth.
11875 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
11876 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
11877 Compare fonts by EQ.
11878 (lookup_non_ascii_face): Deleted.
11879 (face_for_font): The 2nd argument changed.
11880 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
11881 Check atomic font properties by case insensitive.
11882 (realize_non_ascii_face): Set face->overstrike correctly.
11883 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
11884 (dump_realized_face): Get font name from
11885 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
11886
11887 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
11888 conditionals. Don't check enable_font_backend. Delete all codes
11889 used only when USE_FONT_BACKEND is not defined.
11890 (xic_create_xfontset): Original code deleted and renamed from
11891 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
11892 (x_make_gc): Don't set GCFont in GCs.
11893 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
11894 opened by "fixed".
11895 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
11896 find_ccl_program_func, query_font_func, set_frame_fontset_func,
11897 get_font_repertory_func.
11898
11899 * xfont.c: Include <stdlib.h> and "ccl.h".
11900 (struct xfont_info): New structure.
11901 (xfont_query_font): Deleted.
11902 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
11903 moved from xterm.c.
11904 (xfont_driver): Adjusted for the change of struct font_driver.
11905 (compare_font_names): New function.
11906 (xfont_list_pattern): Sort font names case insensitively. Make
11907 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
11908 (xfont_list): Return a list, not vector.
11909 (xfont_match): If the font doesn't have QCname property, generate
11910 a name from the other font properties.
11911 (xfont_open): Return a font-object. Adjusted for the change of
11912 struct font. Get underline_thickness and underline_position from
11913 font property. Don't update dpyinfo->smallest_font_height and
11914 dpyinfo->smallest_char_width.
11915 (xfont_close): Don't free struct font.
11916 (xfont_prepare_face): Adjusted for the change of struct font.
11917 (xfont_done_face): Deleted.
11918 (xfont_has_char): Adjusted for the change of struct font.
11919 (xfont_encode_char, xfont_draw): Likewise.
11920 (xfont_check): New function.
11921
11922 * xftfont.c (xftfont_list): Adjusted for the change of `list'
11923 callback function.
11924 (xftfont_match): Adjusted for the format change of font-entity.
11925 (xftfont_open): Adjusted for the format change of font-entity and
11926 font-object. Adjusted for the change of struct font. Return a
11927 font-object. Don't update dpyinfo->smallest_font_height and
11928 dpyinfo->smallest_char_width.
11929 (xftfont_close): Block input while calling XftFontClose.
11930 (xftfont_prepare_face): Don't block input while calling
11931 xftfont_get_colors. Adjusted for the change of struct font.
11932 (xftfont_shape): Return value of error case fixed.
11933
11934 * xrdb.c (x_load_resources): Don't setup a fontset resource.
11935
11936 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
11937 conditionals.
11938 (FONT_WIDTH): Return (f)->max_width.
11939 (struct x_display_info): Delete member `font'.
11940 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
11941 (x_find_ccl_program, x_get_font_repertory): Delete externs.
11942 (struct x_output): Change type of `font' to `struct font *'.
11943
11944 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
11945 conditionals. Don't check enable_font_backend. Delete all codes
11946 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
11947 (x_per_char_metric, x_encode_char): Deleted.
11948 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
11949 (x_compute_glyph_string_overhangs): Adjusted for the change of
11950 `struct face'.
11951 (x_draw_glyph_string_foreground)
11952 (x_draw_composite_glyph_string_foreground): Likewise.
11953 (x_draw_glyph_string): Likewise. Use font->underline_position and
11954 font->underline_thickness.
11955 (x_new_font): Renamed from x_new_fontset2.
11956 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
11957 (x_check_font): Call `check' method of a font driver.
11958 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
11959 (x_query_font, x_get_font_repertory): Deleted.
11960 (x_find_ccl_program): Renamed and moved to xfont.c.
11961 (x_redisplay_interface): Adjusted for the change of `struct
11962 redisplay_interface'.
11963
11964 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
11965 conditionals. Don't check enable_font_backend. Delete all codes
11966 used only when USE_FONT_BACKEND is not defined. Surround non-used
11967 code by "#ifdef OLD_FONT" and "endif".
11968 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
11969
11970 * w32font.h (struct w32font_info): New member.
11971 (FONT_COMPAT): New macro.
11972 (w32font_open_internal): Prototype adjusted.
11973
11974 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
11975 OLD_FONT" and "endif".
11976
11977 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
11978 conditionals. Don't check enable_font_backend. Delete all codes
11979 used only when USE_FONT_BACKEND is not defined.
11980 (w32font_open): Return a font-object. Make a font-object by
11981 font_make_object. Adjusted for the change of struct w32font_info.
11982 (w32font_close): Don't free struct font. Adjusted for the change
11983 of struct w32font_info.
11984 (w32font_encode_char, w32font_text_extents, w32font_draw):
11985 Adjusted for the change of struct w32font_info.
11986 (w32font_draw): Likewise.
11987 (w32font_list_internal): Return a list, not vector.
11988 (w32font_open_internal): Change the 4th arg to font-object.
11989 Adjusted for the change of struct w32font_info and font-object format.
11990 (add_font_name_to_list): Don't downcase names.
11991 (w32_enumfont_pattern_entity): Make a font-entity by
11992 font_make_entity. Adjusted for the format change of font-entity.
11993 Use FONT_SET_STYLE to set a style-related font property. If a
11994 font is scalable, set avgwidth property to 0. Set font-entity
11995 property by font_put_extra.
11996 (font_matches_spec): Adjusted for the format change of font-entity.
11997 (w32_weight_table, w32_decode_weight): New variables.
11998 (w32_encode_weight): New function.
11999 (fill_in_logfont): Adjusted for the format change of font-spec.
12000 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
12001 weight value.
12002 (w32font_driver): Adjusted for the change of struct font_driver.
12003
12004 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
12005 conditionals. Don't check enable_font_backend. Surround non-used
12006 code by "#ifdef OLD_FONT" and "endif".
12007 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
12008 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
12009
12010 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
12011 conditionals. Don't check enable_font_backend. Delete all codes
12012 used only when USE_FONT_BACKEND is not defined. Surround non-used
12013 code by "#ifdef OLD_FONT" and "endif".
12014
12015 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
12016 (uniscribe_open): Return value changed to font-object.
12017 Adjusted for the format change of font-object.
12018 (uniscribe_otf_capability): Adjusted for the change of struct font.
12019 (add_opentype_font_name_to_list): Don't downcase names.
12020 (uniscribe_font_driver): Adjusted for the change of struct
12021 font_driver.
12022
120232008-05-13 Chong Yidong <cyd@stupidchicken.com>
12024
12025 * dispnew.c (update_frame_1): Check if tty output is still valid
12026 before flushing it.
12027
120282008-05-13 Jan Djärv <jan.h.d@swipnet.se>
12029
12030 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
12031 to Gtk+ menus.
12032
120332008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
12034
12035 * dired.c (file_name_completion): Tweak the code so as to always do it
12036 in a single pass. Tighten the scope of some variables.
12037
12038 * dired.c (Qdefault_directory): New var.
12039 (file_name_completion): Use it instead of Fexpand_file_name.
12040 (syms_of_dired): Initialize it.
12041
120422008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
12043
12044 * fileio.c (double_dollars): Remove dead code.
12045
120462008-05-10 Eli Zaretskii <eliz@gnu.org>
12047
12048 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
12049 Mention w32-get-true-file-attributes in doc string.
12050
12051 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
12052
120532008-05-09 Glenn Morris <rgm@gnu.org>
12054
12055 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
12056 2008-04-23.
12057
120582008-05-09 Eli Zaretskii <eliz@gnu.org>
12059
12060 Support for reporting owner and group of each file on MS-Windows:
12061 * dired.c (stat_uname, stat_gname): New functions, with special
12062 implementation for w32.
12063 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
12064
12065 * w32.c: Rename the_passwd_* to dflt_passwd_*.
12066 (dflt_group_name): New static variable.
12067 (dflt_group): Rename from the_group.
12068 (init_user_info): Init dflt_group fields. Get user's group name
12069 from LookupAccountSid.
12070 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
12071 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
12072 New initialization states.
12073 (globals_of_w32): Initialize them to zero. Initialize the default
12074 group name to "None".
12075 (GetFileSecurity_Name): New global var, the name of the function
12076 to call for GetFileSecurity.
12077 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
12078 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
12079 (get_file_security, get_security_descriptor_owner)
12080 (get_security_descriptor_group, is_valid_sid)
12081 (get_file_security_desc, get_rid, get_name_and_id)
12082 (get_file_owner_and_group): New functions.
12083 (stat): Use get_file_security_desc and get_file_owner_and_group to
12084 report the owner and primary group of each file. Don't ignore the
12085 high 32 bits of file's size, now that st_size is 64-bit wide.
12086 Fix test when to get true file attributes.
12087 (init_user_info): Use get_rid instead of equivalent inline code.
12088 (fstat): Don't ignore the high 32 bits of file's size.
12089
120902008-05-09 Chong Yidong <cyd@stupidchicken.com>
12091
12092 * image.c (png_load): Use correct bit-depth for setting background
12093 color.
12094
120952008-05-08 Eli Zaretskii <eliz@gnu.org>
12096
12097 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
12098 epa-hook.elc.
12099
121002008-05-08 Juanma Barranquero <lekktu@gmail.com>
12101
12102 * font.c (Ffont_match_p): Don't use `iff' in docstring.
12103
121042008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
12105
12106 * macfns.c (Fx_create_frame): Make a copy of frame parameters
12107 because the original parameters are in pure storage now.
12108 (mac_window): Remove unused params. Update callers.
12109
121102008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12111
12112 * lread.c (substitute_object_recurse): Use lower-level primitives.
12113 Don't signal errors when traversing sub-char-tables.
12114 Don't loop over all the possible characters when traversing char-tables.
12115
12116 * print.c (print_preprocess): Add sub-char-tables to the print-table,
12117 just like we do in print.c.
12118
121192008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12120
12121 * minibuf.c (Ftry_completion): Remove code left over from when we used
12122 scmp instead of Fcompare_strings.
12123
121242008-05-04 Juanma Barranquero <lekktu@gmail.com>
12125
12126 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
12127
121282008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12129
12130 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
12131 Create bitmap context in native byte order.
12132
12133 * macterm.c (XDrawLine)
12134 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
12135 context in native byte order.
12136
121372008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12138
12139 * config.in: Regenerate.
12140
12141 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
12142 New definitions for Image I/O support.
12143 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
12144 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
12145 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
12146 (mac_data_provider_release_data, image_load_image_io)
12147 [USE_MAC_IMAGE_IO]: New functions.
12148 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
12149 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
12150 (init_image_func_pointer) [MAC_OSX]: Remove function.
12151 (image_load_quartz2d) [MAC_OSX]: Check availability of
12152 CGImageCreateWithPNGDataProvider at compile time.
12153 Use lowercase `false' for boolean constant.
12154 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
12155 Use image_load_image_io.
12156 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
12157 Don't check MyCGImageCreateWithPNGDataProvider.
12158 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
12159 Don't call init_image_func_pointer.
12160
12161 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
12162
12163 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
12164 Make variable non-static.
12165 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
12166 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
12167
12168 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
12169 (RED_FROM_ULONG): Mask off higher bits.
12170 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
12171
12172 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
12173 Include AvailabilityMacros.h.
12174 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
12175 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
12176
121772008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12178
12179 * chartab.c (Fset_char_table_range): If range is t, really set all
12180 chars to that value.
12181
121822008-05-03 Eli Zaretskii <eliz@gnu.org>
12183
12184 * dired.c (Ffile_attributes): Don't allow the device number become
12185 negative.
12186
121872008-05-02 Daiki Ueno <ueno@unixuser.org>
12188
12189 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
12190
121912008-05-02 Juri Linkov <juri@jurta.org>
12192
12193 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
12194 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
12195 DEFAULT argument as a list of default values in docstrings.
12196
121972008-05-01 Chong Yidong <cyd@stupidchicken.com>
12198
12199 * puresize.h (BASE_PURESIZE): Increase to 1210000.
12200
122012008-05-01 Martin Rudalics <rudalics@gmx.at>
12202
12203 * dispnew.c (change_frame_size_1): Preserve small windows when
12204 shrinking frames by calling set_window_height|width with third
12205 arg 2.
12206
12207 * window.h (struct window): Replace field too_small_ok by field
12208 resize_proportionally.
12209
12210 * window.c (make_window): Initialize resize_proportionally.
12211 (enlarge_window): Temporarily set resize_proportionally to make
12212 sure that shrink_windows does scale the window proportionally.
12213 (shrink_windows): When window has resize_proportionally set try
12214 to shrink it proportionally by stealing from other windows.
12215 (struct saved_window, Fset_window_configuration)
12216 (compare_window_configurations): Handle resize_proportionally.
12217 (WINDOW_TOTAL_SIZE): New macro.
12218 (window_min_size, shrink_windows, size_window): Use it.
12219 (check_min_window_sizes): Remove. Invalid values of
12220 window-min-height|width are handled by window_min_size_2 now.
12221 (size_window, Fsplit_window, enlarge_window)
12222 (adjust_window_trailing_edge, grow_mini_window): Don't call
12223 check_min_window_sizes.
12224 (window_min_size_2, window_min_size_1, window_min_size):
12225 New argument safe_p for retrieving "safe" minimum sizes.
12226 (Fdisplay_buffer, Fsplit_window, enlarge_window)
12227 (adjust_window_trailing_edge, grow_mini_window):
12228 Adjust arguments of window_min_size... functions.
12229 (shrink_windows): Argument min_size removed. New argument
12230 safe_p allows shrinking windows to their safe minimum sizes.
12231 Calculate minimum size and decide whether a window shall be
12232 deleted for each window individually.
12233 (size_window): When nodelete_p equals 2, tell shrink_windows to
12234 delete windows only if their new minimum size is no more safe.
12235 (shrink_window_lowest_first): Call window_min_size_1 to make
12236 sure to preserve modeline of bottom-most window when resizing
12237 the minibuffer.
12238 (Fset_window_configuration, Fcurrent_window_configuration)
12239 (compare_window_configurations): Do not handle
12240 window-min-height|width any more.
12241 (syms_of_window): Clarify window-min-height|width doc-strings.
12242
122432008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
12244
12245 * dired.c (file_name_completion): Fix up the encoding/decoding issue
12246 some more. Copy some of the code from Ftry_completions.
12247 Remove special case code that dates back to initial revision when the
12248 slash was only added when necessary and that can't trigger nowadays.
12249
122502008-04-27 Kenichi Handa <handa@m17n.org>
12251
12252 * font.c (font_prop_validate): Signal `error' instead of `font'.
12253
122542008-04-29 Jason Rumney <jasonr@gnu.org>
12255
12256 * w32fns.c (Fw32_battery_status): New defun.
12257 (syms_of_w32fns): Defsubr it.
12258
122592008-04-28 Andreas Schwab <schwab@suse.de>
12260
12261 * dired.c (file_name_completion): Fix another mixing of encoded
12262 and decoded names.
12263
122642008-04-28 Juanma Barranquero <lekktu@gmail.com>
12265
12266 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
12267
122682008-04-27 Juanma Barranquero <lekktu@gmail.com>
12269
12270 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
12271
122722008-04-27 Andreas Schwab <schwab@suse.de>
12273
12274 * dired.c (file_name_completion): Fix inappropriate mixing of
12275 encoded and decoded names.
12276
12277 * xterm.c (XTread_socket): Fix use of uninitialized variable.
12278
12279 * puresize.h (BASE_PURESIZE): Increase to 1200000.
12280
122812008-04-26 Eli Zaretskii <eliz@gnu.org>
12282
12283 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
12284 2008-03-31, it's not needed anymore with `struct stat' definition
12285 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
12286 for the same reasons.
12287
122882008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
12289
12290 * m/sparc.h: Additional redefinitions for GNU/Linux.
12291
122922008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12293
12294 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
12295 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
12296 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
12297 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
12298 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
12299 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
12300 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
12301 Likewise.
12302
12303 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
12304 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
12305 (mac_ax_number_of_characters): Add externs.
12306 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
12307 [USE_MAC_TSM]: Likewise.
12308 (mac_handle_text_input_event) [MAC_OSX]:
12309 Handle kEventTextInputOffsetToPos for no active input area case.
12310 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
12311 (mac_handle_document_access_event)
12312 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
12313 (install_application_handler) [MAC_OSX]: Register handlers for
12314 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
12315 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
12316 Register mac_handle_document_access_event.
12317
12318 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
12319 Make functions non-static.
12320
123212008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
12322
12323 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
12324 (read_file_name_completion_ignore_case, insert_default_directory)
12325 (Qdefault_directory): Move to minibuffer.el.
12326 (Fread_file_name): Call the new `read-file-name' instead.
12327
123282008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12329
12330 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
12331 Make function non-static.
12332 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
12333 Remove function.
12334 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
12335 Move to mactoolbox.c.
12336 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
12337
12338 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
12339 (mac_rect_make): New macro.
12340
12341 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
12342 instead of float.
12343 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
12344 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
12345 (XSetBackground) [USE_CG_DRAWING]: Likewise.
12346 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
12347 CGRectMake.
12348 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
12349 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
12350 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
12351 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
12352 instead of WindowRef in argument type.
12353 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
12354 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
12355 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
12356 instead of DISPLAY. All uses changed.
12357 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
12358 (x_calc_absolute_position): Simplify so as not to use
12359 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
12360
12361 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
12362 instead of WindowRef in argument type.
12363 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
12364 [TARGET_API_MAC_CARBON]: Remove externs.
12365 (create_apple_event, mac_event_parameters_to_lisp)
12366 [TARGET_API_MAC_CARBON]: Add externs.
12367
12368 * mactoolbox.c (Vmac_ts_script_language_on_focus)
12369 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
12370 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
12371 is clicked.
12372 (x_activate_menubar): Remove extern for saved_menu_event_location.
12373 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
12374 Move from mac.c.
12375
123762008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12377
12378 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
12379 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
12380
123812008-04-23 Jason Rumney <jasonr@gnu.org>
12382
12383 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
12384 attributes only for local files.
12385
12386 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
12387 default to Qlocal.
12388
123892008-04-22 Juri Linkov <juri@jurta.org>
12390
12391 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
12392 read-buffer-to-switch instead of using the letter "B".
12393
123942008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
12395
12396 * fileio.c (Qdefault_directory): New variable.
12397 (Fread_file_name): Use it to pass `dir' to the completion functions.
12398
123992008-04-20 Chong Yidong <cyd@stupidchicken.com>
12400
12401 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
12402
124032008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12404
12405 * keyboard.c (Vpre_help_message): Remove.
12406 (show_help_echo): Remove default C code.
12407
12408 * dired.c (directory_files_internal, file_name_completion):
12409 Only call ENCODE_FILE if the string is indeed decoded.
12410
124112008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
12412
12413 * Makefile.in (TOOLKIT_DEFINES): Remove.
12414 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
12415
124162008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12417
12418 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
12419 (mactoolbox.o): New target.
12420
12421 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
12422 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
12423
12424 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
12425 Use mac_set_frame_window_background instead of XSetWindowBackground.
12426 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
12427 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
12428 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
12429 instead of SetWindowTitleWithCFString.
12430 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
12431 Move function to mactoolbox.c.
12432 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
12433 Use mac_set_window_modified instead of SetWindowModified.
12434 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
12435 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
12436 (Fx_focus_frame): Use mac_front_non_floating_window instead of
12437 FrontNonFloatingWindow. Use mac_activate_window instead of
12438 ActivateWindow. Use mac_active_non_floating_window instead of
12439 ActiveNonFloatingWindow.
12440 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
12441 Use mac_show_hourglass and mac_hide_hourglass.
12442 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
12443 instead of GetGlobalMouse.
12444 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
12445 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
12446 Use mac_bring_window_to_front instead of BringToFront.
12447 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
12448 mactoolbox.c.
12449 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
12450 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
12451 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
12452 mactoolbox.c.
12453
12454 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
12455 (XtPointer): Move typedef from macmenu.c.
12456 (enum button_type): Move enum from macmenu.c.
12457 (widget_value): Move typedef from macmenu.c.
12458 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
12459 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
12460 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
12461 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
12462 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
12463 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
12464 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
12465 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
12466 (Selection): Move typedef from macselect.c.
12467 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
12468 macterm.c.
12469 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
12470 (mac_is_window_collapsed, mac_bring_window_to_front)
12471 (mac_send_window_behind, mac_hide_window, mac_show_window)
12472 (mac_collapse_window, mac_front_non_floating_window)
12473 (mac_active_non_floating_window, mac_activate_window)
12474 (mac_move_window_structure, mac_move_window, mac_size_window)
12475 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
12476
12477 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
12478 (enum mac_menu_kind): Move enum to mactoolbox.c.
12479 (min_menu_id): Move variable to mactoolbox.c.
12480 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
12481 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
12482 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
12483 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
12484 [TARGET_API_MAC_CARBON]: Likewise.
12485 (XtPointer): Move typedef to macgui.h.
12486 (enum button_type): Move enum to macgui.h.
12487 (widget_value): Move typedef to macgui.h.
12488 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
12489 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
12490 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
12491 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
12492 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
12493 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
12494 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
12495 (popup_activated_flag): Make variable non-static.
12496 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
12497 (add_menu_item, fill_menu, dispose_menus):
12498 Move functions to mactoolbox.c.
12499 (restore_show_help_function, menu_target_item_handler)
12500 (install_menu_target_item_handler, mac_handle_dialog_event)
12501 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
12502 [TARGET_API_MAC_CARBON]: Likewise.
12503 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
12504 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
12505 (find_and_call_menu_selection, name_is_separator): Make function
12506 non-static.
12507 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
12508 to mactoolbox.c.
12509 (set_frame_menubar): Don't call install_menu_quit_handler.
12510 (menu_item_selection): New variable.
12511 (mac_menu_show): Use create_and_show_popup_menu.
12512 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
12513 selection but set variable menu_item_selection. All uses changed.
12514 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
12515 Call install_menu_quit_handler. Move to mactoolbox.c.
12516
12517 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
12518 (Selection): Move typedef to macgui.h.
12519 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
12520 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
12521 Make variables non-static.
12522 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
12523 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
12524 Make functions non-static.
12525 (Vmac_service_selection) [MAC_OSX]: Likewise.
12526 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
12527 (mac_valid_selection_target_p, mac_clear_selection)
12528 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
12529 (mac_put_selection_value, mac_selection_has_target_p)
12530 (mac_get_selection_value, mac_get_selection_target_list)
12531 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
12532 Move functions to mactoolbox.c.
12533 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
12534 Likewise.
12535 (copy_scrap_flavor_data, mac_handle_service_event)
12536 (install_service_handler) [MAC_OSX]: Likewise.
12537 (syms_of_macselect) <Vmac_dnd_known_types>:
12538 Use mac_dnd_default_known_types.
12539
12540 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
12541 Move to mactoolbox.c.
12542 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
12543 (Fx_selection_owner_p): Add EXFUN.
12544 (install_window_handler, remove_window_handler, XSetWindowBackground):
12545 Remove externs.
12546 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
12547 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
12548 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
12549 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
12550 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
12551 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
12552 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
12553 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
12554 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
12555 (create_and_show_popup_menu, mac_get_selection_from_symbol)
12556 (mac_valid_selection_target_p, mac_clear_selection)
12557 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
12558 (mac_put_selection_value, mac_selection_has_target_p)
12559 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
12560 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
12561 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
12562 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
12563 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
12564 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
12565 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
12566 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
12567 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
12568
12569 * mactoolbox.c: New file.
12570
125712008-04-18 Jason Rumney <jasonr@gnu.org>
12572
12573 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
12574
125752008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
12576
12577 * character.c (Fmultibyte_char_to_unibyte):
12578 Return latin1 chars unchanged.
12579
12580 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
12581 relocated if it points to `name'.
12582
125832008-04-17 Kenichi Handa <handa@m17n.org>
12584
12585 * data.c (Faset): Allow setting a multibyte character in an
12586 ASCII-only unibyte string.
12587
12588 * lisp.h (STRING_SET_MULTIBYTE): New macro.
12589
125902008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
12591
12592 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
12593 done in config.h.
12594
125952008-04-16 Juanma Barranquero <lekktu@gmail.com>
12596
12597 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
12598 (Fchar_direction): Add usage in the docstring.
12599
126002008-04-15 Chong Yidong <cyd@stupidchicken.com>
12601
12602 * keyboard.c (read_key_sequence): Remove always-true checks.
12603
126042008-04-14 Jason Rumney <jasonr@gnu.org>
12605
12606 * w32font.c (w32font_open_internal): Set max_bounds.descent in
12607 compatibility struct, for better underline positioning.
12608
126092008-04-13 David Hansen <david.hansen@gmx.net>
12610
12611 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
12612 string.
12613
126142008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
12615
12616 * m/hp800.h (XUINT, XSET): Remove.
12617
126182008-04-12 Juanma Barranquero <lekktu@gmail.com>
12619
12620 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
12621 previous change.
12622
126232008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12624
12625 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
12626 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
12627
126282008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12629
12630 * keymap.h (map_keymap_canonical): Declare.
12631 * xmenu.c (single_keymap_panes): Use it.
12632
126332008-04-11 Glenn Morris <rgm@gnu.org>
12634
12635 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
12636 set the target's value to that of the alias.
12637
126382008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12639
12640 * term.c (set_tty_color_mode): Left over typo.
12641
126422008-04-10 Michael Albinus <michael.albinus@gmx.de>
12643
12644 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
12645 only after check for file name handler functions. Signal, when
12646 native functionality is not supported.
12647 (syms_of_fileio): Declare it unconditionally.
12648
126492008-04-10 Jason Rumney <jasonr@gnu.org>
12650
12651 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
12652 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
12653
12654 * w32.c (logon_network_drive): Also logon to remote drives that
12655 are mapped to drive letters.
12656
126572008-04-10 Glenn Morris <rgm@gnu.org>
12658
12659 * xdisp.c (truncate-partial-width-windows): Doc fix.
12660
126612008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12662
12663 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
12664 Move functions to minibuffer.el.
12665 (syms_of_fileio): Don't declare them.
12666
126672008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
12668
12669 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
12670 (syms_of_minibuf): Remove its initialization.
12671
12672 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
12673
126742008-04-09 Juanma Barranquero <lekktu@gmail.com>
12675
12676 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
12677
126782008-04-09 Jason Rumney <jasonr@gnu.org>
12679
12680 * makefile.w32-in (distclean): Delete makefile too.
12681 (maintainer-clean): New target.
12682
12683 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
12684
12685 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
12686 for new font backend and composite cases.
12687
126882008-04-09 Jan Djärv <jan.h.d@swipnet.se>
12689
12690 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
12691 Most of the code moved to run_timers.
12692 (do_pending_atimers): Call run_timers.
12693 (run_timers): New function.
12694
12695 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
12696 run atimers.
12697
12698 * process.c (wait_reading_process_output): The same as above.
12699
127002008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
12701
12702 * minibuf.c (last_exact_completion): Remove variable.
12703 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
12704 (complete_and_exit_1, complete_and_exit_2)
12705 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
12706 (Fdisplay_completion_list, display_completion_list_1)
12707 (Fminibuffer_completion_help, Fself_insert_and_exit)
12708 (Fexit_minibuffer, Fminibuffer_message): Move functions to
12709 minibuffer.el.
12710 (syms_of_minibuf): Remove corresponding initializations.
12711
12712 * keyboard.c (Qdeactivate_mark): New var.
12713 (command_loop_1): Use it to call `deactivate-mark'.
12714 (syms_of_keyboard): Initialize it.
12715
12716 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
12717 to another frame.
12718 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
12719 Don't call set_tty_color_mode.
12720 (store_frame_param): Reset previous_frame rather than call
12721 set_tty_color_mode.
12722 * term.c (set_tty_color_mode): Rewrite.
12723 * dispextern.h (set_tty_color_mode): New type.
12724 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
12725
127262008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
12727
12728 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
12729 for generic chars, which do not exist any more in emacs-unicode.
12730
127312008-04-08 Michael Albinus <michael.albinus@gmx.de>
12732
12733 * coding.c (detect_coding_emacs_mule)
12734 (Ffind_operation_coding_system): Fix typo.
12735
127362008-04-08 Jason Rumney <jasonr@gnu.org>
12737
12738 * w32uniscribe.c (SNAME): Extract only symbol name.
12739
12740 * w32font.h (struct w32_metric_cache): New struct.
12741 (w32font_info): Use it.
12742 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
12743 (CACHE_BLOCKSIZE): New constants.
12744
12745 * w32font.c (Qja, Qko, Qzh): New symbols.
12746 (syms_of_w32font): Initialise them.
12747 (font_matches_spec): Use them to filter by language.
12748 (recompute_cached_metrics): Remove function.
12749 (compute_metrics, clear_cached_metrics): New functions.
12750 (w32font_encode_char): Use them to manage metric cache.
12751 (w32font_text_extents): Cache metrics for all glyphs on demand.
12752 Delay converting glyph indices to WORD until needed.
12753 (w32font_open_internal): Initialize metric cache to empty.
12754 (registry_to_w32_charset): Charset should always be a symbol.
12755 (fill_in_logfont, list_all_matching_fonts): Family should
12756 always be a symbol.
12757
127582008-04-06 Jason Rumney <jasonr@gnu.org>
12759
12760 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
12761 Give up if glyph indices not supported. Use uniscribe obtained
12762 ABC widths for individual metrics. Map glyph clusters back to
12763 characters using fClusterStart flag. Return number of glyphs
12764 produced, not chars processed.
12765 (uniscribe_shape): Map char at FROM to current glyph.
12766
127672008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12768
12769 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
12770 Use SetMenuItemHierarchicalMenu.
12771
127722008-04-05 Jason Rumney <jasonr@gnu.org>
12773
12774 * image.c (pbm_load): Allow color values up to 65535.
12775 Throw an error if max_color_idx is outside the supported range.
12776 Report an error when image size is invalid.
12777 Read two bytes at a time when raw images have max_color_idx above 255.
12778
127792008-04-05 Eli Zaretskii <eliz@gnu.org>
12780
12781 * w32.c (readdir): If FindFirstFile/FindNextFile return in
12782 cFileName a file name that includes `?' characters, use the 8+3
12783 alias in cAlternateFileName instead.
12784
127852008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
12786
12787 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
12788 append "CCL: Quitted" when the CCL program is quitted.
12789 (setup_ccl_program): Initialize ccl->quit_silently to zero.
12790
12791 * ccl.h (struct ccl_program): New member quit_silently.
12792
127932008-04-05 Chong Yidong <cyd@stupidchicken.com>
12794
12795 * search.c (compile_pattern_1): Treat non-nil and non-string of
12796 search-spaces-regexp as nil.
12797
12798 * minibuf.c (Fassoc_string): Tweak docstring.
12799
128002008-04-05 Eli Zaretskii <eliz@gnu.org>
12801
12802 * dired.c (Ffile_attributes): Support inode numbers wider than 32
12803 bits. Remove ugly WINDOWSNT-specific kludge introduced on
12804 2008-03-14 to force inode be positive.
12805
12806 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
12807 _S_* ones, since we now use our own sys/stat.h.
12808 (stat, fstat): Don't mangle the inode number.
12809 (init_user_info): Don't restrict UID and GID to 0-60000 range.
12810
128112008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12812
12813 * frame.h (struct frame): Give one more bit to `visible' since we use
12814 values larger than 1 to indicate obscured frames on ttys.
12815
12816 * keymap.c (Qkeymap_canonicalize): New var.
12817 (Fmap_keymap_internal): New fun.
12818 (describe_map): Use keymap-canonicalize.
12819
12820 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
12821 (Fundo_boundary): Set them.
12822 (syms_of_undo): Initialize them.
12823 (record_point): Use them instead of last_point_position*.
12824 (last_undo_buffer): Change type.
12825
128262008-04-04 Jason Rumney <jasonr@gnu.org>
12827
12828 * w32font.c (w32font_text_extents): Use font's ascent and descent.
12829 (recompute_cached_metrics): Don't set ascent and descent per char.
12830
12831 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
12832 (uniscribe_check_otf): Add GC protection before consing.
12833 Rearrange loop for counting features.
12834
128352008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
12836
12837 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
12838 buffer with byte-size of source buffer.
12839
128402008-04-03 Chong Yidong <cyd@stupidchicken.com>
12841
12842 * callint.c (Fcall_interactively): Handle temporary region even
12843 when shift-select-mode is off.
12844
128452008-04-03 Jason Rumney <jasonr@gnu.org>
12846
12847 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
12848
128492008-04-03 Kenichi Handa <handa@m17n.org>
12850
12851 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
12852 (CATEGORY_MASK_UTF_16): Likewise.
12853 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
12854 binary file.
12855 (detect_coding): Add null-byte detection for a binary file.
12856 (detect_coding_system): Likewise.
12857
128582008-04-03 Jason Rumney <jasonr@gnu.org>
12859
12860 * w32uniscribe.c: New file.
12861
12862 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
12863
12864 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
12865
12866 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
12867 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
12868 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
12869 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
12870 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
12871 (Qphonetic): New symbols.
12872 (syms_of_w32font): Initialize them.
12873 (font_supported_scripts): Use them.
12874 (w32font_list_family): List all charsets.
12875 (w32font_text_extents, recompute_cached_metrics): Fix metric
12876 calculations.
12877 (w32_enumfont_pattern_entity): Make full_type a DWORD.
12878 Give opentype fonts their own format.
12879 (font_matches_spec): New arguments backend and logfont.
12880 Handle :otf spec for uniscribe backend.
12881 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
12882 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
12883
12884 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
12885 font backend.
12886 (globals_of_w32fns): Initialize uniscribe font backend.
12887
12888 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
12889 dependencies.
12890 (w32uniscribe.$(O)): New file to build.
12891 (FONT_OBJ): Include w32uniscribe.$(O).
12892 (LIBS): Add uniscribe libraries.
12893
12894 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
12895
128962008-04-02 Chong Yidong <cyd@stupidchicken.com>
12897
12898 * callint.c (Vshift_select_mode): New var.
12899 (Finteractive): Document new ^ spec.
12900 (Fcall_interactively): Call handle-shift-selection if the ^ spec
12901 is present.
12902
12903 * keyboard.c (Vthis_command_keys_shift_translated): New var.
12904 (command_loop_1): Avoid running the direct display versions of
12905 forward-char and backward-char if shift-selection may occur.
12906 (read_key_sequence): Set Vthis_command_keys_shift_translated if
12907 shift-translation takes place.
12908
12909 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
12910 avoid clobbering by define-minor-mode.
12911
12912 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
12913 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
12914
12915 * syntax.c (Fforward_word): Add ^ interactive spec.
12916
12917 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
12918 (Fscroll_right): Add ^ interactive spec.
12919
129202008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
12921
12922 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
12923
12924 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
12925
12926 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
12927
129282008-03-31 Juri Linkov <juri@jurta.org>
12929
12930 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
12931
129322008-03-30 Jan Djärv <jan.h.d@swipnet.se>
12933
12934 * gtkutil.c (xg_set_geometry): Fix indentation.
12935 (xg_resize_outer_widget): Remove.
12936 (x_wm_size_hint_off): Fix indentation.
12937 (xg_frame_set_char_size): Call flush_and_sync after
12938 gtk_window_resize.
12939 (x_wm_set_size_hint): Pass NULL as geometry window to
12940 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
12941 Add menu bar and tool bar height to base height.
12942 (xg_update_frame_menubar, free_frame_menubar)
12943 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
12944 (update_frame_tool_bar, free_frame_tool_bar):
12945 Change xg_resize_outer_widget to xg_frame_set_char_size.
12946
129472008-03-30 Michael Albinus <michael.albinus@gmx.de>
12948
12949 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
12950 (Fdbus_call_method): New parameter TIMEOUT.
12951 (dbus-send-signal): Optimize UNGCPRO call.
12952
129532008-03-29 Juri Linkov <juri@jurta.org>
12954
12955 * window.c (Fdisplay_buffer): Move call to
12956 Vsplit_window_preferred_function out of conditions that check
12957 if window is eligible for vertical splitting.
12958 When Vsplit_window_preferred_function is non-nil, call it and use
12959 its non-nil return value as window. Otherwise, continue doing
12960 vertical splitting using Fsplit_window with arg horflag=nil.
12961 (syms_of_window) <Vsplit_window_preferred_function>: Change the
12962 default value from `split-window' to nil.
12963
129642008-03-29 Juri Linkov <juri@jurta.org>
12965
12966 * callint.c (Fcall_interactively): Revert 2008-03-16 change
12967 for interactive code letters 'b' and 'B'.
12968
129692008-03-29 Eli Zaretskii <eliz@gnu.org>
12970
12971 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
12972 multibyte string.
12973
129742008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
12975
12976 * keyboard.c (pending_funcalls): New var.
12977 (timer_check): Run it.
12978 (syms_of_keyboard): Initialize it.
12979 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
12980 (Vdelete_terminal_functions): New vars.
12981 (syms_of_terminal): Initialize them.
12982 (Fdelete_terminal): Run delete-terminal-functions.
12983 * xdisp.c (safe_eval): Rewrite.
12984 (safe_call2): New fun.
12985 * frame.c (Qdelete_frame_functions): New var.
12986 (syms_of_frame): Initialize it.
12987 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
12988 * lisp.h (safe_call2, pending_funcalls): Declare.
12989
129902008-03-28 Andreas Schwab <schwab@suse.de>
12991
12992 * indent.c (Fmove_to_column): Move declaration before statements.
12993
129942008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
12995
12996 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
12997 (struct frame): Use bit fields for boolean vars.
12998
12999 * process.c (server_accept_connection): Simplify naming.
13000 (emacs_get_tty_pgrp): Use SDATA.
13001
13002 * coding.c (decode_coding_object): Fix last change.
13003
130042008-03-27 Jason Rumney <jasonr@gnu.org>
13005
13006 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
13007
130082008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
13009
13010 * charset.c (Fdefine_charset_internal): Change the way of
13011 registering charsets in Vcharset_order_list.
13012 (syms_of_charset): Make the charset `eight-bit' supplementary.
13013
130142008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
13015
13016 * regex.c (EXTEND_BUFFER): Change order of pointer addition
13017 operations, to avoid having the difference between pointers
13018 overflow.
13019
130202008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13021
13022 * indent.c (check_display_width): New fun.
13023 (scan_for_column): Use it.
13024
13025 * data.c (syms_of_data): Mark most-positive-fixnum and
13026 most-negative-fixnum as constants.
13027
13028 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
13029
13030 * indent.c (scan_for_column): Extract from current_column_1.
13031 Merge with the same code from Fmove_to_column.
13032 (current_column_1, Fmove_to_column): Use it.
13033
130342008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
13035
13036 * keymap.c (map_keymap_internal): New fun.
13037 (map_keymap): Use it.
13038 (Fmap_keymap_internal): New fun.
13039 (Fmap_keymap): Remove left-out test from before make_save_value.
13040
13041 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
13042
13043 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
13044 Use XCAR/XCDR.
13045
13046 * process.h (struct Lisp_Process): Remove filter_multibyte.
13047 * process.c (QCfilter_multibyte): Remove.
13048 (setup_process_coding_systems): Don't use filter_multibyte.
13049 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
13050 (read_process_output): Don't adjust multibyteness to filter_multibyte.
13051 (Fset_process_filter_multibyte): Change the coding-system to
13052 approximate the previous behavior.
13053 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
13054 coding-system.
13055
13056 * coding.c (decode_coding_object): When not decoding into a buffer,
13057 obey the coding system's preference of (uni|multi)byte.
13058
130592008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13060
13061 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
13062 every char is changed and has a different byte-length.
13063 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
13064 Fix int -> EMACS_INT.
13065
130662008-03-23 David Hansen <david.hansen@gmx.net>
13067
13068 * dbusbind.c (xd_read_message): Remove extra copying of message
13069 strings. Check for NULL `interface' or `member'.
13070
130712008-03-22 Eli Zaretskii <eliz@gnu.org>
13072
13073 * w32.c (readdir): If FindFirstFile/FindNextFile return in
13074 cFileName a file name that includes `?' characters, use the 8+3
13075 alias in cAlternateFileName instead.
13076
130772008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13078
13079 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
13080
130812008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
13082
13083 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
13084 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
13085 work on current_buffer only instead (that was already the case
13086 for some of the code anyway).
13087 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
13088 (temp_set_point, temp_set_point_both): Use EMACS_INT.
13089 (SET_PT, SET_PT_BOTH): Adjust.
13090 * intervals.h (set_point, temp_set_point, set_point_both)
13091 (temp_set_point_both): Remove redundant declarations.
13092
130932008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
13094
13095 * fileio.c (Finsert_file_contents):
13096 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
13097 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
13098 when buffer != current_buffer anyway.
13099
131002008-03-20 Andreas Schwab <schwab@suse.de>
13101
13102 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
13103 as default.
13104
131052008-03-19 Jason Rumney <jasonr@gnu.org>
13106
13107 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
13108 (syms_of_w32fns): Initialize them.
13109 (HOURGLASS_ID): New constant.
13110 (x_window_to_frame): Don't check hourglass_window.
13111 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
13112 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
13113 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
13114 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
13115 Only change the cursor if hourglass is not active.
13116 (Fx_create_frame): Initialize frame's current_cursor.
13117 (hourglass_atimer): Remove.
13118 (hourglass_started): New function.
13119 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
13120 (show_hourglass): Adapt to w32, changing argument to frame.
13121
13122 * w32term.h (struct w32_output): Remove hourglass_window.
13123 Add current_cursor.
13124
13125 * eval.c (call_debugger, Fsignal):
13126 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
13127 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
13128 (Fexecute_extended_command, cancel_hourglass_unwind):
13129 * minibuf.c (read_minibuf):
13130 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
13131
131322008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
13133
13134 * window.c (run_funs): New fun.
13135 (run_window_configuration_change_hook): Use it to run the buffer-local
13136 and the global part of the hook.
13137
13138 * xdisp.c (format_mode_line_unwind_data): Add window argument.
13139 (unwind_format_mode_line): Restore selected window.
13140 (x_consider_frame_title, Fformat_mode_line): Set selected window.
13141
131422008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
13143
13144 * editfns.c (Fchar_equal): Check they are valid characters.
13145
13146 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
13147
131482008-03-17 Andreas Schwab <schwab@suse.de>
13149
13150 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
13151 against a charset.
13152
13153 * lisp.h (Fbuffer_list): Declare.
13154
131552008-03-17 Jan Djärv <jan.h.d@swipnet.se>
d6c952f8 13156
aac0c6e3
MR
13157 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
13158 handlebox_widget is != 0.
13159
131602008-03-16 Juri Linkov <juri@jurta.org>
13161
13162 * callint.c (Fcall_interactively): For interactive code letters
13163 'b' and 'B' put the buffer list into the list of default "future"
13164 values of the minibuffer.
13165
131662008-03-16 Andreas Schwab <schwab@suse.de>
13167
13168 * keyboard.c (read_key_sequence): Fix downcasing of letters with
13169 modifiers.
13170
13171 * regex.c (re_match_2_internal): Correct matching of a charset
13172 against latin-1 characters.
13173
131742008-03-16 Kenichi Handa <handa@m17n.org>
13175
13176 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
13177 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
13178 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
13179 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
13180 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
13181 CHAR_STRING_ADVANCE.
13182 (produce_chars): Fix for the case that the source and the
13183 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
13184 instead of CHAR_STRING_ADVANCE.
13185 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
13186 STRING_CHAR_ADVANCE.
13187
131882008-03-15 Andreas Schwab <schwab@suse.de>
13189
13190 * regex.c (re_match_2_internal): Correct matching of eight bit
13191 characters in unibyte strings.
13192
131932008-03-15 Martin Rudalics <rudalics@gmx.at>
13194
13195 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
13196 at end of range when it coincides with the end of the buffer.
13197
131982008-03-14 Eli Zaretskii <eliz@gnu.org>
13199
13200 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
13201
13202 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
13203
132042008-03-14 Jason Rumney <jasonr@gnu.org>
13205
13206 * editfns.c (initial_tz): New variable.
13207 (syms_of_editfns): Initialize it.
13208 (Fset_time_zone_rule): Set it when first called.
13209 Use it when TZSTRING is nil.
13210
13211 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
13212 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
13213 (monitor_from_point_fn, get_monitor_info_fn): New globals.
13214 (globals_of_w32fns): Initialize them.
13215 (compute_tip_xy): Use them to position tooltips.
13216
132172008-03-14 Glenn Morris <rgm@gnu.org>
13218
13219 * emacs.c (main): Revert previous change.
13220 (standard_args): Revert -internal-script back to -scriptload,
13221 and remove the long-option form.
13222
132232008-03-13 Glenn Morris <rgm@gnu.org>
13224
13225 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
13226 Remove option -enable-font-backend.
13227
132282008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13229
13230 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
13231
132322008-03-11 Jan Djärv <jan.h.d@swipnet.se>
13233
13234 * xterm.c (x_connection_closed): For GTK: If this is the last
13235 terminal just exit without closing the display.
13236
132372008-03-11 Jason Rumney <jasonr@gnu.org>
13238
13239 * w32font.c (w32font_full_name): Use floor to round.
13240
f0131492 132412008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
aac0c6e3
MR
13242
13243 * sound.c (alsa_configure): Declare vol at beginning of block.
13244
13245 * fontset.c (Ffontset_info): Remove extra semicolon.
13246
132472008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
13248
13249 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
13250 size of resulting string.
13251
132522008-03-10 Jason Rumney <jasonr@gnu.org>
13253
13254 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
13255
132562008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13257
13258 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
13259 Don't pretend as if characters with display property haven't been
13260 consumed for string-replacing-string case.
13261
132622008-03-08 Kim F. Storm <storm@cua.dk>
13263
13264 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
13265 (get_next_display_element, next_element_from_string)
13266 (next_element_from_ellipsis, next_element_from_buffer): Use it.
13267
132682008-03-08 Andreas Schwab <schwab@suse.de>
13269
13270 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
13271
132722008-03-06 Jason Rumney <jasonr@gnu.org>
13273
13274 * w32font.c (w32_registry): Take font_type argument. Use ANSI
13275 when charset not specified. Only translate ANSI to unicode when
13276 font_type is truetype.
13277 (w32font_coverage_ok): New function.
13278 (add_font_entity_to_list): Use it to filter unsuitable fonts.
13279
132802008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
13281
13282 * lread.c (Fread_char): Resolve modifiers.
13283 (Fread_char_exclusive): Likewise.
13284
13285 * character.c (char_resolve_modifier_mask): New function.
13286 (char_string): Use char_resolve_modifier_mask.
13287 (Fchar_resolve_modifiers): New function.
13288 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
13289 function.
13290
132912008-03-04 Jason Rumney <jasonr@gnu.org>
13292
13293 * makefile.w32-in: Always include w32font.c in the build.
13294 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
13295
132962008-03-04 Andreas Schwab <schwab@suse.de>
13297
13298 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
13299 (versionclean): Likewise.
13300
133012008-03-04 Juanma Barranquero <lekktu@gmail.com>
13302
13303 * .cvsignore: Add oo.
13304
133052008-03-03 Andreas Schwab <schwab@suse.de>
13306
13307 * coding.c (decode_coding_object): Inhibit gap shrinking while
13308 decoding in place.
13309
133102008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
13311
13312 * w32term.c: Remove unused include "gnu.h".
13313 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
13314
13315 * gnu.h: Rename to ...
13316 * emacs-icon.h: ... this.
13317 * xterm.c: Use emacs-icon.h instead of gnu.h.
13318 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
13319
133202008-03-03 Juanma Barranquero <lekktu@gmail.com>
13321
13322 * w32font.c: Include math.h.
13323
133242008-03-03 Jason Rumney <jasonr@gnu.org>
13325
13326 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
13327 Compute options separately.
13328 (w32font_open_internal): Set glyph_idx before caching metrics.
13329
13330 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
13331 Define if system headers don't.
13332 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
13333 (w32font_encode_char): Don't declare here.
13334
13335 * w32font.c (Quniscribe, QCformat): New symbols.
13336 (syms_of_w32font): Define them.
13337 (w32font_has_char): Indicate uncertainty.
13338 (w32font_encode_char): Encode as glyph point. Make static.
13339 (recompute_cached_metrics): New function.
13340 (w32font_open_internal): Use it. Set font to use glyph points
13341 initially. Set format based on type of font.
13342 (w32font_text_extents, w32font_draw): Optionally use glyph points.
13343 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
13344 on it. Set format based on information available here.
13345 (add_font_entity_to_list): Identify backend based on opentype_only.
13346
133472008-03-02 Andreas Schwab <schwab@suse.de>
13348
13349 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
13350
13351 * coding.c (decode_coding_big5, produce_chars):
13352 Fix typos in last change.
13353
133542008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
13355
13356 * gnu.h: New icon.
13357
133582008-03-02 Kenichi Handa <handa@m17n.org>
13359
13360 * coding.c (decode_coding_utf_8): When eol-type of CODING is
13361 `dos', don't decode '\r' if that is the last in the source.
13362 (decode_coding_utf_16, decode_coding_emacs_mule)
13363 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
13364 (decode_coding_raw_text, decode_coding_charset): Likewise.
13365 (produce_chars): Don't decode EOL here. Use EMACS_INT.
13366
133672008-03-01 Jason Rumney <jasonr@gnu.org>
13368
13369 * w32font.c (w32font_full_name): Report point size for scalable fonts.
13370
133712008-03-01 Kim F. Storm <storm@cua.dk>
13372
13373 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
13374
133752008-03-01 Jason Rumney <jasonr@gnu.org>
13376
13377 * w32font.c (w32font_full_name): New function.
13378 (w32font_open_internal): Use it.
13379
133802008-03-01 Kim F. Storm <storm@cua.dk>
13381
13382 * dispnew.c (line_draw_cost): Fix invalid glyph check.
13383
133842008-03-01 Jason Rumney <jasonr@gnu.org>
13385
13386 * font.c (font_unparse_fcname): Increase len when style is a symbol.
13387
133882008-03-01 Jan Djärv <jan.h.d@swipnet.se>
13389
13390 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
13391 xg_frame_resized when the event is for the edit widget.
13392
13393 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
13394
13395 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
13396 set_char_size.
13397 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
13398 operations on widgets here. Just set frame size if needed.
13399 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
13400 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
13401 (x_wm_set_size_hint): Set size hints on the edit widget only, not
13402 the whole frame.
13403 (xg_create_tool_bar): Move attachment of the tool bar to
13404 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
13405 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
13406
134072008-03-01 Jason Rumney <jasonr@gnu.org>
13408
13409 * w32fns.c (w32_msg_pump): Disable debug code.
13410
134112008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13412
13413 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
13414
134152008-02-29 Chong Yidong <cyd@stupidchicken.com>
13416
13417 * xdisp.c (next_overlay_string): Don't set
13418 overlay_strings_at_end_processed_p if we're currently reading from
13419 a display string.
13420
134212008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
13422
13423 * xdisp.c (get_overlay_strings_1): Fix typo.
13424
134252008-02-29 Chong Yidong <cyd@stupidchicken.com>
13426
13427 * xdisp.c (get_overlay_strings_1): Add missing argument type.
13428
134292008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
13430
13431 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
13432
13433 * xdisp.c (display_mode_element): Cancel the previous change.
13434 (decode_mode_spec): Likewise.
13435 (handle_auto_composed_prop): Don't make composition if it->string
13436 is a string.
13437
134382008-02-27 Kim F. Storm <storm@cua.dk>
13439
13440 * lisp.h (GLYPH): Change type from int to struct with separate char
13441 and face_id members.
13442 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
13443 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
13444 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
13445 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
13446 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
13447 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
13448 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
13449 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
13450 handle new Lisp glyph code encoding, either an integer or a cons.
13451
13452 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
13453 (GLYPH_ALIAS): Delete.
13454 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
13455 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
13456 (GLYPH_FROM_CHAR): Replace macro by ...
13457 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
13458
13459 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
13460 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
13461 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
13462 (GLYPH_INVALID_P): New macro.
13463 (spec_glyph_lookup_face): Update prototype.
13464
13465 * dispnew.c (line_draw_cost): Adapt to new glyph type.
13466 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
13467 new glyph code encoding.
13468 (spec_glyph_lookup_face): No return value; update passed glyph instead.
13469 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
13470
13471 * xdisp.c (get_next_display_element, next_element_from_display_vector):
13472 Adapt to new glyph type and new glyph code encoding.
13473
13474 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
13475
13476 * indent.c (current_column, current_column_1, Fmove_to_column)
13477 (compute_motion): Adapt to new glyph code encoding.
13478
13479 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
13480
134812008-02-27 Chong Yidong <cyd@stupidchicken.com>
13482
13483 * process.c (wait_reading_process_output): Check for window
13484 changes caused by timers.
13485 Suggested by Johan Bockgård.
13486
134872008-02-27 Glenn Morris <rgm@gnu.org>
13488
13489 * emacs.c (USAGE1): Add `--disable-font-backend'.
13490
134912008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
13492
13493 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
13494 is made to the buffer.
13495
134962008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
13497
13498 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
13499 (face_at_string_position):
13500 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
13501 (face_at_string_position):
13502 * xdisp.c (display_string, next_overlay_change):
13503 * buffer.h (overlays_at):
13504 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
13505 Update callers.
13506
135072008-02-26 Chong Yidong <cyd@stupidchicken.com>
13508
13509 * editfns.c (Fformat): Doc fix.
13510
135112008-02-26 Juanma Barranquero <lekktu@gmail.com>
13512
13513 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
13514 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
13515 (Ffont_otf_alternates, Fquery_font): Doc fixes.
13516
135172008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
13518
13519 * buffer.c (Fbuffer_swap_text): New function.
13520 (syms_of_buffer): Defsubr it.
13521
135222008-02-25 Chong Yidong <cyd@stupidchicken.com>
13523
13524 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
13525
135262008-02-25 Jason Rumney <jasonr@gnu.org>
13527
13528 * w32font.c (w32font_draw): Draw one character at a time when padding.
13529
135302008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
13531
13532 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
13533 Handle a nil arg. Use run_window_configuration_change_hook.
13534 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
13535 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
13536 Use run_window_configuration_change_hook.
13537
135382008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
13539
13540 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
13541 1-pixel width.
13542
135432008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
13544
13545 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
13546 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
13547 if the glyph in the font is zero pixel with.
13548
13549 * dispextern.h (struct glyph_string): New member padding_p.
13550
13551 * w32font.c (w32font_draw): Pay attention to s->padding_p.
13552
13553 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
13554
13555 * xfont.c (xfont_draw): Pay attention to s->padding_p.
13556
13557 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
13558
13559 * font.c: If the font driver doesn't have `shape' function, return Qnil.
13560
135612008-02-25 Jason Rumney <jasonr@gnu.org>
13562
13563 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
13564
135652008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
13566
13567 Allow fine-grained image-cache flushing.
13568 * dispextern.h (struct image): Add `dependencies' field.
13569 (clear_image_caches): Change arg to Lisp_Object.
13570 * image.c (make_image): Initialize `dependencies' field.
13571 (clear_image_cache): Change arg to allow fine-grained flushing.
13572 Perform the flush even if image-cache-eviction-delay is nil.
13573 (clear_image_caches): Change arg to Lisp_Object.
13574 (Fclear_image_cache): Expand meaning of the argument.
13575 (mark_image): Mark `dependencies' field.
13576 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
13577 (lface_hash): Use XHASH rather than XFASTINT.
13578 (face_at_buffer_position): Fix int -> EMACS_INT position.
13579 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
13580 (select_frame_for_redisplay): Remove code duplication.
13581 (redisplay_internal): Adapt arg to call to clear_image_caches.
13582
135832008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
13584
13585 * s/vms4-0.h:
13586 * s/vms4-2.h:
13587 * s/vms4-4.h:
13588 * s/vms5-5.h: Remove, unused.
13589
13590 * s/irix5-2.h:
13591 * s/irix6-0.h:
13592 * s/riscos5.h:
13593 * s/mach-bsd4-3.h:
13594 * m/mips4.h: Remove files for obsolete systems.
13595
13596 * Makefile.in:
13597 * filelock.c:
13598 * unexmips.c:
13599 * m/hp9000s300.h:
13600 * m/iris4d.h:
13601 * s/aix3-1.h:
13602 * s/hpux.h:
13603 * s/msdos.h:
13604 * s/usg5-0.h:
13605 * s/usg5-2-2.h:
13606 * s/usg5-2.h:
13607 * s/usg5-3.h: Remove references to obsolete variables.
13608
13609 * s/irix5-0.h: Remove, move all the contents ...
13610 * s/irix6-5.h: ... here. Simplify.
13611 * config.in: Regenerate.
13612
136132008-02-24 Jason Rumney <jasonr@gnu.org>
13614
13615 * w32term.c (x_draw_glyph_string_background): Clear the background
13616 manually when cleartype is in use.
13617 (x_draw_glyph_string_foreground): Draw text transparently when
13618 cleartype is in use.
13619
13620 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
13621 a font into it unless we have to.
13622
136232008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
13624
13625 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
13626 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
d6c952f8 13627
aac0c6e3
MR
136282008-02-18 Jason Rumney <jasonr@gnu.org>
13629
13630 * w32fns.c (Fw32_shell_execute): Encode parameters.
13631
136322008-02-09 Eli Zaretskii <eliz@gnu.org>
13633
13634 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
13635
136362008-02-05 Juanma Barranquero <lekktu@gmail.com>
13637
13638 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
13639
136402008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
13641
13642 * xterm.c (x_set_offset): Don't change the gravity if
13643 CHANGE_GRAVITY is -1.
13644
136452008-02-23 Chong Yidong <cyd@stupidchicken.com>
13646
13647 * fileio.c (auto_save_error_occurred): New var.
13648 (auto_save_error): Set it.
13649 (Fdo_auto_save): Don't overwrite the error message if an auto-save
13650 error occurred.
13651
136522008-02-23 Eli Zaretskii <eliz@gnu.org>
13653
13654 * w32.c (globals_of_w32): Add initializations for
13655 g_b_init_get_sid_sub_authority and
13656 g_b_init_get_sid_sub_authority_count.
13657
136582008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
13659
13660 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
13661 (font_parse_xlfd): Use them for sanity check.
13662 (Finternal_set_font_style_table): Make sure the table is bijective.
13663
13664 Consolidate the image_cache to the terminal struct.
13665 * termhooks.h (P_): Remove redundant def.
13666 (struct terminal): New field `image_cache'.
13667 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
13668 of FRAME_X_IMAGE_CACHE.
13669 * xterm.h (struct x_display_info): Remove image_cache field.
13670 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
13671 * w32term.h (struct w32_display_info): Remove image_cache field.
13672 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
13673 * macterm.h (struct mac_display_info): Remove image_cache field.
13674 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
13675 * xterm.c (x_term_init):
13676 * w32term.c (w32_term_init):
13677 * macterm.c (mac_term_init): Set the image_cache in the terminal.
13678 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
13679 Remove declarations.
13680 (clear_image_caches, mark_image_cache): New declarations.
13681 * xfaces.c (clear_face_cache):
13682 * xdisp.c (redisplay_internal): Use clear_image_caches.
13683 * image.c (clear_image_cache): Don't check that a frame is on
13684 a window-system before checking if it shares the same cache.
13685 (clear_image_caches): New function.
13686 (Fclear_image_cache): Use it.
13687 (mark_image): Move from allo.c.
13688 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
13689 * alloc.c (mark_image, mark_image_cache): Move to image.c.
13690 (mark_object): Don't call mark_image_cache for frames.
13691 (mark_terminals): Call mark_image_cache.
13692
13693 * lisp.h (Fdelete_terminal): Declare.
13694
13695 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
13696 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
13697 wrong_type_argument.
13698
136992008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
13700
13701 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
13702 malayalam.el, and tamil.el. Add sinhala.el.
13703
137042008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
13705
13706 * xterm.c (x_connection_closed): Consolidate identical tests.
13707 (x_delete_terminal): Don't crash if called via x_connection_closed.
13708
137092008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
13710
13711 * xdisp.c (decode_mode_spec): New arg string.
13712 (display_mode_element): Adjust for the above change.
13713
137142008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
13715
13716 * callint.c (Fcall_interactively): Use AREF.
13717
137182008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
13719
13720 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
13721
137222008-02-18 Jan Djärv <jan.h.d@swipnet.se>
13723
13724 * xfns.c (Fx_show_tip): Set string to " " if empty.
13725
137262008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
13727
13728 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
13729 with Qt.
13730
137312008-02-17 Kenichi Handa <handa@m17n.org>
13732
13733 * ftfont.c (ftfont_shape): Return Lispy number.
13734
13735 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
13736 for GCs.
13737 (Finternal_set_font_selection_order): Call font_update_sort_order
13738 only when enable_font_backend is set.
13739 (realize_x_face): Set face->font_info to that of default face only
13740 when enable_font_backend is set.
13741
13742 * xdisp.c (handle_composition_prop): Set it->c to the fist
13743 character of the composed region.
13744 (fill_composite_glyph_string): Set base_face->font_info to
13745 s->font_info. Get a face for ascii from base_face->ascii_face.
13746 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
13747 with a face already decided.
13748 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
13749 non-negative.
13750 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
13751 call font_prepare_composition unconditionally.
13752
13753 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
13754
13755 * xterm.h (struct x_display_info): New member font.
13756
13757 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
13758 (x_set_mouse_face_gc, x_new_font): Likewise.
13759 (x_term_init): Setup display_info->font.
13760 (x_delete_terminal): Free display_info->font.
13761
13762 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
13763
13764 * ftxfont.c (ftxfont_default_fid): Delete it.
13765 (ftxfont_open): Set xfont->fid to 0.
13766 (ftxfont_end_for_frame): Clear data specific to the frame and the
13767 font-driver.
13768
13769 * xftfont.c (xftfont_default_fid): Delete it.
13770 (xftfont_open): Set xfont->fid to 0.
13771
13772 * fontset.c (FONTSET_OBJLIST): New macro.
13773 (fontset_find_font): Update font-object list of the fontset.
13774 (free_realized_fontset): New function.
13775 (free_face_fontset): Call free_realized_fontset.
13776 (Ffont_info): Call font_close_object only when enable_font_backend
13777 is set.
13778
13779 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
13780 [HAVE_NTGUI]: Include w32term.h.
13781 [MAC_OS]: Include macterm.ch.
13782 (font_otf_ValueRecord): Use make_number.
13783 (font_finish_cache): Fix handling of reference count.
13784 (font_clear_cache): Update num_fonts.
13785 (font_open_entity): Update smallest_char_width and
13786 smallest_font_height of the frame.
13787 (font_close_object): Update num_fonts.
13788 (Fclear_font_cache): Fix finding the target cache data.
13789
137902008-02-16 Glenn Morris <rgm@gnu.org>
13791
13792 * fontset.c (Finternal_char_font): Fix compilation warning.
13793
137942008-02-16 Eli Zaretskii <eliz@gnu.org>
13795
13796 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
13797 instead of char arrays. Enlarge the size of array passed to
13798 get_token_information.
13799
13800 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
13801 warnings.
13802
138032008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
13804
13805 * .gdbinit: Don't set `args', it breaks gdb --args.
13806
138072008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
13808
13809 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
13810 within a narrowed buffer.
13811
138122008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
13813
13814 * coding.c (decode_coding_object, encode_coding_object):
13815 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
13816
138172008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
13818
13819 * coding.c (coding_set_destination): Use BEG_BYTE rather than
13820 hardcoding 1.
13821 (detect_coding_system):
13822 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
13823 (string_char_to_byte, string_byte_to_char, insert_from_gap):
13824 * insdel.c (insert_from_gap):
13825 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
13826 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
13827 (string_to_multibyte):
13828 * character.c (chars_in_text, multibyte_chars_in_text):
13829 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
13830
13831 * character.h (FETCH_STRING_CHAR_ADVANCE)
13832 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
13833 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
13834 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
13835
13836 * casefiddle.c (casify_region): Only call after-change and composition
13837 functions on the part of the region that was changed.
13838
13839 * keyboard.c (read_avail_input):
13840 * frame.c (Fdelete_frame): Call Fdelete_terminal.
13841
138422008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13843
13844 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
13845 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
13846
138472008-02-11 Juanma Barranquero <lekktu@gmail.com>
13848
13849 * w32menu.c (push_submenu_start, push_submenu_end)
13850 (push_left_right_boundary, push_menu_pane, push_menu_item):
13851 * keyboard.c (read_key_sequence): Don't pass args with side effects
13852 to AREF, it fails when compiling with -DENABLE_CHECKING.
13853
138542008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
13855
13856 * Makefile.in (${lispsource}international/charprop.el):
13857 Delete this target.
13858
13859 * search.c (boyer_moore): Fix incorrect synching of the trunk and
13860 emacs-unicode-2.
13861
138622008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13863
13864 * terminal.c (Fdelete_terminal): Clean up the `force' path.
13865
138662008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
13867
13868 * frame.c (Qnoelisp): New symbol.
13869 (syms_of_frame): Initialize it.
13870 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
13871 harmless Elisp code, from a strong `force' from x_connection_closed.
13872 * frame.h (Qnoelisp): Declare.
13873 * xterm.c (x_connection_closed): Pass `noelisp'.
13874
13875 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
13876 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
13877 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
13878 rather than `int' for the type of `type'.
13879
138802008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
13881
13882 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
13883
13884 * Makefile.in (GNUC): Remove support for gcc-1.x.
13885
138862008-02-10 Richard Stallman <rms@gnu.org>
13887
13888 * lisp.h (ASET): Use AREF, not ASLOT.
13889
138902008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
13891
13892 * lisp.h (ASET): Check bounds.
13893
138942008-02-10 Glenn Morris <rgm@gnu.org>
13895
13896 * buffer.c (mode-name): Doc fix.
13897
138982008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
13899
13900 * Makefile.in:
13901 * emacs.c:
13902 * gmalloc.c:
13903 * keyboard.c:
13904 * lisp.h:
13905 * m/ibm370aix.h:
13906 * process.c:
13907 * regex.c:
13908 * s/hpux.h:
13909 * sysdep.c:
13910 * sysselect.h:
13911 * systty.h:
13912 * unexec.c:
13913 * w32term.c:
13914 * xsmfns.c:
13915 * xterm.c: Remove code that deals with obsolete variables.
13916
13917 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
13918
13919 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
13920 nothing else needs it anymore.
13921
139222008-02-09 Eli Zaretskii <eliz@gnu.org>
13923
13924 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
13925 instead of unibyte_char_to_multibyte.
13926
139272008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
13928
13929 * s/gnu-linux.h: Remove commented out code.
13930
13931 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
13932
13933 * Makefile.in: Update what RMS says about using autoconf.
13934 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
13935 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
13936 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
13937 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
13938
139392008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
13940
13941 * keymap.c (Fkey_description): Move side effect outside of macro call.
13942
13943 * xfaces.c (Finternal_make_lisp_face):
13944 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
13945
13946 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
13947 (syms_of_fontset): Use ASET.
13948
13949 * fns.c (concat): Move side effect outside of macro call.
13950 (hash_clear): Use ASET.
13951
139522008-02-08 Richard Stallman <rms@gnu.org>
13953
13954 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
13955 If FORCE, and frame has a surrogate minibuffer for another frame,
13956 delete the other frame first.
13957
139582008-02-07 Timo Savola <timo.savola@iki.fi>
13959
13960 * xterm.c (x_detect_focus_change): Handle embed client message.
13961 (handle_one_xevent): Ditto.
13962 (handle_one_xevent): If embedded and we get a button press/release,
13963 request focus.
13964 (xembed_set_info, xembed_send_message): New functions.
13965 (x_make_frame_visible): Call xembed_set_info if embedded.
13966 (x_make_frame_invisible): Call xembed_set_info if embedded.
13967 (x_term_init): Initialize Xatom_XEMBED.
13968 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
13969 (x_iconify_frame): Ditto.
13970
13971 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
13972 (enum xembed_info, enum xembed_message, enum xembed_focus)
13973 (enum xembed_modifier, enum xembed_accelerator): New.
13974 (xembed_set_info, xembed_send_message): Declare.
13975 (FRAME_X_EMBEDDED_P): New.
13976
13977 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
13978 gtk_plug_new.
13979
13980 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
13981 window ID of a frame.
13982 (x_window): Reparent frame if embedded.
13983 (Fx_create_frame): Don't set border width if embedded.
13984
13985 * emacs.c (USAGE3): Add --parent-id.
13986 (standard_args): Ditto.
13987
139882008-02-07 Jan Djärv <jan.h.d@swipnet.se>
13989
13990 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
13991
139922008-02-07 Jim Meyering <meyering@redhat.com>
13993
13994 Use "do...while (0)", not "if (1)...else" in macro definitions.
13995 The latter provokes a warning from gcc about the empty else, when
13996 followed by ";". Also, without that trailing semicolon, it would
13997 silently swallow up any following statement.
13998 * syntax.h (SETUP_SYNTAX_TABLE)
13999 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
14000 * buffer.h (DECODE_POSITION): Likewise.
14001 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
14002 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
14003 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
14004 (FETCH_CHAR_ADVANCE): Likewise.
14005 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
14006
140072008-02-07 Jim Meyering <meyering@redhat.com>
14008
14009 * lread.c [lint]: Don't include <sys/inode.h>.
14010
140112008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
14012
14013 * xselect.c (x_handle_dnd_message):
14014 * xmenu.c (digest_single_submenu, xmenu_show):
14015 * xdisp.c (with_echo_area_buffer_unwind_data)
14016 (format_mode_line_unwind_data, unwind_format_mode_line)
14017 (display_menu_bar):
14018 * eval.c (Ffetch_bytecode):
14019 * doc.c (store_function_docstring):
14020 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
14021 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
14022 * buffer.c (add_overlay_mod_hooklist): Use ASET.
14023
140242008-02-07 Kenichi Handa <handa@m17n.org>
14025
14026 * ftxfont.c (ftxfont_open): Don't set
14027 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
14028
14029 * ftfont.c (ftfont_open): Fix previous change.
14030
140312008-02-06 Jason Rumney <jasonr@gnu.org>
14032
14033 * w32font.c (w32font_text_extents): Fill in lbearing metric.
14034 Use cached metrics for ASCII characters.
14035 (w32font_open_internal): Don't set font's owning_frame.
14036 Cache metrics for ASCII characters.
14037
14038 * w32font.h (struct w32font_info): Add ascii_metrics.
14039 Remove owning_frame.
14040
140412008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
14042
14043 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
14044 to negative value.
14045
14046 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
14047
14048 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
14049
14050 * charset.c (syms_of_charset): Set QCtest and Qeq.
14051
140522008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
14053
14054 * process.c (Fstart_process):
14055 * callproc.c (Fcall_process): Handle the case where
14056 Funhandled_file_name_directory returns nil.
14057
14058 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
14059 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
14060 * font.c (check_gstring): Use them and AREF to access the vector before
14061 we know it's really a gstring.
14062 (Ffont_shape_text): Fix typo.
46e722a9 14063 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
aac0c6e3
MR
14064
14065 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
14066 Declare.
14067
14068 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
14069
140702008-02-05 Jason Rumney <jasonr@gnu.org>
14071
14072 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
14073 Set smallest_font_height and smallest_char_width in display info.
14074
140752008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
14076
14077 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
14078
140792008-02-05 Miles Bader <miles@gnu.org>
14080
14081 * xfaces.c (get_lface_attributes, merge_named_face)
14082 (lookup_named_face, lookup_derived_face, realize_named_face):
14083 Revert 2008-02-01 change by cyd@stupidchicken.com.
14084
140852008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
14086
14087 * fontset.c (Ffontset_info): Handle the case of inhibitting the
14088 fallback fonts.
14089 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
14090
140912008-02-04 Jason Rumney <jasonr@gnu.org>
14092
14093 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
14094 set full_name.
14095 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
14096
140972008-02-03 Jason Rumney <jasonr@gnu.org>
14098
14099 * makefile.w32-in (OBJ1): Include font.o here.
14100 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
14101
141022008-02-02 Jason Rumney <jasonr@gnu.org>
14103
14104 * makefile.w32-in (temacs): Bump EMHEAP to 21.
14105
141062008-02-01 Jason Rumney <jasonr@gnu.org>
14107
14108 * s/cygwin.h: Define VIRT_ADDR_VARIES.
14109
14110 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
14111
141122008-02-01 Andreas Schwab <schwab@suse.de>
14113
14114 * Makefile.in (shortlisp, lisp): Update for rename of
14115 ../lisp/language/myanmar.el.
14116
141172008-02-01 Chong Yidong <cyd@stupidchicken.com>
14118
14119 * xfaces.c (get_lface_attributes): Delete function.
14120 (merge_named_face, lookup_named_face, lookup_derived_face)
14121 (realize_named_face): Call lface_from_face_name directly, and use
14122 the fact that merge_face_vectors does not alter its FROM argument.
14123
141242008-02-01 Jason Rumney <jasonr@gnu.org>
14125
14126 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
14127 input in the default locale. Handle non-Unicode multibyte input.
14128
141292008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14130
14131 * fontset.c (reorder_font_vector): Exclude nil elements from the
14132 font group. Don't try multiple fonts.
14133 (fontset_font): Adjust for the above change.
14134 (Finternal_char_font): Return nil if the found font doesn't
14135 contain the character ch.
14136
14137 * Makefile.in (lisp, shortlisp): Add cham.el.
14138
141392008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14140
14141 * font.h (FONTP): Make it return 1 also for a font-object.
14142
14143 * .gdbinit (xfontset): New function.
14144
14145 * font.c (font_find_for_lface): Check if the character C is
14146 supported or not only for the first font.
14147
14148 * fontset.c (reorder_font_vector): Fix typo.
14149 (fontset_find_font): Don't add a font-spec specifying a script.
14150 Use 0 (not Qt) for the indication of empty font-group. Change the
14151 format of RFONT-DEF. Return Qt if no font in the font-group
14152 support the character.
14153 (fontset_font): Adjust for the above change. If no font was
14154 found the character, remember that.
14155 (face_for_char): Adjust for the change of RFONT-DEF.
14156 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
14157 no font for the target.
14158 (Finternal_char_font): Adjust for the change of RFONT-DEF.
14159
141602008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14161
14162 * font.c (font_load_for_face): Handle the case that the font in
14163 face->lface is a string.
14164
141652008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14166
14167 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
14168
141692008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14170
14171 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
14172 Fix previous change. If the frame is not on a window system,
14173 signal an error.
14174
141752008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14176
14177 * coding.c (decode_coding_object, encode_coding_object): Adjust
14178 marker positions after conversion.
14179
14180 * lisp.h (struct Lisp_Marker): New member need_adjustment.
14181
141822008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14183
14184 * font.c (font_find_for_lface): Fix the handling of the return
14185 value of font_has_char.
14186 (Ffont_shape_text): Fix previous change.
14187
14188 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
14189 (fontset_ref_and_range): Delete it.
14190 (fontset_find_font): Call char_table_ref_and_range instead of
14191 FONTSET_REF_AND_RANGE.
14192 (make_fontset): Don't setup font groups of Latin here.
14193 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
14194 (new_fontset_from_font): Make the specified font the default for
14195 all Latin characters.
14196
141972008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14198
14199 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
14200 is on a window system before accessing the fontset of the frame.
14201
142022008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14203
14204 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
14205
14206 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
14207 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
14208
14209 * font.c (Ffont_shape_text): If the font driver doesn't have a
14210 shaper function, make zero-width glyphs to have at least one-pixel
14211 width. Fix setting of `to' field of glyphs.
14212
142132008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14214
14215 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
14216 glyphs.
14217
14218 * font.h (struct font_driver): Improve docstring of member `shape'.
14219
142202008-02-01 Kenichi Handa <handa@m17n.org>
14221
14222 * composite.c (syms_of_composite): Fix docstring of
14223 auto-composition-function.
14224
14225 * font.h (LGLYPH_SIZE): New macro.
14226
14227 * font.c (Ffont_fill_gstring): Stop filling when a character not
14228 supported by the font is found.
14229 (Ffont_shape_text): When a shape callback function returns nil,
14230 try at most two more times with larger gstring.
14231 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
14232
14233 * xdisp.c (handle_auto_composed_prop): Change the argument to
14234 auto-composition-function.
14235
14236 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
14237 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
14238 Lispy glyph and store it in the lgstring.
14239
14240 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
14241
14242 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
14243
142442008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14245
14246 * font.c (Ffont_shape_text): Avoid unnecessary composition.
14247
14248 * fontset.c (Vfont_encoding_charset_alist): New variable.
14249 (syms_of_fontset): DEFVAR it.
14250 (reorder_font_vector, fontset_find_font): Optimize for the case of
14251 no need of reordering.
14252 (face_for_char): Map the charset property by
14253 Vfont_encoding_charset_alist.
14254
142552008-02-01 Jason Rumney <jasonr@gnu.org>
14256
14257 * w32font.c (logfonts_match): Don't check adstyle here.
14258 (font_matches_spec): Check here against physical font instead.
14259 (add_font_entity_to_list): Avoid some substitutions.
14260
14261 * font.c (font_parse_fcname): Default weight and slant to normal.
14262 (font_score): Prefer normal fonts if weight or slant unspecified.
14263 (font_score) [WINDOWSNT]: Scale weight difference down to closer
14264 match freetype scores.
14265
142662008-02-01 Jason Rumney <jasonr@gnu.org>
14267
14268 * w32font.c (w32font_text_extents): Don't use the frame stored in the
14269 font, as it may have been deleted.
14270 (w32_enumfont_pattern_entity): Map generic family to adstyle using
14271 most common hyphenless variation.
14272 (logfonts_match): Check generic family.
14273 (font_matches_spec): Don't check generic family here.
14274 (fill_in_logfont): Set generic family based on adstyle.
14275
14276 * w32font.h (w32font_get_cache): Update declaration.
14277
142782008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14279
14280 * ftfont.c (ftfont_get_cache): Adjust the argument type.
14281
14282 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
14283 If none of the new drivers are available, call font_update_drivers
14284 with the old drivers.
14285
14286 * w32font.c (w32font_get_cache): Adjust the argument type.
14287
14288 * xfont.c (xfont_get_cache): Adjust the argument type.
14289
14290 * font.h (struct font_driver): Change argument type of get_cache.
14291
14292 * xftfont.c (xftfont_start_for_frame): Delete prototype.
14293
14294 * font.c (Ffont_get): Fix arguments to Fassoc.
14295 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
14296 (font_clear_cache): New function.
14297 (font_list_entities, font_matching_entity): Use font_get_cache.
14298 (font_update_drivers): Call font_clear_cache when finishing a driver.
14299
14300 * fontset.c (fontset_find_font): Fix previous change.
14301
143022008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14303
14304 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
14305 dpyinfo->font_table.
14306 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
14307 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
14308
14309 * font.c (font_at): Handle the case that the arg C is negative.
14310 Handle the unibyte case.
14311 (Ffont_at): Call font_at with the arg C -1.
14312
14313 * xdisp.c (handle_auto_composed_prop): Don't get a character at
14314 the position here, and call font_at with the arg C -1.
14315 Don't check the range of the existing composition at the point.
14316
143172008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14318
14319 * fontset.c (fontset_add): New args charset_id and family.
14320 Change caller.
14321 (load_font_get_repertory, fontset_find_font): Assume that
14322 font_spec is always a font-spec object.
14323 (Fset_fontset_font): Always store a font-spec object in a fontset.
14324
14325 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
14326 instead of get_property_and_range.
14327
143282008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14329
14330 * xftfont.c (struct xftfont_info): Delete the member ft_face.
14331 (xftfont_open): Don't keep locking face.
14332 (xftfont_close): Don't unlock face.
14333 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
14334
14335 * fontset.c (fontset_find_font): Don't prefer a font of
14336 supplementary charset.
14337
143382008-02-01 Kenichi Handa <handa@m17n.org>
14339
14340 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
14341 script, langsys_tag to langsys, new member script.
14342 (OTF_TAG_STR): Terminate by '\0'.
867d4bb3 14343 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
aac0c6e3
MR
14344 listing to the script specified in that property. Fix arg to
14345 OTF_check_features.
14346
143472008-02-01 Jason Rumney <jasonr@gnu.org>
14348
14349 * w32font.h: New file.
14350
14351 * w32font.c: Include it.
14352 (struct w32font_info): Add owning_frame field. Move to w32font.h.
14353 (w32font_open): Set owning_frame.
14354 (w32font_text_extents): Use owning_frame.
14355 (struct font_callback_data): Add opentype_only field.
14356 (add_font_entity_to_list): Use it to filter fonts.
14357 Don't check against full name.
14358 (w32font_list_internal): New function.
14359 (w32font_list): Use it.
14360 (w32font_match_internal): New function.
14361 (w32font_match): Use it.
14362 (w32font_open_internal): New function.
14363 (w32font_open): Use it.
14364 (w32font_get_cache, w32font_close, w32font_has_char)
14365 (w32font_encode_char, w32font_text_extents, w32font_draw):
14366 Make non-static.
14367
14368 * makefile.w32-in (w32font.o): Depend on w32font.h.
14369
143702008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14371
14372 * charset.c (Fdefine_charset_internal): Record a supplementary
14373 charset at the tail of Vcharset_order_list.
14374
14375 * font.c (Ffont_shape_text): Fix the return value.
14376
14377 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
14378
14379 * xdisp.c (handle_auto_composed_prop): Fix previous change.
14380
143812008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14382
14383 * ftfont.c (struct OpenTypeSpec): New struct.
14384 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
14385 (ftfont_get_open_type_spec): New function.
14386 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
14387
14388 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
14389
143902008-02-01 Jason Rumney <jasonr@gnu.org>
14391
14392 * w32font.c (add_font_entity_to_list): Compare only the beginning
14393 of full name.
14394
143952008-02-01 Kenichi Handa <handa@m17n.org>
14396
14397 * xdisp.c (handle_auto_composed_prop): Simplify the code.
14398 Never return HANDLED_RECOMPUTE_PROPS.
14399
144002008-02-01 Kenichi Handa <handa@m17n.org>
14401
14402 * font.c (font_gstring_produce): Delete it.
14403
14404 * composite.h (COMPOSITION_METHOD):
14405 Handle COMPOSITION_WITH_GLYPH_STRING.
14406
144072008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14408
14409 * xfont.c (Qx): Delete.
14410 (syms_of_xfont): Don't initialize Qx.
14411
14412 * composite.h (enum composition_method):
14413 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
14414
144152008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14416
14417 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
14418 (choose_face_font): Accept new form of font-spec.
14419
14420 * frame.h (font_driver_list): Declare it unconditionally.
14421 (struct frame): Define members font_driver_list and font_data_list
14422 unconditionally.
14423
14424 * fontset.c: Include "font.h" unconditionally.
14425 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
14426 (Fset_fontset_font): Accept a font-spec object.
14427
14428 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
14429 PIXEL_SIZE part a wild card.
14430
14431 * dispextern.h (struct glyph_string): Define members clip and
14432 num_clips unconditionally.
14433 (struct face): Define members font_info and extra unconditionally.
14434
14435 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
14436 ftfont_info only when HAVE_LIBOTF is defined.
14437
144382008-02-01 Andreas Schwab <schwab@suse.de>
14439
14440 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
14441 and end.
14442
144432008-02-01 Jason Rumney <jasonr@gnu.org>
14444
14445 * w32font.c (w32font_driver): Add new fields.
14446
144472008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14448
14449 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
14450 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
14451 (LIBES): Add @M17N_FLT_CFLAGS@.
14452
14453 * composite.c (compose_text): Don't treat the new style
14454 composition specially.
14455
14456 * emacs.c (main): Call syms_of_font unconditionally.
14457
14458 * font.h (FONT_ENTITY_NOT_LOADABLE)
14459 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
14460 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
14461 (struct font_driver): New member shape.
14462 (font_registry_charsets): Extern it.
14463 (font_find_for_lface, font_prepare_composition): Adjust prototype.
14464 (font_otf_capability, font_drive_otf): Delete their externs.
14465
14466 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
14467 (font_charset_alist, font_registry_charsets): Move from xfont.c
14468 and rename.
14469 (font_prop_validate_otf): New function.
14470 (font_property_table): Register it for QCotf.
14471 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
14472 (font_drive_otf): Delete.
14473 (font_prepare_composition): New arg F. Adjust for the change of
14474 lispy gstring.
14475 (font_find_for_lface): New arg C.
14476 (font_load_for_face): Adjust for the change of font_find_for_lface.
14477 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
14478 lispy gstring.
14479 (Ffont_shape_text): New function.
14480 (Fopen_font): If the font size is not given, use 12-pixel.
14481 (Ffont_at): New arg STRING.
c0943d3d 14482 (syms_of_font): Initialize font_charset_alist.
aac0c6e3
MR
14483 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
14484 conditionally.
14485
14486 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
14487 fonts of the same font-spec. Change the format of RFONT-DEF.
14488 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
14489 Adjust for the change of RFONT-DEF.
14490 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
14491
14492 * ftfont.h: New file.
14493
14494 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
14495 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
14496 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
14497 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
14498 font_otf_capability and font_drive_otf, set ftfont_shape.
14499 (ftfont_list): Adjust for the change of :otf property value.
14500 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
14501 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
14502 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
14503 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
14504 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
14505 (otf_gstring, gstring, m17n_flt_initialized): New variables.
14506
14507 * w32term.c (x_draw_composite_glyph_string_foreground):
14508 Adjust for the change of lispy gstring.
14509
14510 * xdisp.c (handle_composition_prop): Adjust for the change of
14511 lispy gstring. Call a function for auto-composition with the
14512 third arg it->window.
14513 (fill_composite_glyph_string): Adjust for the change of lispy string.
14514 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
14515
14516 * xfaces.c (set_font_frame_param): Adjust for the change of
14517 font_find_for_lface.
14518
14519 * xfont.c (x_font_charset_alist): Move to font.c and rename.
14520 (xfont_registry_charsets): Likewise. Change caller.
14521 (syms_of_xfont): Don't handle x_font_charset_alist.
14522
14523 * xftfont.c: Include "ftfont.h".
14524 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
14525 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
14526 (xftfont_close) [HAVE_LIBOTF]: Close otf.
14527 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
14528 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
14529 Set xftfont_driver.shape to xftfont_shape.
14530
14531 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
14532 the change of lispy gstring.
14533
145342008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14535
14536 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
14537
145382008-02-01 Jason Rumney <jasonr@gnu.org>
14539
14540 * w32font.c (w32font_draw): Fill background manually.
14541
145422008-02-01 Jason Rumney <jasonr@gnu.org>
14543
14544 * font.c (Qfontp): Remove unused symbol.
14545 (QCantialias): New symbol.
14546 (syms_of_font): Define it.
14547 (font_property_table): Set a validator for QCantialias.
14548
14549 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
14550 Define if not already.
14551 (QCfamily): Share with xfaces.c.
14552 (Qstandard, Qsubpixel, Qnatural): New symbols.
14553 (syms_of_w32font): Define them. Don't define QCfamily here.
14554 (w32_antialias_type, lispy_antialias_type): New functions.
14555 (w32_enumfont_pattern_entity): New arg requested_font.
14556 Set antialias parameter if non-default was requested.
14557 (fill_in_logfont): Fill in lfQuality if :antialias specified.
14558
145592008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14560
14561 * lread.c (read1): Undo the previous change.
14562
145632008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
14564
14565 * frame.c (Fdelete_frame): Call font_update_drivers only when
14566 USE_FONT_BACKEND is defined.
14567
145682008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14569
14570 * font.h (struct font_bitmap): New member bits_per_pixel.
14571 (struct font_driver): New members start_for_frame and end_for_frame.
14572 (struct font_data_list): New struct.
14573 (font_put_frame_data, font_get_frame_data): Extern them.
14574
14575 * frame.h (struct frame): New member font_data_list.
14576
14577 * font.c (font_update_drivers): Call driver->start_for_frame and
14578 driver->end_for_frame at proper timings.
14579 (font_put_frame_data, font_get_frame_data): New functions.
14580 (Ffont_spec): Add usage in the docstring.
14581
14582 * frame.c (make_frame): Initialize f->font_data_list to NULL.
14583 (Fdelete_frame): Call font_update_drivers.
14584
14585 * xftfont.c (struct xftface_info): Delete the member xft_draw.
14586 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
14587 (xftfont_get_xft_draw): New function.
14588 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
14589 (xftfont_end_for_frame): New function.
14590 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
14591
14592 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
14593 Change argument. Cache GCs in the per-frame data.
14594 (struct ftxfont_frame_data): New struct.
14595 (ftxfont_draw_bitmap): New arg gc_fore and flush.
14596 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
14597 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
14598 (ftxfont_end_for_frame): New function.
14599 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
14600
14601 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
14602
146032008-02-01 Kenichi Handa <handa@m17n.org>
14604
14605 * xselect.c (Vselection_coding_system)
14606 (Vnext_selection_coding_system): Delete them.
14607 (syms_of_xselect): Don't declare selection-coding-system and
14608 next-selection-coding-system. They are declared in select.el.
14609
146102008-02-01 Jason Rumney <jasonr@gnu.org>
14611
14612 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
14613
14614 * w32fns.c: Include imm.h.
14615 (get_composition_string_fn, get_ime_context_fn): New optional
14616 system functions.
14617 (globals_of_w32fns): Load them from imm32.dll.
14618 (ignore_ime_char): New flag.
14619 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
14620 WM_IME_ENDCOMPOSITION messages.
14621
14622 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
14623 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
14624
146252008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14626
14627 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
14628 (READCHAR_REPORT_MULTIBYTE): New macro.
14629 (readchar): New 2nd arg MULTIBYTE.
14630 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
14631 Make symbol's name multibyte according to the multibyteness of the
14632 source.
14633
146342008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14635
14636 * xfaces.c (face_for_overlay_string): Call lookup_face with
14637 correct arguments (fix of synching with the trunk).
14638
146392008-02-01 Kenichi Handa <handa@m17n.org>
14640
14641 * font.c (font_prop_validate_symbol, font_prop_validate_style)
14642 (font_prop_validate_non_neg, font_prop_validate_spacing):
14643 Delete argument prop_index.
14644 (font_property_table): Change arguments to validater. Change Callers.
14645 (font_lispy_object): Delete.
14646 (font_at): Use font_find_object instead fo font_lispy_object.
14647
146482008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14649
14650 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
14651 and file names.
14652
146532008-02-01 Jason Rumney <jasonr@gnu.org>
14654
14655 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
14656 (font_matches_spec): Remove debug output.
14657 (add_font_entity_to_list): Avoid using substituted fonts.
14658
146592008-02-01 Jason Rumney <jasonr@gnu.org>
14660
14661 * doc.c (Fsnarf_documentation):
14662 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
14663
146642008-02-01 Miles Bader <miles@gnu.org>
14665
14666 * dispextern.h (struct glyph_row): Only define "clip" field if
14667 HAVE_WINDOW_SYSTEM is defined.
14668
146692008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
14670
14671 Fix up multi-tty merge.
14672
14673 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
14674 and indentation.
14675
14676 * xfaces.c (free_realized_face, clear_face_gcs):
14677 Include font_done_for_face in the input_blocked section, just in case.
14678
14679 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
14680 (get_char_face_and_encoding): Undo last change and remove the *other*
14681 duplicate definition (i.e. keep the one that's better scoped and that
14682 includes code for the font-backend).
14683
14684 * terminal.c (create_terminal): Default keyboard_coding to
14685 `no-conversion' and terminal_coding to `undecided'.
14686
14687 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
14688
14689 * fontset.c (free_realized_fontsets): Check that the table entry does
14690 contain a fontset before trying to compare it to `base'.
14691
14692 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
14693 syms_of_charset, and syms_of_coding earlier because init_window_once
14694 now needs Vcoding_system_hash_table to be setup.
14695
14696 * coding.h (default_buffer_file_coding): Remove.
14697
14698 * coding.c (default_buffer_file_coding): Remove.
14699 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
14700 than ->symbol, and use the terminal-local coding system.
14701 (syms_of_coding): Don't setup the coding-systems that are not
14702 terminal-local.
14703 (Fdefine_coding_system_internal): Use XCAR/XCDR.
14704
14705 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
14706 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
14707
14708 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
14709 in chartab.c and were re-added here by mistake.
14710 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
14711
14712 * doc.c (Fsnarf_documentation):
14713 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
14714 src to etc.
14715
14716 * ChangeLog.10: Add mistakenly removed entry.
14717
147182008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
14719
14720 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
14721
147222008-02-01 Miles Bader <miles@gnu.org>
14723
14724 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
14725 Add extra args to FACE_FOR_CHAR.
14726
147272008-02-01 Kenichi Handa <handa@m17n.org>
14728
14729 * keymap.c (where_is_internal_1): If key is a cons, store the copy
14730 in sequence.
14731
14732 * chartab.c (map_sub_char_table, map_char_table): If the range
14733 contains just one character, call the function with that character
14734 even if the depth is not 3.
14735
147362008-02-01 Jason Rumney <jasonr@gnu.org>
14737
14738 * w32font.c (w32font_text_extents): Calculate metrics for the
14739 whole string.
14740
147412008-02-01 Jason Rumney <jasonr@gnu.org>
14742
14743 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
14744
147452008-02-01 Jason Rumney <jasonr@gnu.org>
14746
14747 * w32term.c (x_set_glyph_string_clipping): Use
14748 get_glyph_string_clip_rects.
14749 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
14750 Adjust for the change of struct glyph_string.
14751
14752 * w32font.c (w32font_draw): Do clipping here.
14753
147542008-02-01 Kenichi Handa <handa@m17n.org>
14755
14756 * xftfont.c (xftfont_draw): Adjust for the change of struct
14757 glyph_string.
14758
14759 * xterm.c (x_set_glyph_string_clipping): Use
14760 get_glyph_string_clip_rects.
14761 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
14762 Adjust for the change of struct glyph_string.
14763
14764 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
14765 the resulting clip(s}.
14766 (expose_overlaps): Add arg r. Change callers. Set it to
14767 row->clip temporarily.
14768 (expose_window): Redraw rows overlapping the exposed area.
14769
14770 * dispextern.h (struct glyph_row): New member clip.
14771 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
14772 clip_height, new member clip, and num_clips.
14773
147742008-02-01 Kenichi Handa <handa@m17n.org>
14775
14776 * data.c (Fchar_or_string_p): Fix docstring.
14777
147782008-02-01 Kenichi Handa <handa@m17n.org>
14779
14780 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
14781 create a temporary XftDraw object.
14782
147832008-02-01 Kenichi Handa <handa@m17n.org>
14784
14785 * font.c (Ffontp): Fix docstring.
14786
14787 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
14788 strong evidence of ISO-2022.
14789
147902008-02-01 Kenichi Handa <handa@m17n.org>
14791
14792 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
14793 SYNTAX_ENTRY_FOLLOW_PARENT.
14794
147952008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
14796
14797 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
14798 its type.
14799 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
14800 Update to the new type of weak_hash_tables and next_weak.
14801
14802 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
14803 a plain C pointer to Lisp_Hash_Table.
14804
14805 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
14806 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
14807 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
14808 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
14809 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
14810 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
14811 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
14812 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
14813 (GC_EQ): Remove since they've been identical to their non-GC_
14814 alter-egos ever since the markbit was eradicated.
14815
14816 * alloc.c:
14817 * buffer.c:
14818 * buffer.h:
14819 * data.c:
14820 * fileio.c:
14821 * filelock.c:
14822 * fns.c:
14823 * frame.h:
14824 * lisp.h:
14825 * macterm.c:
14826 * print.c:
14827 * process.c:
14828 * w32fns.c:
14829 * w32menu.c:
14830 * w32term.c:
14831 * xfns.c:
14832 * xmenu.c:
14833 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
14834
148352008-02-01 Kenichi Handa <handa@m17n.org>
14836
14837 * chartab.c (map_sub_char_table): Make it work for the top-level
14838 char-table. Fix handling of parent char-table.
14839 (map_char_table): Adjust for the above change.
14840
148412008-02-01 Jason Rumney <jasonr@gnu.org>
14842
14843 * w32font.c (Qgdi): Rename from Qw32.
14844
148452008-02-01 Jason Rumney <jasonr@gnu.org>
14846
14847 * w32bdf.c (get_quoted_string): Make function static.
14848
148492008-02-01 Kenichi Handa <handa@m17n.org>
14850
14851 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
14852 bigger ascent and descent than those of the font, use them as
14853 font's ascent and descent.
14854
148552008-02-01 Kenichi Handa <handa@m17n.org>
14856
14857 * Makefile.in (${lispsource}international/charprop.el): Move this
14858 target within "#ifdef HAVE_UNIDATA" and "#endif".
14859
148602008-02-01 Kenichi Handa <handa@m17n.org>
14861
14862 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
14863 (shortlisp): Add ../lisp/language/tai-viet.el.
14864
148652008-02-01 Ulrich Mueller <ulm@gentoo.org>
14866
14867 * Makefile.in (${lispsource}international/charprop.el): Depend on
14868 temacs${EXEEXT}.
14869
148702008-02-01 Jason Rumney <jasonr@gnu.org>
14871
14872 * w32font.c (w32font_close): Delete the GDI font object.
14873
14874 * w32menu.c: Include character.h.
14875
14876 * w32proc.c: Likewise.
14877
14878 * w32select.c: Likewise.
14879
14880 * makefile.w32-in (w32proc.o): Depend on character.h.
14881
148822008-02-01 Jason Rumney <jasonr@gnu.org>
14883
14884 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
14885
14886 * w32menu.c (syms_of_w32menu): Likewise.
14887
14888 * w32proc.c (syms_of_ntproc): Likewise.
14889
14890 * w32select.c (syms_of_w32select): Likewise.
14891
14892 * w32term.c (syms_of_w32term): Likewise.
14893
148942008-02-01 Jason Rumney <jasonr@gnu.org>
14895
14896 * w32font.c (w32font_draw): Delete brush after using it.
14897
148982008-02-01 Jason Rumney <jasonr@gnu.org>
14899
14900 * w32font.c (w32font_open): Don't set font_idx.
14901 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
14902 to font settings.
14903 (w32font_draw): Fill background explicitly.
14904
149052008-02-01 Jason Rumney <jasonr@gnu.org>
14906
14907 * w32term.c (w32_initialize): Don't call w32font_initialize.
14908
14909 * w32font.c (w32font_info): Remove subranges.
14910 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
14911 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
14912 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
14913 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
14914 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
14915 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
14916 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
14917 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
14918 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
14919 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
14920 New symbols.
14921 (font_callback_data): New struct.
14922 (w32font_list, w32font_match): Use it.
14923 (w32font_open): Don't populate subranges.
14924 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
14925 (w32font_encode_char): Always return unicode code-point as-is.
14926 (w32font_text_extents): Supply a transformation matrix to
14927 GetGlyphOutline. Never look up by glyph index. Avoid looping
14928 twice. Use unicode version of GetTexExtentPoint32 instead of
14929 glyph index version.
14930 (set_fonts_frame): Remove.
14931 (w32_enumfont_pattern_entity): Add frame parameter, use it to
14932 set frame parameter. Use backward compatible fake foundries.
14933 Save generic family in extra slot under QCfamily. Make width slot
14934 constant. Save QCspacing value. Save list of scripts instead of
14935 binary subranges.
14936 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
14937 (add_font_entity_to_list): Use font_callback_data struct. Filter
14938 unwanted fonts.
14939 (add_one_font_entity_to_list): Use font_callback_data struct.
14940 (w32_registry): Default to iso10646_1.
14941 (fill_in_logfont): Use dpi from extra slot. Don't bother with
14942 string font registries. Don't fill in font name if it is a generic
14943 family name, fill family instead. Use spacing, family and script
14944 extra info to fill pitch, family and charset fields.
14945 (list_all_matching_fonts): Use font_callback_data struct.
14946 (unicode_range_for_char): Remove.
14947 (font_supported_scripts): New function.
14948 (w32font_initialize): Remove.
14949 (syms_of_w32font): Update which symbols are defined.
14950
149512008-02-01 Jason Rumney <jasonr@gnu.org>
14952
14953 * font.c (font_pixel_size): Reverse assq_no_quit args.
14954
14955 * w32term.h (FONT_WIDTH): Report max width, not average.
14956 (FONT_MAX_WIDTH): Remove.
14957 (FONT_AVG_WIDTH): New macro.
14958
14959 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
14960 redefinition of FONT_WIDTH.
14961
14962 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
14963 (w32_cache_char_metrics): Use FONT_WIDTH.
14964
14965 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
14966
149672008-02-01 Jason Rumney <jasonr@gnu.org>
14968
14969 * w32font.c (w32font_open): Make lfHeight negative.
14970
14971 * w32fns.c (x_default_font_parameter): Use new style font name.
14972 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
14973
149742008-02-01 Jason Rumney <jasonr@gnu.org>
14975
14976 * w32font.c (QCsubranges): New symbol.
14977 (w32font_open, w32font_has_char): Get subranges from subproperty
14978 of extra.
14979 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
14980 (syms_of_w32font): Define :subranges symbol.
14981
14982 * font.c (font_put_extra): Expose externally.
14983
14984 * font.h (font_put_extra): Move declaration from font.c.
14985
14986 * font.c (Ffont_get): Use font driver to determine otf capability.
14987 (adjust_anchor): Check if driver defines anchor_point before using.
14988
14989 * w32font.c (w32font_open): Handle size, height and pixel_size better.
14990 (w32font_draw): Use options.
14991 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
14992 Fix detection of truetype fonts.
14993 (registry_to_w32_charset): Handle charsets other than iso8859-1
14994 expressed as lisp symbols.
14995 (w32_registry): Express charset as lisp symbol.
14996 (fill_in_logfont): Reverse pixel and point height logic.
14997 Don't set width here. Set quality to default.
14998
14999 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
15000 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
15001
15002 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
15003 Remove redundant loop and allocation.
15004
15005 * makefile.w32-in (font.o, w32font.o): New objects.
15006 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
15007 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
15008
15009 * xdisp.c (fill_composite_glyph_string): Make the first arg to
15010 STORE_XCHARB a valid l-value.
15011
15012 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
15013 calculations for non-Truetype fonts.
15014 (x_draw_glyph_string): Sync with xterm.c.
15015 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
15016 Remove redundant code.
15017 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
15018
15019 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
15020 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
15021
15022 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
15023 (x_to_w32_charset, w32_to_x_charset): Expose externally.
15024
15025 * w32font.c: New file for w32 font backend.
15026
150272008-02-01 Kenichi Handa <handa@m17n.org>
15028
15029 * term.c: Don't include "buffer.h" twice.
15030
150312008-02-01 Kenichi Handa <handa@m17n.org>
15032
15033 * character.c (Funibyte_string): New function.
15034 (syms_of_character): Defsubr it.
15035
150362008-02-01 Jason Rumney <jasonr@gnu.org>
15037
15038 * w32term.c [USE_FONT_BACKEND]:
15039 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
15040 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
15041 (x_draw_glyph_string, x_draw_glyph_string_foreground)
15042 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
15043 (x_free_frame_resources): Sync with xterm.c.
15044
150452008-02-01 Andreas Schwab <schwab@suse.de>
15046
15047 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
15048 char-table size.
15049
150502008-02-01 Kenichi Handa <handa@m17n.org>
15051
15052 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
15053
150542008-02-01 Kenichi Handa <handa@m17n.org>
15055
15056 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
15057 font_otf_gpos, add font_drive_otf.
15058
15059 * fontset.c (fontset_find_font): Pay attention to font size
15060 specified for a font.
15061 (reorder_font_vector): Check contents of font_def.
15062
15063 * font.c (struct otf_list): Delete it.
15064 (otf_list): Make it a lisp variable.
15065 (otf_open): Use lispy otf_list.
15066 (generate_otf_features): Rename from parse_gsub_gpos_spec.
15067 (check_otf_features): New function.
15068 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
15069 New functions.
15070 (font_drive_otf): New function merging font_otf_gsub and
15071 font_otf_gpos.
15072 (font_open_for_lface): New arg spec. Change argument order.
15073 (font_load_for_face): Adjust for the change of font_open_for_lface.
15074 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
15075 Ffont_otf_gpos.
15076 (syms_of_font): Staticpro otf_list. Delete defsubr of
15077 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
15078
15079 * xfaces.c (set_font_frame_param): Adjust for the change of
15080 font_open_for_lface.
15081
15082 * font.h (font_open_for_lface): Adjust prototype.
15083 (struct font_driver): Delete members otf_gsub and otf_gpos, add
15084 member otf_drive.
15085 (font_otf_gsub, font_otf_gpos): Delete externs.
15086 (font_drive_otf): Extern it.
15087
150882008-02-01 Kenichi Handa <handa@m17n.org>
15089
15090 * font.c (font_at): If the window W is not on a window system,
15091 return Qnil.
15092
15093 * coding.c (produce_chars, encode_coding): Don't call
15094 insert_from_gap if no characters to produce.
15095
150962008-02-01 Kenichi Handa <handa@m17n.org>
15097
15098 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
15099 Fclear_face_cache.
15100
15101 * xfaces.c (face_for_font): Check also face->font==font->font.font.
15102
151032008-02-01 Miles Bader <miles@gnu.org>
15104
15105 * emacs.c (main): Change default value of `enable_font_backend' to 1.
15106 Parse "--disable-font-backend" option.
15107 (standard_args): Add "--disable-font-backend" option.
15108
151092008-02-01 Kenichi Handa <handa@m17n.org>
15110
15111 * fontset.c (fontset_find_font): New function.
15112 (fontset_font): Use fontset_find_font.
15113 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
15114 Register the specified font for all Latin characters.
15115 (new_fontset_from_font): Register the specified font for all Latin
15116 characters.
15117 (dump_fontset): For a realized fontset, include the base fontset
15118 name in the returned vector.
15119
151202008-02-01 Kenichi Handa <handa@m17n.org>
15121
15122 * character.h (CHAR_STRING): Cast C to unsigned on calling
15123 char_string.
15124
15125 * character.c (char_string): Type of arg C changed to unsigned.
15126 Signal an error if C is an invalid character code.
15127
15128 * editfns.c (general_insert_function, Fchar_to_string):
15129 Use CHARACTERP, not INTEGERP.
15130
151312008-02-01 Kenichi Handa <handa@m17n.org>
15132
15133 * character.h (MIN_MULTIBYTE_LEADING_CODE)
15134 (MAX_MULTIBYTE_LEADING_CODE): New macros.
15135
15136 * regex.c (analyse_first): Fix for multibyte characters in "case
15137 charset:" and "case categoryspec:".
15138
151392008-02-01 Andreas Schwab <schwab@suse.de>
15140
15141 * Makefile.in (LIBES): Move standard libraries to the end.
15142
151432008-02-01 Kenichi Handa <handa@m17n.org>
15144
15145 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
15146 nonzero, don't shrink the buffer nextb.
15147
15148 * buffer.h (struct buffer_text): New member inhibit_shrinking.
15149
15150 * coding.c (coding_alloc_by_making_gap): New arg offset.
15151 (alloc_destination): Call coding_alloc_by_making_gap with the arg
15152 offset.
15153 (decode_coding_iso_2022): Update coding->safe_charsets.
15154 (decode_coding_gap): Temporarily set
15155 current_buffer->text->inhibit_shrinking to 1.
15156
151572008-02-01 Kenichi Handa <handa@m17n.org>
15158
15159 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
15160 indexing into elements of s->cmp and s->char2b.
15161
151622008-02-01 Juanma Barranquero <lekktu@gmail.com>
15163
15164 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
15165
151662008-02-01 Kenichi Handa <handa@m17n.org>
15167
15168 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
15169 target_multibyte instead of multibyte.
15170 (re_match_2_internal): Call bcmp_translate with target_multibyte.
15171 (bcmp_translate): Change the argument name from multibyte to
15172 target_multibyte.
15173
151742008-02-01 Kenichi Handa <handa@m17n.org>
15175
15176 These changes are to compile a regexp into a pattern that can be
15177 used both for multibyte and unibyte targets.
15178
15179 * Makefile.in (search.o): Depend on charset.h.
15180
15181 * character.c (multibyte_char_to_unibyte_safe): New function.
15182
15183 * search.c: Include "charset.h".
15184 (compile_pattern_1): Delete argument multibyte. Don't set
15185 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
15186 (compile_pattern): Don't compare cp->buf.target_multibyte.
15187 Compare cp->buf.charset_unibyte.
15188 (compile_pattern): Set cp->buf.target_multibyte.
15189
15190 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
15191
15192 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
15193
15194 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
15195 multibyte. Change callers.
15196 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
15197 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
15198 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
15199 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
15200 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
15201 (regex_compile): Make the compiled pattern usable both for
15202 multibyte and unibyte targets.
15203 (analyse_first): Make the fastmap usable both for multibyte and
15204 unibyte targets.
15205 (TRANSLATE_VIA_MULTIBYTE): Delete.
15206 (re_match_2_internal): Pay attention to the case that the
15207 multibyteness of bufp and target may be different.
15208
152092008-02-01 Kenichi Handa <handa@m17n.org>
15210
15211 * xdisp.c (x_produce_glyphs): When a font is not found, make the
15212 empty box occupy at least one column width.
15213
152142008-02-01 Miles Bader <miles@gnu.org>
15215
15216 * Makefile.in: Remove redundant HAVE_XFT clause.
15217
152182008-02-01 Kenichi Handa <handa@m17n.org>
15219
15220 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
15221
152222008-02-01 Kenichi Handa <handa@m17n.org>
15223
15224 * fontset.c (Finternal_char_font): Fix for the case of POSITION
15225 being nil.
15226
152272008-02-01 Kenichi Handa <handa@m17n.org>
15228
15229 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
15230
152312008-02-01 Kenichi Handa <handa@m17n.org>
15232
15233 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
15234
152352008-02-01 Kenichi Handa <handa@m17n.org>
15236
15237 * search.c (simple_search): Fix previous change.
15238
152392008-02-01 Kenichi Handa <handa@m17n.org>
15240
15241 * xftfont.c (ftfont_font_format): Extern declaration.
15242
15243 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
15244
15245 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
15246 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
15247
15248 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
15249 (ftfont_font_format): Fix previous change.
15250
15251 * font.h (Ffont_xlfd_name): EXFUN it.
15252
15253 * font.c (font_parse_xlfd): Fix the array size of `f'.
15254 (register_font_driver): Use EQ to compare driver->type.
15255
15256 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
15257 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
15258 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
15259
152602008-02-01 Kenichi Handa <handa@m17n.org>
15261
15262 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
15263 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
15264
152652008-02-01 Kenichi Handa <handa@m17n.org>
15266
15267 * xfont.c (xfont_open): Set font->format.
15268
15269 * xftfont.c (xftfont_open): Set font->format.
15270
15271 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
15272 (ftfont_list): Include FC_FONTFORMAT in FcObject.
15273 (ftfont_open): Set font->format.
15274 (ftfont_font_format): New function.
15275
15276 * font.h (struct font): New member format.
15277
15278 * font.c (Qopentype): New variable.
15279 (syms_of_font): Defsym it.
15280 (Fquery_font): Change the format of the last element of the return
15281 value.
15282
152832008-02-01 Kenichi Handa <handa@m17n.org>
15284
15285 * xfns.c (xic_create_xfontset): Try the default fontset name as a
15286 last resort.
15287
152882008-02-01 Kenichi Handa <handa@m17n.org>
15289
15290 * coding.c (detect_coding_charset): Fix detection of multi-byte
15291 charset.
15292
152932008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
15294
15295 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
15296
152972008-02-01 Kenichi Handa <handa@m17n.org>
15298
15299 * xdisp.c (get_next_display_element): Set it->face_id for the
15300 first component of a composition.
15301 (x_produce_glyphs): Check if the font is changed or not for composition.
15302
153032008-02-01 Kenichi Handa <handa@m17n.org>
15304
15305 * fontset.c (Qlatin): New variable.
15306 (syms_of_fontset): Define it as a lisp symbol.
15307 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
15308
153092008-02-01 Kenichi Handa <handa@m17n.org>
15310
15311 * font.c (font_unparse_fcname): Pay attention to the case that
15312 some of font property is a null string.
15313
153142008-02-01 Kenichi Handa <handa@m17n.org>
15315
15316 * term.c: Include "composite.h".
15317 (encode_terminal_code): Output all components of composition.
15318 Check the size of encode_terminal_src.
15319 (produce_glyphs): For composition, call produce_composite_glyph.
15320 (append_composite_glyph, produce_composite_glyph): New functions.
15321
15322 * xdisp.c (x_produce_glyphs): In handling composition, if a font
15323 is not found, get font_info from the current ascii face.
15324
153252008-02-01 Kenichi Handa <handa@m17n.org>
15326
15327 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
15328 buffer-file-name to Qnil before calling insert_from_buffer.
15329
15330 * font.c (font_unparse_fcname): Pay attention to the case that
15331 foundry is a null string.
15332
153332008-02-01 Kenichi Handa <handa@m17n.org>
15334
15335 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
15336
15337 * font.c (Qunicode_sip): New variable.
15338 (syms_of_font): Declare it as a Lisp symbol.
15339
15340 * font.h (Qunicode_sip): Extern it.
15341
153422008-02-01 Kenichi Handa <handa@m17n.org>
15343
15344 * composite.c (get_composition_id): Pay attention to TAB component.
15345
15346 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
15347 TAB. Adjust for the change of s->char2b which always points to
15348 the first element of allocated memory.
15349
15350 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
15351
15352 * xdisp.c (handle_composition_prop): Set it->c to the first
15353 non-TAB component.
15354 (fill_composite_glyph_string): Change argument.
15355 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
15356 (x_produce_glyphs): Fix handling of left/right padding.
15357
153582008-02-01 Kenichi Handa <handa@m17n.org>
15359
15360 * coding.c (detect_coding_system): Fix for handling off
15361 inhibit_iso_escape_detection. Fix for the case that no coding
15362 system is defined for a specific coding category.
15363
153642008-02-01 Kenichi Handa <handa@m17n.org>
15365
15366 * font.c (font_matching_entity): Delete unused local var.
15367
15368 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
15369 opening a font.
15370
15371 * fileio.c (Finsert_file_contents): On recovering a file, assume
15372 Unix-like eol.
15373 (choose_write_coding_system): On auto-saving a file, force
15374 Unix-like eol.
15375
15376 * coding.c (setup_coding_system): Fix setting of
15377 coding->common_flags based on eol_type.
15378 (coding_inherit_eol_type): If PARENT is not nil, be sure to
15379 inherit from it.
15380
153812008-02-01 Kenichi Handa <handa@m17n.org>
15382
15383 * alloc.c (NSTATICS): Increas to 0x600.
15384
153852008-02-01 Kenichi Handa <handa@m17n.org>
15386
15387 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
15388 (ftfont_list): Don't check :name property.
15389 (ftfont_match): New function.
15390 (ftfont_pattern_entity): If the pattern doesn't contain
15391 FC_SPACING, don't assume FC_MONO.
15392
15393 * font.h (struct font_driver): New member `match'.
15394 (font_update_drivers): Adjust prototype.
15395
15396 * font.c (font_parse_fcname, font_parse_name): Don't change :name
15397 property of FONT.
15398 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
15399 them unconditionally.
15400 (font_matching_entity): New function.
15401 (font_open_by_name): Try font_matching_entity if exact match is
15402 not found.
15403 (font_update_drivers): Delete the arg FONT. Return a list of
15404 actually used backends. Don't free faces, font caches here.
15405 Don't store data in frame parameters. Don't call x_set_font.
15406 (Ffont_spec): Store :name property as is.
15407 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
15408 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
15409 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
15410 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
15411 Call font->driver->otf_gsub instead of font_otf_gsub.
15412
15413 * frame.c (x_set_font_backend): Do more works that were done in
15414 font_update_drivers before.
15415
15416 * xfont.c (xfont_match): New function.
15417 (xfont_driver): Set xfont_driver.match to xfont_match.
15418 (xfont_draw): Set font in GC if necessary.
15419
15420 * ftxfont.c (ftxfont_match): New function.
15421 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
15422
15423 * xftfont.c (xftfont_match): New function.
15424 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
15425
154262008-02-01 Kenichi Handa <handa@m17n.org>
15427
15428 * font.h (struct font): New member scalable.
15429 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
15430 (font_otf_gsub): Adjust prototype.
15431
15432 * font.c (font_otf_capability): Fix handling of the default langsys.
15433 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
15434 Check the contents of SPEC.
15435 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
15436 (check_gstring): New function.
15437 (REPLACEMENT_CHARACTER): New macro.
15438 (font_otf_gsub): New arg alternate_subst. Be sure to set all
15439 glyph codes of GSTRING.
15440 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
15441 (font_prepare_composition): Set cmp->glyph_len.
15442 (font_open_entity): Set font->scalable.
15443 (Ffont_get): Handle :otf property.
15444 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
15445 functions.
15446 (Fquery_font): Use font->font.full_name.
15447 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
15448 Sfont_otf_alternates.
15449
15450 * ftfont.c (ftfont_open): Set font->font.full_name and
15451 font->font.name properly. Fix calculation of font->font.height
15452 and font->min_width.
15453
15454 * ftxfont.c (ftxfont_create_gcs): New function.
15455 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
15456 (ftxfont_draw_backgrond): Fix filling region.
15457 (ftxfont_default_fid): New function.
15458 (ftxfont_open): Set xfont->fid to the return value of
15459 ftxfont_default_fid.
15460 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
15461 (ftxfont_done_face): Free only GCs that are created by
15462 ftxfont_create_gcs.
15463 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
15464
15465 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
15466 Clip to src->width, etc (not src->clip_XXX).
15467
15468 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
15469 FontBackend frame parameter.
15470
154712008-02-01 Kenichi Handa <handa@m17n.org>
15472
15473 * font.h (struct font_driver_list): New member `on'.
15474 (Fclear_font_cache): EXFUN it.
15475 (font_update_drivers): Extern it.
15476
15477 * font.c (font_unparse_fcname): Fix typo (swidth->width).
15478 (font_list_entities): Check driver_list->on.
c0943d3d 15479 (register_font_driver): Initialize `on' member to 0.
aac0c6e3
MR
15480 (font_update_drivers): New function.
15481 (Fclear_font_cache): Check driver_list->on.
15482
15483 * frame.h (Qfont_backend): Extern it.
15484 (x_set_font_backend): Extern it.
15485
15486 * frame.c (Qfont_backend): New variable.
15487 (frame_parms): New element for font-backend.
15488 (x_set_font_backend): New function.
15489
15490 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
15491 FontBackend frame parameter.
15492 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
15493 x_set_font_backend.
15494
15495 * xfont.c (xfont_list): Don't try listing by :name property if the
15496 name is not for XLFD.
15497
154982008-02-01 Kenichi Handa <handa@m17n.org>
15499
15500 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
15501 (LGLYPH_SET_TO): New macros.
15502 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
15503 element of G is vector or not.
15504 (font_at): Extern it.
15505
15506 * font.c: Include window.h.
15507 (font_lispy_object): New function.
15508 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
15509 end of valid glyph.
15510 (font_close_object): Fix getting (struct font *).
15511 (font_at): New function.
15512 (Ffont_get): If FONT is a font-object, get entity from it.
15513 (Ffont_make_gstring): Initialize elements of glyphs with nil.
15514 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
15515 range check.
15516 (Ffont_at): New function.
15517 (syms_of_font): Defsubr Sfont_at.
15518
15519 * xdisp.c (it_props): Move the entry for Qauto_composed to just
15520 before the entry for Qcomposition.
15521 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
15522 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
15523 the font in gstring.
15524 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
15525 LGLYPH_FORM (g) to detect the end of valid glyph.
15526 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
15527 we are composing with gstring.
15528
15529 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
15530 Check if adjustment is vector or not.
15531
15532 * Makefile.in (font.o): Make it depends on window.h.
15533
155342008-02-01 Kenichi Handa <handa@m17n.org>
15535
15536 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
15537 adjustment is vector or not.
15538
155392008-02-01 Miles Bader <miles@gnu.org>
15540
15541 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
15542
155432008-02-01 Kenichi Handa <handa@m17n.org>
15544
15545 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
15546 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
15547 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
15548
15549 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
15550 (DEVICE_DELTA): Fix typo.
15551 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
15552 LGLYPH format.
15553
15554 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
15555 the change of LGLYPH format.
15556
155572008-02-01 Kenichi Handa <handa@m17n.org>
15558
15559 * ftfont.c (ftfont_list): Fix typo.
15560 (ftfont_build_basic_charsets): Don't include letters with diacritics.
15561
155622008-02-01 Jan Djärv <jan.h.d@swipnet.se>
15563
15564 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
15565
15566 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
15567 xftface_info is non-NULL.
15568
155692008-02-01 Jan Djärv <jan.h.d@swipnet.se>
15570
15571 * ftfont.c (ftfont_list): Move misplaced #endif.
15572
155732008-02-01 Kenichi Handa <handa@m17n.org>
15574
15575 * ftfont.c (ftfont_list): Pay attention to the case that
15576 FC_CAPABILITY is not defined.
15577
155782008-02-01 Kenichi Handa <handa@m17n.org>
15579
15580 * xftfont.c (xftfont_open): Set charset related members to -1.
15581
15582 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
15583 QCname.
15584 (ftfont_open): Set charset related members to -1.
15585
15586 * fontset.c (Votf_script_alist): New variable.
15587 (syms_of_fontset): Initialize it.
15588 (fontset_font): Delete unused variable.
15589
15590 * fontset.h (Votf_script_alist): Extern it.
15591
15592 * font.c (font_find_for_lface): Optimize code.
15593
15594 * font.h (font_close_object, font_merge_old_spec): Extern them.
15595
155962008-02-01 Kenichi Handa <handa@m17n.org>
15597
15598 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
15599 (syms_of_font): Initialize them.
15600 (font_pixel_size): Allow float value in dpi.
15601 (font_prop_validate_type): Delete.
15602 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
15603 Change caller.
15604 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
15605 (font_prop_validate_extra): Delete.
15606 (font_prop_validate_spacing): New function.
15607 (font_property_table): Add elements for all known properties.
15608 (get_font_prop_index): Rename from check_font_prop_name. New
15609 argument FROM. Change caller.
15610 (font_prop_validate): Validate all known properties.
15611 (font_put_extra): Delete argument force. Change caller.
15612 (font_expand_wildcards): Make it static. Fix the way of shrinking
15613 the possible range.
15614 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
15615 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
15616 Change caller.
15617 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
15618 (font_parse_fcname): Delete argument merge. Fix parsing of point
15619 size. Don't validate properties values here. Change caller.
15620 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
15621 (font_open_by_name): Delete unused variable.
15622 (Ffont_spec): Likewise. Validate property values.
15623 (Ffont_match_p): New function.
15624
15625 * font.h (QCscalable): Extern it.
15626 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
15627
15628 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
15629
15630 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
15631 (xfont_list_pattern): New function.
15632 (xfont_list): Use xfont_list_pattern.
15633
156342008-02-01 Kenichi Handa <handa@m17n.org>
15635
15636 * font.h (Flist_fonts): EXFUN it.
15637
156382008-02-01 Jason Rumney <jasonr@gnu.org>
15639
15640 * w32term.c (w32_initialize): Add back smoothing_type and
15641 smoothing_enabled definitions.
15642
156432008-02-01 Kenichi Handa <handa@m17n.org>
15644
15645 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
15646 s->face->font on determining underline position.
15647
156482008-02-01 Kenichi Handa <handa@m17n.org>
15649
15650 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
15651 (font_has_char): Accept font-object too.
15652 (font_find_for_lface): Try at first with a size specified in face.
15653
156542008-02-01 Kenichi Handa <handa@m17n.org>
15655
15656 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
15657 font_open_by_name.
15658
156592008-02-01 Kenichi Handa <handa@m17n.org>
15660
15661 * font.h (QCspacing, QCdpi): Extern them.
15662 (enum font_spacing): New enum.
15663 (FONT_PIXEL_SIZE_QUANTUM): New macro.
15664
15665 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
15666 (QCspacing, QCdpi): New variables.
15667 (syms_of_font): Initialize them.
15668 (font_pixel_size): New function.
15669 (font_put_extra): New function.
15670 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
15671 in FONT_EXTRA.
15672 (font_parse_fcname): Handle enumerated values (e.g. bold).
15673 Fix handling font size. Add QCname property that contains only
15674 unknown properties.
15675 (font_score): Change argument. Change caller. Pay attention to
15676 FONT_PIXEL_SIZE_QUANTUM.
15677 (font_sort_entites, font_list_entities, font_find_for_lface)
15678 (font_open_for_lface, font_open_by_name): Fix handling of font size.
15679 (Ffont_spec): Add QCname property that contains only unknown properties.
15680
15681 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
15682 include weight in listing pattern, instead check weight of each
15683 listed font. Don't include scalable in pattern. Pay attention to
15684 FONT_PIXEL_SIZE_QUANTUM.
15685
156862008-02-01 Kenichi Handa <handa@m17n.org>
15687
15688 * font.c (font_parse_fcname): Fix parsing of point-size.
15689 (font_unparse_fcname): Produce symbolic names for style properties.
15690 (font_list_entities): Handle float size correctly.
15691 (font_open_by_name): Prefer `normal' property values if the name
15692 doesn't specify them.
15693
15694 * fontset.c (Finternal_char_font): Use font_get_name, not
15695 Ffont_xlfd_name.
15696
15697 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
15698 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
15699 pattern. Don't force scalable.
15700
15701 * xftfont.c (xftfont_open): For generating a name, start from
15702 96-byte buffer.
15703
157042008-02-01 Jan Djärv <jan.h.d@swipnet.se>
15705
15706 * frame.h (x_new_fontset2): Fix prototype.
15707
157082008-02-01 Kenichi Handa <handa@m17n.org>
15709
15710 * font.h (struct font_driver): Delete member parse_name.
15711 (font_match_p, font_get_spec, font_parse_fcname)
15712 (font_unparse_fcname): Extern them.
15713 (font_get_name): Adjust prototype.
15714
15715 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
15716 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
15717 (font_expand_wildcards): Fix handling ENCODING field. Avoid
15718 unnecessary checks for weight, slant, and swidth.
15719 (font_parse_fcname): New function.
15720 (font_unparse_fcname): New function.
15721 (font_parse_name): New function.
15722 (font_match_p): New function.
15723 (font_get_name): Change return value to Lisp string.
15724 (font_get_spec): New function.
15725 (Qunspecified, Qignore_defface): Don't extern them.
15726 (font_find_for_lface): Assume that LFACE is fully specified.
15727 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
15728 object, use it for FACE.
15729 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
15730 driver->parse_name.
15731 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
15732
15733 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
15734 prototype.
15735
15736 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
15737 argument F. Don't call Fnew_fontset. Instead, directly call
15738 make_fontset.
15739
15740 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
15741
15742 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
15743 of x_new_fontset2.
15744
15745 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
15746 (Qsans__serif): New variables.
15747 (ftfont_generic_family_list): New variable.
15748 (syms_of_ftfont): Initialize the above variables.
15749 (ftfont_pattern_entity): Delete argument NAME.
15750 (ftfont_list_generic_family): New function.
15751 (ftfont_parse_name): Delete this function.
15752 (ftfont_list): Try generic family only when FcFontList found no font.
15753 (ftfont_list_family): Fix args to FcObjectSetBuild.
15754
15755 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
15756 object in attrs[LFACE_FONT_INDEX].
15757 (set_lface_from_font_name): Cancel all changes for font-backend.
15758 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
15759 function.
15760 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
15761 font object in QCfont attribute.
15762 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
15763 (realize_default_face) [USE_FONT_BACKEND]: Call
15764 set_lface_from_font_and_fontset.
15765
15766 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
15767 "fixed", and signal error here if no suitable font was found.
15768
15769 * xfont.c (xfont_parse_name): Delete this function.
15770
15771 * xftfont.c (xftfont_open): Change coding style of error
15772 handling. Generate fontconfig's fontname pattern.
15773
15774 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
15775 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
15776
15777 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
15778 Both args FONTSET and FONT_OBJECT must be existing ones.
15779
157802008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15781
15782 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
15783
157842008-02-01 Kenichi Handa <handa@m17n.org>
15785
15786 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
15787
15788 * font.h (struct font): Fix typo.
15789
15790 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
15791 XLFD_XXX_INDEX.
15792 (enum xlfd_field_mask): New enum.
15793 (intern_font_field): Changed argument. Change caller. If digits
15794 are followed by non-digits, return a symbol.
15795 (font_expand_wildcards): New function.
15796 (font_parse_xlfd): Fix wildcard handling.
15797 (Ffont_spec): If :name is specified, reflect the info in the other
15798 properties.
15799
15800 * ftfont.c (ftfont_pattern_entity): Fix typo.
15801 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
15802 locale.
15803
158042008-02-01 Kenichi Handa <handa@m17n.org>
15805
15806 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
15807
15808 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
15809 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
15810 registry doesn't specify encoding part.
15811 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
15812 (font_open_by_name): At first try parsing the name.
15813 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
15814 as Lisp symbols.
15815
15816 * fontset.c (reorder_font_vector): Pay attention to the case that
15817 the 3rd element of font_def is nil.
15818 (fontset_font): For the default fontset, append one more fontset
15819 elements for a script-based font specification. Don't add script
15820 attribute on finding a font.
15821 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
15822 font name.
15823 (fontset_ascii_font): If a font can't be opened, return nil.
15824
15825 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
15826 (ftfont_pattern_entity): New function.
15827 (ftfont_get_cache): Assume that freetype_font_cache is already
15828 initialized.
15829 (ftfont_list): Handle the case that a file is specified in font
15830 name. Use ftfont_pattern_entity to generate entities.
15831 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
15832 (syms_of_ftfont): Initialize freetype_font_cache.
15833
15834 * xftfont.c (xftfont_open): Make the font name fontconfig's
15835 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
15836 (xftfont_close): Free font->font.name if not NULL.
15837
15838 * xfont.c (xfont_list): If script is specified for a font, return
15839 null_vector.
15840 (xfont_list_family): Declare argument type.
15841
15842 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
15843 name, set LFACE_FONT (lface) to nil.
15844
15845 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
15846 return Qnil.
15847
158482008-02-01 Kenichi Handa <handa@m17n.org>
15849
15850 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
15851 (standard_args): Add "-enable-font-backend".
15852
158532008-02-01 Kenichi Handa <handa@m17n.org>
15854
15855 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
15856 (struct xftdraw_list, xftdraw_list): Delete them.
15857 (register_xftdraw, check_xftdraw): Delete them.
15858 (xftfont_prepare_face): Don't call register_xftdraw.
15859 (xftfont_done_face): Don't call check_xftdraw.
15860 (xftfont_draw): Get background color only when with_background is
15861 nonzero.
15862
15863 * xfont.c (xfont_encode_char): Fix calculation of char2b.
15864
158652008-02-01 Kenichi Handa <handa@m17n.org>
15866
15867 These changes are for the new font handling codes.
15868
15869 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
15870 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
15871 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
15872 (FONTSRC, FONTOBJ): New variables.
15873 (obj): Add $(FONTOBJ).
15874 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
15875 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
15876 @LIBOTF_LIBS@.
15877 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
15878 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
15879
15880 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
15881
15882 * character.h (Vscript_representative_chars): Extern it.
15883
15884 * character.c (Vscript_representative_chars): New variable.
15885 (syms_of_character): Declare it as a Lisp variable.
15886
15887 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
15888 enable_font_backend is nonzero, accept the composition method
15889 COMPOSITION_WITH_GLYPH_STRING.
15890
15891 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
15892 enumeration COMPOSITION_WITH_GLYPH_STRING.
15893
15894 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
15895 members clip_x, clip_y, clip_width, and clip_height.
15896 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
15897
15898 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
15899 --enable-font-backend. Call syms_of_font.
15900
15901 * fns.c (assoc_no_quit): New function.
15902
15903 * fontset.h (FONT_INFO_FROM_FACE): New macro.
15904 (face_for_font, new_fontset_from_font)
15905 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
15906
15907 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
15908 (fontset_font, fontset_ascii, face_for_char)
15909 (make_fontset_for_ascii_face, Ffont_info)
15910 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
15911 is nonzero, use font-backend mechanism.
15912 (find_font_encoding): Make it non-static.
15913 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
15914 New functions.
15915
15916 * frame.h (struct frame): New members resx and resy.
15917 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
15918 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
15919
15920 * frame.c [USE_FONT_BACKEND]: Include "font.h".
15921 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
15922
15923 * lisp.h (assoc_no_quit): Extern it.
15924
15925 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
15926 Through out the file, use FONT_INFO_FROM_FACE instead of
15927 FONT_INFO_FROM_ID, use get_per_char_metric instead of
15928 rif->per_char_metric.
15929 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
15930 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
15931 (get_glyph_face_and_encoding, fill_composite_glyph_string)
15932 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
15933 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
15934 nonzero, use font-backend mechanism.
15935 (get_per_char_metric): New function.
15936
15937 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
15938 (set_lface_from_font_name)
15939 (set_font_frame_param, free_realized_face)
15940 (prepare_face_for_display, clear_face_gcs)
15941 (Finternal_set_font_selection_order, realize_x_face)
15942 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
15943 font-backend mechanism.
15944 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
15945 (load_face_font) [USE_FONT_BACKEND]: Abort.
15946 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
15947 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
15948
15949 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
15950 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
15951 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
15952 nonzero, register all available font drivers. Call
15953 x_default_font_parameter for deciding a font.
15954 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
15955
15956 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
15957 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
15958 (x_set_glyph_string_clipping_exactly)
15959 (x_compute_glyph_string_overhangs)
15960 (x_draw_glyph_string_foreground)
15961 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
15962 (x_free_frame_resources) [USE_FONT_BACKEND]: If
15963 enable_font_backend is nonzero, use font-backend mechanism.
15964 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
15965
159662008-02-01 Kenichi Handa <handa@m17n.org>
15967
15968 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
15969 system_eol_type.
15970 (syms_of_coding): Initialize system_eol_type.
15971
15972 * process.c (Fset_process_coding_system): Inherit system's eol
15973 format if necessary.
15974
159752008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15976
15977 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
15978
159792008-02-01 Kenichi Handa <handa@m17n.org>
15980
15981 * coding.c (decode_eol): Pay attention to buffer relocation in
15982 del_range_2.
15983 (decode_coding): Call decode_eol before restoring undo_list.
15984
159852008-02-01 Kenichi Handa <handa@m17n.org>
15986
15987 * charset.c (Fdefine_charset_internal): Fix setting of
15988 emacs_mule_bytes.
15989
159902008-02-01 Kenichi Handa <handa@m17n.org>
15991
15992 * keyboard.c (read_char): Check if C is a character or not before
15993 looking up Vkeyboard_translate_table.
15994
159952008-02-01 Kenichi Handa <handa@m17n.org>
15996
15997 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
15998 condition to terminate the loop.
15999
160002008-02-01 Kenichi Handa <handa@m17n.org>
16001
16002 * coding.c (produce_composition): Compare charbuf[i] instead of
16003 args[i] against 0.
16004 (Fterminal_coding_system): Use EQ to compare Lisp objects.
16005
160062008-02-01 Kenichi Handa <handa@m17n.org>
16007
16008 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
16009 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
16010 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
16011 detect_coding.
16012 (emacs_mule_char): Handle old style (Emacs 20) component character
16013 of a composition.
16014 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
16015 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
16016 composition rule.
16017 (decode_coding_emacs_mule): Handle invalid bytes correctly.
16018
160192008-02-01 Kenichi Handa <handa@m17n.org>
16020
16021 * coding.c (encode_coding_ccl): Allocate destination dynamically
16022 when necessary.
16023
160242008-02-01 Kenichi Handa <handa@m17n.org>
16025
16026 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
16027 the loop. When quitted, show a proper error message.
16028
160292008-02-01 Kenichi Handa <handa@m17n.org>
16030
16031 * xterm.c (x_set_glyph_string_clipping_exactly): Set
16032 src->clip_head and src->clip_tail temporarily instead of src->hl.
16033
16034 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
16035 character sequence.
16036 (Fccl_execute_on_string): Use ASET, not XSET.
16037
160382008-02-01 Kenichi Handa <handa@m17n.org>
16039
16040 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
16041
160422008-02-01 Kenichi Handa <handa@m17n.org>
16043
16044 * coding.c (decode_coding): Fix the condition of terminating the
16045 decoding loop.
16046
160472008-02-01 Kenichi Handa <handa@m17n.org>
16048
16049 * data.c (Faset): On setting a character bigger than 255 in a
16050 unibyte string, signal an error instead of make the string multibyte.
16051
160522008-02-01 Kenichi Handa <handa@m17n.org>
16053
16054 * charset.c (map_charset_chars): Fix for ascii-compatible charset
16055 made by a mapping table.
16056
160572008-02-01 Kenichi Handa <handa@m17n.org>
16058
16059 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
16060 not.
16061 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
16062 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
16063
16064 * xterm.c (x_draw_composite_glyph_string_foreground): Check
16065 s->face is NULL or not.
16066
160672008-02-01 Kenichi Handa <handa@m17n.org>
16068
16069 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
16070 (x_draw_glyph_string): Fix drawing of right_overhang and
16071 left_overhang around/on cursor.
16072
16073 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
16074
160752008-02-01 Kenichi Handa <handa@m17n.org>
16076
16077 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
16078
160792008-02-01 Kenichi Handa <handa@m17n.org>
16080
16081 * coding.c (Fdefine_coding_system_internal)
16082 (Fdefine_coding_system_alias): Avoid a duplicated element in
16083 Vcoding_system_alist.
16084
160852008-02-01 Kenichi Handa <handa@m17n.org>
16086
16087 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
16088
16089 * coding.c (Qcoding_system_define_form): New variable.
16090 (syms_of_coding): Intern and staticpro it.
16091 (Fcoding_system_p): Check Qcoding_system_define_form.
16092 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
16093
16094 * coding.h (CODING_SYSTEM_P): If ID is not available, call
16095 Fcoding_system_p.
16096 (CHECK_CODING_SYSTEM): If ID is not available, call
16097 Fcheck_coding_system.
16098 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
16099 Try also Fcheck_coding_system.
16100
161012008-02-01 Kenichi Handa <handa@m17n.org>
16102
16103 * coding.c (code_conversion_restore): GCPRO arg.
16104
161052008-02-01 Kenichi Handa <handa@m17n.org>
16106
16107 * character.c (lisp_string_width): Check multibyteness of STRING.
16108
161092008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16110
16111 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
16112 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
16113 (decode_mac_font_name): Use decode_coding_c_string instead of
16114 decode_coding.
16115 (x_load_font): Initialize fontp->fontset to -1. Set
16116 fontp->encoding_type.
16117
161182008-02-01 Kenichi Handa <handa@m17n.org>
16119
16120 * search.c (search_buffer): Give up BM search on case-fold-search
16121 if one of a target character has a case-equivalence of different
8307f923 16122 byte length even if that target character is an ASCII.
aac0c6e3
MR
16123 (simple_search): Fix calculation of byte length of matched text.
16124 (boyer_moore): Fix handling of case-equivalent multibyte characters.
16125
161262008-02-01 Kenichi Handa <handa@m17n.org>
16127
16128 * coding.c (decode_coding): Fix handling of invalid bytes.
16129
161302008-02-01 Kenichi Handa <handa@m17n.org>
16131
16132 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
16133 Unicode characters.
16134
161352008-02-01 Kenichi Handa <handa@m17n.org>
16136
16137 * coding.c (encode_coding_object): If a pre-write-conversion
16138 function makes a new buffer, kill it.
16139
161402008-02-01 Kenichi Handa <handa@m17n.org>
16141
16142 * coding.c (QCascii_compatible_p): New variable.
16143 (syms_of_coding): Initialize it.
16144 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
16145 calling string_char.
16146 (record_conversion_result): Add `default:' case.
16147 (coding_charset_list): Delete unused variable `coding_type'.
16148 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
16149 property in the plist of the coding system.
16150 (Fcoding_system_put): Check QCascii_compatible_p.
16151
161522008-02-01 Miles Bader <miles@gnu.org>
16153
16154 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
16155 removed calculation of frame `f', as it's now used.
16156
161572008-02-01 Kenichi Handa <handa@m17n.org>
16158
16159 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
16160 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
16161 (UNIDATA): New variable.
16162 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
16163 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
16164 $(RUN_TEMACS) unconditionally.
16165
161662008-02-01 Kenichi Handa <handa@m17n.org>
16167
16168 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
16169 (admindir): New variable.
16170 ($(lispsource)international/charprop.el): New target.
16171
161722008-02-01 Miles Bader <miles@gnu.org>
16173
16174 * character.c (chars-in-region): Remove obsolete function.
16175 (syms_of_character): Remove its initialization.
16176
161772008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
16178
16179 * w32select.c (validate_coding_system)
16180 (setup_windows_coding_system): New functions.
16181 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
16182 setup_windows_coding_system.
16183 (setup_config, Fw32_get_clipboard_data): Use
16184 validate_coding_system.
16185 (Fx_selection_exists): Move call to setup_config to a place
16186 where signals are allowed.
16187
16188 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
16189 (Fcheck_coding_system): Add declarations.
16190
161912008-02-01 Kenichi Handa <handa@m17n.org>
16192
16193 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
16194
161952008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16196
16197 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
16198 string as the second argument for x_new_fontset.
16199
162002008-02-01 Kenichi Handa <handa@m17n.org>
16201
16202 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
16203 (encode_coding_object): Use safe_call instead of call2.
16204
162052008-02-01 Kenichi Handa <handa@m17n.org>
16206
16207 * fontset.c (Fset_fontset_font): Check family element of a given vector.
16208
16209 * Makefile.in (lisp): Include charprop.el.
16210
162112008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16212
16213 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
16214 Not sure if it's unnecessary.
16215
162162008-02-01 Steven Tamm <steventamm@mac.com>
16217
16218 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
16219 some possibly unnecessary fontset checking code that crashed
16220 when creating a new frame.
16221
162222008-02-01 Kenichi Handa <handa@m17n.org>
16223
16224 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
16225 lookup_face.
16226
16227 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
16228
16229 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
16230
162312008-02-01 Kenichi Handa <handa@m17n.org>
16232
16233 * coding.c: Cancel the change done in HEAD on 2008-02-01.
16234 (coding_charset_list): New function.
16235
16236 * coding.h (coding_charset_list): Extern it.
16237
162382008-02-01 Kenichi Handa <handa@m17n.org>
16239
16240 * fontset.c (Fset_fontset_font): Call find_font_encoding with
16241 concatenation of family and registry.
16242
162432008-02-01 Kenichi Handa <handa@m17n.org>
16244
16245 * character.h (BYTE8_STRING): Fix typo.
16246
16247 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
16248 string to multibyte (sync to HEAD).
16249
16250 * casefiddle.c (casify_region): Handle changes in byte-length
16251 using replace_range_2 (sync to HEAD).
16252
162532008-02-01 Andreas Schwab <schwab@suse.de>
16254
16255 * chartab.c (map_char_table): GCPRO table and arg.
16256
162572008-02-01 Kenichi Handa <handa@m17n.org>
16258
16259 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
16260 already at limit.
16261
162622008-02-01 Kenichi Handa <handa@m17n.org>
16263
16264 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
16265 instead of fast_c_string_match_ignore_case.
16266 (find_font_encoding): Change argument to Lisp_Object. Use
16267 fast_string_match_ignore_case instead of
16268 fast_c_string_match_ignore_case. Change caller.
16269
162702008-02-01 Kenichi Handa <handa@m17n.org>
16271
16272 * xdisp.c (get_next_display_element): In unibyte case, decide to
16273 display in octal form by checking a character by
16274 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
16275
16276 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
16277
16278 * character.c (unibyte_has_multibyte_table): New variable.
16279
16280 * character.h (unibyte_has_multibyte_table): Extern it.
16281 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
16282
162832008-02-01 Kenichi Handa <handa@m17n.org>
16284
16285 * coding.c (encode_coding_iso_2022): Fix handling of charset
16286 annotation.
16287
162882008-02-01 Kenichi Handa <handa@m17n.org>
16289
16290 * coding.c (setup_coding_system): If coding_system is nil, use
16291 Qundecided.
16292 (Fterminal_coding_system): Return nil if terminal coding system is
16293 `undecided'.
16294 (syms_of_coding): Define coding-system `undecided' here. Setup
16295 terminal_coding as `undecided'.
16296
162972008-02-01 Kenichi Handa <handa@m17n.org>
16298
16299 * xdisp.c (message_dolog, set_message_1): Call
16300 unibyte_char_to_multibyte with arg type int.
16301
16302 * lread.c (read1): Fix reading of a char-table.
16303
16304 * print.c (print_object): Include sub char-table in circularities
16305 detection.
16306
163072008-02-01 Kenichi Handa <handa@m17n.org>
16308
16309 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
16310 Append the found sequences in car of ARGS instead of prepending.
16311
163122008-02-01 Kenichi Handa <handa@m17n.org>
16313
16314 * fileio.c (report_file_error): Make a unibyte string from
16315 strerror (errorno).
16316 (Fsubstitute_in_file_name): Fix the arg to
16317 unibyte_char_to_multibyte. It is evaluated twice.
16318
163192008-02-01 Kenichi Handa <handa@m17n.org>
16320
16321 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
16322
163232008-02-01 Kenichi Handa <handa@m17n.org>
16324
16325 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
16326 BOM is not found.
16327 (detect_coding, detect_coding_system): Optimization for ISO-2022
16328 when no 8-bit data is found.
16329
163302008-02-01 Jason Rumney <jasonr@gnu.org>
16331
16332 * w32fns.c (x_to_w32_font): Update to use new coding struct.
16333
163342008-02-01 Kenichi Handa <handa@m17n.org>
16335
16336 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
16337 CHARS.
16338
163392008-02-01 Steven Tamm <steventamm@mac.com>
16340
16341 * macterm.c (mac_encode_char): Add charset argument and update
16342 to use encoding_type.
16343 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
16344 switch to pure fontset.
16345 (decode_mac_font_name): Temporarily remove decoding.
16346 (x_font_name_to_mac_font_name): Temporarily remove encoding.
16347 (x_load_font): Temporarily remove encoding.
16348
163492008-02-01 Kenichi Handa <handa@m17n.org>
16350
16351 * xfaces.c (Fface_font): If frame is not on a window system,
16352 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
16353 refer to face->font.
16354 (split_font_name_into_vector, build_font_name_from_vector)
16355 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
16356 when HAVE_WINDOW_SYSTEM is defined.
16357
163582008-02-01 Kenichi Handa <handa@m17n.org>
16359
16360 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
16361 (x_produce_glyphs): Fix setting of members of cmp in case
16362 cmp->glyph_len is zero.
16363
16364 * fontset.c (Fset_fontset_font): Fix docstring.
16365 (Ffontset_info): Make it backward compatible. New arg ALL.
16366
163672008-02-01 Kim F. Storm <storm@cua.dk>
16368
16369 * process.c (read_process_output): Grow decoding_buf when needed;
16370 this could cause a crash in allocate_string and compact_small_strings.
16371
163722008-02-01 Kenichi Handa <handa@m17n.org>
16373
16374 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
16375
163762008-02-01 Kenichi Handa <handa@m17n.org>
16377
16378 * coding.c (setup_coding_system): Set coding->common_flags
16379 correctly for raw-text.
16380 (consume_chars): On encoding unibyte text by raw-text, don't check
16381 multibyte form.
16382 (encode_coding): On encoding by raw-text, never use translation tables.
16383
16384 * fileio.c (e_write): Short cut for the case of no encoding.
16385
163862008-02-01 Kenichi Handa <handa@m17n.org>
16387
16388 * coding.c (detect_coding, detect_coding_system): Delete unused
16389 variables.
16390
163912008-02-01 Kenichi Handa <handa@m17n.org>
16392
16393 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
16394 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
16395
163962008-02-01 Kenichi Handa <handa@m17n.org>
16397
16398 * coding.c (Ffind_coding_systems_region_internal): Include
16399 raw-text and no-conversion in the result.
16400
164012008-02-01 Kenichi Handa <handa@m17n.org>
16402
16403 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
16404 (load_font_get_repertory): Delete unnecessary check of ENCODING of
16405 FONT_DEF.
16406 (font_def_arg, add_arg, from_arg, to_arg): New args.
16407 (set_fontset_font): Change argument.
16408 (Fset_fontset_font): Fix for the case that TARGET is a script
16409 name and charset name.
16410 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
16411
164122008-02-01 Kenichi Handa <handa@m17n.org>
16413
16414 * fontset.c (fontset_font): Rename from fontset_face. Change return
16415 value.
16416 (face_suitable_for_char_p, face_for_char): Adjust for the change
16417 of fontset_font.
16418 (make_fontset_for_ascii_face): Fix setting of the fontset element
16419 for ASCII.
16420 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
16421 to get a font name.
16422 (Ffontset_info): Adjust for the change of fontset_font.
16423
16424 * coding.c (emacs_mule_char): Check invalid code more rigidly.
16425
16426 * character.h (LEADING_CODE_LATIN_1_MIN)
16427 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
16428
164292008-02-01 Kenichi Handa <handa@m17n.org>
16430
16431 * editfns.c (check_translation): New function.
16432 (Ftranslate_region_internal): Handle M:N mapping.
16433
164342008-02-01 Kenichi Handa <handa@m17n.org>
16435
16436 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
16437
164382008-02-01 Kenichi Handa <handa@m17n.org>
16439
16440 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
16441 goto invalid_code.
16442 (decode_coding_iso_2022): Fix handling of invalid designation.
16443
16444 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
16445 after calling code_conversion_save.
16446
164472008-02-01 Kenichi Handa <handa@m17n.org>
16448
16449 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
16450
16451 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
16452
16453 * fontset.c: Include "intervals.h".
16454 (fontset_face): Fix comparing of Lisp_Objects.
16455 (free_face_fontset, new_fontset_from_font_name): Fix
16456 Lisp_Object/int mixup.
16457
16458 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
16459
16460 * coding.c: Add many prototypes for static functions.
16461 (get_translation_table): Allow max_lookup to be NULL.
16462 (decode_coding, Ffind_coding_systems_region_internal)
16463 (Funencodable_char_position, Fcheck_coding_systems_region): Call
16464 get_translation_table with max_lookup NULL.
16465
164662008-02-01 Kenichi Handa <handa@m17n.org>
16467
16468 * coding.c (get_translation_table): Declare it as Lisp_Object.
16469 (LOOKUP_TRANSLATION_TABLE): New macro.
16470 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
16471 instead of CHAR_TABLE_REF.
16472
164732008-02-01 Kenichi Handa <handa@m17n.org>
16474
16475 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
16476 annotation data format.
16477 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
16478 Change arguments FROM and TO to single argument NCHARS. Change caller.
16479 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
16480 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
16481 (decode_coding_ccl, decode_coding_charset): Pay attention to
16482 coding->charbuf_used.
16483 (get_translation): New function.
16484 (produce_chars): New arguments translation_table and last_block.
16485 Translate characters here. Return number of carryover chars.
16486 Change caller.
16487 (produce_composition): New argument pos. Change caller.
16488 Adjust for the change of annotation data format.
16489 (produce_charset, produce_annotation): Likewise.
16490 (decode_coding, encode_coding): Don't call translate_chars.
16491 (consume_chars): New arg translation_table. Change caller.
16492 (translate_chars): Delete.
16493 (syms_of_coding): Make translation-table's number of extra slots 2.
16494
164952008-02-01 Kenichi Handa <handa@m17n.org>
16496
16497 * search.c (simple_search): Fix setting this_pos_byte in backward
16498 search.
16499
16500 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
16501 byte sequence.
16502 (detect_coding_ccl): Fix setting of the variable valids.
16503
165042008-02-01 Kenichi Handa <handa@m17n.org>
16505
16506 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
16507
16508 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
16509
16510 * editfns.c (Ftranslate_region_internal): Rename from
16511 Ftranslate_region. Accept a char-table in TABLE.
16512 (syms_of_editfns): Defsubr Stranslate_region_internal.
16513
16514 * xfaces.c (set_lface_from_font_name): If a font is specified for
16515 a frame, generate a fontset from the font.
16516 (build_scalable_font_name): If the scalable font is requested for
16517 a specific size, don't change that size.
16518 (try_font_list): Try a scalable font also in the case that a
16519 pattern string is specified.
16520
165212008-02-01 Kenichi Handa <handa@m17n.org>
16522
16523 * xfaces.c (Fface_font): New optional arg CHARACTER.
16524
165252008-02-01 Kenichi Handa <handa@m17n.org>
16526
16527 * charset.h (CHARSET_OFFSET): New macro.
16528
165292008-02-01 Kenichi Handa <handa@m17n.org>
16530
16531 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
16532
16533 * fontset.c (fontset_face): Handle the case that repertory is a
16534 char-table.
16535 (find_font_encoding): Return nil for unknown encoding.
16536 (Fset_fontset_font): Ignore a font of unknown encoding.
16537
165382008-02-01 Kenichi Handa <handa@m17n.org>
16539
16540 * keymap.c (describe_vector): Handle default value of a char table.
16541
16542 * fontset.c (fontset_face): Handle fallback fonts correctly.
16543 (Ffontset_info): Return infomation about fallback fonts.
16544
165452008-02-01 Kenichi Handa <handa@m17n.org>
16546
16547 * fontset.c (FONTSET_DEFAULT): New macro.
16548 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
16549 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
16550 the case that it is nil.
16551 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
16552 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
16553
16554 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
16555 subset or superset.
16556
165572008-02-01 Kenichi Handa <handa@m17n.org>
16558
16559 * emacs.c (main): Call init_charset after syms_of_XXX.
16560
16561 * charset.c (Vcharset_map_directory): Delete.
16562 (Vcharset_map_path): New variable.
16563 (load_charset_map_from_file): Use Vcharset_map_path instead.
16564 (init_charset): Initialize Vcharset_map_path.
16565 (syms_of_charset): Delete declaration of "charset-map-directory",
16566 add declaration of "charset-map-path".
16567
165682008-02-01 Kenichi Handa <handa@m17n.org>
16569
16570 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
16571 ASCII only string.
16572
16573 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
16574
16575 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
16576 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
16577
165782008-02-01 Kenichi Handa <handa@m17n.org>
16579
16580 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
16581
16582 * coding.c (QCmnemonic, QCdefalut_char)
16583 (QCdecode_translation_table, QCencode_translation_table)
16584 (QCpost_read_conversion, QCpre_write_conversion): New variables.
16585 (get_translation_table): Return a list of translation tables if
16586 necessary.
16587 (decode_coding): Call get_translation_table with ENCODEP 0.
16588 (char_encodable_p): If translation_table is non-nil, always call
16589 translate_char.
16590 (Fdefine_coding_system_internal): Accept list of translation
16591 tables as :encode-translation-table and :decode-translation-table.
16592 (Fcoding_system_put): New function.
16593 (syms_of_coding): Declare new symbols. Defsubr
16594 Scoding_system_put.
16595 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
16596 typically JISX0212.
16597
16598 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
16599 when the charset is superset type.
16600
16601 * character.c (translate_char): Accept list of translation tables.
16602
166032008-02-01 Kenichi Handa <handa@m17n.org>
16604
16605 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
16606 (CODING_ATTR_TRANS_TBL): New macro.
16607
16608 * coding.c (get_translation_table): New function.
16609 (translate_chars): Fix the bug of skipping annotation data.
16610 (decode_coding, encode_coding): Utilize get_translation_table.
16611 (char_encodable_p, Funencodable_char_position): Translate char if
16612 necessary.
16613 (Ffind_coding_systems_region_internal)
16614 (Fcheck_coding_systems_region): Setup translation table for encode
16615 in a coding system attribute vector in advance.
16616 (Fdefine_coding_system_internal): Allow a symbol as translation
16617 table. For shift-jis type coding system, allow 4th charset.
16618
166192008-02-01 Kenichi Handa <handa@m17n.org>
16620
16621 * coding.c (decode_coding_sjis): Check the first byte rigidly.
16622
16623 * xdisp.c (get_next_display_element): Pass -1 as POS to
16624 FACE_FOR_CHAR if displaying a C-string.
16625
166262008-02-01 Kenichi Handa <handa@m17n.org>
16627
16628 * composite.c (get_composition_id): Handle xoff and yoff in a
16629 composition rule.
16630
16631 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
16632 (struct composition): New member lbearing and rbearing.
16633
16634 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
16635 (x_get_glyph_overhangs): Handle a composition glyph.
16636 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
16637
16638 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
16639 composition glyph.
16640
166412008-02-01 Kenichi Handa <handa@m17n.org>
16642
16643 * print.c: Include charset.h.
16644 (Vprint_charset_text_property): New variable.
16645 (Qdefault): Extern it.
16646 (PRINT_STRING_NON_CHARSET_FOUND)
16647 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
16648 (print_check_string_result): New variable.
16649 (print_check_string_charset_prop): New function.
16650 (print_prune_charset_plist): New variable.
16651 (print_prune_string_charset): New function.
16652 (print_object): Call print_prune_string_charset if
16653 Vprint_charset_text_property is not t.
16654 (print_interval): Print nothing if interval->plist is nil.
16655 (syms_of_print): Declare Vprint_charset_text_property as a lisp
16656 variable. Init and staticpro print_prune_charset_plist.
16657
166582008-02-01 Kenichi Handa <handa@m17n.org>
16659
16660 * fontset.c (new_fontset_from_font_name): Use the specified font
16661 for all characters in the new fontset.
16662
16663 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
16664 OBJECT args.
16665
16666 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
16667 OBJECT args for composition too.
16668
16669 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
16670 OBJECT args.
16671
166722008-02-01 Kenichi Handa <handa@m17n.org>
16673
16674 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
16675
16676 * fontset.c (reorder_font_vector): Adjust for the change of
16677 FONT_DEF format.
16678 (fontset_face): New arg id. Change caller.
16679 (face_for_char): New args pos and object.
16680 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
16681 (fs_query_fontset): Check NAME by Fassoc too.
16682 (Fset_fontset_font): Allow non-XLFD font name.
16683 (Ffontset_info): Adjust for the change of FONT_DEF format.
16684
16685 * fontset.h (face_for_char): Adjust prototype.
16686
16687 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
16688 (append_space, extend_face_to_end_of_line)
16689 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
16690 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
16691
16692 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
16693 POS and OBJECT args.
16694
16695 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
16696 POS and OBJECT args.
16697
166982008-02-01 Jason Rumney <jasonr@gnu.org>
16699
16700 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
16701 of GlobalAlloc'ed memory.
16702
167032008-02-01 Kenichi Handa <handa@m17n.org>
16704
16705 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
16706
16707 * charset.h (charset_table_used): Delete extern.
16708
16709 * charset.c (charset_table_used): Make it static.
16710 (map_charset_chars): Fix args to c_function with.
16711
16712 * chartab.c (map_sub_char_table_for_charset): Fix args to
16713 c_function with.
16714
16715 * coding.h (enum coding_result_code): Delete
16716 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
16717
16718 * coding.c (Qinsufficient_source, Qinconsistent_eol)
16719 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
16720 (Vlast_code_conversion_error): New variables.
16721 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
16722 (ONE_MORE_BYTE): Record error if any instead of signaling an
16723 error. If non-ASCII multibyte char is found, return the negative
16724 value of the code. All callers changed to check it.
16725 (ONE_MORE_BYTE_NO_CHECK): Likewise.
16726 (record_conversion_result): New function. Change all codes setting
16727 coding->result to call this function.
16728 (detect_coding_utf_8, decode_coding_utf_8)
16729 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
16730 Don't use the local variable incomplete.
16731 (emacs_mule_char): Change the second arg to `const'.
16732 (decode_coding): Fix of flushing out unprocessed data.
16733 (make_conversion_work_buffer): Fix making of a work buffer.
16734 (decode_coding_object): Return coding->dst_object.
16735
16736 * fontset.c (set_fontset_font): Fix args.
16737
16738 * lisp.h (CHARACTERBITS): Define as 22.
16739
16740 * process.c (send_process): Be sure to set coding->src_multibyte.
16741
16742 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
16743
167442008-02-01 Kenichi Handa <handa@m17n.org>
16745
16746 * xdisp.c (handle_auto_composed_prop): Give limit to
16747 Fnext_single_char_property_change.
16748
167492008-02-01 Kenichi Handa <handa@m17n.org>
16750
16751 * composite.c (syms_of_composite): Don't make the composition hash
16752 table weak.
16753
16754 * fontset.c (Fset_fontset_font): Fix docstring.
16755
16756 * lisp.h (detect_coding_system): Adjust prototype.
16757
16758 * fileio.c (kill_workbuf_unwind): Delete this function.
16759 (Finsert_file_contents): Adjust the call of detect_coding_system.
16760 Get conversion_buffer by code_conversion_save. Use the macro
16761 CODING_MAY_REQUIRE_DECODING. After decoding, update
16762 coding_system.
16763
16764 * coding.h (make_conversion_work_buffer): Delete extern.
16765 (code_conversion_save): Extern it.
16766
16767 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
16768 (CODING_GET_INFO): Delete argument eol_type. Change callers.
16769 (decode_coding_utf_8): Don't do eol converion.
16770 (detect_coding_utf_16): Check coding->src_chars, not
16771 coding->src_bytes. Add heuristics for those that have no signature.
16772 (decode_coding_emacs_mule, decode_coding_iso_2022)
16773 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
16774 Don't do eol converion.
16775 (adjust_coding_eol_type): Return a new coding system.
16776 (detect_coding): Don't detect eol. Fix for utf-16 detection.
16777 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
16778 each change.
16779 (decode_coding): Pay attention to undo_list. Do eol conversion for
16780 all types of coding-systems (if necessary).
16781 (Vcode_conversion_work_buf_list): Delete it.
16782 (Vcode_conversion_reused_workbuf): Rename from
16783 Vcode_conversion_reused_work_buf.
16784 (Vcode_conversion_workbuf_name): New variable.
16785 (reused_workbuf_in_use): New variable.
16786 (make_conversion_work_buffer): Delete the arg DEPTH.
16787 (code_conversion_restore): Change argument to cons.
16788 (code_conversion_save): Delete the argument BUFFER. Change callers.
16789 (detect_coding_system): New argument src_chars. Change callers.
16790 Fix for utf-16 detection.
16791 (init_coding_once): Don't use ISO_carriage_return.
16792 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
16793 reused_workbuf_in_use.
16794
167952008-02-01 Kenichi Handa <handa@m17n.org>
16796
16797 * keymap.c (store_in_keymap): Pay attention to the case that idx
16798 is a cons specifying a character range.
16799
168002008-02-01 Kenichi Handa <handa@m17n.org>
16801
16802 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
16803 HANDLED_RECOMPUTE_PROPS.
16804
16805 * coding.c (Fdefine_coding_system_internal): Fix checking of
16806 ascii compatibility.
16807
168082008-02-01 Kenichi Handa <handa@m17n.org>
16809
16810 * charset.c (find_charsets_in_text): Delete unused locale variable.
16811 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
16812
16813 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
16814 Resync charset_list to Vemacs_mule_charset_list.
16815
16816 * keymap.c (store_in_keymap): Pay attention to the case that idx
16817 is a cons specifying a character range.
16818
168192008-02-01 Kenichi Handa <handa@m17n.org>
16820
16821 * composite.c (update_compositions): Bind inhibit-read-only, etc
16822 to t before calling remove-list-of-text-properties.
16823
16824 * print.c (print_object): Always print ASCII chars as is.
16825
168262008-02-01 Kenichi Handa <handa@m17n.org>
16827
16828 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
16829
16830 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
16831 is a char table.
16832
168332008-02-01 Kenichi Handa <handa@m17n.org>
16834
16835 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
16836
168372008-02-01 Kenichi Handa <handa@m17n.org>
16838
16839 * xfaces.c (set_lface_from_font_name): Fix for the case that
16840 FONTNAME is not fontset name.
16841
168422008-02-01 Kenichi Handa <handa@m17n.org>
16843
16844 * fns.c (base64_encode_1): Fix previous change.
16845
168462008-02-01 Kenichi Handa <handa@m17n.org>
16847
16848 * fontset.c (set_fontset_font): New function.
16849 (Fset_fontset_font): If a font is specified for a charset, use
16850 map_charset_chars to store the font spec in a fontset.
16851
168522008-02-01 Kenichi Handa <handa@m17n.org>
16853
16854 * fontset.c (fontset_face): Create a fallback fontset on demand.
16855 (make_fontset): Don't create a fallback fontset here.
16856 (free_face_fontset): Free a fallback fontset (if any) too.
16857 (n_auto_fontsets): Delete this variable.
16858 (auto_fontset_alist): New variable.
16859 (new_fontset_from_font_name): Check auto_fontset_alist.
16860 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
16861 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
16862 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
16863 Defsubr Sfontset_list_all.
16864
168652008-02-01 Kenichi Handa <handa@m17n.org>
16866
16867 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
16868
168692008-02-01 Kenichi Handa <handa@m17n.org>
16870
16871 * fontset.c (Fnew_fontset): Check NAME more rigidly.
16872
168732008-02-01 Kenichi Handa <handa@m17n.org>
16874
16875 * editfns.c (Fgoto_char): Fix docstring.
16876
168772008-02-01 Kenichi Handa <handa@m17n.org>
16878
16879 * insdel.c (insert_from_gap): Adjust intervals correctly.
16880
168812008-02-01 Jason Rumney <jasonr@gnu.org>
16882
16883 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
16884 (pfnGetFontUnicodeRanges): New dynamically loaded function.
16885 (w32_initialize): Try to load it.
16886 (x_get_font_repertory): Use it if available.
16887 (w32_encode_char): Add shortcut for unicode output.
16888
16889 * w32fns.c (w32_load_system_font): Default charset to -1.
16890 (x_to_w32_charset): Match all fonts for unicode.
16891 (w32_to_x_charset): New parameter matching. Don't return partial
16892 or wildcard charsets.
16893 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
16894 (w32_codepage_for_font): Return CP_UNICODE for unicode.
16895 (w32_to_x_font): Match charset to real charset.
16896 (enum_font_cb2): Always list unicode versions.
16897
16898 * makefile.w32-in (temacs): Increase EMHEAP.
16899
169002008-02-01 Jason Rumney <jasonr@gnu.org>
16901
16902 * w32term.c (w32_encode_char): New charset parameter.
16903 font_info.encoding becomes encoding_type.
16904 (x_get_font_repertory): New function. Warning: stub only!
16905 (x_new_font): Return quickly if font already set.
16906 (x_new_fontset): fontsetname parameter is Lisp_Object.
16907 Use new fs_query_fontset. Try new_fontset_from_font_name.
16908 Use fontset_name for return value.
16909
16910 * w32term.h: Declare x_get_font_repertory.
16911
16912 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
16913 place of find_charset_in_text. Use encode_coding_object in place
16914 of encode_coding.
16915 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
16916 decode_coding.
16917
16918 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
16919 of x_new_fontset.
16920 (w32_load_system_font): Initialize charset as unicode.
16921 font_info.encoding becomes encoding_type.
16922 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
16923 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
16924 (syms_of_w32fns): Set get_font_repertory_func.
16925
16926 * w32console.c: Include character.h. Use terminal_encode_buffer
16927 from term.c.
16928 (write_glyphs): Use new version of encode_terminal_code. Use
16929 encode_coding_object in place of encode_coding.
16930
16931 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
16932 encoding becomes encoding_type.
16933
16934 * term.c (terminal_encode_buffer): Make externally visible.
16935
16936 * makefile.w32-in: Add character.h dependancies.
16937 (character.o, chartab.o): New targets.
16938
169392008-02-01 Kenichi Handa <handa@m17n.org>
16940
16941 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
16942 CODING_ID_EOL_TYPE.
16943
169442008-02-01 Andreas Schwab <schwab@suse.de>
16945
16946 * coding.c (produce_chars): Revert last change.
16947
169482008-02-01 Kenichi Handa <handa@m17n.org>
16949
16950 * charset.h (charset_unicode): Extern it.
16951
16952 * charset.c (string_xstring_p): Check by (C >= 0x100).
16953 (find_charsets_in_text): Change format of the arc CHARSETS. New
16954 arg MULTIBYTE.
16955 (Ffind_charset_region, Ffind_charset_string): Adjust for the
16956 change of find_charsets_in_text.
16957 (Fsplit_char): Fix doc. Never return unknown.
16958
16959 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
16960
16961 * coding.c (Fdefine_coding_system_alias): Update
16962 Vcoding_system_list.
16963
16964 * fontset.c (load_font_get_repertory): Pay attention to the case
16965 that ENCODING of a font is specified by a char-table.
16966
16967 * xterm.c (x_get_font_repertory): Handle the case that the
16968 encoding of font is other than Unicode.
16969
169702008-02-01 Kenichi Handa <handa@m17n.org>
16971
16972 * term.c (encode_terminal_code): Don't handle glyph-table. Check
16973 if a character is encodable by the terminal coding system. If
16974 not, produces proper number of `?'s. Update
16975 terminal_encode_buffer and terminal_encode_buf_size if necessary.
16976 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
16977
169782008-02-01 Kenichi Handa <handa@m17n.org>
16979
16980 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
16981 variables.
16982 (encode_terminal_code): Change argument. Encode multiple
16983 characters at once. Store the result of encoding in
16984 terminal_encode_buffer.
16985 (write_glyphs, insert_glyphs): Adjust for the change of
16986 encode_terminal_code.
16987 (term_init): Initialize terminal_encode_buffer and
16988 terminal_encode_buf_size.
16989
16990 * coding.c (consume_chars): If coding->src_object is nil, don't
16991 check annotation.
16992
169932008-02-01 Kenichi Handa <handa@m17n.org>
16994
16995 * character.c (char_string): Use ASCII_CHAR_P instead of
16996 SINGLE_BYTE_CHAR_P.
16997
169982008-02-01 Kenichi Handa <handa@m17n.org>
16999
17000 * xdisp.c (handle_auto_composed_prop): Check if the last
17001 characters of auto-composed region is newly composed with the
17002 following characters.
17003 (handle_composition_prop): Fix checking of point being inside
17004 composition.
17005
170062008-02-01 Kenichi Handa <handa@m17n.org>
17007
17008 * fns.c (concat): Don't change multibyteness of the result by
17009 concatenating an 8-bit character.
17010
17011 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
17012 multibyteness of the result when newelt is an 8-bit character.
17013
170142008-02-01 Dave Love <fx@gnu.org>
17015
17016 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
17017 EMACS_INT.
17018
17019 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
17020
17021 * xfaces.c (face_numeric_value): Declare dim size_t.
17022 (Finternal_lisp_face_equal_p): Remove unused f.
17023
17024 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
17025 (MATRIX_ROW): Remove unused vars.
17026 (draw_glyphs, x_insert_glyphs, fast_find_position)
17027 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
17028 byte/char counts.
17029
17030 * regex.c (regex_compile): Remove unused var.
17031
17032 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
17033
17034 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
17035 (Faccessible_keymaps, where_is_internal): Remove unused vars.
17036
17037 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
17038
17039 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
17040
17041 * fileio.c (Fwrite_region): Remove unused var.
17042
17043 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
17044 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
17045
17046 * composite.c (Fremove_list_of_text_properties): Declare.
17047
17048 * coding.c (inhibit_pre_post_conversion): Remove (unused).
17049 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
17050 (coding_inherit_eol_type): Remove unused attrs.
17051 (detect_coding): Cast arg of detect_eol.
17052
17053 * charset.c (syms_of_charset): Remove unused var p.
17054 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
17055 byte/char counts.
17056
17057 * casetab.c (set_case_table): Remove unused var.
17058
17059 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
17060 unused vars.
17061
170622008-02-01 Dave Love <fx@gnu.org>
17063
17064 * xterm.c (x_bitmap_mask): Declare.
17065
170662008-02-01 Dave Love <fx@gnu.org>
17067
17068 * xterm.c (x_term_init): Fix type error.
17069
17070 * lisp.h: Add Funibyte_char_to_multibyte.
17071
17072 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
17073 (Fset_coding_system_priority): Doc fix.
17074
17075 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
17076
17077 * indent.c (check_composition): Make start and end EMACS_INT.
17078
17079 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
17080
17081 * xdisp.c (handle_composition_prop, check_point_in_composition):
17082 Make buffer positions EMACS_INT.
17083
17084 * composite.c (find_composition, run_composition_function)
17085 (update_compositions, Ffind_composition_internal): Make buffer
17086 positions EMACS_INT.
17087
17088 * composite.h (find_composition, update_compositions): Make
17089 position args EMACS_INT.
17090
17091 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
17092
17093 * intervals.c (get_property_and_range):
17094 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
17095
17096 * unexalpha.c: Don't include varargs.h.
17097
170982008-02-01 Dave Love <fx@gnu.org>
17099
17100 * coding.h (ENCODE_UTF_8): New.
17101
17102 * Makefile.in (gtkutil.o): Depend on coding.h.
17103
17104 * coding.c (Fset_coding_system_priority): Doc fix.
17105
171062008-02-01 Kenichi Handa <handa@m17n.org>
17107
17108 * fileio.c (Finsert_file_contents): Call setup_coding_system in
17109 the case of auto saving.
17110
171112008-02-01 Andreas Schwab <schwab@suse.de>
17112
17113 * chartab.c (map_char_table, map_char_table_for_charset): Protect
17114 `range' from GC.
17115
171162008-02-01 Kenichi Handa <handa@m17n.org>
17117
17118 * coding.c (decode_coding_sjis): Check bytes more rigidly.
17119
171202008-02-01 Kenichi Handa <handa@m17n.org>
17121
17122 * fileio.c (choose_write_coding_system): Return a decided coding system.
17123 (Fwrite_region): Set Vlast_coding_system_used to the return value
17124 of choose_write_coding_system.
17125
171262008-02-01 Kenichi Handa <handa@m17n.org>
17127
17128 * charset.c (Fset_charset_priority): Pay attention to duplicated
17129 arguments.
17130
17131 * coding.c (QCcategory): New variable.
17132 (syms_of_coding): Defsym it. Set all elements of
17133 Vcoding_category_table and their symbol values.
17134 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
17135 coding-category-XXX, and coding-category-list.
17136 (Fdefine_coding_system_internal): Add category in the plist.
17137
171382008-02-01 Kenichi Handa <handa@m17n.org>
17139
17140 * callproc.c (Fcall_process): Handle carryover correctly.
17141
17142 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
17143 (raw_text_coding_system): Check NILP (coding_system).
17144 (coding_inherit_eol_type): Check NILP (coding_system) and
17145 NILP (parent).
17146 (consume_chars): Fix for the case of raw-text.
17147
17148 * process.c (read_process_output): Handle carryover correctly.
17149
171502008-02-01 Dave Love <fx@gnu.org>
17151
17152 * regex.c (re_search_2): Fix last change.
17153
171542008-02-01 Kenichi Handa <handa@m17n.org>
17155
17156 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
17157 target_multibyte. Even in a unibyte case, return a converted
17158 multibyte char.
17159 (GET_CHAR_AFTER): New macro.
17160 (PATFETCH): Translate via multibyte char.
17161 (HANDLE_UNIBYTE_RANGE): Delete this macro.
17162 (SETUP_MULTIBYTE_RANGE): New macro.
17163 (regex_compile): Setup compiled code so that its multibyteness
17164 matches that of a target. Fix the handling of "[X-YZ]" using
17165 SETUP_MULTIBYTE_RANGE.
17166 (analyse_first) <charset>: For filling fastmap for all multibyte
17167 characters, don't check by BASE_LEADING_CODE_P.
17168 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
17169 the same as RE_MULTIBYTE_P (bufp) now.
17170 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
17171 (TARGET_CHAR_AND_LENGTH): Delete this macro.
17172 (TRANSLATE_VIA_MULTIBYTE): New macro.
17173 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
17174 It is the same as RE_MULTIBYTE_P (bufp) now.
17175 <exactn>: Translate via multibyte.
17176 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
17177 translate it.
17178 <charset, charset_not>: Fetch a character by
17179 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
17180 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
17181 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
17182 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
17183 by GET_CHAR_AFTER.
17184 (bcmp_translate): Likewise.
17185
17186 * search.c (compile_pattern): Check the member target_multibyte,
17187 not the member multibyte of buf.
17188
17189 * lread.c (read1): While reading a string, set force_singlebyte
17190 and force_multibyte correctly.
17191
17192 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
17193 up of unibyte_to_multibyte_table.
17194
171952008-02-01 Kenichi Handa <handa@m17n.org>
17196
17197 * coding.c (setup_coding_system): If coding has
17198 post-read-conversion or pre-write-conversion, set
17199 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
17200 respectively.
17201 (decode_coding_gap): Run post-read-conversion if any.
17202
17203 * fileio.c (Finsert_file_contents): Even if we read into a
17204 unibyte buffer, check if we must decode the result or not.
17205
172062008-02-01 Kenichi Handa <handa@m17n.org>
17207
17208 * coding.c (make_conversion_work_buffer): Change the work buffer
17209 name to the same one as that of Emacs 21.
17210
172112008-02-01 Kenichi Handa <handa@m17n.org>
17212
17213 * coding.h (make_conversion_work_buffer): Adjust prototype.
17214 (code_conversion_restore): Don't extern it.
17215
17216 * coding.c (detected_mask): Delete unused variable.
17217 (decode_coding_iso_2022): Pay attention to the byte sequence of
17218 CTEXT extended segment, and retain those bytes as is.
17219 (decode_coding_ccl): Delete unused variable `valids'.
17220 (setup_coding_system): Delete unused variable `category'.
17221 (consume_chars): Delete unused variable `category'. Make it work
17222 for non-multibyte case.
17223 (make_conversion_work_buffer): Change argument.
17224 (saved_coding): Delete unused variable.
17225 (code_conversion_restore): Don't check saved_coding->destination.
17226 (code_conversion_save): New function.
17227 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
17228 instead of record_unwind_protect.
17229 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
17230 (detect_coding_system): Delete unused variable `mask'.
17231 (Fdefine_coding_system_internal): Delete unused variable id.
17232
17233 * fileio.c (kill_workbuf_unwind): New function.
17234 (Finsert_file_contents): On replacing, call
17235 make_conversion_work_buffer with correct args, and call
17236 record_unwind_protect with the first arg kill_workbuf_unwind.
17237
17238 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
17239
172402008-02-01 Kenichi Handa <handa@m17n.org>
17241
17242 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
17243 (fontset_add): Fix for the case that TO is less than TO1.
17244 (Ffontset_info): Don't use fallback fontset on checking the
17245 default fontset.
17246 (dump_fontset): New function for debugging.
17247
17248 * coding.c (Fdefine_coding_system_internal): Fix for the case that
17249 coding_type is Qcharset.
17250
172512008-02-01 Kenichi Handa <handa@m17n.org>
17252
17253 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
17254 (map_char_table): Don't inherit the value from the parent on
17255 initializing VAL. Adjust for the above change.
17256
172572008-02-01 Kenichi Handa <handa@m17n.org>
17258
17259 * coding.c (Qsignature, Qendian): Delete these variables.
17260 (syms_of_coding): Don't initialize them.
17261 (CATEGORY_MASK_UTF_16_AUTO): New macro.
17262 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
17263 detect_info->found.
17264 (decode_coding_utf_16): Don't detect BOM here.
17265 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
17266 is NOT utf_16_without_bom.
17267 (setup_coding_system): For a coding system of type utf-16, check
17268 if the attribute :endian is Qbig or not (not nil or not), and set
17269 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
17270 (detect_coding): If coding type is utf-16 and BOM detection is
17271 required, detect it.
17272 (Fdefine_coding_system_internal): For a coding system of type
17273 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
17274
172752008-02-01 Kenichi Handa <handa@m17n.org>
17276
17277 * coding.c (coding_set_source): Fix for the case that the current
17278 buffer is different from coding->src_object.
17279 (decode_coding_object): Don't use the conversion work buffer if
17280 DST_OBJECT is a buffer.
17281
172822008-02-01 Dave Love <fx@gnu.org>
17283
17284 * lread.c (read_emacs_mule_char) [len==2]: Index
17285 emacs_mule_charset correctly.
17286
172872008-02-01 Dave Love <fx@gnu.org>
17288
17289 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
17290 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
17291 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
17292 treated specially.)
17293 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
17294 (detected_mask): Remove Big5 bits.
17295
172962008-02-01 Kenichi Handa <handa@m17n.org>
17297
17298 The following changes are to make the font rescaling facility
17299 compatible with Emacs 21.
17300
17301 * xfaces.c (Vface_font_rescale_alist): Rename from
17302 Vface_resizing_fonts.
17303 (struct font_name): Rename member resizing_ratio to rescale_ratio.
17304 (font_rescale_ratio): Rename from font_resizing_ratio.
17305 (split_font_name): Set font->rescale_ratio.
17306 (better_font_p): Pay attention to font->rescale_ratio.
17307 (build_scalable_font_name): Likewise. Change RESX, and RESY
17308 fields.
17309 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
17310
173112008-02-01 Kenichi Handa <handa@m17n.org>
17312
17313 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
17314 (Qutf_16_le): Remove these variables.
17315 (syms_of_coding): Don't DEFSYM them.
17316 (decode_coding_utf_16): Fix handling of BOM.
17317 (encode_coding_utf_16): Fix handling of BOM.
17318
173192008-02-01 Kenichi Handa <handa@m17n.org>
17320
17321 * fileio.c (Finsert_file_contents): On replacing, before decoding
17322 the file into the work buffer, set point of the work buffer to the end.
17323
173242008-02-01 Dave Love <fx@gnu.org>
17325
17326 * coding.c (Fcheck_coding_systems_region): Fix type errors.
17327
173282008-02-01 Dave Love <fx@gnu.org>
17329
17330 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
17331 and fix C types.
17332
173332008-02-01 Kenichi Handa <handa@m17n.org>
17334
17335 * xdisp.c (SKIP_GLYPHS): New macro.
17336 (set_cursor_from_row): Pay attention to string display properties.
17337
17338 * category.c (copy_category_entry): Fix for the case that RANGE
17339 is an integer.
17340
17341 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
17342
17343 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
17344
173452008-02-01 Kenichi Handa <handa@m17n.org>
17346
17347 * charset.c (Fcharset_id_internal): New function.
17348 (syms_of_charset): Defsubr it.
17349
17350 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
17351 with the last arg charset_list acquired from coding.
17352 (Fdefine_coding_system_internal): For ccl-based coding system, fix
17353 the attribute coding_attr_ccl_valids.
17354
17355 * coding.h (enum define_coding_ccl_arg_index): Set the first
17356 member coding_arg_ccl_decoder to coding_arg_max.
17357
17358 * ccl.h (ccl_driver): Adjust prototype.
17359
17360 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
17361 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
60612c8f 17362 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
aac0c6e3
MR
17363 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
17364 last arg Qnil.
17365
173662008-02-01 Kenichi Handa <handa@m17n.org>
17367
17368 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
17369 call encode_char.
17370
17371 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
17372
173732008-02-01 Dave Love <fx@gnu.org>
17374
17375 * composite.c (syms_of_composite): Make composition_hash_table weak.
17376
173772008-02-01 Kenichi Handa <handa@m17n.org>
17378
17379 * dispextern.h (check_face_attributes, generate_ascii_font_name)
17380 (font_name_registry): Don't extern them.
17381 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
17382
17383 * fontset.h (Qfontset): Don't extern it.
17384 (new_fontset_from_font_name): Extern it.
17385
17386 * fontset.c: Give 8 extra slots to fontset objects.
17387 (Qfontset_info): New variable.
17388 (syms_of_fontset): Defsym it.
17389 (FONTSET_FALLBACK): New macro.
17390 (fontset_face): Try also the default fontset.
17391 (make_fontset): Realize a fallback fontset from the default fontset.
17392 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
17393 using split_font_name_into_vector and build_font_name_from_vector.
17394 (Fset_fontset_font): Access the elements of font_spec by enum
17395 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
17396 name by using split_font_name_into_vector.
17397 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
17398 generate a proper font name from the fontset name. Update
17399 Vfontset_alias_alist.
17400 (n_auto_fontsets): New variable.
17401 (new_fontset_from_font_name): New function.
17402 (Ffont_info): Store the information about fonts generated from the
17403 default fontset in the first extra slot of the returned char-table.
17404
17405 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
17406 (font_name_registry): Delete function.
17407 (split_font_name_into_vector): New function.
17408 (build_font_name_from_vector): New function.
17409 (font_list): The argument REGISTRY is now a list of registry names.
17410 (choose_face_font): If we are choosing an ASCII font, and ATTRS
17411 specifies an explicit font name, return the name as is. Make a
17412 list of registy names.
17413
17414 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
17415 of x_new_fontset.
17416 (Fx_create_frame): Don't call x_new_fontset here. Just use
17417 x_list_fonts to check the existence of fonts.
17418
17419 * xterm.h (x_new_fontset): Adjust prototype.
17420
17421 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
17422 string. Use new_fontset_from_font_name to create a fontset from a
17423 font name.
17424
174252008-02-01 Kenichi Handa <handa@m17n.org>
17426
17427 * syntax.c (Vfind_word_boundary_function_table): New name for
17428 Vnext_word_boundary_function_table.
17429 (find-word-boundary-function-table): New name for
17430 next-word-boundary-function-table.
17431
174322008-02-01 Dave Love <fx@gnu.org>
17433
17434 * Makefile.in: Fix some dependencies.
17435
17436 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
17437 set it to nil before returning.
17438
17439 * composite.c (update_compositions): Fix type error.
17440
17441 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
17442
174432008-02-01 Kenichi Handa <handa@m17n.org>
17444
17445 * xterm.c (x_new_font): Optimize for the case that the font is
17446 already set for the frame.
17447
174482008-02-01 Kenichi Handa <handa@m17n.org>
17449
17450 * chartab.c (char_table_ascii): Check if the char table contents
17451 is sub-char-table or not.
17452 (char_table_set, char_table_set_range): Fix argument to
17453 char_table_ascii.
17454
17455 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
17456 (detect_coding_utf_8, detect_coding_utf_16)
17457 (detect_coding_emacs_mule, detect_coding_iso_2022)
17458 (detect_coding_sjis, detect_coding_big5)
17459 (detect_coding_ccl, detect_coding_charset): Change argument MASK
17460 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
17461 sequence is valid in this coding system. Change callers.
17462 (MAX_ANNOTATION_LENGTH): New macro.
17463 (ADD_ANNOTATION_DATA): New macro.
17464 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
17465 ADD_ANNOTATION_DATA. Change the format of annotation data.
17466 (ADD_CHARSET_DATA): New macro.
17467 (emacs_mule_char): New argument ID. Change callers.
17468 (decode_coding_emacs_mule, decode_coding_iso_2022)
17469 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
17470 Produce charset annotation data in coding->charbuf.
17471 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
17472 to charset annotation data in coding->charbuf.
17473 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
17474 coding->common_flags if the coding system is iso-2022 based and
17475 uses designation.
17476 (produce_composition): Adjust for the new annotation data format.
17477 (produce_charset): New function.
17478 (produce_annotation): Handle charset annotation.
17479 (handle_composition_annotation, handle_charset_annotation): New
17480 functions.
17481 (consume_chars): Handle charset annotation. Utilize the above two
17482 functions.
17483 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
17484 buffer, get the deleted text as a string and set
17485 coding->src_object to that string.
17486 (detect_coding, detect_coding_system): Use the new struct
17487 coding_detection_info.
17488
17489 * coding.h (struct coding_detection_info): New structure.
17490 (struct coding_system): Adjust prototype of the member `detector'.
17491 (CODING_ANNOTATE_CHARSET_MASK): New macro.
17492
174932008-02-01 Kenichi Handa <handa@m17n.org>
17494
17495 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
17496
174972008-02-01 Dave Love <fx@gnu.org>
17498
17499 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
17500 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
17501 to new local and nullify apropos_accumulate before returning.
17502 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
17503
175042008-02-01 Kenichi Handa <handa@m17n.org>
17505
17506 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
17507 correctly.
e3eea1fc 17508
aac0c6e3
MR
175092008-02-01 Dave Love <fx@gnu.org>
17510
17511 * fns.c (Flanginfo): Call synchronize_system_time_locale.
17512
175132008-02-01 Kenichi Handa <handa@m17n.org>
17514
17515 The following changes are to make character composition happen
17516 automatically on displaying.
17517
17518 * Makefile.in (lisp, shortlisp): Add composite.elc.
17519
17520 * composite.h (Qauto_composed, Vauto_composition_function)
17521 (Qauto_composition_function): Extern them.
17522
17523 * composite.c (Vcomposition_function_table)
17524 (Qcomposition_function_table): Delete variables.
17525 (Qauto_composed, Vauto_composition_function)
17526 (Qauto_composition_function): New variables.
17527 (run_composition_function): Don't call
17528 compose-chars-after-function.
17529 (update_compositions): Clear `auto-composed' text property.
17530 (compose_chars_in_text): Delete this function.
17531 (syms_of_composite): Staticpro Qauto_composed and
17532 Qauto_composition_function. Declare Vauto_composition_function as
17533 a Lisp variable.
17534
17535 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
17536
17537 * xdisp.c (it_props): Add an entry for Qauto_composed.
17538 (handle_auto_composed_prop): New function.
17539
17540 * xselect.c (selection_data_to_lisp_data): Don't call
17541 compose_chars_in_text.
17542
175432008-02-01 Dave Love <fx@gnu.org>
17544
17545 * keyboard.c (read_char): Modify checking around use of
17546 Vkeyboard_translate_table.
17547
17548 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
17549 and fix C types.
17550
175512008-02-01 Kenichi Handa <handa@m17n.org>
17552
17553 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
17554 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
17555 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
17556 the case that the last byte is '\r' correctly.
17557 (decode_coding): Flush out the unprocessed data correctly.
17558 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
17559
175602008-02-01 Dave Love <fx@gnu.org>
17561
17562 * xterm.c (XTread_socket): Fix changes for defined keysyms.
17563 Add XK_ISO... case.
17564 (xaw_scroll_callback): Revert last change.
17565
175662008-02-01 Kenichi Handa <handa@m17n.org>
17567
17568 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
17569
175702008-02-01 Kenichi Handa <handa@m17n.org>
17571
17572 * xfaces.c (Vface_resizing_fonts): New variable.
17573 (struct font_name): New member `resizing_ratio'.
17574 (font_resizing_ratio): New function.
17575 (split_font_name): Set font->resizing_ratio.
17576 (better_font_p): Pay attention to font->resizing_ratio.
17577 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
17578 RESX, and RESY fields.
17579 (try_alternative_families): Try scalable fonts if
17580 Vscalable_fonts_allowed is not Qt.
17581 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
17582
175832008-02-01 Dave Love <fx@gnu.org>
17584
17585 * xterm.c (xaw_scroll_callback): Cast correctly.
17586
175872008-02-01 Dave Love <fx@gnu.org>
17588
17589 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
17590 (lispy_kana_keys): Comment out.
17591 (make_lispy_event) [XK_kana_A]: Comment out.
17592
17593 * xterm.c (xaw_scroll_callback): Cast call_data.
17594 (XTread_socket): Deal with ASCII keysyms.
17595 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
17596
175972008-02-01 Dave Love <fx@gnu.org>
17598
17599 * xterm.c (Vx_keysym_table): New.
17600 (syms_of_xterm): Initialize it.
17601 (XTread_socket): Use it.
17602 From head: Eliminate incorrect optimization that tried to avoid
17603 decoding the output of X*LookupString.
17604 (x_get_font_repertory): Delete charset declaration.
17605
176062008-02-01 Kenichi Handa <handa@m17n.org>
17607
17608 * coding.c (detect_coding_charset): If only ASCII bytes are found,
17609 return 0.
17610 (Fdefine_coding_system_internal): Setup
17611 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
17612
176132008-02-01 Dave Love <fx@gnu.org>
17614
17615 * coding.c (Fcheck_coding_system): Doc fix.
17616
17617 * editfns.c (Finsert_byte): Return a proper value.
17618
176192008-02-01 Kenichi Handa <handa@m17n.org>
17620
17621 * coding.c (decode_coding): Fix args to translate_chars. Pay
17622 attention to Vstandard_translation_table_for_decode.
17623 (encode_coding): Fix args to translate_chars. Pay attention to
17624 Vstandard_translation_table_for_encode.
17625
17626 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
17627 SINGLE_BYTE_CHAR_P.
17628
17629 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
17630 not by SINGLE_BYTE_CHAR_P.
17631
17632 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
17633 SINGLE_BYTE_CHAR_P.
17634
17635 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
17636 SINGLE_BYTE_CHAR_P.
17637
17638 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
17639 by SINGLE_BYTE_CHAR_P.
17640
17641 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
17642 SINGLE_BYTE_CHAR_P.
17643
176442008-02-01 Dave Love <fx@gnu.org>
17645
17646 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
17647
176482008-02-01 Dave Love <fx@gnu.org>
17649
17650 * fns.c (Flanginfo): Fix typo.
17651
17652 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
17653
176542008-02-01 Kenichi Handa <handa@m17n.org>
17655
17656 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
17657 (detect_coding_emacs_mule, detect_coding_iso_2022)
17658 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
17659 incomplete byte sequence. Don't update *mask when correctly detected.
17660 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
17661 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
17662 (detect_coding, detect_coding_system): Adjust for the changes above.
17663
176642008-02-01 Kenichi Handa <handa@m17n.org>
17665
17666 * character.c (char_string): Rename from
17667 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
17668 (string_char): Rename from string_char.
17669
17670 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
17671 if C is greater than MAX_3_BYTE_CHAR.
17672 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
17673 string_char instead of string_char_with_unification.
17674
176752008-02-01 Dave Love <fx@gnu.org>
17676
17677 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
17678
176792008-02-01 Kenichi Handa <handa@m17n.org>
17680
17681 * keymap.c (push_key_description): Pay attention to force_multibyte.
17682
17683 * regex.c (re_search_2): Fix for the case of unibyte buffer.
17684
176852008-02-01 Dave Love <fx@gnu.org>
17686
17687 * charset.c (define_charset_internal): Rename `supprementary'.
17688
17689 * Makefile.in (lisp, shortlisp): Remove latin-N.
17690
176912008-02-01 Dave Love <fx@gnu.org>
17692
17693 * xfns.c (x_window, x_window): Use use_xim.
17694
17695 * xterm.c (use_xim): Initialize.
17696 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
17697 (x_term_init): Maybe set use_xim.
17698
17699 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
17700
177012008-02-01 Kenichi Handa <handa@m17n.org>
17702
17703 * search.c (search_buffer): Fix case-fold-search of multibyte
17704 characters.
17705 (boyer_moore): Rename the last argument to char_high_bits.
17706
177072008-02-01 Kenichi Handa <handa@m17n.org>
17708
17709 * xdisp.c (display_string): Fix for the case of zero width glyph.
17710
17711 * xfns.c (x_set_font): Change the error message of the case that
17712 x_new_fontset returns Qt.
17713
17714 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
17715 (Finternal_set_lisp_face_attribute): Use signal_error for the
17716 error of invalid fontset.
17717
17718 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
17719 fontset, return Qt.
17720
177212008-02-01 Dave Love <fx@gnu.org>
17722
17723 * unexelf.c (unexec): Make .got handling not SGI-specific.
17724
17725 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
17726
17727 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
17728
17729 * keyboard.c (read_key_sequence): Fix type error.
17730
17731 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
17732 type error.
17733
17734 * fontset.c (fontset_add): Return Lisp_Object.
17735
177362008-02-01 Dave Love <fx@gnu.org>
17737
17738 * charset.h (charset_ordered_list_tick): Declare extern.
17739
177402008-02-01 Kenichi Handa <handa@m17n.org>
17741
17742 The following changes (and some of 2008-02-01 changes of mine) are
17743 for handling syntax, category, and case conversion for unibyte
17744 characters by converting them to multibyte on the fly. With these
17745 changes, we don't have to setup syntax and case tables for unibyte
17746 characters in each language environment.
17747
17748 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
17749 multibyte if necessary.
17750
17751 * bytecode.c (Fbyte_code): Likewise.
17752
17753 * character.h (LEADING_CODE_LATIN_1_MIN)
17754 (LEADING_CODE_LATIN_1_MAX): New macros.
17755 (unibyte_to_multibyte_table): Extern it.
17756 (unibyte_char_to_multibyte): New macro.
17757 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
17758 (CHAR_LEADING_CODE): New macro.
17759 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
17760
17761 * character.c (unibyte_to_multibyte_table): New variable.
17762 (unibyte_char_to_multibyte): Move to character.h and define as macro.
17763 (multibyte_char_to_unibyte): If C is an eight-bit character,
17764 convert it to the corresponding byte value.
17765
17766 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
17767 not 1, signals an error. Update the elements of
17768 unibyte_to_multibyte_table.
17769 (init_charset_once): Initialize unibyte_to_multibyte_table.
17770 (syms_of_charset): Define the charset `iso-8859-1'.
17771
17772 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
17773 as is without converting it to unibyte. In a unibyte buffer,
17774 convert C to multibyte before checking the syntax.
17775
17776 * lisp.h (unibyte_char_to_multibyte): Delete extern.
17777
17778 * minibuf.c (Fminibuffer_complete_word): Use the macro
17779 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
17780
17781 * regex.h (struct re_pattern_buffer): New member target_multibyte.
17782
17783 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
17784 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
17785 that is zero, convert an eight-bit char to multibyte.
17786 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
17787 non-emacs case.
17788 (PATFETCH): Convert an eight-bit char to multibyte.
17789 (HANDLE_UNIBYTE_RANGE): New macro.
17790 (regex_compile): Setup the compiled pattern for multibyte chars
17791 even if the given regex string is unibyte. Use PATFETCH_RAW
17792 instead of PATFETCH in many places. To handle `charset'
17793 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
17794 only for ASCII chars.
17795 (analyse_first) <exactn>: Simplify because the compiled pattern
17796 is multibyte.
17797 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
17798 <charset>: Use CHAR_LEADING_CODE to get leading codes.
17799 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
17800 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
17801 multibyte always 1.
17802 (re_search_2): In emacs, set the locale variable multibyte to 1,
17803 otherwise to 0. New local variable target_multibyte. Check it
17804 to decide the multibyteness of STR1 and STR2. If
17805 target_multibyte is zero, convert unibyte chars to multibyte
17806 before translating and checking fastmap.
17807 (TARGET_CHAR_AND_LENGTH): New macro.
17808 (re_match_2_internal): In emacs, set the locale variable multibyte
17809 to 1, otherwise to 0. New local variable target_multibyte. Check
17810 it to decide the multibyteness of STR1 and STR2. Use
17811 TARGET_CHAR_AND_LENGTH to fetch a character from D.
17812 <charset, charset_not>: If multibyte is nonzero, check fastmap
17813 only for ASCII chars. Call bcmp_translate with
17814 target_multibyte, not with multibyte.
17815 <begline>: Declare the local variable C as `unsigned'.
17816 (bcmp_translate): Change the last arg name to target_multibyte.
17817
17818 * search.c (compile_pattern_1): Don't adjust the multibyteness of
17819 the regexp pattern and the matching target. Set cp->buf.multibyte
17820 to the multibyteness of the regexp pattern. Set
17821 cp->but.target_multibyte to the multibyteness of the matching target.
17822 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
17823 FETCH_STRING_CHAR_ADVANCE.
17824 (Freplace_match): Convert unibyte chars to multibyte.
17825
17826 * syntax.c (char_quoted, back_comment, scan_words)
17827 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
17828 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
17829 unibyte chars to multibyte.
17830 (skip_chars): Delete the arg syntaxp, and move the code for
17831 handling syntaxes to skip_syntaxes. Change callers.
17832 Fix the case that the multibyteness of STRING and the current
17833 buffer doesn't match.
17834 (skip_syntaxes): New function.
17835 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
17836 SINGLE_BYTE_CHAR_P.
17837
178382008-02-01 Kenichi Handa <handa@m17n.org>
17839
17840 * xfaces.c (QCfontset): New variable.
17841 (LFACE_FONTSET): New macro.
17842 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
17843 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
17844 (Finternal_set_lisp_face_attribute)
17845 (Finternal_get_lisp_face_attribute): Handle QCfontset.
17846 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
17847 check also LFACE_FONTSET_INDEX.
17848 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
17849 attrs[LFACE_FONT_INDEX].
17850 (syms_of_xfaces): Intern and staticpro QCfontset.
17851
17852 * dispextern.h (enum lface_attribute_index): New member
17853 LFACE_FONTSET_INDEX.
17854
17855 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
17856
178572008-02-01 Kenichi Handa <handa@m17n.org>
17858
17859 * coding.c (coding_set_destination): Fix coding->destination for
17860 the case converting a region.
17861 (encode_coding_utf_8): Encode eight-bit chars as single byte.
17862 (encode_coding_object): Fix coding->dst_pos and
17863 coding->dst_pos_byte for the case converting a region.
17864
17865 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
17866
17867 * character.h (BYTE8_STRING): New macro.
17868
17869 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
17870
178712008-02-01 Kenichi Handa <handa@m17n.org>
17872
17873 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
17874 characters by octal form.
17875
17876 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
17877
17878 * buffer.h (_fetch_multibyte_char_len): Delete extern.
17879 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
17880 _fetch_multibyte_char_len.
17881 (FETCH_CHAR_AS_MULTIBYTE): New macro.
17882
17883 * casetab.c (set_canon, set_identity, shuffle): Simplify.
17884
17885 * casefiddle.c (casify_object): Simplify. Handle the case that
17886 the case conversion change the byte length.
17887 (casify_region): Likewise.
17888
17889 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
17890
17891 * character.c (_fetch_multibyte_char_len): Delete this variable.
17892 (syms_of_character): Setup Vprintable_chars.
17893
17894 * editfns.c (Fchar_equal): Fix for the unibyte case.
17895 (Finsert_byte): New function.
17896 (syms_of_editfns): Defsubr it.
17897
17898 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
17899 of direct code 0x3ffff.
17900
17901 * search.c (Freplace_match): Fix for the unibyte case.
17902
179032008-02-01 Kenichi Handa <handa@m17n.org>
17904
17905 * lread.c (safe_to_load_p): Fix the logic.
17906
17907 * syntax.c (scan_words): Don't treat characters belonging to
17908 different scripts as constituting a word.
17909
17910 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
17911
17912 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
17913
17914 * emacs.c (main): In the case of --unibyte, instead of aborting on
17915 finding non-empty buffer, make it unibyte.
17916
179172008-02-01 Kenichi Handa <handa@m17n.org>
17918
17919 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
17920 to create a fontset.
17921
179222008-02-01 Dave Love <fx@gnu.org>
17923
17924 * character.c (Funibyte_char_to_multibyte): Doc fix.
17925
17926 * xfns.c [HAVE_STDLIB_H]: Fix last change.
17927
179282008-02-01 Kenichi Handa <handa@m17n.org>
17929
17930 * fontset.c (fontset_add): Make the type `int'.
17931 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
17932
17933 * character.c (unibyte_char_to_multibyte)
17934 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
17935 charset_unibyte, not charset_primary.
17936
17937 * charset.h (charset_unibyte): Extern it instead of charset_primary.
17938
17939 * charset.c (charset_unibyte): Rename from charset_primary.
17940 (Funibyte_charset): Rename from Fprimary_charset.
17941 (Fset_unibyte_charset): Rename from Fset_primary_charset.
17942 (syms_of_charset): Adjust for the above changes.
17943
17944 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
17945 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
17946 it->multibyte_p is zero.
17947
17948 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
17949 Delete extern.
17950
179512008-02-01 Kenichi Handa <handa@m17n.org>
17952
17953 * coding.c (Fdefine_coding_system_internal): Fix category setting
17954 for a coding system of type iso-2022.
17955
179562008-02-01 Kenichi Handa <handa@m17n.org>
17957
17958 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
17959
179602008-02-01 Kenichi Handa <handa@m17n.org>
17961
17962 * syntax.c (Vnext_word_boundary_function_table): New variable.
17963 (next-word-boundary-function-table): Declare it as a Lisp variable
17964 in syms_of_syntax.
17965 (scan_words): Call functions in Vnext_word_boundary_function_table
17966 if any.
17967
17968 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
17969
17970 * fontset.c (fs_load_font): If fontp->charset is not negative,
17971 return fontp without setting its members.
17972
179732008-02-01 Dave Love <fx@gnu.org>
17974
17975 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
17976
17977 * m/sparc.h (HAVE_ALLOCA): Delete.
17978
17979 * s/irix6-5.h: Don't include strings.h.
17980 (bcopy, bzero, bcmp): Don't undef.
17981
17982 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
17983
17984 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
17985 (TIOCSIGSEND): Don't test IRIX6.
17986 (bcopy, bzero, bcmp): Define conditionally.
17987
179882008-02-01 Kenichi Handa <handa@m17n.org>
17989
17990 * buffer.c (Qas, Qmake, Qto): New variables.
17991 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
17992 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
17993
17994 * callproc.c (Fcall_process): Don't call insert_1_both directly if
17995 we are inserting a process output into a multibyte buffer.
17996
17997 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
17998 multibyte_char_to_unibyte.
17999
18000 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
18001 by the primary charset, make it eight-bit char.
18002 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
18003
18004 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
18005 (charset_8_bit__control, charset_8_bit_graphic)
18006 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
18007 (define_charset_internal): New function.
18008 (syms_of_charset): Call define_charset_internal for pre-defined
18009 charsets.
18010
18011 * charset.h (charset_8_bit): Extern it.
18012
18013 * coding.c (make_conversion_work_buffer): Adjust for the change
18014 of Fset_buffer_multibyte.
18015 (encode_coding_raw_text): Increment p0 in the loop.
18016
18017 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
18018
18019 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
18020 for the change of Fset_buffer_multibyte.
18021
18022 * fns.c (Fstring_to_multibyte): New function.
18023 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
18024
180252008-02-01 Dave Love <fx@gnu.org>
18026
18027 * xfns.c (x_put_x_image): Declare args.
18028
18029 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
18030 (try_font_list): Declare an arg.
18031
18032 * xdisp.c (message2_nolog, set_message): Declare an arg.
18033
18034 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
18035
18036 * syntax.c (scan_sexps_forward): Declare an arg.
18037
18038 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
18039 Declare an arg.
18040
18041 * lisp.h (Fnew_fontset): Declare.
18042
18043 * keymap.c (push_key_description): Call CHARACTERP correctly.
18044
18045 * fontset.c (fontset_add): Declare args. Call make_number correctly.
18046 (face_for_char): Delete unused vars.
18047 (Fset_fontset_font): Doc fix. Delete unused vars.
18048
18049 * doc.c (Fsubstitute_command_keys): Delete unused vars.
18050
18051 * composite.c (update_compositions): Declare arg.
18052
18053 * cm.c (calccost, cmgoto): Declare args.
18054
18055 * charset.c: Remove `emacs' conditional. Doc fixes.
18056 (map_char_table_for_charset): Declare.
18057
18058 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
18059
18060 * ccl.c: Remove `emacs' conditional.
18061
180622008-02-01 Kenichi Handa <handa@m17n.org>
18063
18064 The following changes are to allow specifying multiple font
18065 patterns for a character range (specified by script or charset).
18066
18067 * Makefile.in (abbrev.o): Depend on syntax.h.
18068 (xfaces.o): Depend on charset.h.
18069
18070 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
18071 SINGLE_BYTE_CHAR_P.
18072
18073 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
18074
18075 * character.h (Vchar_script_table): Extern it.
18076
18077 * character.c (Vscript_alist): Delete.
18078 (Vchar_script_table, Qchar_script_table): New variable.
18079 (syms_of_character): Declare Vchar_script_table as a lisp variable
18080 and initialize it.
18081
18082 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
18083 have property char-table-extra-slots, make no extra slot.
18084
18085 * dispextern.h (struct face): Delete member `charset'.
18086 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
18087 SINGLE_BYTE_CHAR_P.
18088 (choose_face_font, lookup_non_ascii_face, font_name_registry):
18089 Add prototypes.
18090 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
18091 (generate_ascii_font_name): Rename from generate_ascii_font.
18092
18093 * fontset.h (get_font_repertory_func): New prototype.
18094 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
18095 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
18096
18097 * fontset.c (Qprepend, Qappend): New variables.
18098 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
18099 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
18100 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
18101 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
18102 (fontset_ref_and_range, fontset_add, reorder_font_vector)
18103 (load_font_get_repertory): New functions.
18104 (fontset_set): Delete.
18105 (fontset_face): New arg FACE. Return face ID, not face.
18106 Complete re-write to handle new fontset structure. Change caller.
18107 (free_face_fontset): Use ASET istead of AREF (X) = Y.
18108 (face_for_char): Don't call lookup_face.
18109 (make_fontset_for_ascii_face): New arg FACE.
18110 (fs_load_font): New arg CHARSET_ID. Don't check
18111 Vfont_encoding_alist here.
18112 (find_font_encoding): New function.
18113 (list_fontsets): Use STRINGP, not ! NILP.
18114 (accumulate_script_ranges): New function.
18115 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
18116 re-written to handle new fontset structure.
18117 (Ffontset_font): Return a copy of element.
18118 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
18119 docstring of font-encoding-alist.
18120
18121 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
18122 (Fset_fotset_font): Fix arguments to 5.
18123
18124 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
18125
18126 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
18127 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
18128 (highlight_trailing_whitespace): Adjust for the change of
18129 lookup_named_face.
18130
18131 * xfaces.c: Include charset.h.
18132 (load_face_font): Delete argument C. Change caller.
18133 (generate_ascii_font_name): Rename from generate_ascii_font.
18134 (font_name_registry): New function.
18135 (cache_face): Store ascii faces before non-ascii faces in buckets.
18136 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
18137 Lookup only ascii faces.
18138 (lookup_non_ascii_face): New function.
18139 (lookup_named_face): Delete argument C. Change caller.
18140 (lookup_derived_face): Delete argument C. Change caller.
18141 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
18142 a string, just call font_list with it.
18143 (choose_face_font): Delete arguments FACE and C. New arg
18144 FONT_SPEC. Change caller.
18145 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
18146 Change caller.
18147 (realize_non_ascii_face): New function.
18148 (realize_x_face): Call load_face_font here.
18149 (realize_tty_face): Delete argument C. Change caller.
18150 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
18151 get a face ID.
18152 (dump_realized_face): Don't print charset of FACE.
18153
18154 * xfns.c (x_set_font): Always call x_new_fontset and
18155 store_frame_parameter.
18156 (Fx_create_frame): Call x_new_fontset, not x_new_font.
18157 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
18158
18159 * xterm.h (x_get_font_repertory): Extern it.
18160
18161 * xterm.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.
18164 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
18165 (x_new_fontset): If FONTSETNAME doesn't match any existing
18166 fontsets, create a new one.
18167 (x_get_font_repertory): New function.
18168
181692008-02-01 Kenichi Handa <handa@m17n.org>
18170
18171 * coding.c (Ffind_coding_systems_region_internal): Detect an
18172 ASCII only string correctly.
18173
18174 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
18175 version is 0.
18176
181772008-02-01 Kenichi Handa <handa@m17n.org>
18178
18179 * lread.c: Include "coding.h".
18180 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
18181 (load_each_byte, unread_char): New variables.
18182 (readchar_backlog): Delete.
18183 (readchar): Return a character unless load_each_byte is nonzero.
18184 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
18185 cons. If unread_char is not -1, simply return it.
18186 (unreadchar): Handle the case that readcharfun is
18187 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
18188 (read_multibyte): Delete.
18189 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
18190 (read_emacs_mule_char): New functions.
18191 (Fload): Even if the file doesn't have the extension ".elc", if
18192 safe_to_load_p returns a positive version number, assume that the
18193 file contains bytecompiled code. If the version is less than 22,
18194 load the file while decoding multibyte sequences by emacs-mule.
18195 (readevalloop): Don't use readchar_backlog.
18196 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
18197 (Fread_from_string): Pay attention to the case that STREAM is a cons.
18198 (read_escape): Delete the arg BYTEREP.
18199 (read1): Set load_each_byte to 1 temporarily while handling
18200 #@NUMBER. Don't call read_multibyte.
18201 (read_vector): Call Fread with a cons. If readcharfun is
18202 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
18203 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
18204 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
18205 and Qload_force_doc_strings.
18206
182072008-02-01 Kenichi Handa <handa@m17n.org>
18208
18209 * xdisp.c (face_before_or_after_it_pos): Call
18210 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
18211
182122008-02-01 Kenichi Handa <handa@m17n.org>
18213
18214 * character.h (TRAILING_CODE_P): New macro.
18215 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
18216 (string_char_with_unification): Fix prototype.
18217 (Vscript_alist): Extern it.
18218
18219 * character.c (Vscript_alist): New variable.
18220 (string_char_with_unification, str_as_unibyte)
18221 (string_escape_byte8): Add `const' to local variables.
18222 (syms_of_character): Declare script-alist as a Lisp variable.
18223
18224 * charset.h (Vcharset_ordered_list): Extern it.
18225 (charset_ordered_list_tick): Extern it.
18226 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
18227 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
18228 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
18229 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
18230 (Funify_charset): Adjust for the change of Funify_charset.
18231
18232 * charset.c (charset_ordered_list_tick): New variable.
18233 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
18234 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
18235 deunify intead of unify a charset.
18236 (string_xstring_p): Add `const' to local variables.
18237 (find_charsets_in_text): Add `const' to arguments and local variables.
18238 (encode_char): Adjust for the change of Funify_charset. Fix
18239 detecting of invalid code.
18240 (Fset_charset_priority): Increment charset_ordered_list_tick.
18241 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
18242 and TO_CODE.
18243
18244 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
18245 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
18246 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
18247 (decode_coding_ccl, consume_chars)
18248 (Ffind_coding_systems_region_internal)
18249 (Fcheck_coding_systems_region): Add `const' to local variables.
18250
18251 * print.c (print_object): Use octal form for printing the
18252 contents of a bool vector.
18253
182542008-02-01 Dave Love <fx@gnu.org>
18255
18256 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
18257 <version == 20>: Refuse to load.
18258
182592008-02-01 Dave Love <fx@gnu.org>
18260
18261 * fns.c: Move coding.h.
18262 (Qcodeset, Qdays, Qmonths): New.
18263 (concat): Use CHARACTERP instead of INTEGERP.
18264 (Flocale_codeset): Delete.
18265 (Flanginfo): New function.
18266 (syms_of_fns): Change accordingly.
18267
18268 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
18269
182702008-02-01 Dave Love <fx@gnu.org>
18271
18272 * casetab.c (init_casetab_once, init_casetab_once): Fix
18273 CHAR_TABLE_SET call.
18274
18275 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
18276
18277 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
18278
18279 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
18280 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
18281 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
18282
18283 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
18284
18285 * coding.c (ENCODE_DESIGNATION, decode_eol)
18286 (make_conversion_work_buffer, code_conversion_restore)
18287 (Fdefine_coding_system_internal): Convert Lisp types.
18288 (code_conversion_restore): Use EQ, not ==.
18289 (Fencode_coding_string): Fix code_convert_string call.
18290
18291 * coding.h (code_convert_region): Fix prototype.
18292
18293 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
18294
18295 * fontset.c (fontset_ref, fontset_set, fs_load_font)
18296 (Ffontset_info): Convert Lisp types.
18297
18298 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
18299
18300 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
18301
18302 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
18303
18304 * chartab.c: Include "...h", not <...h> in some cases.
18305
18306 * callproc.c (Fcall_process): Remove unused variables.
18307
183082008-02-01 Dave Love <fx@gnu.org>
18309
18310 * coding.c (Fset_coding_system_priority): Allow null arg list.
18311
183122008-02-01 Dave Love <fx@gnu.org>
18313
18314 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
18315 (Fself_insert_and_exit): Use CHARACTERP.
18316
18317 * callproc.c (Fcall_process): Remove unused vars.
18318
18319 * xterm.c (XTread_socket): Add extra dead keysyms.
18320
18321 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
18322
18323 * dispextern.h: Remove prototypes for redraw_frame,
18324 redraw_garbaged_frames.
18325
18326 * cmds.c (Fself_insert_command): Use CHARACTERP.
18327
18328 * chartab.c (make_sub_char_table): Remove unused var.
18329 (Fset_char_table_default, Fmap_char_table): Doc fix.
18330
18331 * keymap.c (access_keymap): Remove generic char code.
18332 (push_key_description): Use CHARACTERP.
18333
183342008-02-01 Dave Love <fx@gnu.org>
18335
18336 * charset.c: Doc fixes.
18337 (Funify_charset): Extra checking.
18338
183392008-02-01 Dave Love <fx@gnu.org>
18340
18341 * lread.c: Remove some unused variables.
18342 (safe_to_load_p): If safe, return the magic number version byte.
18343 (Fload): Maybe use load-with-code-conversion.
18344
183452008-02-01 Kenichi Handa <handa@m17n.org>
18346
18347 * category.c (Fmodify_category_entry): Don't modify the contents
18348 of category_set for characters out of the range. Avoid
18349 unnecessary modification.
18350
18351 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
18352 Vchar_unify_table. The default value of the table is now nil.
18353
18354 * character.c (syms_of_character): Setup Vchar_width_table for
18355 eight-bit-control and raw-byte chars.
18356
18357 * charset.h (enum define_charset_arg_index): Delete
18358 charset_arg_parents and add charset_arg_subset and
18359 charset_arg_superset.
18360 (enum charset_attr_index): Delete charset_parents and add
18361 charset_subset and charset_superset.
18362 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
18363 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
18364 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
18365 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
18366 (CHARSET_SUPERSET): New macros.
18367 (charset_work): Extern it.
18368 (ENCODE_CHAR): Use charset_work.
18369 (CHAR_CHARSET_P): Adjust for the change of encoder format.
18370 (map_charset_chars): Extern it.
18371
18372 * charset.c (load_charset_map): Set the default value of encoder
18373 and deunifier char-tables to nil.
18374 (map_charset_chars): Change argument. Change callers. Use
18375 map_char_table_for_charset instead of map_char_table.
18376 (Fmap_charset_chars): New optional args from_code and to_code.
18377 (Fdefine_charset_internal): Adjust for the change of
18378 `define-charset' (:parents -> :subset or :superset).
18379 (charset_work): New variable.
18380 (encode_char, syms_of_charset): Adjust for the change of
18381 Fdefine_charset_internal.
18382 (Ffind_charset_string): Setup the vector `charsets' correctly.
18383
18384 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
18385 the previous change.
18386 (char_table_ref_and_range): Adjust for the above change.
18387 (map_sub_char_table_for_charset): New function.
18388 (map_char_table_for_charset): New function.
18389
18390 * keymap.c (describe_vector): Handle a char-table directly here.
18391 (describe_char_table): Delete.
18392
18393 * lisp.h (map_charset_chars): Delete.
18394
183952008-02-01 Dave Love <fx@gnu.org>
18396
18397 * fns.c (count_combining): Comment out (unused).
18398 (Flocale_codeset): New.
18399 (syms_of_fns): Defsubr it.
18400
18401 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
18402 (size_t): Remove.
18403
184042008-02-01 Dave Love <fx@gnu.org>
18405
18406 * Makefile.in (chartab.o): Depend on charset.h.
18407
184082008-02-01 Kenichi Handa <handa@m17n.org>
18409
18410 * character.c (syms_of_character): Set the default value of
18411 Vprintable_chars to Qnil.
18412
184132008-02-01 Dave Love <fx@gnu.org>
18414
18415 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
18416
184172008-02-01 Kenichi Handa <handa@m17n.org>
18418
18419 * charset.c (load_charset_map): Handle the case that from < to
18420 correctly.
18421
18422 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
18423 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
18424 Pay attention to raw-8-bit chars.
18425
184262008-02-01 Kenichi Handa <handa@m17n.org>
18427
18428 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
18429 It is not bytecompiled now.
18430
18431 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
18432 (charset_jisx0208): New variables.
18433 (Fdefine_charset_internal): Setup them if appropriate.
18434 (init_charset_once): Initialize them to -1.
18435
18436 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
18437 (charset_jisx0208): Extern them.
18438
18439 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
18440 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
18441 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
18442 (setup_iso_safe_charsets): Fix arguments to Fassq.
18443 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
18444 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
18445 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
18446 (encode_coding_iso_2022): Change the 1st arg to
18447 ENCODE_ISO_CHARACTER to a variable.
18448
184492008-02-01 Kenichi Handa <handa@m17n.org>
18450
18451 * charset.h (enum define_charset_arg_index): New enums
18452 charset_arg_min_code and charset_arg_max_code.
18453 (struct charset): New member char_index_offset.
18454
18455 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
18456 Take charset->char_index_offset into account.
18457 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
18458 args[charset_arg_max_code]. Setup charset.char_index_offset.
18459 (syms_of_charset): Fix args to Fdefine_charset_internal.
18460
184612008-02-01 Dave Love <fx@gnu.org>
18462
18463 * coding.c (decode_coding_utf_8): Reject overlong sequences.
18464
184652008-02-01 Dave Love <fx@gnu.org>
18466
18467 * coding.c: Doc fixes.
18468 (Fcoding_system_aliases): Fix return value.
18469 (Qmac): Remove (duplicated) definition.
18470
184712008-02-01 Dave Love <fx@gnu.org>
18472
362654a6
JB
18473 * charset.c (Fcharset_priority_list, Fset_charset_priority):
18474 New functions.
aac0c6e3
MR
18475
18476 * character.c (Fstring): Doc fix.
18477
18478 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
18479
362654a6 18480 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
aac0c6e3
MR
18481 (font-encoding-alist): Doc fix.
18482
184832008-02-01 Dave Love <fx@gnu.org>
18484
18485 * term.c (costs_set): Declare static, non-initialized for pcc.
18486 (encode_terminal_code): Remove unused var.
18487
18488 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
18489 for K&R.
18490
18491 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
18492
18493 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
18494 (suffixes): Move out of make_subsidiaries for K&R.
18495
18496 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
18497
18498 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
18499
185002008-02-01 Dave Love <fx@gnu.org>
18501
18502 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
18503
18504 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
18505
185062008-02-01 Yong Lu <lyongu@asia-infonet.com>
18507
18508 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
18509
18510 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
18511
185122008-02-01 Kenichi Handa <handa@m17n.org>
18513
18514 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
18515 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
18516
185172008-02-01 Kenichi Handa <handa@m17n.org>
18518
18519 * coding.c (decode_coding_charset): Adjust for the change of
18520 Fdefine_coding_system_internal.
18521 (Fdefine_coding_system_internal): For a coding system of
18522 `charset' type, store a list of charset IDs in
18523 `charset_attr_charset_valids' element of coding attributes.
18524
185252008-02-01 Kenichi Handa <handa@m17n.org>
18526
18527 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
18528 (emacs_mule_char): New arg src. Delete arg `composition'. Change
18529 caller. Handle 2-byte and 3-byte charsets correctly.
18530 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
18531 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
18532 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
18533 (DECODE_EMACS_MULE_21_COMPOSITION): Call
18534 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
18535 sequence.
18536 (decode_coding_emacs_mule): Handle composition correctly. Rewind
18537 `src' and `consumed_chars' correctly before calling emacs_mule_char.
18538 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
18539 and alt&rule composition.
18540 (decode_coding_iso_2022): Handle composition correctly.
18541 (init_coding_once): Setup emacs_mule_bytes for private charsets.
18542
18543 * charset.c (Fdefine_charset_internal): Fix bug for the case of
18544 re-defining a charset. If the charset has :emacs-mule-id, setup
18545 emacs_mule_bytes.
18546 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
18547
185482008-02-01 Kenichi Handa <handa@m17n.org>
18549
18550 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
18551 (encode_coding_big5, encode_coding_charset): If coding requires safe
18552 encoding, produce a character specified by
18553 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
18554
185552008-02-01 Dave Love <fx@gnu.org>
18556
18557 * xterm.c (XSetIMValues): Declare.
18558
18559 * process.c: Conditionally include sys/wait.h, pty.h.
18560
18561 * print.c (print_object): Fix print format for 64-bit systems.
18562
18563 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
18564
18565 * buffer.c (emacs_strerror): Declare.
18566
18567 * fontset.c (Fclear_face_cache): Declare.
18568 (accumulate_font_info): Comment-out (unused).
18569 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
18570 variables.
18571
18572 * character.h (string_escape_byte8): Declare.
18573
18574 * charset.c (load_charset_map, load_charset_map_from_file): Remove
18575 unused vars.
18576 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
18577 (Fmap_charset_chars): Doc fix.
18578
18579 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
18580 (Fset_coding_system_priority, Fset_coding_system_priority)
18581 (Fdefine_coding_system_internal): Doc fix.
18582
185832008-02-01 Dave Love <fx@gnu.org>
18584
18585 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
18586
185872008-02-01 Kenichi Handa <handa@m17n.org>
18588
18589 * character.c (string_escape_byte8): Make multibyte string with
18590 correct size.
18591
18592 * charset.c (Fmake_char): Delete unnecessary code.
18593
185942008-02-01 Kenichi Handa <handa@m17n.org>
18595
18596 * xfns.c (x_encode_text): Allocate coding.destination here, and
18597 call encode_coding_object with dst_object Qnil.
18598
18599 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
18600 multibyte form correctly.
18601
18602 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
18603 against Vfont_encoding_alist.
18604
18605 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
18606 handling of charset list.
18607 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
18608 (decode_coding_object): Move point to coding->dst_pos before
18609 calling post-read-conversion function.
18610 (encode_coding_object): Give correct arguments to
18611 pre-write-conversion. Ignore the return value of
18612 pre-write-conversion function. Pay attention to the case that
18613 pre-write-conversion changes the current buffer. If dst_object is
18614 Qt, even if coding->src_bytes is zero, allocate at least one byte
18615 to coding->destination.
18616
18617 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
18618
18619 * charset.c (Fmake_char): Make it more backward compatible.
18620 (Fmap_charset_chars): Fix docstring.
18621
186222008-02-01 Dave Love <fx@gnu.org>
18623
18624 * coding.c: Doc fixes.
18625 (Fdefine_coding_system_alias): Use names, not symbols, in
18626 coding-system-alist.
18627
186282008-02-01 Kenichi Handa <handa@m17n.org>
18629
18630 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
18631 of calling free_realized_face.
18632
186332008-02-01 Yong Lu <lyongu@asia-infonet.com>
18634
18635 * charset.c (read_hex): Don't treat SPC as a comment starter.
18636 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
18637 (Fdecode_char): Fix typo.
18638
186392008-02-01 Kenichi Handa <handa@m17n.org>
18640
18641 * charset.h (struct charset): New member `code_space_mask'.
18642
18643 * coding.c (coding_set_source): Delete the local variable beg_byte.
18644 (encode_coding_charset, Fdefine_coding_system_internal):
18645 Delete the local variable charset.
18646 (Fdefine_coding_system_internal): Setup
18647 attrs[coding_attr_charset_valids] correctly.
18648
18649 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
18650 member to check if CODE is valid or not.
18651 (Fdefine_charset_internal): Initialize `code_space_mask' member.
18652 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
18653 is within the range of charset->min_code and carset->max_code.
18654
186552008-02-01 Dave Love <fx@gnu.org>
18656
18657 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
18658
18659 * dispextern.h (generate_ascii_font): Fix return type.
18660
18661 * xfaces.c (generate_ascii_font): Fix arg declaration.
18662
18663 * coding.c (coding_inherit_eol_type)
18664 (Fset_terminal_coding_system_internal)
18665 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
18666
186672008-02-01 Kenichi Handa <handa@m17n.org>
18668
18669 * coding.c (decode_coding_charset, encode_coding_charset): Handle
18670 multiple charsets correctly.
18671
186722008-02-01 Kenichi Handa <handa@m17n.org>
18673
18674 * search.c (boyer_moore): Fix handling of multibyte character
18675 translation.
18676
18677 * xdisp.c (display_mode_element): When the variable `elt' is
18678 changed, update `this' and `lisp_string'.
18679
186802008-02-01 Kenichi Handa <handa@m17n.org>
18681
18682 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
18683
18684 * callproc.c (Fcall_process): Be sure to give the current buffer
18685 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
18686
18687 * charset.c (struct charset_map_entries): New struct.
18688 (load_charset_map): Rename from parse_charset_map. New args
18689 entries and n_entries. Change caller.
18690 (load_charset_map_from_file): Rename from load_charset_map.
18691 Change caller. New arg control_flag. Call load_charset_map at
18692 the tail.
18693 (load_charset_map_from_vector): New function.
18694 (Fdefine_charset_internal): Setup charset.compact_codes_p.
18695 (encode_char): If the charset is compact, change a character index
18696 to a code point.
18697
18698 * coding.c (coding_alloc_by_making_gap): Check the case that the
18699 source and destination are the same correctly.
18700 (decode_coding_raw_text): Set coding->consumed_char and
18701 coding->consumed to 0.
18702 (produce_chars): If coding->chars_at_source is nonzero, update
18703 coding->consumed_char and coding->consumed before calling
18704 alloc_destination.
18705 (Fdefine_coding_system_alias): Register ALIAS in
18706 Vcoding_system_alist.
18707 (syms_of_coding): Define `no-conversion' coding system at the tail.
18708
18709 * fileio.c (Finsert_file_contents): Set coding_system instead of
18710 val. If the current buffer is multibyte, always call
18711 decode_coding_gap.
18712
18713 * xfaces.c (try_font_list): Give higher priority to fontset's
18714 family than face's family.
18715
187162008-02-01 Kenichi Handa <handa@m17n.org>
18717
18718 * callproc.c (Fcall_process): Be sure to give the current buffer
18719 to decode_coding_c_string.
18720
18721 * xfaces.c (try_font_list): Give a family specified in a fontset
18722 higher priority than a family specified in a face.
18723
187242008-02-01 Kenichi Handa <handa@m17n.org>
18725
18726 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
18727 Fix arguments to insert_from_buffer.
18728
18729 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
18730
187312008-02-01 Kenichi Handa <handa@m17n.org>
18732
18733 * coding.c (produce_chars): Set the variable `multibytep' correctly.
18734 (decode_coding_gap): Set coding->dst_multibyte correctly.
18735
187362008-02-01 Kenichi Handa <handa@m17n.org>
18737
18738 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
18739 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
18740 (encode_coding_utf_16): Substitute coding->default_char for
18741 non-Unicode characters.
18742 (decode_coding): Don't call record_insert here.
18743 (setup_coding_system): Initialize `surrogate' of
18744 coding->spec.utf_16 to 0.
18745 (EMIT_ONE_BYTE): Fix for multibyte case.
18746
18747 * insdel.c (insert_from_gap): Call record_insert.
18748
187492008-02-01 Kenichi Handa <handa@m17n.org>
18750
18751 * casefiddle.c (casify_region): Fix multibyte case.
18752
18753 * character.c (c_string_width): Add return type `int'.
18754 (char_string_with_unification): Delete arg ADVANCED.
18755
18756 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
18757 (CHAR_STRING): Adjust for the change of char_string_with_unification.
18758 (CHAR_STRING_ADVANCE): Make it do-while statement.
18759
18760 * chartab.c (sub_char_table_set_range): Optimize for the case
18761 DEPTH == 3. Add workaround code for a GCC optimization bug.
18762
18763 * charset.c (parse_charset_map): Remove an unused variable.
18764
18765 * coding.c: Delete unused variables.
18766
18767 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
18768 earlier. If inserted is zero and the coding system doesn't
18769 require flushing, don't call decode_coding_gap.
18770
18771 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
18772
187732008-02-01 Kenichi Handa <handa@m17n.org>
18774
18775 The following changes are for using Unicode as an internal
18776 character model, and use UTF-8 format for buffer/string
18777 representation.
18778
18779 * .gdbinit (xchartable): Adjust for the change of char table structure.
18780 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
18781
18782 * Makefile.in (obj): Add character.o and chartab.o.
18783 (lisp, shortlisp): Remove utf-8.elc.
18784 (*.o): For many files, change dependency on charset.h to
18785 character.h, and add dependency on character.h.
18786 (character.o, chartab.o): New targets.
18787
18788 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
18789 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
18790 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
18791 of "charset.h".
18792
18793 * dired.c, filelock.c: Include "character.h".
18794
18795 * alloc.c: Include "character.h" instead of "charset.h".
18796 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
18797 (syms_of_alloc): Remove defsubr for Smake_char_table.
18798
18799 * buffer.c: Include "character.h" instead of "charset.h", don't
18800 include "coding.h".
18801 (Fset_buffer_multibyte): Adjust for UTF-8.
18802
18803 * buffer.h: EXFUN Fbuffer_live_p.
18804
18805 * callproc.c: Include "character.h" instead of "charset.h".
18806 (Fcall_process): Big change for the new code-conversion APIs.
18807
18808 * casetab.c: Include "character.h" instead of "charset.h".
18809 (set_canon, set_identity, shuffle): Adjust for the new
18810 map_char_table spec.
18811 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
18812 accessing the char table structure.
18813
18814 * chartab.c: New file that implements char table.
18815
18816 * category.c: Include "character.h".
18817 (copy_category_entry): New function.
18818 (copy_category_table): Call map_char_table and copy_category_entry.
18819 (Fmake_category_table): Initialize all top-level slots.
18820 (char_category_set): New function.
18821 (modify_lower_category_set): Delete.
18822 (Fmodify_category_entry): Call char_table_ref_and_range.
18823
18824 * category.h (CATEGORY_SET): Just call char_category_set.
18825
18826 * ccl.c: Include "character.h".
18827 (Qccl, Qcclp): New variables.
18828 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
18829 it's less than 256.
18830 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
18831 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
18832 and DST type.
18833 (ccl_driver): Change types of argument, adjust code accordingly.
18834 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
18835 ccl_driver.
18836 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
18837
18838 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
18839 New members src_multibyte, dst_multibyte, consumed, and produced.
18840 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
18841 (CODING_SPEC_CCL_PROGRAM): New macro.
18842 (ccl_driver): Update prototype.
18843 (Qccl, Qcclp, Fccl_program_p): Extern them.
18844 (CHECK_CCL_PROGRAM): New macro.
18845
18846 * character.c, character.h, chartab.c: New files.
18847
18848 * charset.c: Mostly re-written. Move character and multibyte sequence
18849 handling codes to character.c.
18850
18851 * charset.h: Mostly re-written. Move character and multibyte sequence
18852 handling codes to character.h.
18853
18854 * coding.c, coding.h: Mostly re-written.
18855
18856 * composite.c: Include "character.h" instead of "charset.h".
18857 (CHAR_WIDTH): Move to character.h.
18858 (HASH_KEY, HASH_VALUE): Delete.
18859
18860 * composite.h (enum composition_method): Change order of enumeration
18861 symbols.
18862
18863 * data.c: Include "character.h" instead of "charset.h".
18864 (Faref): Call CHAR_TABLE_REF for a char table.
18865 (Faset): Call CHAR_TABLE_SET for a char table.
18866
18867 * dispextern.h (free_realized_face, check_face_attribytes)
18868 (generate_ascii_font): Extern them.
18869 (free_realized_multibyte_face): Delete extern.
18870
18871 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
18872 table structure.
18873
18874 * editfns.c: Include "character.h" instead of "charset.h".
18875 (Fchar_to_string): Always call CHAR_STRING.
18876
18877 * emacs.c (main): Call init_charset_once, init_charset,
18878 syms_of_chartab, and syms_of_character.
18879
18880 * fileio.c: Include "character.h" instead of "charset.h".
18881 (Finsert_file_contents): Big change for the new code-conversion API.
18882 (choose_write_coding_system, Fwrite_region): Likewise.
18883 (build_annotations_2): Delete.
18884 (e_write): Big change for the new code-conversion API.
18885
18886 * fns.c: Include "character.h" instead of "charset.h".
18887 (copy_sub_char_table): Move to chartab.c.
18888 (Fcopy_sequence): Call copy_char_table for a char table.
18889 (concat): Delete codes calling count_multibyte.
18890 (string_char_to_byte, string_byte_to_char): Adjust for the new
18891 multibyte form.
18892 (internal_equal): Adjust for the change of char table structure.
18893 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
18894 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
18895 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
18896 (char_table_translate, optimize_sub_char_table)
18897 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
18898 chartab.c.
18899 (char_table_ref_and_index): Delete.
18900 (HASH_KEY, HASH_VALUE): Move to lisp.h.
18901 (Fmd5): Call preferred_coding_system instead of accessing
18902 Vcoding_category_list. Adjust for the new code-conversion API.
18903 (syms_of_fns): Move defsubr for char table related functions to
18904 chartab.c.
18905
18906 * fontset.c: Mostly re-written.
18907
18908 * fontset.h (struct font_info): Change type of the member encoding_type.
18909 (enum FONT_SPEC_INDEX): New enum.
18910 (fontset_font_pattern, fs_load_font): Update prototype.
18911 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
18912
18913 * indent.c: Include "character.h" instead of "charset.h".
18914 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
18915
18916 * insdel.c: Include "character.h" instead of "charset.h".
18917 (copy_text): Don't refer to Vnonascii_translation_table.
18918 (insert_from_gap): New function.
18919
18920 * keyboard.c: Include "character.h" instead of "charset.h".
18921 (command_loop_1): Never call direct_output_forward_char before
18922 a non-ASCII character.
18923 (read_char): If Vkeyboard_translate_table is a char table, always
18924 translate a character.
18925
18926 * keymap.c: Include "character.h".
18927 (store_in_keymap): Handle the case that IDX is a cons.
18928 (Fdefine_key): Handle the case that KEY is a cons and the car part
18929 is also a cons (range).
18930 (push_key_description): Adjust for the new character code.
18931 (describe_vector): Call describe_char_table for a char table.
18932 (describe_char_table): New function.
18933
18934 * keymap.h (describe_char_table): Extern it.
18935
18936 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
18937 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
18938 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
18939 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
18940 Delete.
18941 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
18942 structure.
18943 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
18944 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
18945 (CHARTAB_SIZE_BITS_3): New macros.
18946 (chartab_size): Extern it.
18947 (struct Lisp_Char_Table): Re-design.
18948 (struct Lisp_Sub_Char_Table): New structure.
18949 (HASH_KEY, HASH_VALUE): Move from fns.c.
18950 (CHARACTERBITS): Define as 22.
18951 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
18952 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
18953 (GC_SUB_CHAR_TABLE_P): New macro.
18954 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
18955 (code_convert_string_norecord): Deleted extern.
18956 (init_character_once, syms_of_character, init_charset)
18957 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
18958
18959 * lread.c: Include "character.h".
18960 (read_multibyte): New arg NBYTES.
18961 (read_escape): Change the meaning of returned *BYTEREP.
18962 (to_multibyte): Delete.
18963 (read1): Adjust the handling of char table and string.
18964
18965 * print.c: Include "character.h" instead of "charset.h".
18966 (print_string): Convert 8-bit raw bytes to octal form by
18967 string_escape_byte8.
18968 (print_object): Adjust for the new multibyte form. Print 8-bit
18969 raw bytes always in octal form. Handle sub char table correctly.
18970
18971 * process.c: Include "character.h" instead of "charset.h".
18972 (read_process_output, send_process): Adjust for the new
18973 code-conversion API.
18974
18975 * puresize.h (BASE_PURESIZE): Increase.
18976
18977 * regex.c: Include "character.h" instead of "charset.h".
18978 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
18979 (regex_compile): Accept a range whose starting and ending
18980 character have different leading bytes.
18981 (analyse_first): Adjust for the above change.
18982
18983 * search.c: Include "character.h" instead of "charset.h".
18984 (search_buffer, boyer_moore): Adjust for the new multibyte form.
18985 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
18986
18987 * syntax.c: Include "character.h" instead of "charset.h".
18988 (syntax_parent_lookup): Delete.
18989 (Fmodify_syntax_entry): Accept a cons as CHAR.
18990 (skip_chars): Adjust for the new multibyte form.
18991 (init_syntax_once): Call char_table_set_range instead of directly
18992 accessing the structure of a char table.
18993
18994 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
18995 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
18996 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
18997 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
18998
18999 * term.c: Include "buffer.h" and "character.h".
19000 (encode_terminal_code, write_glyphs): Adjust for the new
19001 code-conversion API.
19002 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
19003
19004 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
19005
19006 * xdisp.c: Include "character.h".
19007 (get_next_display_element): Adjust for the new multibyte form.
19008 (disp_char_vector): Adjust for the new char table structure.
19009 (decode_mode_spec_coding): Adjust for the new structure of
19010 coding system.
19011 (decode_mode_spec): Adjust for the new code-conversion API.
19012
19013 * xfaces.c: Include "character.h" instead of "charset.h".
19014 (load_face_font): Adjust for the change of choose_face_font and
19015 FS_LOAD_FONT.
19016 (generate_ascii_font): New function.
19017 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
19018 (set_font_frame_param): Adjust for the change of choose_face_font.
19019 (free_realized_face): Make it public.
19020 (free_realized_faces_for_fontset): Rename from
19021 free_realized_multibyte_face. Free also faces realized for ASCII.
19022 (choose_face_font): Change arguments. Adjust for the change of
19023 fontset_font_pattern and FS_LOAD_FONT.
19024
19025 * xfns.c: Include "character.h".
19026 (x_encode_text): Adjust for the new code-conversion API.
19027
19028 * xselect.c: Don't include "charset.h".
19029 (selection_data_to_lisp_data): Adjust for the new code conversion API.
19030
19031 * xterm.c: Include "character.h".
19032 (x_encode_char): New argument CHARSET. Change caller.
19033 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
19034 Call ENCODE_CHAR instead of SPLIT_CHAR.
19035 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
19036 CHAR_WIDTH instead of CHARSET_WIDTH.
19037 (XTread_socket): Adjust for the new code-conversion API.
19038 (x_new_font): Adjust for the change of FS_LOAD_FONT.
19039 (x_load_font): Adjust for the change of struct font.
19040
190412008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
19042
19043 * xfaces.c (face_at_buffer_position): Remove unused vars.
19044
190452008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19046
19047 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
19048 Fix overflow checking.
19049
190502008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19051
19052 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
19053 Cancel previous change.
19054
190552008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
19056
19057 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
19058 ccl->eight_bit_control. Fix check for buffer overflow.
19059 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
19060 (ccl_driver): Initialize extra_bytes to 0.
19061
190622008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
19063
19064 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
19065 return it ORed with ctrl_modifier.
19066
190672008-01-29 Miles Bader <miles@gnu.org>
19068
19069 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
19070
190712008-01-28 Jason Rumney <jasonr@gnu.org>
19072
19073 * w32.c (stat): Don't double check for networked drive.
19074
190752008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
19076
19077 * window.c (run_window_configuration_change_hook): New function.
19078 Code extracted from set_window_buffer. Set the selected frame.
19079 (set_window_buffer): Use it.
19080 * window.h (run_window_configuration_change_hook): Declare.
19081 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
19082
19083 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
19084
190852008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
19086
19087 * Makefile.in: Remove references to unused macros.
19088
190892008-01-26 Eli Zaretskii <eliz@gnu.org>
19090
19091 * w32.c (g_b_init_get_sid_sub_authority)
19092 (g_b_init_get_sid_sub_authority_count): New static variables.
19093 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
19094 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
19095 (init_user_info): Use them to retrieve uid and gid.
19096 Use 500/513, the Windows defaults, as Administrator's uid/gid.
19097 (fstat): Use pw_uid and pw_gid from the_passwd structure for
19098 st_uid and st_gid of the file.
19099
191002008-01-26 Jason Rumney <jasonr@gnu.org>
19101
19102 * w32.c (logon_network_drive): New function.
19103 (stat): Use it.
19104
191052008-01-26 Chong Yidong <cyd@stupidchicken.com>
19106
19107 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
19108 invisible text covered with an ellipsis.
19109
191102008-01-25 Richard Stallman <rms@gnu.org>
19111
19112 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
19113 jump back to beginning. Move some other initializations after that.
19114 (Qwindow_text_change_functions, Vwindow_text_change_functions):
19115 New variables.
19116 (syms_of_xdisp): Init them.
19117
19118 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
19119
19120 * buffer.c (reset_buffer_local_variables):
19121 Implement `permanent-local-hook'.
19122 (Qpermanent_local_hook): New variable.
19123 (syms_of_buffer): Init and staticpro it.
19124
191252008-01-25 Michael Albinus <michael.albinus@gmx.de>
19126
19127 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
19128
191292008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
19130
19131 * fns.c (Fclrhash): Return TABLE.
19132
191332008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19134
19135 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
19136 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
19137 is set even without positional changes.
19138 (x_scroll_bar_clear): Set bar->redraw_needed_p.
19139
19140 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
19141
191422008-01-23 Jason Rumney <jasonr@gnu.org>
19143
19144 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
19145
19146 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
19147 the unicode range available in MULE by locale-coding-system.
19148 Improve dbcs lead byte detection. Set event timestamp and modifiers
19149 earlier.
19150
191512008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19152
19153 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
19154 [MAC_OSX] (init_mac_osx_environment): Initialize it.
19155 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
19156 when used on child processes.
19157
191582008-01-21 Michael Albinus <michael.albinus@gmx.de>
19159
19160 * dbusbind.c (Fdbus_method_return_internal): Rename from
19161 Fdbus_method_return.
19162 (Fdbus_unregister_object): Move to dbus.el.
19163 (Fdbus_call_method, Fdbus_method_return_internal)
19164 (Fdbus_send_signal): Improve debug messages.
19165
191662008-01-20 Martin Rudalics <rudalics@gmx.at>
19167
19168 * undo.c (undo_inhibit_record_point): New variable.
19169 (syms_of_undo): Initialize it.
19170 (record_point): Don't record point when undo_inhibit_record_point
19171 is set.
19172
191732008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
19174
19175 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
19176
19177 * xdisp.c (Qauto_hscroll_mode): New var.
19178 (syms_of_xdisp): Initialize it.
19179 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
19180 window's buffer.
19181 (hscroll_windows): Don't check automatic_hscrolling_p here.
19182
19183 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
19184 vscroll if we're setting window-buffer to the value it already has.
19185
191862008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
19187
19188 * m/intel386.h: Remove references to XENIX.
19189
191902008-01-17 Andreas Schwab <schwab@suse.de>
19191
19192 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
19193 instead of HAVE_X86_64_LIB64_DIR.
19194 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
19195
191962008-01-17 Glenn Morris <rgm@gnu.org>
19197
19198 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
19199 to HAVE_X86_64_LIB64_DIR.
19200
192012008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
19202
19203 * s/irix3-3.h:
19204 * s/irix4-0.h:
19205 * s/386-ix.h:
19206 * s/domain.h:
19207 * s/hpux9-x11r4.h:
19208 * s/hpux9shxr4.h: Remove files for systems no longer supported.
19209
19210 * sysdep.c: Remove code containing references to symbols defined
19211 by unsupported systems.
19212
192132008-01-16 Glenn Morris <rgm@gnu.org>
19214
19215 * coding.c (select-safe-coding-system-function): Doc fix.
19216
192172008-01-15 Glenn Morris <rgm@gnu.org>
19218
19219 * config.in: Revert 2008-01-13 change: this is a generated file.
19220
192212008-01-13 Tom Tromey <tromey@redhat.com>
19222
19223 * lisp.h: Fix typo.
19224
192252008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
19226
19227 * m/sequent-ptx.h:
19228 * m/sequent.h:
19229 * s/ptx.h:
19230 * s/ptx4-2.h:
19231 * s/ptx4.h: Remove files for systems no longer supported.
19232
19233 * callproc.c (Fcall_process): Fix previous change.
19234
192352008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
19236
19237 * unexsunos4.c: Remove file, system not supported anymore.
19238
19239 * m/mips.h:
19240 * m/intel386.h:
19241 * callproc.c:
19242 * config.in:
19243 * ecrt0.c:
19244 * emacs.c:
19245 * fileio.c:
19246 * frame.c:
19247 * getpagesize.h:
19248 * keyboard.c:
19249 * lread.c:
19250 * process.c:
19251 * puresize.h:
19252 * sysdep.c:
19253 * systty.h:
19254 * syswait.h:
19255 * unexec.c:
19256 * xdisp.c:
19257 * alloc.c: Remove code containing references to symbols defined by
19258 unsupported systems.
19259
192602008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
19261
19262 * coding.c (detect_coding_mask): Fix previous change.
19263
192642008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
19265
19266 * coding.c (detect_coding_iso2022): New arg
19267 latin_extra_code_state. Allow Latin extra codes only
19268 when *latin_extra_code_state is nonzero.
19269 (detect_coding_mask): If there is a NULL byte, detect the encoding
19270 as UTF-16 or binary. If Latin extra codes exist, detect the
19271 encoding as ISO-2022 only when there's no other proper encoding is
19272 found.
19273
192742008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19275
19276 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
19277 #ifdef MAC_OS.
19278
192792008-01-08 Richard Stallman <rms@gnu.org>
19280
19281 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
19282
192832008-01-06 Nick Roberts <nickrob@snap.net.nz>
19284
19285 * keyboard.c (parse_menu_item): Don't enclose key bindings on
19286 menu bar in parentheses.
19287
192882008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
19289
19290 * m/7300.h:
19291 * m/acorn.h:
19292 * m/alliant-2800.h:
19293 * m/alliant.h:
19294 * m/alliant1.h:
19295 * m/alliant4.h:
19296 * m/altos.h:
19297 * m/amdahl.h:
19298 * m/apollo.h:
19299 * m/att3b.h:
19300 * m/aviion-intel.h:
19301 * m/aviion.h:
19302 * m/celerity.h:
19303 * m/clipper.h:
19304 * m/cnvrgnt.h:
19305 * m/convex.h:
19306 * m/cydra5.h:
19307 * m/delta88k.h:
19308 * m/dpx2.h:
19309 * m/dual.h:
19310 * m/elxsi.h:
19311 * m/f301.h:
19312 * m/gould-np1.h:
19313 * m/gould.h:
19314 * m/i860.h:
19315 * m/ibmps2-aix.h:
19316 * m/ibmrt-aix.h:
19317 * m/ibmrt.h:
19318 * m/irist.h:
19319 * m/is386.h:
19320 * m/isi-ov.h:
19321 * m/mega68.h:
19322 * m/mg1.h:
19323 * m/news-r6.h:
19324 * m/news-risc.h:
19325 * m/news.h:
19326 * m/nh3000.h:
19327 * m/nh4000.h:
19328 * m/ns16000.h:
19329 * m/ns32000.h:
19330 * m/nu.h:
19331 * m/orion.h:
19332 * m/orion105.h:
19333 * m/paragon.h:
19334 * m/pfa50.h:
19335 * m/plexus.h:
19336 * m/pyramid.h:
19337 * m/pyrmips.h:
19338 * m/sh3el.h:
19339 * m/sps7.h:
19340 * m/sr2k.h:
19341 * m/stride.h:
19342 * m/sun1.h:
19343 * m/sun2.h:
19344 * m/sun3-68881.h:
19345 * m/sun3-fpa.h:
19346 * m/sun3-soft.h:
19347 * m/sun3.h:
19348 * m/sun386.h:
19349 * m/symmetry.h:
19350 * m/tad68k.h:
19351 * m/tahoe.h:
19352 * m/targon31.h:
19353 * m/tek4300.h:
19354 * m/tekxd88.h:
19355 * m/tower32.h:
19356 * m/tower32v3.h:
19357 * m/ustation.h:
19358 * m/wicat.h:
19359 * m/xps100.h:
19360 * s/cxux.h:
19361 * s/cxux7.h:
19362 * s/dgux.h:
19363 * s/dgux4.h:
19364 * s/dgux5-4-3.h:
19365 * s/dgux5-4r2.h:
19366 * s/esix.h:
19367 * s/esix5r4.h:
19368 * s/hiuxmpp.h:
19369 * s/hiuxwe2.h:
19370 * s/iris3-5.h:
19371 * s/iris3-6.h:
19372 * s/isc2-2.h:
19373 * s/isc3-0.h:
19374 * s/isc4-0.h:
19375 * s/isc4-1.h:
19376 * s/newsos5.h:
19377 * s/newsos6.h:
19378 * s/osf1.h:
19379 * s/osf5-0.h:
19380 * s/riscix1-1.h:
19381 * s/riscix12.h:
19382 * s/sco4.h:
19383 * s/sco5.h:
19384 * s/sunos4-0.h:
19385 * s/sunos4-1.h:
19386 * s/sunos413.h:
19387 * s/sunos4shr.h:
19388 * s/umax.h:
19389 * s/unipl5-2.h:
19390 * s/xenix.h:
19391 * cxux-crt0.s:
19392 * unexapollo.c:
19393 * unexconvex.c:
19394 * unexenix.c:
19395 * unexsni.c: Remove files for systems no longer supported.
19396
19397 * m/intel386.h: Remove references to unsupported systems.
19398
19399 * w32.c (get_emacs_configuration): Remove reference to i860.
19400
19401 * sysdep.c: Remove dead code.
19402
194032008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
19404
19405 * s/rtu.h:
19406 * m/masscomp.h: Remove files. Platform is obsolete.
19407
194082008-01-04 Michael Albinus <michael.albinus@gmx.de>
19409
19410 * dbusbind.c (Fdbus_method_return): New function.
19411 (xd_read_message): Add the serial number to the event.
19412 (Fdbus_register_method): Activate the function.
19413
194142008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
19415
19416 * keyboard.c (read_key_sequence): Fix typo.
19417
194182008-01-03 Michael Albinus <michael.albinus@gmx.de>
19419
19420 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
19421 (xd_signature, xd_append_arg): Handle element type detection for
19422 empty arrays.
19423 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
19424 SDATA () calls; this must be solved more general.
19425 (Fdbus_register_signal): Use SBYTES instead of strlen.
19426
194272008-01-03 Magnus Henoch <magnus@zemdatav>
19428
19429 * dbusbind.c (xd_append_arg): Use unsigned char instead of
19430 unsigned int for byte values (necessary for big-endian platform).
19431 (Fdbus_call_method): Handle the case of no returned arguments.
19432
194332007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
19434
19435 * dbusbind.c (xd_read_message): Use non-static input_event struct.
19436
194372007-12-31 Magnus Henoch <mange@freemail.hu>
19438
19439 * dbusbind.c (xd_signature): Signature of variant is just "v".
19440
194412007-12-30 Michael Albinus <michael.albinus@gmx.de>
19442
19443 * dbusbind.c: Fix several errors and compiler warnings.
19444 Reported by Tom Tromey <tromey@redhat.com>.
19445 (XD_ERROR, XD_DEBUG_MESSAGE)
19446 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
19447 (xd_append_arg): Part for basic D-Bus types rewritten.
19448 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
19449 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
19450 appropriate.
19451 (xd_read_message): Return Qnil. Don't signal an error; it is not
19452 useful during event reading.
19453 (Fdbus_register_signal): Signal an error if the check for
19454 FUNCTIONP fails.
19455 (Fdbus_register_method): New function. The implementation is not
19456 complete, the call of the function signals an error therefore.
19457 (Fdbus_unregister_object): New function, renamed from
19458 Fdbus_unregister_signal. The initial check signals an error, if
19459 the object is not well formed.
19460
194612007-12-30 Richard Stallman <rms@gnu.org>
19462
19463 * textprop.c (get_char_property_and_overlay):
19464 Signal error if POSITION is out of range in a buffer.
19465
194662007-12-29 Martin Rudalics <rudalics@gmx.at>
19467
19468 * w32fns.c (Fx_create_frame): Make copy of frame parameters
19469 because the original parameters are in pure storage now.
19470
194712007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19472
19473 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
19474
194752007-12-22 Eli Zaretskii <eliz@gnu.org>
19476
19477 * callint.c (syms_of_callint) <command-history>: Add reference to
19478 history-length in the doc string.
19479
194802007-12-17 Jason Rumney <jasonr@gnu.org>
19481
19482 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
19483 before passing as wParam.
19484
194852007-12-22 Michael Albinus <michael.albinus@gmx.de>
19486
19487 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
19488 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
19489 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
19490 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
19491 as number.
19492 (Fdbus_call_method): Fix docstring.
19493
194942007-12-21 Michael Albinus <michael.albinus@gmx.de>
19495
19496 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
19497 New macros.
19498 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
19499 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
19500 Simplify.
19501 (xd_signature): New function.
19502 (xd_append_arg): Compute also signatures. Major rewrite.
19503 (xd_retrieve_arg): Make debug messages friendly.
19504 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
19505 Check for signatures of arguments.
19506
195072007-12-19 Michael Albinus <michael.albinus@gmx.de>
19508
19509 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
19510 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
19511 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
19512 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
19513 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
19514 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
19515 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
19516 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
19517 (xd_retrieve_value): Remove. Functionality included in ...
19518 (xd_append_arg): New function.
19519 (Fdbus_call_method, Fdbus_send_signal): Apply it.
19520
195212007-12-16 Michael Albinus <michael.albinus@gmx.de>
19522
19523 * dbusbind.c (top): Include <stdio.h>.
19524 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
19525 dbus_message_new_method_call and dbus_message_new_signal.
19526 (Fdbus_register_signal): Rename unique_name to uname.
19527 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
19528 non-existing unique name. Fix typos in matching rule. Return an
19529 object which is useful in Fdbus_unregister_signal.
19530 (Fdbus_unregister_signal): Reimplementation, in order to remove
19531 only the corresponding entry.
19532 (Vdbus_registered_functions_table): Change the order of entries.
19533 Apply these changes in xd_read_message and Fdbus_register_signal.
19534
195352007-12-16 Andreas Schwab <schwab@suse.de>
19536
19537 * fileio.c (Finsert_file_contents): Fix overflow check to not
19538 depend on undefined integer overflow.
19539
195402007-12-14 Jason Rumney <jasonr@gnu.org>
19541
19542 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
19543 for characters above 127.
19544
195452007-12-13 Jason Rumney <jasonr@gnu.org>
19546
19547 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
19548 before dereferencing array.
19549 (lookup_vk_code): Remove zero comparison.
19550
195512007-12-14 Michael Albinus <michael.albinus@gmx.de>
19552
19553 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
19554 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
19555 Use `unsigned int' instead of `uint'.
19556 (xd_read_message, Fdbus_register_signal): Split expressions into
19557 multiple lines before operators "&&" and "||", according to the
19558 GNU Coding Standards.
19559
195602007-12-14 Eli Zaretskii <eliz@gnu.org>
19561
19562 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
19563
195642007-12-12 Juri Linkov <juri@jurta.org>
19565
19566 * buffer.c (Frename_buffer): In interactive spec replace
19567 `read-buffer' with `read-string' that uses `buffer-name-history'
19568 as history, and the current buffer's name as default.
19569
195702007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
19571
19572 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
19573 manipulating the backtrace manually.
19574 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
19575 (struct backtrace, backtrace_list): Remove.
19576 (command_loop_1): Remove dead var `no_direct'.
19577
19578 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
19579 preserve non-built-in buffer-local variables.
19580 (Fkill_all_local_variables): Don't re-create&re-set permanent
19581 buffer-local variables.
19582
195832007-12-09 Juri Linkov <juri@jurta.org>
19584
19585 * buffer.c (Frename_buffer): Change interactive spec from "s" to
19586 Lisp code that uses `read-buffer' with current buffer as default.
19587
195882007-12-08 Michael Albinus <michael.albinus@gmx.de>
19589
19590 * dbusbind.c (xd_read_message): Generate an event for every
19591 registered handler. There might be several handlers registered
19592 for the same signal.
19593 (Fdbus_register_signal): Don't overwrite a registration for the
19594 same signal. Add a new registration if handlers are different.
19595 (Vdbus_registered_functions_table): Rework doc string.
19596
195972007-12-07 Michael Albinus <michael.albinus@gmx.de>
19598
19599 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
19600 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
19601 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
19602 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
19603 Unify argument lists.
19604 (xd_read_message, Fdbus_register_signal): Reorder and extend event
19605 arguments and hash table keys. Use unique name for service.
19606 (Fdbus_unregister_signal): Remove checks.
19607 (Vdbus_registered_functions_table): Fix doc string.
19608
196092007-12-05 Magnus Henoch <mange@freemail.hu>
19610
19611 * process.c (make_process): Initialize pty_flag to 0.
19612
196132007-12-05 Jason Rumney <jasonr@gnu.org>
19614
19615 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
19616 specified XBMs.
19617
196182007-12-05 Richard Stallman <rms@gnu.org>
19619
19620 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
19621
196222007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19623
19624 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
19625 New variable.
19626 (mac_try_close_socket) [MAC_OSX]: New function.
19627 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
19628 Update cfsockets_for_select. Replace invalid CFRunLoop source.
19629
19630 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
19631 Use mac_try_close_socket.
19632
196332007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19634
19635 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
19636 reloc_base.
19637 (copy_dysymtab): Compute relocation base here.
19638 (rebase_reloc_address) [__ppc64__]: New function.
19639 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
19640 changed.
19641
196422007-12-05 Jason Rumney <jasonr@gnu.org>
19643
19644 * w32proc.c (sys_spawnve): Quote args with wildcards.
19645
196462007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19647
19648 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
19649 __objc_* sections.
19650 (unrelocate) [_LP64]: Set relocation base to address of data segment.
19651
196522007-12-05 Michael Albinus <michael.albinus@gmx.de>
19653
19654 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
19655 Move check for Vdbus_registered_functions_table to
19656 xd_read_queued_messages.
19657 (xd_read_queued_messages): Protect xd_read_message calls by
19658 internal_condition_case_1.
19659
196602007-12-04 Michael Albinus <michael.albinus@gmx.de>
19661
19662 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
19663 Qdbus_system_bus and Qdbus_session_bus, respectively.
19664 (Vdbus_intern_symbols): Remove.
19665 (Vdbus_registered_functions_table): New hash table.
19666 (XD_SYMBOL_INTERN_SYMBOL): Remove.
19667 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
19668 Rewrite in order to manage registered functions by hash table
19669 Vdbus_registered_functions_table.
19670
196712007-12-03 Jan Djärv <jan.h.d@swipnet.se>
19672
19673 * xterm.c: Update URL to Window Manager Specification in comment.
19674
196752007-12-02 Michael Albinus <michael.albinus@gmx.de>
19676
19677 * config.in (HAVE_DBUS): Add.
19678
19679 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
19680 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
19681 (obj): Add $(DBUS_OBJ).
19682 (LIBES): Add $(DBUS_LIBS).
19683 (dbusbind.o): New target.
19684
19685 * dbusbind.c: New file.
19686
19687 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
19688
19689 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
19690 (Qdbus_event): New Lisp symbol.
19691 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
19692 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
b97439ce 19693 (keys_of_keyboard): Define dbus-event.
aac0c6e3
MR
19694
19695 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
19696
196972007-12-01 Richard Stallman <rms@gnu.org>
19698
19699 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
19700
197012007-11-30 Jason Rumney <jasonr@gnu.org>
19702
19703 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
19704 (w32con_reset_terminal_modes): Clear screen buffer.
19705 (w32_face_attributes): Don't use color indexes that are out of range.
19706 Only reverse the default colors.
19707
19708 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
19709 WINDOWSNT.
19710
19711 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
19712
197132007-11-29 Jason Rumney <jasonr@gnu.org>
19714
19715 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
19716 (w32_face_attributes): Use Vtty_defined_color_alist to determine
19717 if the terminal colors are initialized.
19718 (unspecified_fg, unspecified_bg): Remove unused declarations.
19719
197202007-11-29 Andreas Schwab <schwab@suse.de>
19721
19722 * keyboard.c (apply_modifiers): Fix typo.
19723
197242007-11-29 Richard Stallman <rms@gnu.org>
19725
19726 * keymap.c (Fcurrent_local_map): Doc fix.
19727
197282007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
19729
19730 * s/gnu-kfreebsd.h: New file.
19731
197322007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
19733
19734 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
19735 Don't cast redundantly.
19736
19737 * keyboard.c (KEY_TO_CHAR): New macro.
19738 (parse_modifiers, apply_modifiers): Accept integer arguments.
19739 (read_key_sequence): Use them to unify the "shift->unshift" mapping
19740 for chars and symbol keys.
19741 After doing such remapping, apply function-key-map again.
19742
197432007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
19744
19745 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
19746 compiled anymore.
19747
197482007-11-26 Andreas Schwab <schwab@suse.de>
19749
19750 * process.c (list_processes_1): Fix indentation level of the
19751 command column.
19752
197532007-11-23 Andreas Schwab <schwab@suse.de>
19754
19755 * editfns.c (Fformat): Handle %c specially since it requires the
19756 argument to be of type int.
19757
197582007-11-23 Markus Triska <markus.triska@gmx.at>
19759
19760 * emacs.c (main): Call init_editfns before init_process, since
19761 init_process sets Vprocess_connection_type depending on OS release.
19762
197632007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
19764
19765 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
19766 (find_symbol_value): Use do_symval_forwarding.
19767
19768 * data.c (set_internal): Set the value in the `cons-cell' (for
19769 Buffer_Local_values) not only for frame-local variables.
19770
197712007-11-22 Andreas Schwab <schwab@suse.de>
19772
19773 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
19774 values to sprintf.
19775 * keymap.c (Fsingle_key_description): Likewise.
19776 * print.c (print_object): Likewise.
19777
197782007-11-22 Jan Djärv <jan.h.d@swipnet.se>
19779
19780 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
19781 file for image is nil.
19782
197832007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
19784
19785 * term.c: Include stdarg.h.
19786 (fatal): Implement using varargs.
19787 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
19788
197892007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
19790
19791 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
19792 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
19793 Update call to buffer_slot_type_mismatch.
19794 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
19795 (buffer_slot_type_mismatch): Update.
19796 * buffer.c (buffer_local_types): Remove.
19797 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
19798 (defvar_per_buffer): Set the type in the buffer_objfwd.
19799
198002007-11-21 Jason Rumney <jasonr@gnu.org>
19801
19802 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
19803 CreateFileMapping returns NULL on failure.
19804
198052007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
19806
19807 * search.c (Fset_match_data): Remove the `evaporate' feature.
19808 (unwind_set_match_data): Don't use the `evaporate' feature.
19809
198102007-11-21 Jason Rumney <jasonr@gnu.org>
19811
19812 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
19813
19814 * w32console.c (w32con_write_glyphs): Remove unused variables.
19815
198162007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
19817
19818 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
19819
19820 * s/darwin.h (MULTI_KBOARD): Remove.
19821
19822 * macfns.c (x_create_tip_frame, Fx_create_frame)
19823 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
19824
198252007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
19826
19827 * buffer.c (Fbuffer_local_value): Remove redundant test.
19828 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
19829 than in `current-buffer' to match the comment.
19830 Do the swap using swap_in_global_binding.
19831
19832 * data.c (store_symval_forwarding, set_internal):
19833 * eval.c (specbind): Remove dead code.
19834
19835 * coding.c (detect_coding, Fupdate_coding_systems_internal):
19836 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
19837 Since we do not want to see internal Lisp_*fwd objects here.
19838
198392007-11-18 Jan Djärv <jan.h.d@swipnet.se>
19840
19841 * sysdep.c (init_system_name): Use getaddrinfo if available.
19842
19843 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
19844 (x_scroll_bar_note_movement): start, end, with, height in struct
19845 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
19846
198472007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
19848
19849 * puresize.h (BASE_PURESIZE): Increase to 1190000.
19850
198512007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
19852
19853 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
19854 This undoes Richard's change of 14-Oct-2002.
19855
19856 * alloc.c (allocate_other_vector):
19857 * lisp.h (allocate_other_vector): Remove.
19858
19859 * window.c (struct save_window_data): Move non-lisp data to the end
19860 and make it `int' rather than Lisp_Object.
19861 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
19862 Done wrap/unwrap integer values.
19863 (Fset_window_configuration, compare_window_configurations):
19864 Update use of fields to their new types.
19865
19866 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
19867 Turn integer fields into `int'. Merge x_window_low and x_window_high.
19868 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
19869 (SET_SCROLL_BAR_X_WINDOW): Remove.
19870 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
19871 Access the new x_window field directly.
19872 * xterm.c (x_scroll_bar_create): Use a pseudovector.
19873 Don't wrap/unwrap integers into Lisp_Objects.
19874 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
19875 (x_scroll_bar_report_motion):
19876 Don't wrap/unwrap integers into Lisp_Objects.
19877 (x_term_init): Use SDATA.
19878 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
19879 (x_scroll_bar_set_handle, x_scroll_bar_remove)
19880 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
19881 (x_scroll_bar_report_motion, x_scroll_bar_clear):
19882 * xfns.c (x_set_background_color):
19883 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
19884 Access the new x_window field directly.
19885
19886 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
19887 (allocate_pseudovector): Make non-static.
19888
19889 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
19890 (allocate_pseudovector): Declare.
19891 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
19892
198932007-11-15 Andreas Schwab <schwab@suse.de>
19894
19895 * editfns.c (Fformat): Correctly format EMACS_INT values.
19896 Also take precision into account when formatting an integer.
19897
19898 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
19899
199002007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
19901
19902 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
19903 (syms_of_keyboard): Defsubr it.
19904
19905 * data.c (swap_in_global_binding): Fix longstanding bug where
19906 store_symval_forwarding was not called with the right second argument,
19907 thus causing objfwd-ing from being dropped.
19908
199092007-11-14 Juanma Barranquero <lekktu@gmail.com>
19910
19911 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
19912 (Fx_display_pixel_height, Fx_display_planes)
19913 (Fx_display_color_cells, Fx_server_max_request_size)
19914 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
19915 (Fx_display_visual_class, Fx_display_save_under):
19916 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
19917 (Fx_display_pixel_height, Fx_display_planes)
19918 (Fx_display_color_cells, Fx_server_max_request_size)
19919 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
19920 (Fx_display_mm_height, Fx_display_mm_width)
19921 (Fx_display_backing_store, Fx_display_visual_class)
19922 (Fw32_select_font, Fx_display_save_under):
19923 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
19924 (Fx_display_pixel_height, Fx_display_planes)
19925 (Fx_display_color_cells, Fx_server_max_request_size)
19926 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
19927 (Fx_display_save_under): Fix typos in docstrings.
19928
199292007-11-14 Juanma Barranquero <lekktu@gmail.com>
19930
19931 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
19932 corresponding to deleted entries; they are an implementation detail.
19933 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
19934 Remove variables.
19935 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
19936 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
19937 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
19938 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
19939 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
19940 (Fw32_define_rgb_color, Fw32_load_color_file)
19941 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
19942 Fix typos in docstrings.
19943 (Fx_server_version): Reflow docstring.
19944 (Fw32_shell_execute): Doc fixes.
19945
199462007-11-13 Juanma Barranquero <lekktu@gmail.com>
19947
19948 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
19949 if w32_parse_hot_key returned nil.
19950
199512007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
19952
19953 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
19954
199552007-11-09 Jason Rumney <jasonr@gnu.org>
d6c952f8 19956
aac0c6e3
MR
19957 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
19958
19959 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
19960
19961 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
19962 Remove W32_SCROLL_BAR_CLICK_EVENT.
19963
19964 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
19965 Add MULTIMEDIA_KEY_EVENT.
19966
19967 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
19968 (lispy_multimedia_keys) [WINDOWSNT]: New array.
19969 (make_lispy_event) [WINDOWSNT]: Use it to translate
19970 MULTIMEDIA_KEY_EVENT.
19971
19972 * w32term.h (WM_APPCOMMAND): Define if not already.
19973 (GET_APPCOMMAND_LPARAM): Likewise.
19974
19975 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
19976 WM_APPCOMMAND.
19977
19978 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
19979 (syms_of_w32fns): Export and initialize it.
19980 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
19981
199822007-11-09 Chong Yidong <cyd@stupidchicken.com>
19983
19984 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
19985 twice.
19986
19987 * xdisp.c (handle_face_prop): Fix last change.
19988
199892007-11-09 Richard Stallman <rms@gnu.org>
19990
19991 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
19992 not just for after-strings and before-strings.
19993 Call face_for_overlay_string and pass the overlay to it.
19994 (handle_display_prop): Determine whether property came from an overlay.
19995 Pass OVERLAY arg to handle_single_display_spec.
19996 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
19997 (load_overlay_strings): Fill in it->string_overlays.
19998 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
19999
20000 * xfaces.c (face_for_overlay_string): Function renamed from
20001 face_at_buffer_position_no_overlays, and add arg OVERLAY.
20002
20003 * dispextern.h (struct it): New elt string_overlays.
20004 New elt from_overlay, also in stack.
20005 Rearrange a few elements.
20006 (face_for_overlay_string): Decl renamed from
20007 face_at_buffer_position_no_overlays, and add argument.
20008
200092007-11-09 Richard Stallman <rms@gnu.org>
20010
20011 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
20012 to get the base face for an overlay string.
20013
20014 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
20015
20016 * xfaces.c (face_at_buffer_position_no_overlays): New function.
20017
20018 * xdisp.c (handle_stop): Move some code out of loop.
20019
200202007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20021
20022 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
20023 Fix conversion from Lisp object to ATSUFontID.
20024
200252007-11-09 Jason Rumney <jasonr@gnu.org>
20026
20027 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
20028
200292007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20030
20031 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
20032 Don't assume regions are aligned to page boundary.
20033 (print_load_command_name): Add LC_UUID if defined.
20034
200352007-11-09 Richard Stallman <rms@gnu.org>
20036
20037 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
20038
200392007-11-07 Jason Rumney <jasonr@gnu.org>
20040
20041 * s/windows95.h: Remove.
20042
200432007-11-06 Jan Djärv <jan.h.d@swipnet.se>
20044
20045 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
20046 abort with a message on unhandled store_type values.
20047
200482007-11-01 Jan Djärv <jan.h.d@swipnet.se>
20049
20050 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
20051 Remove HAVE_X11R5 and HAVE_X11R4.
20052
200532007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
20054
20055 * Makefile.in: Remove references to sunfns.c and sunfns.o.
20056
200572007-11-01 Johan Bockgård <bojohan@gnu.org>
20058
20059 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
20060 Don't set s->stippled_p here, since it has already been set by
20061 x_set_glyph_string_gc from x_draw_glyph_string.
20062
200632007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
20064
20065 * sunfns.c: Remove file.
20066
20067 * m/sun386.h:
20068 * m/sun2.h:
20069 * m/sparc.h: Remove Sun windows code.
20070
200712007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
20072
20073 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
20074 (init_keyboard): Set current_kboard's window-system to nil.
20075 (tty_read_avail_input): Typo.
20076 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
20077
200782007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
20079
20080 * s/usg5-4.h:
20081 * s/usg5-3.h:
20082 * s/ptx.h:
20083 * m/is386.h:
20084 * m/ibmps2-aix.h:
20085 * Makefile.in: Remove all mentions of X10.
20086
20087 * dispnew.c (syms_of_display): Don't mention version 10.
20088
200892007-10-28 Juanma Barranquero <lekktu@gmail.com>
20090
20091 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
20092 ($(BLD)/abbrev.$(O)): Remove.
20093
200942007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
20095
20096 Rewrite abbrev.c in Elisp.
20097 * image.c (Qcount): Don't declare as extern.
20098 (syms_of_image): Initialize and staticpro `Qcount'.
20099 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
20100 * emacs.c (main): Don't call syms_of_abbrev.
20101 * Makefile.in (obj): Remove abbrev.o.
20102 (abbrev.o): Remove.
20103 * abbrev.c: Remove.
20104
201052007-10-26 Martin Rudalics <rudalics@gmx.at>
20106
20107 * window.c (window_min_size_2): Don't count header-line.
20108
201092007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
20110
20111 * frame.h (struct frame): Move all bit fields after the first bit
20112 field to take advantage of the available space. Group all the
20113 chars together to reduce wasted space due to padding.
20114
201152007-10-26 Juanma Barranquero <lekktu@gmail.com>
20116
20117 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
20118
20119 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
20120 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
20121 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
20122 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
20123 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
20124 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
20125 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
20126 (last_marked, mark_object_loop_halt): Make static.
20127
20128 * frame.c (syms_of_frame) <delete-frame-functions>:
20129 Fix typo in docstring.
20130
201312007-10-25 Juanma Barranquero <lekktu@gmail.com>
20132
20133 * w32.c (init_environment): Fix tiny memory leak.
20134 (w32_get_resource): Remove unused variable `ok'.
20135
201362007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
20137
20138 Make `window-system' into a keyboard-local variable (rather than
20139 frame-local as done originally by multi-tty).
20140
20141 * keyboard.h (struct kboard): Add Vwindow_system.
20142 * keyboard.c (init_kboard): Set a default for Vwindow_system.
20143 (mark_kboards): Mark Vwindow_system.
20144
20145 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
20146 (init_display): Don't set the obsolete `window-system' frame-param.
20147
20148 * xterm.c (x_term_init):
20149 * w32term.c (w32_create_terminal):
20150 * term.c (init_tty): Set Vwindow_system.
20151 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
20152 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
20153
20154 * xfns.c (Fx_create_frame, x_create_tip_frame):
20155 * w32fns.c (Fx_create_frame, x_create_tip_frame):
20156 * macfns.c (Fx_create_frame):
20157 Don't set the obsolete `window-system' frame-param.
20158
20159 * frame.h (Qwindow_system): Remove.
20160 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
20161 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
20162
201632007-10-24 Richard Stallman <rms@gnu.org>
20164
20165 * frame.c (x_figure_window_size): For fullscreen case,
20166 set USPosition | PPosition without clobbering rest of window_prompting.
20167
20168 * keyboard.c (Fcurrent_idle_time): Doc fix.
20169
20170 * print.c (Fwith_output_to_temp_buffer): Doc fix.
20171
201722007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
20173
20174 * process.c (unwind_request_sigio): Only define if __ultrix__.
20175
20176 * callproc.c (child_setup): Remove spurious *.
20177
20178 * lisp.h (Fget_text_property): Declare.
20179 (have_menus_p): Declare it here rather than in sys-dep header files.
20180 * macterm.h (have_menus_p):
20181 * msdos.h (have_menus_p):
20182 * xterm.h (have_menus_p): Remove.
20183
20184 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
20185 (Fmake_variable_frame_local): Just check the variable's const-ness
20186 rather than checking nil or t.
20187
201882007-10-22 Jason Rumney <jasonr@gnu.org>
20189
20190 * w32fns.c: Include math.h.
20191 (w32_abort): Declaration moved to nt/config.nt.
20192
20193 * s/ms-w32.h (HAVE_STDLIB_H): Define.
20194 (abort): Redefinition moved to nt/config.nt.
20195
20196 * m/windowsnt.h: Remove.
20197
201982007-10-22 Juanma Barranquero <lekktu@gmail.com>
20199
20200 * emacs.c (Fdump_emacs): Fix typo in message.
20201 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
20202 <installation-directory>: Reflow docstring.
20203
202042007-10-22 Juri Linkov <juri@jurta.org>
20205
20206 * minibuf.c: Allow minibuffer default to be a list of default values.
20207 With empty input use the first element of this list as returned default.
20208 (string_to_object)
20209 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
20210 (read_minibuf): If defalt is cons, set histstring to its car.
20211 (Fread_string): If default_value is cons, set val to its car.
20212 (Fread_buffer): If def is cons, use its car.
20213 (Fcompleting_read): If defalt is cons, set val to its car.
20214
202152007-10-21 Michael Albinus <michael.albinus@gmx.de>
20216
20217 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
20218
202192007-10-20 Juanma Barranquero <lekktu@gmail.com>
20220
20221 * doc.c (Fdocumentation): Check for advice in all cases.
20222
202232007-10-19 Chong Yidong <cyd@stupidchicken.com>
20224
20225 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
20226
202272007-10-19 Richard Stallman <rms@gnu.org>
20228
20229 * doc.c (Fdocumentation): Check for and handle an advised function.
20230
202312007-10-19 Juanma Barranquero <lekktu@gmail.com>
20232
20233 * process.c (Fset_process_filter): Doc fix.
20234
202352007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
20236
20237 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
20238 which caused key-translation-map to applied repeatedly (thus breaking
20239 double-mode).
20240
202412007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
20242
20243 * xselect.c (x_own_selection, x_handle_selection_clear)
20244 (x_clear_frame_selections):
20245 * w32menu.c (list_of_panes, list_of_items):
20246 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
20247 * textprop.c (validate_plist, interval_has_all_properties)
20248 (interval_has_some_properties, interval_has_some_properties_list)
20249 (add_properties, text_property_list):
20250 * process.c (Fget_buffer_process, list_processes_1, status_notify):
20251 * minibuf.c (Fassoc_string):
20252 * macselect.c (x_own_selection, x_clear_frame_selections)
20253 (Fx_disown_selection_internal):
20254 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
20255 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
20256
202572007-10-17 Chong Yidong <cyd@stupidchicken.com>
20258
20259 * process.c: Link to libs for calling res_init() if available.
20260 (Fmake_network_process): Call res_init() before getaddrinfo or
20261 gethostbyname, if possible.
20262
202632007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
20264
20265 * lread.c (read1): Set pvectype for char_tables.
20266
20267 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
20268 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
20269 Add type checks.
20270 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
20271
20272 * alloc.c (free_misc): Use XMISCTYPE.
20273 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
20274
202752007-10-17 Glenn Morris <rgm@gnu.org>
20276
20277 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
20278 (syms_of_minibuf): Add Qcompletion_ignore_case.
20279 * dired.c (Qcompletion_ignore_case): Change to external.
20280 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
20281 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
20282 (Fread_file_name): Use it rather than intern'ing.
20283
20284 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
20285 (Fread_coding_system): Ignore case of user input.
20286
202872007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20288
20289 * xdisp.c (handle_display_prop): Ignore display specs after
20290 replacing one when string text is being replaced.
20291 (handle_single_display_spec): Pretend as if characters with display
20292 property haven't been consumed only when buffer text is being replaced.
20293
202942007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
20295
20296 * xfns.c (Fx_create_frame, Fx_display_list):
20297 * window.c (window_fixed_size_p, enlarge_window)
20298 (shrink_window_lowest_first):
20299 * macterm.c (init_font_name_table):
20300 * macfns.c (Fx_create_frame, Fx_display_list):
20301 * lread.c (close_load_descs):
20302 * keyboard.c (read_char_x_menu_prompt):
20303 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
20304 * coding.c (code_convert_region_unwind): Test the type of an object
20305 rather than just !NILP before extracting data from it.
20306
20307 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
20308
20309 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
20310 (XMISCANY): New macro.
20311 (XMISCTYPE): Use it.
20312 (struct Lisp_Misc_Any): New type.
20313 (union Lisp_Misc): Use it.
20314 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
20315 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
20316 (find_symbol_value, set_internal, default_value, Fset_default)
20317 (Fmake_variable_buffer_local, Fmake_local_variable)
20318 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
20319 (Flocal_variable_if_set_p, Fvariable_binding_locus):
20320 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
20321 * alloc.c (allocate_buffer): Set the size and tag.
20322 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
20323 Use XMISCANY.
20324 (die): Follow the GNU convention for error messages.
20325 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
20326 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
20327 tag any more.
20328 (set_buffer_internal_1):
20329 * frame.c (store_frame_param):
20330 * eval.c (specbind):
20331 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
20332
20333 * doc.c (Fsnarf_documentation): Simplify.
20334
203352007-10-14 Juanma Barranquero <lekktu@gmail.com>
20336
20337 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
20338 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
20339
203402007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
20341
20342 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
20343
203442007-10-14 Juanma Barranquero <lekktu@gmail.com>
20345
20346 * eval.c (do_autoload): Don't save autoloads.
20347
20348 * data.c (Ffset): Save autoload of the function being set.
20349
203502007-10-07 John Paul Wallington <jpw@pobox.com>
20351
20352 * xfns.c (x_create_tip_frame): Set the `display-type' frame
20353 parameter before setting up faces.
20354
203552007-10-13 Eli Zaretskii <eliz@gnu.org>
20356
20357 * ccl.c (Fregister_code_conversion_map):
20358 * keyboard.c (append_tool_bar_item): Reformat last change.
20359
20360 * lisp.h (eabs): Rename from `abs'. All callers changed.
20361
203622007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
20363
20364 * buffer.c (add_overlay_mod_hooklist):
20365 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
20366 * fontset.c (make_fontset):
20367 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
20368 (append_tool_bar_item):
20369 * macmenu.c (grow_menu_items):
20370 * w32menu.c (grow_menu_items):
20371 * xmenu.c (grow_menu_items): Use larger_vector.
20372
203732007-10-13 Eli Zaretskii <eliz@gnu.org>
20374
20375 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
20376 selected frame'' on MSDOS).
20377
203782007-10-12 Martin Rudalics <rudalics@gmx.at>
20379
20380 * frame.c (Qexplicit_name): New variable.
20381 (x_report_frame_params): Report it in parameter alist.
20382 (syms_of_frame): Intern and staticpro it.
20383
203842007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
20385
20386 * macfns.c (x_create_tip_frame): Set terminal for frame.
20387
203882007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
20389
20390 * frame.c (Qenvironment): Remove.
20391 (syms_of_frame) <Qenvironment>: Don't initialize.
20392 (Fdelete_frame): Don't treat the `environment' param specially.
20393 * frame.h (Qenvironment): Don't declare.
20394 * callproc.c (set_initial_environment): Don't set unused frame param.
20395
20396 * frame.c (Fframe_with_environment): Remove.
20397 (syms_of_frame) <Sframe_with_environment>: Don't declare.
20398
20399 * lisp.h (Fframe_with_environment): Don't declare.
20400
204012007-10-10 Juanma Barranquero <lekktu@gmail.com>
20402
20403 * indent.c (indent_tabs_mode, last_known_column)
20404 (last_known_column_modified): Make static.
20405 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
20406
204072007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
20408
20409 * puresize.h (BASE_PURESIZE): Increase to 1170000.
20410
204112007-10-09 Jason Rumney <jasonr@gnu.org>
20412
20413 * w32term.c (x_set_window_size): Disable code that attempts to tell
20414 Lisp code about a size change before it actually happens.
20415
204162007-10-09 Richard Stallman <rms@gnu.org>
20417
20418 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
20419 return HANDLED_RETURN.
20420
204212007-10-08 Martin Rudalics <rudalics@gmx.at>
20422
20423 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
20424 when there's an unread command event.
20425
20426 * frame.c (focus_follows_mouse): Move here from frame.el to allow
20427 window autoselection act appropriately when leaving selected frame.
20428 (syms_of_frame): Initialize focus_follows_mouse.
20429 * frame.h (focus_follows_mouse): Extern it.
20430 * macterm.c (XTread_socket): When focus_follows_mouse is nil
20431 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
20432 * msdos.c (dos_rawgetc): Likewise.
20433 * w32term.c (w32_read_socket): Likewise.
20434 * xterm.c (handle_one_xevent): Likewise.
20435 * xdisp.c (syms_of_xdisp): In doc-string of
20436 mouse-autoselect-window mention focus-follows-mouse.
20437
204382007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20439
20440 * macterm.c (mac_load_query_font): Fix missing return value.
20441 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
20442 Add BLOCK_INPUT.
20443
204442007-10-08 Richard Stallman <rms@gnu.org>
20445
20446 * xdisp.c (get_window_cursor_type): Implement documented behavior
20447 for cursor-in-non-selected-windows = t.
20448
204492007-10-08 Jason Rumney <jasonr@gnu.org>
20450
20451 * w32.c (w32_get_resource): Always close registry keys.
20452
204532007-10-08 Jason Rumney <jasonr@gnu.org>
20454
20455 * makefile.w32-in (LIBS): Add COMCTL32.
20456
20457 * w32fns.c (globals_of_w32fns): Init common controls.
20458
204592007-10-08 Richard Stallman <rms@gnu.org>
20460
20461 * image.c (our_memory_buffer): Rename from omfib_buffer.
20462
204632007-10-08 Richard Stallman <rms@gnu.org>
20464
20465 * buffer.c (Foverlays_at): Doc fix.
20466
204672007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
20468
20469 * fns.c (Fplist_put): Preserve uneven tail data.
20470
204712007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
20472
20473 * termhooks.h (enum event_kind): Remove trailing comma.
20474
20475 * frame.h (enum): Remove trailing comma.
20476
204772007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
20478
20479 * w32proc.c (delete_child): Don't terminate threads of zombies.
20480
204812007-10-08 Martin Rudalics <rudalics@gmx.at>
20482
20483 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
20484
20485 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
20486 last-repeatable-command.
20487 (init_kboard): Initialize Vlast_repeatable_command.
20488 (command_loop_1): Set it to real_this_command unless that was
20489 bound to an input event.
20490 (mark_kboards): Mark it.
20491
204922007-10-08 Richard Stallman <rms@gnu.org>
20493
20494 * eval.c (condition-case): Doc fix.
20495
204962007-10-08 Masatake YAMATO <jet@gyve.org>
20497
20498 * xfaces.c (tty_supports_face_attributes_p): Fix code
20499 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
20500 was copied and not edited.
20501
205022007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
20503
20504 Add new `input-decode-map' keymap and use it for terminal
20505 escape sequences.
20506 * keyboard.h (struct kboard): Add Vinput_decode_map.
20507 Remove Vlocal_key_translation_map.
20508 * keyboard.c (read_key_sequence): Add support for input-decode-map.
20509 (init_kboard): Init input-decode-map.
20510 Replace local-key-translation-map back with key-translation-map.
20511 (syms_of_keyboard): Declare input-decode-map.
20512 Remove local-key-translation-map. Update docstrings.
20513 (mark_kboards): Mark Vinput_decode_map.
20514 Don't mark Vlocal_key_translation_map.
20515 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
20516 Replace local-key-translation-map back with key-translation-map.
20517 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
20518 Bind in input-decode-map rather than function-key-map.
20519
20520 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
20521 This was made redundant by the previous introduction of XSETPVECTYPE.
20522
205232007-10-09 Richard Stallman <rms@gnu.org>
20524
20525 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
20526
205272007-09-29 Richard Stallman <rms@gnu.org>
20528
20529 * eval.c (internal_condition_case_2, internal_condition_case_1)
20530 (internal_condition_case): Reenable abort if x_catching_errors ()
20531 to see if that really happens and why.
20532
205332007-10-06 Andreas Schwab <schwab@suse.de>
20534
20535 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
20536
205372007-10-04 Juanma Barranquero <lekktu@gmail.com>
20538
20539 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
20540
205412007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
20542
20543 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
20544
205452007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
20546
20547 * window.h (struct window):
20548 * window.c (struct save_window_data, struct saved_window):
20549 * termhooks.h (struct terminal):
20550 * process.h (struct Lisp_Process):
20551 * frame.h (struct frame):
20552 * buffer.h (struct buffer):
20553 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
20554 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
20555 The size field of (pseudo)vectors is now unsigned.
20556 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
20557
20558 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
20559 Turn `count' into an integer.
20560
20561 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
20562 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
20563 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
20564 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
20565 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
20566
20567 * alloc.c (allocate_pseudovector): New fun.
20568 (ALLOCATE_PSEUDOVECTOR): New macro.
20569 (allocate_window, allocate_terminal, allocate_frame)
20570 (allocate_process): Use it.
20571 (mark_vectorlike): New function.
20572 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
20573 (mark_terminals): Use it.
20574 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
20575 (Fmake_byte_code): Use XSETPVECTYPE.
20576
20577 * frame.c (Fframe_parameters): Minor simplification.
20578
20579 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
20580
20581 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
20582
20583 * buffer.c (Fget_buffer_create, init_buffer_once):
20584 * lread.c (defsubr):
20585 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
20586
20587 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
20588 defined differently in the m/*.h files.
20589 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
20590 (XSETPVECTYPE): New macro.
20591 (XSETPSEUDOVECTOR): Use it.
20592
20593 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
20594 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
20595
20596 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
20597 * lread.c (defvar_per_buffer):
20598 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
20599
20600 * window.c (candidate_window_p): Only consider as visible frames that
20601 are on the same terminal.
20602
20603 * m/ibms390x.h (MARKBIT): Remove unused macro.
20604
206052007-10-01 Juanma Barranquero <lekktu@gmail.com>
20606
20607 * lread.c (Fload): Fix typo in docstring.
20608
206092007-10-01 Michaël Cadilhac <michael@cadilhac.name>
20610
20611 * floatfns.c (Fexpt): Manually check for overflows, so that a power
20612 of a non-zero value can't yield zero.
20613
206142007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
20615
20616 * term.c (term_clear_mouse_face, term_mouse_highlight)
20617 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
20618
20619 * print.c (safe_debug_print): Use XHASH.
20620
20621 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
20622 Lisp elements such as tags.
20623 (XHASH): New macro.
20624 (EQ): Use it.
20625 (SREF, SSET, STRING_COPYIN): Use SDATA.
20626 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
20627
20628 * alloc.c (mark_terminal): Remove left-over declaration.
20629 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
20630 (allocate_vectorlike): Remove type argument. Adjust callers.
20631 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
20632 Only handle the one remaining MEM_TYPE_VECTORLIKE.
20633
20634 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
20635 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
20636 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
20637 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
20638 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
20639 Use them.
20640
20641 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
20642 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
20643 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
20644
206452007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
20646
20647 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
20648 loaded by default.
20649
206502007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
20651
20652 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
20653 on this tty.
20654 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
20655
20656 * term.c (mouse_face_window): Rename from Qmouse_face_window.
20657 Update all users.
20658 (handle_one_term_event): Use Gpm_DrawPointer.
20659 (Fgpm_mouse_start): Rename from Fterm_open_connection.
20660 Signal errors instead of returning nil. Always return nil.
20661 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
20662 Make it a noop if gpm-mouse was not activated.
20663 (syms_of_term): Update names.
20664
206652007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
20666
20667 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
20668 (init_sys_modes): Check that gpm_tty is the current tty.
20669
20670 * alloc.c (allocate_terminal): Set the vector size to only count the
20671 lisp fields. Initialize those to nil.
20672 (mark_object): Don't treat terminals specially.
20673 (mark_terminal): Remove.
20674 (mark_terminals): Use mark_object instead.
20675
20676 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
20677 the GC to the beginning.
20678
20679 * indent.h:
20680 * indent.c: Use EMACS_INT for ints coming from Elisp data.
20681
20682 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
20683
206842007-09-25 Jason Rumney <jasonr@gnu.org>
20685
20686 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
20687
20688 * w32console.c (create_w32cons_output): Remove.
20689
20690 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
20691
20692 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
20693 (reset_sys_modes): Use reset_terminal_modes_hook.
20694
206952007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
20696
20697 * eval.c (do_autoload): Don't output any message.
20698
206992007-09-24 Juri Linkov <juri@jurta.org>
20700
20701 * emacs.c (standard_args): Change priority of "--no-splash"
20702 from 40 to 3. Add "--no-desktop" with the same priority.
20703
207042007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
20705
20706 * alloc.c (gc_sweep): Check cons cell mark bits word by word
20707 and optimize the case where they are all 1.
20708
207092007-09-23 Johannes Weiner <hannes@saeurebad.de>
20710
20711 * lisp.h (abs): Define if not defined.
20712 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
20713 Don't define `abs', since it's defined in lisp.h.
20714
207152007-09-22 Eli Zaretskii <eliz@gnu.org>
20716
20717 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
20718 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
20719 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
20720 (init_tty): Use DEV_TTY instead of "/dev/tty".
20721 [WINDOWSNT]: No need to protect from NAME arg being null.
20722
207232007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
20724
20725 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
20726 up the tty state.
20727
207282007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
20729
20730 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
20731 (gpm_tty): Change its type.
20732 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
20733 (gpm_tty): Change its type and initialize it.
20734 (Fterm_open_connection): Check the frame is indeed a tty.
20735 Use the new gpm_tty.
20736 (Fterm_close_connection): Use the new gpm_tty.
20737 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
20738 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
20739
207402007-09-21 Juanma Barranquero <lekktu@gmail.com>
20741
20742 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
20743 underline_color, to draw strike-through.
20744
207452007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
20746
20747 * lisp.h (allocate_terminal): Declare.
20748
20749 * window.c (candidate_window_p): Consider frames that are being placed
20750 by the user as somewhere between visible and iconified.
20751 (window_loop): Prefer windows on the current frame.
20752 (Fselect_window): Move the use of select-frame to the beginning so we
20753 can just delegate all the work (it'll call us back anyway).
20754
20755 * frame.c (Qdisplay_environment_variable):
20756 * frame.h (Qdisplay_environment_variable): Delete.
20757
20758 * .gdbinit (xbacktrace): Print the arg's address rather than the value
20759 of the first arg, since that value may be a union.
20760
20761 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
20762 parameter rather than Qdisplay_environment_variable. If all else
20763 fails, look for DISPLAY in initial-environment.
20764
207652007-09-21 Glenn Morris <rgm@gnu.org>
20766
20767 * Makefile.in (emacstool): Remove target.
20768 (lisp, shortlisp): Remove termdev.elc.
20769
207702007-09-21 Markus Triska <markus.triska@gmx.at>
20771
20772 * xterm.c (x_delete_display): Compile session management conditionally.
20773
207742007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
20775
20776 * callproc.c (getenv_internal_1): New function.
20777 (getenv_internal): Use it.
20778 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
20779
20780 * terminal.c (get_terminal): Don't accept ints to represent terminals.
20781 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
20782 (Fset_terminal_parameter): Work with dead terminals as well.
20783 (Fmodify_terminal_parameters): Remove.
20784
20785 * terminal.c (get_terminal): Handle terminals.
20786 Make sure the terminal returned is live.
20787 (create_terminal): Use allocate_terminal.
20788 (mark_terminals): Move to alloc.c.
20789 (delete_terminal): Use terminal->name as liveness status.
20790 NULL out fields after freeing their contents.
20791 Don't deallocate the object.
20792 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
20793 rather than an int.
20794 (Fterminal_live_p): Accept non-integer arguments.
20795 (Fterminal_list): Return terminal objects rather than an ints.
20796
20797 * alloc.c (enum mem_type): New member for `terminal' objects.
20798 (allocate_terminal): New function.
20799 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
20800 Handle terminals.
20801 (mark_terminal): New fun.
20802 (mark_terminals): Move from terminal.c.
20803
20804 * term.c (get_tty_terminal): Don't treat output_initial specially.
20805 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
20806 (delete_tty): Use terminal->name as liveness status.
20807
20808 * termhooks.h (struct terminal): Make it into a pseudovector.
20809 Remove `deleted' replaced by checking `name's nullness.
20810
20811 * print.c (print_object): Handle terminals.
20812
20813 * lisp.h (enum pvec_type): New `terminal' pseudovector.
20814 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
20815
20816 * frame.c (make_terminal_frame):
20817 * keyboard.c (tty_read_avail_input):
20818 * w32term.c (x_delete_terminal):
20819 * xfns.c (Fx_create_frame, x_create_tip_frame):
20820 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
20821
208222007-09-20 Glenn Morris <rgm@gnu.org>
20823
20824 * process.c (Fmake_network_process): Doc fix.
20825
208262007-09-19 Jason Rumney <jasonr@gnu.org>
20827
20828 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
20829
208302007-09-19 Michaël Cadilhac <michael@cadilhac.name>
20831
20832 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
20833 Fix a C warning regarding variable constness.
20834
20835 * xterm.c (handle_one_xevent): Fix a C warning.
20836
208372007-09-18 Jason Rumney <jasonr@gnu.org>
20838
20839 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
20840
208412007-09-17 Jan Djärv <jan.h.d@swipnet.se>
20842
20843 * gtkutil.c (gdpy_def): New variable.
20844 (xg_initialize): Initialize gdpy_def.
20845 (xg_display_close): If no other display exists, set gdpy_def to a
20846 new connection.
20847
208482007-09-16 Jan Djärv <jan.h.d@swipnet.se>
20849
20850 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
20851 when we have no file name for the icon.
20852 (xg_tool_bar_expose_callback): Remove.
20853 (xg_create_tool_bar): Don't connect expose signal to
20854 xg_tool_bar_expose_callback.
20855 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
20856
208572007-09-16 Andreas Schwab <schwab@suse.de>
20858
20859 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
20860 values instead of zapping them.
20861
208622007-09-14 Glenn Morris <rgm@gnu.org>
20863
20864 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
20865 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
20866 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
20867 scope and rename to omfib_buffer for clarity.
20868 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
20869
208702007-09-14 Kenichi Handa <handa@m17n.org>
20871
20872 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
20873
208742007-09-13 Jason Rumney <jasonr@gnu.org>
20875
20876 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
20877
20878 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
20879
20880 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
20881 (mac_term_init): Call here instead, passing rif.
20882
208832007-09-13 Glenn Morris <rgm@gnu.org>
20884
20885 * s/hpux.h: No longer define `static' as nothing.
20886
208872007-09-13 Johan Bockgård <bojohan@gnu.org>
20888
20889 * callint.c (Fcall_interactively): Remove unused var `fun'.
20890
208912007-09-12 Romain Francoise <romain@orebokech.com>
20892
20893 * window.c (prefer_window_split_horizontally, display_buffer):
20894 Revert 2007-09-08 change.
20895
208962007-09-12 Glenn Morris <rgm@gnu.org>
20897
20898 * alloca.c: Remove file.
20899 * Makefile.in (alloca): Do not undef.
20900 (allocaobj, alloca.o): Remove.
20901 (otherobj): Remove allocaobj.
20902 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
20903 * regex.c (C_ALLOCA): Remove all references and code that was only
20904 used when this was defined.
20905 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
20906 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
20907 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
20908
20909 * Makefile.in (SOURCES, unlock, relock): Delete.
20910
20911 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
20912 (menu_grab_callback): All uses changed.
20913
20914 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
20915 (x_reply_selection_request): All uses changed.
20916
209172007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
20918
20919 * lread.c (load_warn_old_style_backquotes): Change message to look
20920 better when it appears in the middle of byte-compiler messages.
20921
209222007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
20923
20924 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
20925
20926 * xterm.c (x_create_terminal): Add comment.
20927
20928 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
20929
209302007-09-10 Richard Stallman <rms@gnu.org>
20931
20932 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
20933
209342007-09-10 Michaël Cadilhac <michael@cadilhac.name>
20935
20936 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
20937 (DEFUN): Document `intspec', use it instead of `prompt'.
20938
20939 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
20940
20941 * data.c (Finteractive_form): If the interactive specification starts
20942 with a `(', use it as a Lisp form.
20943
20944 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
20945 name and file modes.
20946
20947 * callint.c (Fcall_interactively): Comment fixes.
20948
209492007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
20950
20951 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
20952 and compiled functions.
20953
209542007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
20955
20956 * window.c (prefer_window_split_horizontally): New variable.
20957 (display_buffer): Consider splitting window horizontally depending
20958 on prefer_window_split_horizontally.
20959
209602007-09-08 Eli Zaretskii <eliz@gnu.org>
20961
20962 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
20963
209642007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
20965
20966 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
20967
20968 * frame.c (x_set_frame_parameters): Check number is positive before
20969 using XFASTINT.
20970
20971 * window.c (freeze_window_start): Don't presume selected_window holds
20972 a window object.
20973 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
20974
209752007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
20976
20977 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
20978
209792007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
20980
20981 * window.c (Vsplit_window_preferred_function): New var.
20982 (Fdisplay_buffer): Use it.
20983 (syms_of_window): Export, and initialize it.
20984
209852007-09-06 Pixel <pixel@mandriva.com> (tiny change)
20986
20987 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
20988
209892007-09-06 Glenn Morris <rgm@gnu.org>
20990
20991 * gtkutil.c (menu_grab_callback) <cnt>:
20992 * xselect.c (x_reply_selection_request) <cnt>: Move static
20993 variable to file scope.
20994
209952007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
20996
20997 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
20998 consistent values of selected_frame and selected_window.
20999
210002007-09-04 Jason Rumney <jasonr@gnu.org>
21001
21002 * w32console.c (initialize_w32_display): Zero unused hooks.
21003
210042007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
21005
21006 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
21007 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
21008
210092007-09-04 Jason Rumney <jasonr@gnu.org>
21010
21011 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
21012 in w32console.c. Set up input. Remove XXX comments that have been
21013 confirmed as correct.
21014
21015 * s/ms-w32.h (MULTI_KBOARD): Define.
21016
21017 * w32console.c (one_and_only_w32cons): Remove.
21018 (initialize_w32_display): Take terminal argument.
21019
21020 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
21021 initialize_w32_display.
21022 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
21023
21024 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
21025
21026 * keyboard.c (discard_mouse_events): Discard it.
21027 (make_lispy_event): Translate it to a lisp event.
21028 (lispy_wheel_names): Add wheel-left and right events.
21029 (syms_of_keyboard): Enlarge wheel_syms.
21030
21031 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
21032 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
21033
21034 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
21035
21036 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
21037 from WM_MOUSEHWHEEL.
21038 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
21039
21040 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
21041 terminal.
21042
21043 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
21044 keyboard for the terminal.
21045
210462007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
21047
21048 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
21049 (Vresume_tty_hook): Rename from Vresume_tty_functions.
21050 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
21051 and resume-tty-function to resume-tty-hook.
21052 (Fsuspend_tty, Fresume_tty): Use new names.
21053
210542007-09-02 Jan Djärv <jan.h.d@swipnet.se>
21055
21056 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
21057 if it starts with "n:".
21058
210592007-08-31 Jan Djärv <jan.h.d@swipnet.se>
21060
21061 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
21062
210632007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
21064
21065 * frame.h:
21066 * frame.c (Qterm_environment_variable): Remove.
21067 (syms_of_frame): Don't init and staticpro it.
21068
21069 * callproc.c (getenv_internal): Remove special case for $TERM.
21070
21071 * callproc.c (Vinitial_environment): New variable.
21072 (set_initial_environment): Initialize it.
21073 (syms_of_callproc): Declare it.
21074 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
21075 TERM under which a process runs is never related to the TERM in which
21076 Emacs is running.
21077
210782007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
21079
21080 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
21081 * s/darwin.h: ... do it here.
21082
210832007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
21084
21085 * lisp.h (set_initial_environment): Rename from set_global_environment.
21086
21087 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
21088 removed by mistake on the multi-tty branch.
21089
21090 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
21091 (Fmodify_frame_parameters): Return a value.
21092
21093 * image.c (png_load): Comment-out var only used in commented-out code.
21094
21095 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
21096 before passing it to mark_object.
21097
21098 * xfaces.c (internal_resolve_face_name): Return a value.
21099 (internal_resolve_face_name, resolve_face_name_error): Comment out.
21100
21101 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
21102 (x_icon): Comment-out var only used in commented-out code.
21103
211042007-08-29 Romain Francoise <romain@orebokech.com>
21105
21106 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
21107 QUIT hasn't been provided.
21108
211092007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
21110
21111 * callproc.c (child_setup, getenv_internal): Use the
21112 display-environment-variable and term-environment-variable frame params.
21113 (set_initial_environment): Initialise Vprocess_environment.
21114
21115 * config.in: Disable multi-keyboard support on a mac.
21116
21117 * frame.c (Qterm_environment_variable)
21118 (Qdisplay_environment_variable): New variables.
21119 (syms_of_frame): Intern and staticpro them.
21120 (Fmake_terminal_frame): Disable output method test.
21121
21122 * frame.h: Declare them here.
21123
21124 * macfns.c (x_set_mouse_color): Get rif from the frame.
21125 (x_set_tool_bar_lines): Don't use updating_frame.
21126 (mac_window): Add 2 new parameters for consistency with other systems.
21127 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
21128 frame parameters following what is done in X11 and w32. Don't use
21129 FRAME_MAC_DISPLAY_INFO.
21130 (Fx_open_connection, start_hourglass): Remove window-system check.
21131 (x_create_tip_frame): Get the keyboard from the terminal.
21132
21133 * macmenu.c: Reorder includes.
21134 (Fx_popup_menu): Use terminal specific mouse_position_hook.
21135
21136 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
21137 terminal parameter.
21138 (x_clear_frame): Add a frame parameter.
21139 (note_mouse_movement): Get rif from the frame.
21140 (mac_term_init): Initialize the terminal.
21141 (mac_initialize): Make static and move terminal initialization ...
21142 (mac_create_terminal): ... to this new function.
21143
21144 * macterm.h (struct mac_display_info): Add terminal.
21145 (mac_initialize): Delete declaration.
21146
21147 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
21148
21149 * sysdep.c: Comment out text after #endif.
21150
21151 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
21152 is defined. Better initialize ttys in windows. Use terminal
21153 specific mouse_position_hook.
21154
21155 * termhooks.h (union display_info): Add mac_display_info.
21156
21157 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
21158 Set the default minibuffer frame, window_system and the rest of the
21159 frame parameters following what is done in X11.
21160
21161 * w32term.c (w32_initialize): Make static.
21162
21163 * xselect.c (x_handle_selection_clear): Only access
21164 terminal->kboard when MULTI_KBOARD is defined.
21165
21166 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
21167 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
21168
211692007-08-29 Jason Rumney <jasonr@gnu.org>
21170
21171 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
21172 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
21173
21174 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
21175 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
21176
21177 * keyboard.c (restore_kboard_configuration): Only define when
21178 MULTI_KBOARD defined.
21179
21180 * makefile.w32-in: Update dependancies from Makefile.in.
21181 (OBJ1): Add terminal.$(O)
21182
21183 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
21184 Don't define function body.
21185 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
21186
21187 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
21188
21189 * w32.c (request_sigio, unrequest_sigio): Remove.
21190
21191 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
21192 (w32con_clear_frame, w32con_clear_end_of_line)
21193 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
21194 (w32con_delete_glyphs, w32con_set_terminal_window)
21195 (scroll_line, w32_sys_ring_bell): Add frame arg.
21196 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
21197 Add terminal arg.
21198 (PICK_FRAME): Remove.
21199 (w32con_write_glyphs): Use frame specific terminal coding.
21200 (one_and_only_w32cons): New global variable.
21201 (initialize_w32_display): Use it for storing hooks.
21202 (create_w32cons_output): New function.
21203
21204 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
21205 arg a frame.
21206
21207 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
21208 Set window_system.
21209 (x_set_tool_bar_lines): Don't use updating_frame.
21210 (Fx_create_frame): Set terminal and ref count.
21211 (Fx_open_connection): Remove window-system check.
21212
21213 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
21214
21215 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
21216 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
21217 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
21218 Add frame arg.
21219 (x_delete_terminal, w32_create_terminal): New functions.
21220 (w32_term_init): Create a terminal.
21221 (w32_initialize): Move terminal specific initialization to
21222 w32_create_terminal.
21223
21224 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
21225 (w32_clear_rect, w32_clear_area): Use background from frame.
21226 (w32_display_info): Add terminal.
21227 (w32_sys_ring_bell, x_delete_display): Declare here.
21228
21229 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
21230
21231 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
21232
212332007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
21234
21235 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
21236 Fix get_named_tty calls for the controlling tty.
21237
212382007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
21239
194d44e7 21240 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
aac0c6e3
MR
21241
212422007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
21243
21244 * term.c (tty_insert_glyphs): Add missing first parameter.
21245
212462007-08-29 Károly Lőrentey <karoly@lorentey.hu>
21247
21248 * buffer.c (Fbuffer_list, Fbury_buffer):
21249 Take frame->buried_buffer_list into account.
21250
21251 * cm.c (current_tty): New variable, for cmputc().
21252 (cmputc): Use it.
21253 (cmcheckmagic): Add tty parameter, look up terminal streams there.
21254 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
21255 (cmgoto): Add tty parameter. Pass it on to calccost().
21256 Use emacs_tputs() instead of tputs().
21257
21258 * cm.h (emacs_tputs): New macro to set current_tty, and then call
21259 tputs().
21260 (current_tty): New variable, for cmputc().
21261 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
21262
21263 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
21264 (internal_condition_case, internal_condition_case_1)
21265 (internal_condition_case_2): Don't abort when x_catching_errors.
21266
21267 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
21268 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
21269 prevent crashes caused by bogus longjmps in read_char.
21270
21271 * keymap.h (Fset_keymap_parent): Add EXFUN.
21272
21273 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
21274 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
21275 Remove redundant definition.
21276
21277 * macfns.c (x_set_mouse_color, x_make_gc):
21278 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21279
21280 * w32term.c (x_free_frame_resources):
21281 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21282 (w32_initialize): Use the accessor macros for terminal characteristics.
21283
21284 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
21285 Use the accessor macros for terminal characteristics.
21286 * msdos.c (internal_terminal_init): Use the accessor macros for
21287 terminal characteristics.
21288 (ScreenVisualBell, internal_terminal_init):
21289 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21290
21291 * termopts.h (no_redraw_on_reenter): Declare.
21292
21293 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
21294 (mark_terminals, mark_ttys): Declare.
21295 (Fgarbage_collect): Call them.
21296 (mark_object): Mark buried_buffer_list.
21297
21298 * prefix-args.c: Include stdlib.h for exit.
21299
21300 * syssignal.h: Add comment.
21301
21302 * indent.c: Include stdio.h.
21303
21304 * window.h (Vinitial_window_system): Declare.
21305 (Vwindow_system): Delete declaration.
21306
21307 * fontset.c (Finternal_char_font): Use FRAME_RIF.
21308
21309 * image.c (lookup_image): Don't initialize `c' until the xasserts
21310 have been run.
21311
21312 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
21313 FRAME_FOREGROUND_PIXEL.
21314
21315 * print.c (print_preprocess): Don't lose print_depth levels while
21316 iterating.
21317
21318 * widget.c (update_from_various_frame_slots):
21319 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21320
21321 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
21322 frames.
21323 (window_internal_height): Remove bogus make_number call.
21324 (init_window_once): Call make_terminal_frame with two zero parameters.
21325
21326 * fileio.c (Fread_file_name): Update comment.
21327
21328 * callint.c (Fcall_interactively):
21329 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
21330 Make sure it is correctly unwound.
21331
21332 * xsmfns.c (x_session_close): New function.
21333
21334 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
21335 Delete declarations.
21336
21337 * xterm.h: Remove declaration for x_fully_uncatch_errors.
21338 (x_output): Remove background_pixel and foreground_pixel fields.
21339 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
21340 (x_delete_device, x_session_close): Declare.
21341
21342 * lread.c: Include setjmp.h. Update declaration of `read_char'.
21343 (read_filtered_event): Call `read_char' with a local
21344 `wrong_kboard_jmpbuf'.
21345
21346 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
21347 Don't call single_kboard_state. Use FRAME_RIF.
21348
21349 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
21350 systems.
21351
21352 * lisp.h (set_process_environment): Rename to `set_global_environment'.
21353 (Fframe_with_environment, Fset_input_meta_mode)
21354 (Fset_quit_char): EXFUN.
21355 (x_create_device, tty_output, terminal, tty_display_info): Declare.
21356 (init_sys_modes, reset_sys_modes): Update prototypes.
21357 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
21358
21359 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
21360 Vlocal_key_translation_map, and Vkeyboard_translate_table.
21361 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
21362 Delete declarations.
21363 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
21364 (temporarily_switch_to_single_kboard, tty_read_avail_input):
21365 New declarations.
21366
21367 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
21368 already does that during init_display(). Call syms_of_keymap
21369 before syms_of_keyboard. Call `syms_of_terminal'.
21370 Call set_initial_environment, not set_process_environment.
21371 (shut_down_emacs): Call reset_all_sys_modes() instead of
21372 reset_sys_modes().
21373
21374 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
21375 (internal_resolve_face_name, resolve_face_name_error): New functions.
21376 (resolve_face_name): Protect against loops and errors thrown by Fget.
21377 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
21378 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
21379
21380 * scroll.c: Replace CURTTY() with local variables throughout the
21381 file (where applicable).
21382 (calculate_scrolling, calculate_direct_scrolling)
21383 (scrolling_1, scroll_cost): Use the accessor macros for terminal
21384 characteristics.
21385
21386 * keymap.c (Vfunction_key_map): Remove.
21387 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
21388 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
21389 (Vkey_translation_map): Remove.
21390 (syms_of_keymap): Remove DEFVAR for key-translation-map.
21391 (Fdescribe_buffer_bindings)
21392 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
21393 Update for terminal-local key-translation-map.
21394
21395 * Makefile.in (callproc.o): Update dependencies.
21396 (lisp, shortlisp): Add termdev.elc.
21397 (obj): Add terminal.o.
21398 (terminal.o): Add dependencies.
21399 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
21400 (data.o, fns.o): Add termhooks.h dependency.
21401 (SOME_MACHINE_LISP): Add dnd.elc.
21402 (minibuf.o): Fix typo.
21403 Update dependencies.
21404
21405 * data.c (do_symval_forwarding, store_symval_forwarding)
21406 (find_symbol_value): Use the selected frame's keyboard, not
21407 current_kboard.
21408
21409 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
21410 Vwindow_system.
21411
21412 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
21413 Fmenu_bar_open.
21414 (syms_of_xmenu): Update defsubr.
21415 (mouse_position_for_popup, Fx_popup_menu)
21416 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
21417 (set_frame_menubar, free_frame_menubar)
b97439ce 21418 (create_and_show_popup_menu, xmenu_show)
aac0c6e3
MR
21419 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
21420 an X frame.
21421
21422 * xselect.c (x_own_selection): Abort if not an X frame.
21423 (some_frame_on_display): Check if it is an X frame.
21424 (x_handle_selection_clear): Deal with MULTI_KBOARD.
21425
21426 * coding.c: Include frame.h and termhooks.h.
21427 (terminal_coding, keyboard_coding): Delete.
21428 (Fset_terminal_coding_system_internal)
21429 (Fset_keyboard_coding_system_internal)
21430 (Fkeyboard_coding_system)
21431 (Fterminal_coding_system): Add a terminal parameter.
21432 Get terminal_coding from the terminal.
21433 (init_coding_once): Don't call setup_coding_system here.
21434
21435 * dispextern.h (set_scroll_region, turn_off_insert)
21436 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
21437 (tty_clear_end_of_line, tty_setup_colors)
21438 (delete_tty, updating_frame)
21439 (produce_special_glyphs, produce_glyphs, write_glyphs)
21440 (insert_glyphs): Remove.
21441 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
21442 (tty_turn_off_highlight, get_tty_size): Add declaration.
21443 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
21444
21445 * frame.h (enum output_method): Add output_initial.
21446 (struct x_output): Delete.
21447 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
21448 Access foreground_pixel and background_pixel directly from the frame.
21449 (tty_display): Delete.
21450 (struct frame): Add buried_buffer_list, foreground_pixel,
21451 background_pixel and terminal. Delete kboard.
21452 (union output_data): Add tty.
21453 (FRAME_KBOARD): Get the kboard from the terminal.
21454 (FRAME_INITIAL_P): New macro.
21455 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
21456 (Qterm_environment_variable, Qdisplay_environment_variable)
21457 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
21458 New declarations.
21459
21460 * termchar.h (tty_output, tty_display_info): New structures.
21461 (tty_list): Declare.
21462 (FRAME_TTY, CURTTY): New macros.
21463 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
21464 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
21465 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
21466 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
21467
21468 * callproc.c: Include frame.h and termhooks.h, for terminal
21469 parameters.
21470 (add_env): New function.
21471 (child_setup): Use it.
21472 (child_setup, getenv_internal): Handle the new Vprocess_environment.
21473 (getenv_internal): Fix get_terminal_param call.
21474 (Fgetenv_internal, egetenv): Update doc.
21475 (syms_of_callproc): Initialize Vprocess_environment to nil.
21476 Register and initialize them. Remove obsolete defvars. Update doc
21477 strings.
21478 (child_setup): Handle Vlocal_environment_variables.
21479 (getenv_internal): Add terminal parameter.
21480 Handle Vlocal_environment_variables.
21481 (Fgetenv_internal): Add terminal parameter.
21482 (child_setup, getenv_internal, Fgetenv_internal): Store the local
21483 environment in a frame (not terminal) parameter. Update doc strings.
21484 (set_initial_environment): Rename from set_global_environment.
21485 Store Emacs environment in initial frame parameter.
21486
21487 * xdisp.c (redisplay_internal): Update references to
21488 `previous_terminal_frame'.
21489 (display_mode_line, Fformat_mode_line): Replace calls to
21490 `push_frame_kboard' with `push_kboard'.
21491 (get_glyph_string_clip_rects): Add extra parentheses and
21492 braces to prevent compiler warnings.
21493 (calc_pixel_width_or_height): Add xassert to check that the
21494 frame is alive. Don't call `lookup_image' on a termcap frame.
21495 (message2_nolog, message3_nolog, redisplay_internal)
21496 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
21497 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
21498 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
21499 (Fx_display_pixel_width, Fx_display_pixel_height)
21500 (Fx_display_planes, Fx_display_color_cells)
21501 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
21502 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
21503 (Fx_display_backing_store, Fx_display_visual_class)
21504 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
21505 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
21506
21507 * xfns.c (x_set_foreground_color x_set_background_color)
21508 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
21509 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21510 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
21511 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
21512 terminal that is being deleted.
21513 (Fx_create_frame): Use `store_frame_param' to set `window-system'
21514 frame parameter, and make sure it overrides any user-supplied setting.
21515 (Fx_close_connection, Fx_synchronize): Unify argument names with
21516 the rest of the DEFUNs.
21517
21518 * dispnew.c (Fsend_string_to_terminal): Update call to
21519 `get_tty_terminal'.
21520 (Fredraw_frame, Fsend_string_to_terminal)
21521 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
21522 FRAME_TERMCAP_P and FRAME_TTY.
21523 (window_change_signal): Don't believe width/height values that are
21524 impossibly small.
21525 (Vinitial_window_system): Rename from Vwindow_system.
21526 (termscript, Wcm, rif): Delete.
21527
21528 * termhooks.h (struct terminal): New struct containing the
21529 previously global text display hooks and new members NAME,
21530 DELETED and PARAM_ALIST.
21531 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
21532 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
21533 (FRAME_RIF): New macros.
21534 (get_terminal_param, get_device): New declarations.
21535 (termscript): Delete declaration.
21536
21537 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
21538 (XTflash, x_free_frame_resources, x_scroll_bar_create)
21539 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
21540 FRAME_FOREGROUND_PIXEL.
21541 (x_fully_uncatch_errors): Disable definition.
21542 (x_scroll_bar_expose): Fix reference to foreground pixel.
21543 (XTread_socket): Disable loop on all X displays.
21544 (x_delete_terminal): Don't set terminal->deleted and let
21545 delete_terminal delete the frames on the terminal.
21546 (x_delete_display): Doc update to reflect changes in
21547 delete_terminal.
21548 (x_display_info) <terminal>: Move member earlier in the struct.
21549 (deleting_tty): Remove old variable.
21550 (Fsuspend_tty): Call clear_tty_hooks.
21551 (Fresume_tty, init_tty): Call set_tty_hooks.
21552 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
21553 errors on X frames.
21554 (x_catch_errors_unwind): Abort if x_error_message is NULL.
21555 (handle_one_xevent): Initialize `f' to NULL.
21556 (x_delete_terminal, x_create_terminal): New functions.
21557 (XTset_terminal_modes, XTreset_terminal_modes)
21558 (XTread_socket, x_connection_closed, x_term_init)
21559 (x_term_init, x_delete_display): Add terminal parameter.
21560 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
21561 X connections.
21562
21563 * frame.c: Include termchar.h.
21564 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
21565 (Qwindow_system, Qenvironment, Qterm_environment_variable)
21566 (Qdisplay_environment_variable): New vars.
21567 (Fframep): Deal with output_initial.
21568 (Fframe-live-p): Doc fix.
21569 (Fwindow-system): New function.
21570 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
21571 (make_terminal_frame): Don't create frames on a terminal that is
21572 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
21573 (store_frame_param): Check for found_for_frame before calling XFRAME.
21574 (Fmake_terminal_frame): Handle NULL tty names correctly.
21575 (syms_of_frame): Enhance doc string of `default-frame-alist'.
21576 (Fdelete_frame): Remove unused variable `count'. Don't allow other
21577 frames to refer to a deleted frame in their 'environment parameter.
21578 (Fframe_with_environment): New function.
21579 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
21580 (get_future_frame_param): New function.
21581 (Fmake_terminal_frame): Use it.
21582 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
21583
21584 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
21585 * sysdep.c (reset_sys_modes): Update for renames.
21586
21587 * keyboard.c (tty_read_avail_input): New function.
21588 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
21589 (syms_of_keyboard): Defsubr them.
21590 (Fset_input_meta_mode, Fset_quit_char): New functions.
21591 (Fset_input_mode): Split to above functions.
21592 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
21593 parameter. Use it in call to `read_char'.
21594 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
21595 Set wrong_kboard_jmpbuf correctly in recursive calls.
21596 Use current_kboard to access Vkeyboard_translate_table.
21597 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
21598 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
21599 Update longjmp invocations. Remember the original current_kboard,
21600 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
21601 changes it. Comment out unnecessary calls to
21602 `record_single_kboard_state' and `any_kboard_state'.
21603 Update recursive calls.
21604 (wrong_kboard_jmpbuf): Remove global variable.
21605 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
21606 Handle deleted interrupted_kboards correctly; that is a legal
21607 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
21608 and read_char calls. Abort if interrupted_kboard died in read_char.
21609 (any_kboard_state, single_kboard_state)
21610 (push_frame_kboard): Remove function.
21611 (pop_kboard): Switch out of single_kboard mode if the kboard has
21612 been deleted. Remove unused variable. Help debugging by not
21613 changing current_kboard unnecessarily. Set current_kboard to the
21614 kboard of the selected frame when the stored kboard object has
21615 been deleted before pop_kboard.
21616 (temporarily_switch_to_single_kboard): Change first parameter to a
21617 frame pointer. Throw an error when caller wants to change kboards
21618 while in single_kboard mode. Don't push_kboard if we weren't in
21619 single kboard state. Don't pop_kboard if we popped into any
21620 kboard state.
21621 (restore_kboard_configuration): Abort if pop_kboard changed the
21622 kboard in single_kboard mode. Call pop_kboard only after setting
21623 up single_kboard mode.
21624 (Frecursive_edit): Switch to single_kboard mode only in nested
21625 command loops.
21626 (cmd_error, command_loop, command_loop_1, timer_check):
21627 Comment out unnecessary call to `any_kboard_state' and
21628 `record_single_kboard_state'.
21629 (delete_kboard): Exit single_kboard mode if we have just deleted
21630 that kboard. Use FRAME_KBOARD.
21631 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
21632 `fatal_error_signal'.
21633 (record_single_kboard_state): Don't push_kboard if we weren't in
21634 single kboard state. Don't pop_kboard if we popped into any
21635 kboard state.
21636 (push_frame_kboard): Rename to push_kboard.
21637 (kbd_buffer_get_event): Use FRAME_TERMINAL.
21638 (read_avail_input): Read input from all terminals.
21639 (mark_kboards): Also mark Vkeyboard_translate_table.
21640 (kbd_buffer_store_event_hold): Simplify condition.
21641 (read_key_sequence): Reinitialize fkey and keytran at each replay.
21642 (Vkeyboard_translate_table): Move to struct kboard.
21643 (init_kboard): Initialize Vkeyboard_translate_table.
21644 (syms_of_keyboard): Use DEFVAR_KBOARD to define
21645 Vkeyboard_translate_table. Update doc strings. Update docs of
21646 local-function-key-map and function-key-map.
21647
21648 * terminal.c: New file.
21649
21650 * term.c: Include errno.h.
21651 (Vring_bell_function, device_list, initial_device)
21652 (next_device_id, ring_bell, update_begin, update_end)
21653 (set_terminal_window, cursor_to, raw_cursor_to)
21654 (clear_to_end, clear_frame, clear_end_of_line)
21655 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
21656 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
21657 (syms_of_term): Move their initialization to terminal.c.
21658 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
21659 (Ftty_display_color_cells)
21660 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
21661 (clear_tty_hooks, set_tty_hooks)
21662 (init_tty, maybe_fatal): New functions.
21663 (Ftty_type): Return nil if terminal is not on a tty instead of
21664 throwing an error. Doc update.
21665 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
21666 Doc update. Initialize new subrs and variables.
21667 (delete_tty): Use terminal->deleted.
21668 (tty_set_terminal_modes): Rename from set_terminal_modes.
21669 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
21670 (set_scroll_region): Rename to `tty_set_scroll_region'.
21671 (turn_on_insert): Rename to `tty_turn_on_insert'.
21672 (turn_off_insert): Rename to `tty_turn_off_insert'.
21673 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
21674 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
21675 (toggle_highligh): Rename to `tty_toggle_highlight'.
21676 (background_highlight): Rename to `tty_background_highlight'.
21677 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
21678 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
21679 (tty_set_scroll_region, tty_background_highlight)
21680 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
21681 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
21682 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
21683 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
21684 Add static modifier.
21685 (tty_reset_terminal_modes, tty_set_terminal_window)
21686 (tty_set_scroll_region, tty_background_highlight)
21687 (tty_highlight_if_desired, tty_cursor_to)
21688 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
21689 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
21690 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
21691 renames.
21692
216932007-08-28 Jan Djärv <jan.h.d@swipnet.se>
21694
21695 * keyboard.c: Qrtl is new.
21696 (parse_tool_bar_item): Handle :rtl keyword.
21697 (syms_of_keyboard): Intern :rtl keyword.
21698
21699 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
21700
21701 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
21702 so no Lisp code is executed.
21703 (file_for_image, find_rtl_image): New functions.
21704 (xg_get_image_for_pixmap): Use file_for_image.
21705 (update_frame_tool_bar): If direction is RTL, use RTL image if
21706 defined. Use Gtk stock images if defined.
21707
217082007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21709
21710 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
21711 for nonexistent or zero-width glyph in composition glyph.
21712
217132007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
21714
21715 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
21716
21717 * xdisp.c (Finvisible_p): New function.
21718 (syms_of_xdisp): defsubr it.
21719
217202007-08-24 Juanma Barranquero <lekktu@gmail.com>
21721
21722 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
21723 Doc fixes.
21724
217252007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21726
21727 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
21728
217292007-08-24 Martin Rudalics <rudalics@gmx.at>
21730
21731 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
21732 whether decoding has modified buffer contents.
21733
217342007-08-24 Jason Rumney <jasonr@gnu.org>
21735
21736 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
21737 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
21738 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
21739 (init_svg_functions) [HAVE_NTGUI]: New function.
21740 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
21741 (svg_load_image): Use them.
21742 (svg_load_image) [HAVE_NTGUI]: Implement background.
21743
217442007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21745
21746 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
21747 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
21748 (LIBX): Remove @RSVG_LIBS@.
21749 (LIBES): Add $(RSVG_LIBS).
21750
21751 * image.c (svg_load_image): Blend with specified background if exists.
21752 Use IMAGE_BACKGROUND. Add Mac OS Support.
21753
21754 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
21755 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
21756 Remove macros.
21757 [MAC_OSX] (socket_callback): Do nothing.
21758 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
21759 ReceiveNextEvent.
21760 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
21761 socket_callback.
21762 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
21763
217642007-08-22 Glenn Morris <rgm@gnu.org>
21765
21766 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
21767
217682007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
21769
21770 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
21771
21772 * image.c: Add support for SVG images. Some additional comments
21773 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
21774 (svg_image_p): New function to test for SVG image.
21775 (svg_load): New function to load SVG image.
21776 (svg_load_image): New function, helper for svg_load.
21777 (Qsvg): New Lisp_object.
21778 (svg_keyword_index): New enum.
21779 (svg_format): New static `image_keyword' struct.
21780 (svg_type): New static `image_type' struct.
21781 (librsvg/rsvg.h): Include it.
21782
217832007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
21784
21785 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
21786
217872007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
21788
21789 * lread.c (Qold_style_backquotes): New var.
21790 (syms_of_lread): Init and staticpro it.
21791 (load_warn_old_style_backquotes): New fun.
21792 (Fload): Use them to warn about old style backquotes.
21793 (end_of_file_error, Fload): Remove unused vars.
21794
21795 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
21796
21797 * lread.c (Vold_style_backquotes): New var.
21798 (syms_of_lread): Init and export it to Elisp.
21799 (read1): Set it when we find an old-style (back)quote.
21800
218012007-08-22 Jason Rumney <jasonr@gnu.org>
21802
21803 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
21804
218052007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
21806
21807 * puresize.h (BASE_PURESIZE): Increase to 1140000.
21808
218092007-08-19 Richard Stallman <rms@gnu.org>
21810
21811 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
21812
218132007-08-19 Andreas Schwab <schwab@suse.de>
21814
21815 * alloc.c (pure): Round PURESIZE up.
21816
218172007-08-17 Jan Djärv <jan.h.d@swipnet.se>
21818
21819 * xterm.c (handle_one_xevent): Remove check that mouse click is in
21820 active frame.
21821
218222007-08-16 Richard Stallman <rms@gnu.org>
21823
21824 * eval.c (Fcommandp): Add parens to clarify.
21825
21826 * minibuf.c (Fall_completions): Use enum for type of table.
21827
21828 * emacs.c (USAGE2): Improve text.
21829
218302007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
21831
21832 * term.c (tty_default_color_capabilities): Declare static
21833 variables in file scope, to avoid HPUX compiler problem.
21834
218352007-08-13 Jan Djärv <jan.h.d@swipnet.se>
21836
21837 * gtkutil.c (update_frame_tool_bar): Use -1 as index
21838 to gtk_toolbar_insert.
21839
218402007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
21841
21842 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
21843
21844 * insdel.c (reset_var_on_error): New fun.
21845 (signal_before_change, signal_after_change):
21846 Use it to reset (after|before)-change-functions to nil in case of error.
21847 Bind inhibit-modification-hooks to t.
21848 Don't bind (after|before)-change-functions to nil while they run.
21849
218502007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21851
21852 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
21853 filling pixmap with stippled background.
21854
218552007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21856
21857 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
21858 Don't use invisible frame as parent window for repositioning.
21859
218602007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
21861
21862 * print.c (new_backquote_output): Rename from old_backquote_output.
21863 (print): Inverse its logic (according to its name) so as to match the
21864 behavior of new_backquote_flag in lread.c.
21865
218662007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21867
21868 * gmalloc.c (posix_memalign): New function.
21869
21870 * macterm.c (frame_highlight, frame_unhighlight): Don't call
21871 ActivateControl/DeactivateControl here.
21872 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
21873 frame-notice-user-settings is non-nil.
21874 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
21875 for kEventParamFMFontStyle.
21876 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
21877 mac_pass_command_to_system and mac_pass_control_to_system here.
21878 (XTread_socket): Call ActivateControl/DeactivateControl here.
21879 (XTread_socket) [TARGET_API_MAC_CARBON]:
21880 Check mac_pass_command_to_system and mac_pass_control_to_system here.
21881 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
21882 for window repositioning.
21883
218842007-08-08 Glenn Morris <rgm@gnu.org>
21885
21886 * Replace `iff' in doc-strings and comments.
21887
218882007-08-07 Chong Yidong <cyd@stupidchicken.com>
21889
21890 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
21891
218922007-08-07 Martin Rudalics <rudalics@gmx.at>
21893
21894 * fileio.c (Finsert_file_contents): Run format-decode and
21895 after_insert_file_functions on entire buffer when REPLACE is
21896 non-nil and inhibit modification_hooks and point_motion_hooks.
21897 For consistency, run after_insert_file_functions iff something
21898 got inserted. Move signal_after_change and update_compositions
21899 after code running after_insert_file_functions. Make sure that
21900 undo_list doesn't record intermediate steps of the decoding process.
21901
219022007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21903
21904 * emacs.c (main)
21905 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
21906 Call malloc_enable_thread on interactive startup.
21907
21908 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
21909 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
21910 [USE_PTHREAD]: Conditionalize with it.
21911 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
21912 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
21913 New functions.
21914
219152007-08-06 Chong Yidong <cyd@stupidchicken.com>
21916
21917 * xdisp.c (redisplay_window): When restoring original buffer
21918 position, make sure it is still valid.
21919
21920 * image.c (png_load): Ignore png-supplied background color.
21921
219222007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21923
21924 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
21925 Use kCFAbsoluteTimeIntervalSince1970.
21926
21927 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
21928 New variable.
21929 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
21930 event loop should be quit.
21931 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
21932 Quit dialog event loop if quit_dialog_event_loop is set.
21933
21934 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
21935 (Selection): New typedef. Use instead of ScrapRef.
21936 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
21937 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
21938 (mac_clear_selection): Rename from clear_scrap.
21939 (get_flavor_type_from_symbol): New argument SEL and subsume function of
21940 scrap_has_target_type. All uses changed.
21941 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21942 (mac_selection_has_target_p): New functions.
21943 (mac_put_selection_value): Rename from put_scrap_string.
21944 (mac_get_selection_value): Rename from get_scrap_string.
21945 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
21946 (put_scrap_private_timestamp, scrap_has_target_type)
21947 (get_scrap_private_timestamp): Remove functions.
21948 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
21949 (x_own_selection, x_get_local_selection):
21950 Use mac_valid_selection_value_p.
21951 (x_own_selection): Don't use put_scrap_private_timestamp.
21952 Record OWNERSHIP-INFO into Vselection_alist instead.
21953 (x_get_local_selection): Don't check type if request is local.
21954 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
21955 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
21956
219572007-08-04 Jan Djärv <jan.h.d@swipnet.se>
21958
21959 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
21960 add comment explaining why.
21961
219622007-08-03 Richard Stallman <rms@gnu.org>
21963
21964 * fileio.c (Fvisited_file_modtime): Use make_time.
21965
219662007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
21967
21968 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
21969 build.
21970
219712007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
21972
21973 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
21974
219752007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
21976
21977 * puresize.h (BASE_PURESIZE): Increase to 1130000.
21978
219792007-07-30 Richard Stallman <rms@gnu.org>
21980
21981 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
21982
219832007-07-29 Jan Djärv <jan.h.d@swipnet.se>
21984
21985 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
21986
219872007-07-28 Nick Roberts <nickrob@snap.net.nz>
21988
21989 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
21990 remote default-directory.
21991
21992 * buffer.c (mode-line-format): Update doc string.
21993
219942007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21995
21996 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
21997 scroll bar gap.
21998 (x_scroll_bar_create): Set bar->fringe_extended_p.
21999 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
22000 on frame edge. Check fringe background extension. Don't clear
22001 extended fringe background area.
22002
22003 * w32term.h (struct scroll_bar): New member fringe_extended_p.
22004 (w32_fill_area): Enclose multiple statements with do ... while (0).
22005
22006 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
22007 Extend fringe background to scroll bar gap.
22008 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
22009 Set bar->fringe_extended_p.
22010 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
22011 Put leftmost/rightmost scroll bars on frame edge. Check fringe
22012 background extension. Don't clear extended fringe background area.
22013
22014 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
22015 New member fringe_extended_p.
22016
220172007-07-25 Glenn Morris <rgm@gnu.org>
22018
22019 * Relicense all FSF files to GPLv3 or later.
22020
22021 * COPYING: Switch to GPLv3.
22022
220232007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
22024
22025 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
22026
22027 * data.c (Finteractive_form): Check for the presence of an
22028 `interactive-form' symbol property more thoroughly.
22029
22030 * data.c (Finteractive_form): Use an `interactive-form' property if
22031 present, analogous to the function-documentation property.
22032
220332007-07-24 Jason Rumney <jasonr@gnu.org>
22034
22035 * w32fns.c (x_real_positions): Get real position from OS instead of
22036 calculating it.
22037
220382007-07-23 Jason Rumney <jasonr@gnu.org>
22039
22040 * filelock.c (current_lock_owner): Allow for @ sign in username.
22041
220422007-07-22 Nick Roberts <nickrob@snap.net.nz>
22043
22044 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
22045 remote default-directory.
22046
22047 * buffer.c (mode-line-format): Describe above case in doc string.
22048
220492007-07-20 Eli Zaretskii <eliz@gnu.org>
22050
22051 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
22052 Define if not defined.
22053
220542007-07-18 Jason Rumney <jasonr@gnu.org>
22055
22056 * w32proc.c (w32_executable_type): Handle 64 bit executables.
22057
220582007-07-18 Richard Stallman <rms@gnu.org>
22059
22060 * data.c (Fsetq_default): Doc fix.
22061
22062 * eval.c (Fsetq): Doc fix.
22063
220642007-07-18 Juanma Barranquero <lekktu@gmail.com>
22065
22066 * coding.c (Ffind_operation_coding_system):
22067 * eval.c (For, Fand): Doc fixes.
22068 Reported by Johan Bockgård.
22069
220702007-07-18 Jan Djärv <jan.h.d@swipnet.se>
22071
22072 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
22073
22074 * xterm.h: Declare x_ewmh_activate_frame.
22075
22076 * xterm.c (x_ewmh_activate_frame): New function.
22077 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
22078
220792007-07-17 Martin Rudalics <rudalics@gmx.at>
22080
22081 * window.c (Fdisplay_buffer): If largest or LRU window is the
22082 only window, split it even if it is not eligible for splitting.
22083 This restores the original behavior broken by the 2007-07-15
22084 change.
22085
220862007-07-17 Glenn Morris <rgm@gnu.org>
22087
22088 * abbrev.c (abbrev_check_chars): New function.
22089 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
22090 Call abbrev_check_chars to check abbrev characters are word
22091 constituents. Doc fix.
22092
220932007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
22094
22095 * process.c (Fstart_process, Fmake_network_process)
22096 (read_process_output): Fix up last changes.
22097
220982007-07-16 Eli Zaretskii <eliz@gnu.org>
22099
22100 * makefile.w32-in (clean): Don't delete *~.
22101
221022007-07-16 Andreas Schwab <schwab@suse.de>
22103
22104 * window.c (Fdisplay_buffer): Use NILP.
22105 (Fset_window_scroll_bars): Likewise.
22106
221072007-07-15 Martin Rudalics <rudalics@gmx.at>
22108
22109 * window.c (window_min_size_2): New function.
22110 (window_min_size_1, size_window, Fdisplay_buffer)
22111 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
22112 windows without mode- or header-lines when window-min-height is
22113 too small.
22114 (size_window): Reset nodelete_p after testing it, following an
22115 earlier note by Kim F. Storm.
22116 (display_buffer): Do not set split_height_threshold to twice the
22117 value of window_min_height to avoid changing the value of a
22118 customizable variable. Rather explicitly check whether the
22119 height of the window that shall be splitted is at least as large
22120 as split_height_threshold.
22121 (Fwindow_full_width_p): New defun.
22122 (syms_of_window): Defsubr it.
22123
22124 * window.h: Add EXFUN for Fwindow_full_width_p.
22125
221262007-07-14 Jason Rumney <jasonr@gnu.org>
22127
22128 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
22129
221302007-07-14 Richard Stallman <rms@gnu.org>
22131
22132 * eval.c (maybe_call_debugger): New function.
22133 (find_handler_clause): Use maybe_call_debugger.
22134 Call it when the handler says `debug'.
22135 Eliminate DEBUGGER_VALUE_PTR.
22136 (Fsignal): Eliminate debugger_value.
22137 (Qdebug): New variable.
22138 (syms_of_eval): Initialize it.
22139
221402007-07-14 Juanma Barranquero <lekktu@gmail.com>
22141
22142 * eval.c (Fprogn):
22143 * keyboard.c (Ftrack_mouse):
22144 * print.c (Fwith_output_to_temp_buffer):
22145 * window.c (Fsave_window_excursion): Doc fix.
22146
221472007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
22148
22149 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
22150
221512007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
22152
22153 * process.h (struct Lisp_Process): Turn slots infd, outfd,
22154 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
22155 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
22156 read_output_delay, and read_output_skip from Lisp_Objects to ints.
22157 Remove unused encoding_carryover.
22158 * process.c: Adjust all functions accordingly.
22159
221602007-07-12 Richard Stallman <rms@gnu.org>
22161
22162 * term.c: Include unistd.h only if HAVE_UNISTD_H.
22163
221642007-07-11 Jason Rumney <jasonr@gnu.org>
22165
22166 * makefile.w32-in (LIBS): Include OLE32.
22167
22168 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
22169 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
22170
221712007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
22172
22173 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
22174 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
22175 from a Lisp_Object into a bare pointer.
22176 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
22177 Adjust the code correspondingly.
22178
22179 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
22180
22181 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
22182 (term_show_mouse_face): Remove unused var `j'.
22183 (handle_one_term_event): Remove unused vars `i' and `j'.
22184 Don't cast return value of ttyname since it's not necessary.
22185
221862007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
22187
22188 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
22189 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
22190
22191 * fns.c (map_char_table): Use an array of int for `indices' rather than
22192 an array of Lisp_Objects (which are only ever integers anyway).
22193 (Fmap_char_table): Update caller.
22194 * lisp.h: Update prototype.
22195 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
22196 * fontset.c (Ffontset_info):
22197 * casetab.c (set_case_table): Update callers.
22198
22199 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
22200
22201 * keymap.c (struct accessible_keymaps_data)
22202 (struct where_is_internal_data): New structures.
22203 (accessible_keymaps_1, where_is_internal_1): Use them to change
22204 interface to adhere to the one used by map_keymap.
22205 (Faccessible_keymaps, where_is_internal): Use map_keymap.
22206 (accessible_keymaps_char_table, where_is_internal_2): Remove.
22207
22208 * keymap.h (map_keymap_function_t): More informative prototype.
22209
222102007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
22211
22212 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
22213 (looking_at_1): Don't change search_regs and last_thing_searched
22214 if `inhibit-changing-match-data' is non-nil.
22215 (string_match_1, search_buffer, set_search_regs): Likewise.
22216 (syms_of_search): Add Lisp level definition for
22217 `inhibit-changing-match-data' and set it to nil.
22218 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
22219 start and end of the match, instead of using values in search_regs.
22220
222212007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
22222
22223 * minibuf.c (Fcompleting_read): New value `confirm-only'
22224 for `require-match'.
22225
222262007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
22227
22228 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
22229 part of the 2007-06-27 change to syms_of_fileio.
22230
222312007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22232
22233 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
22234 Check WINDOWP before using XWINDOW. Consolidate return statements.
22235
222362007-06-27 Richard Stallman <rms@gnu.org>
22237
22238 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
22239
222402007-06-27 Juanma Barranquero <lekktu@gmail.com>
22241
22242 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
22243
222442007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22245
22246 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
22247 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
22248 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
22249 (_free_internal, memalign): Use them.
22250 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
22251 Initialize to PTHREAD_MUTEX_INITIALIZER.
22252 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
22253 (morecore_nolock): Rename from morecore. All uses changed.
22254 Use only nolock versions of internal allocation functions.
22255 (_malloc_internal_nolock, _realloc_internal_nolock)
22256 (_free_internal_nolock): New functions created from
22257 _malloc_internal, _realloc_internal, and _free_internal.
22258 (_malloc_internal, _realloc_internal, _free_internal): Use them.
22259 Copy hook value to automatic variable before its use.
22260 (memalign): Copy hook value to automatic variable before its use.
22261
222622007-06-26 Kenichi Handa <handa@m17n.org>
22263
22264 * coding.c (Ffind_operation_coding_system): Docstring improved.
22265 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
22266
222672007-06-25 David Kastrup <dak@gnu.org>
22268
22269 * keymap.c (Fcurrent_active_maps): Add `position' argument.
22270 (Fwhere_is_internal): Adjust call to `current-active-maps' to
22271 cater for additional parameter.
22272
22273 * keymap.h: Adjust number of parameters to `current-active-maps'.
22274
22275 * doc.c (Fsubstitute_command_keys): Adjust call of
22276 `current-active-maps'.
22277
222782007-06-25 David Kastrup <dak@gnu.org>
22279
22280 * callint.c (Fcall_interactively): Make the parsing of interactive
22281 specs somewhat more readable.
22282
222832007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22284
22285 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
22286 to scroll bar gap also when bitmap fills fringe. Draw only foreground
22287 if extended background has already been filled.
22288
222892007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22290
22291 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
22292 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
22293
22294 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
22295 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
22296 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
22297 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
22298 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
22299 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
22300 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
22301 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
22302 Run timers during dialog popup.
22303 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
22304
223052007-06-21 Jason Rumney <jasonr@gnu.org>
22306
22307 * image.c (convert_mono_to_color_image): Swap fore and background.
22308
223092007-06-20 Jason Rumney <jasonr@gnu.org>
22310
22311 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
22312 (w32_free_bdf_font): Unmap memory not handle.
22313
223142007-06-20 Sam Steingold <sds@gnu.org>
22315
22316 * gmalloc.c (__morecore): Fix the declaration to comply with the
22317 definition.
22318
223192007-06-20 Juanma Barranquero <lekktu@gmail.com>
22320
22321 * w32term.c (w32_delete_display): Remove leftover declaration.
22322 (w32_define_cursor, w32_initialize): Make static.
22323
22324 * w32.c (_wsa_errlist): Fix typo in error message.
22325 (init_environment): Ignore any environment variable from the
22326 registry having a null value.
22327
223282007-06-20 Glenn Morris <rgm@gnu.org>
22329
22330 * Makefile.in (LIBGIF): Default to -lgif.
22331
223322007-06-17 Jason Rumney <jasonr@gnu.org>
22333
22334 * w32menu.c (add_menu_item): Don't use multibyte string functions on
22335 unicode strings.
22336
223372007-06-16 Juanma Barranquero <lekktu@gmail.com>
22338
22339 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
22340 Fix typo in docstring.
22341
223422007-06-16 Eli Zaretskii <eliz@gnu.org>
22343
22344 * w32menu.c (add_menu_item): Escape `&' characters in menu items
22345 and their keybindings.
22346
223472007-06-15 Chong Yidong <cyd@stupidchicken.com>
22348
22349 * composite.c (update_compositions): Fix last fix.
22350
223512007-06-14 Jason Rumney <jasonr@gnu.org>
22352
22353 * w32.c (get_process_times_fn): New function pointer.
22354 (globals_of_w32): Intialize it if present in kernel32.dll.
22355 (w32_get_internal_run_time): New function.
22356
22357 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
22358
223592007-06-14 Kenichi Handa <handa@etlken.m17n.org>
22360
22361 * composite.c (update_compositions): Check the validness of
22362 compositions.
22363
223642007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22365
22366 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
22367 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
22368
22369 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
22370 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
22371
22372 * macgui.h (USE_MAC_TOOLBAR): New define.
22373
22374 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
22375 Return immediately unless popup is activated.
22376
22377 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
22378 background to scroll bar gap.
22379 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
22380 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
22381 scroll bars on frame edge. Check fringe background extension.
22382 Don't clear extended fringe background area.
22383 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
22384 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
22385 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
22386 [USE_MAC_TOOLBAR]: New macros.
22387 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
22388 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
22389 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
22390 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
22391 [USE_MAC_TOOLBAR]: New functions.
22392 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
22393 manually if previous repositioning has failed.
22394 (mac_handle_keyboard_event): Use precomputed event kind.
22395 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
22396 as tool bar item click. Handle mouse movement over tool bar items.
22397
22398 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
22399 toolbar_win_gravity.
22400 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
22401 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
22402 Add externs.
22403
22404 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
22405 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
22406
224072007-06-14 Chong Yidong <cyd@stupidchicken.com>
22408
22409 * image.c (search_image_cache): Remove unused variable.
22410
224112007-06-13 Chong Yidong <cyd@stupidchicken.com>
22412
22413 * xfns.c, xmenu.c: Link to xaw3d if available.
22414
224152007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22416
22417 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
22418 frame_foreground and frame_background.
22419
22420 * image.c (lookup_image): Save frame foreground and background colors.
22421 (search_image_cache): Check if saved and current frame colors match.
22422
224232007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
22424
22425 * regex.c (regex_compile): Remove the `regnum' counter.
22426 Use bufp->re_nsub instead. Add support for \(?N:RE\).
22427
224282007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
22429
22430 * term.c: Include intervals.h to declare Fget_text_property.
22431
224322007-06-10 Jason Rumney <jasonr@gnu.org>
22433
22434 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
22435
224362007-06-08 Juanma Barranquero <lekktu@gmail.com>
22437
22438 * callint.c (Fcall_interactively):
22439 * editfns.c (Fdelete_and_extract_region):
22440 * fileio.c (Fread_file_name):
22441 * fns.c (Fmapconcat):
22442 * keyboard.c (cmd_error_internal):
22443 * keymap.c (Fkey_description):
22444 * lread.c (openp):
22445 * minibuf.c (read_minibuf):
22446 * search.c (wordify):
22447 * sunfns.c (sel_read):
22448 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
22449 * xfns.c (x_default_scroll_bar_color_parameter):
22450 * xmenu.c (menu_help_callback):
22451 * xselect.c (Fx_get_atom_name):
22452 * xterm.c (x_term_init): Use empty_unibyte_string.
22453
224542007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
22455
22456 * alloc.c (init_strings): Initialize canonical empty strings.
22457 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
22458 canonical empty string when the requested size is 0.
22459
22460 * emacs.c (empty_unibyte_string): Rename from empty_string.
22461 (empty_multibyte_string): New canonical empty string.
22462 (syms_of_emacs): Don't initialize empty_string.
22463
22464 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
22465 string, if appropriate.
22466 (empty_unibyte_string, empty_multibyte_string): New externs.
22467 (empty_string): Remove extern.
22468
22469 * lread.c (syms_of_lread): Use empty_unibyte_string.
22470
224712007-06-07 Jason Rumney <jasonr@gnu.org>
22472
22473 * s/ms-w32.h: Don't define HAVE_TZNAME.
22474
22475 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
22476
224772007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22478
22479 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
22480
22481 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
22482 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
22483
22484 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
22485 Don't call next handler.
22486 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
22487 Remove argument. Install handler to application.
22488 (set_frame_menubar): Don't change deep_p.
22489 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
22490 FRAME_OUTER_TO_INNER_DIFF_Y.
22491 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
22492 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
22493 [HAVE_DIALOGS]: New macros.
22494 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
22495 Use them.
22496 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
22497
22498 * macselect.c [MAC_OSX] (install_service_handler): Rename from
22499 init_service_handler. All callers changed. Return OSStatus value.
22500
22501 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
22502 All callers changed so as not to call SetPortWindowPort.
22503 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
22504 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
22505 mac_draw_string_common.
22506 (mac_draw_image_string_qd): Likewise.
22507 (mac_draw_string_common): Use them. Add INLINE.
22508 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
22509 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
22510 GetGlobalMouse.
22511 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
22512 and FRAME_OUTER_TO_INNER_DIFF_Y.
22513 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
22514 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
22515 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
22516 repositioning window to mac_handle_window_event.
22517 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
22518 saving window location to mac_handle_window_event
22519 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
22520 (install_menu_target_item_handler): Remove argument in extern.
22521 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
22522 Also accept command events.
22523 (do_keystroke): New function created from XTread_socket.
22524 (init_command_handler): Remove functions.
22525 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
22526 and save window location by kEventWindowShowing and kEventWindowHiding
22527 handlers here. Don't call next handler for window state change and
22528 focus events.
22529 (mac_handle_application_event, mac_handle_keyboard_event)
22530 [TARGET_API_MAC_CARBON]: New functions.
22531 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
22532 kEventWindowShowing and kEventWindowHiding events. Move installation
22533 of mouse, font, text input and menu target item handlers to
22534 install_application_handler.
22535 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
22536 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
22537 New function.
22538 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
22539 Register it.
22540 (XTread_socket) [TARGET_API_MAC_CARBON]:
22541 Consolidate SendEventToEventTarget calls.
22542 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
22543 Move application activation handler to mac_handle_application_event.
22544 Move keyboard handler to mac_handle_keyboard_event.
22545 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
22546 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
22547 init_command_handler. Call install_application_handler.
22548
22549 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
22550 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
22551
225522007-06-07 Glenn Morris <rgm@gnu.org>
22553
22554 * emacs.c (main): Use `emacs-copyright' in --version output.
22555
225562007-06-06 Chong Yidong <cyd@stupidchicken.com>
22557
22558 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
22559
225602007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22561
22562 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
22563
22564 * macgui.h: Replace WindowPtr with WindowRef.
22565
22566 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
22567 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
22568 Replace ControlHandle with ControlRef.
22569 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
22570
22571 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
22572 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
22573 Replace ControlHandle with ControlRef.
22574 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
22575 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
22576
22577 * macterm.h (struct scroll_bar): Rename member control_handle_low
22578 and control_handle_high to control_ref_low and control_ref_high.
22579 All uses changed.
22580 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
22581 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
22582 respectively. All uses changed.
22583 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
22584 (install_window_handler, remove_window_handler): Replace WindowPtr
22585 with WindowRef in externs.
22586
225872007-06-05 Juanma Barranquero <lekktu@gmail.com>
22588
22589 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
22590
225912007-06-03 Nick Roberts <nickrob@snap.net.nz>
22592
22593 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
22594
22595 * frame.c (Fmouse_position, Fmouse_pixel_position):
22596 Condition on HAVE_GPM too.
22597
22598 * term.c (term_mouse_highlight): Remove unused variables.
22599 (Fterm_open_connection): Set gpm_zerobased to 1.
22600 (term_mouse_movement, term_mouse_click, handle_one_term_event):
22601 Use zero based co-ordinates.
22602 (handle_one_term_event): Report a drag as mouse movement too.
22603
22604 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
22605
226062007-06-03 Chong Yidong <cyd@stupidchicken.com>
22607
22608 * image.c (search_image_cache): New function. Require background
22609 color match if background color is unspecified in the image spec.
22610 (uncache_image, lookup_image): Use it.
22611
226122007-06-01 Juanma Barranquero <lekktu@gmail.com>
22613
22614 * window.c (Fshrink_window): Reflow docstring.
22615
226162007-06-02 Chong Yidong <cyd@stupidchicken.com>
22617
22618 * Version 22.1 released.
22619
226202007-06-01 Richard Stallman <rms@gnu.org>
22621
22622 * xfns.c (x_encode_text): Add GCPRO.
22623
226242007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22625
22626 * xfns.c (x_set_name_internal): Save encoded name before
22627 x_encode_text in case string data is relocated.
22628
226292007-05-31 Richard Stallman <rms@gnu.org>
22630
22631 * buffer.c (syms_of_buffer): Doc fix.
22632
226332007-05-30 Nick Roberts <nickrob@snap.net.nz>
22634
22635 * sysdep.c (init_sys_modes): Add rather than replace with
22636 O_NONBLOCK.
22637
22638 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
22639 term_mouse_moveto.
22640
22641 * termhooks.h (term_mouse_moveto): New extern.
22642
22643 * term.c (mouse_face_window): Rename...
22644 (Qmouse_face_window): ...to this.
22645 (term_show_mouse_face, term_clear_mouse_face)
22646 (term_mouse_highlight): Use Qmouse_face_window.
22647 (term_mouse_moveto): New function.
22648 (term_mouse_position): Make it work.
22649 (syms_of_term): Uncomment assignment to mouse_position_hook.
22650 Staticpro Qmouse_face_window.
22651
226522007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22653
22654 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
22655 around current_column call.
22656
226572007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
22658
22659 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
22660 * xdisp.c (next_element_from_buffer):
22661 * window.c (delete_window):
22662 * term.c (term_mouse_highlight):
22663 * msdos.c (getdefdir):
22664 * macterm.c (mac_create_bitmap_from_bitmap_data)
22665 (init_font_name_table):
22666 * fns.c (Fsxhash):
22667 * data.c (Fmake_local_variable):
22668 * ccl.c (ccl_driver): Likewise.
22669
226702007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22671
22672 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
22673 Call mac_wakeup_from_rne on window size change.
22674
226752007-05-25 Chong Yidong <cyd@stupidchicken.com>
22676
22677 * image.c (uncache_image): Fix typo.
22678
226792007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
22680
22681 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
22682
226832007-05-22 Richard Stallman <rms@gnu.org>
22684
22685 * xterm.c (x_connection_closed): Remove NO_RETURN.
22686
226872007-05-22 Martin Rudalics <rudalics@gmx.at>
22688
22689 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
22690
226912007-05-21 Chong Yidong <cyd@stupidchicken.com>
22692
22693 * image.c (uncache_image): New function.
22694 (Fimage_refresh): New function.
22695
226962007-05-20 Jan Djärv <jan.h.d@swipnet.se>
22697
22698 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
22699
227002007-05-20 Nick Roberts <nickrob@snap.net.nz>
22701
22702 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
22703 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
22704
227052007-05-20 Nick Roberts <nickrob@snap.net.nz>
22706
22707 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
22708 conditional on [HAVE_GPM_H].
22709
227102007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
22711
22712 * syntax.c (skip_chars): Update syntax-table only after we checked that
22713 the new location is valid.
22714
227152007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22716
22717 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
22718 mac_get_window_bounds.
22719
227202007-05-20 Nick Roberts <nickrob@snap.net.nz>
22721
22722 * Makefile.in (LIBGPM): Allow it to be set from configure.
22723 If set then link Emacs with it.
22724
22725 * config.in: Regenerate.
22726
22727 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
22728 New externs.
22729
22730 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
22731 Include gpm.h.
22732 (handle_one_term_event, term_gpm): New externs.
22733
22734 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
22735 and allow it to be interrupted by SIGIO.
22736
22737 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
22738 (wait_reading_process_output): Wait on gpm_fd too.
22739 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
22740 (add_gpm_wait_descriptor_called_flag): New variable.
22741 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
22742
22743 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
22744 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
22745 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
22746 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
22747 (make_lispy_event): Add case GPM_CLICK_EVENT.
22748 (read_avail_input): Handle mouse input.
22749
22750 * term.c (write_glyphs_with_face): New function.
22751 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
22752 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
22753 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
22754 (mouse_face_face_id, term_gpm, pos_x, pos_y)
22755 (last_mouse_x, last_mouse_y): New variables.
22756 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
22757 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
22758 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
22759 (Fterm_close_connection): New functions.
22760 (term_init): Initialise mouse_face_window.
22761
227622007-05-19 Chong Yidong <cyd@stupidchicken.com>
22763
22764 * xdisp.c (redisplay_window): If first window line is a
22765 continuation line, recompute the new window start instead of
22766 recentering.
22767
227682007-05-18 Glenn Morris <rgm@gnu.org>
22769
22770 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
22771 Suggested by Alfred M. Szmidt <ams@gnu.org>.
22772
227732007-05-17 Glenn Morris <rgm@gnu.org>
22774
22775 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
22776
227772007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22778
22779 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
22780 dead key repeat and up events.
22781
227822007-05-14 Chong Yidong <cyd@stupidchicken.com>
22783
22784 * image.c (pbm_load): Check image size for monochrome pbm.
22785
227862007-05-13 Chong Yidong <cyd@stupidchicken.com>
22787
22788 * xterm.c (XTread_socket): Revert last change.
22789
227902007-05-12 Chong Yidong <cyd@stupidchicken.com>
22791
22792 * image.c (pbm_load): Correctly check image size for greyscale pbm.
22793
22794 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
22795
227962007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
22797
22798 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
22799 mixup (YAILOM).
22800
228012007-05-07 Andreas Schwab <schwab@suse.de>
22802
22803 * keymap.c (Flookup_key): Fix typo in last change.
22804
228052007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
22806
22807 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
22808 mapping for unibyte strings.
22809
228102007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22811
22812 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
22813 (Fx_popup_dialog) [MAC_OSX]: Likewise.
22814
228152007-04-29 Richard Stallman <rms@gnu.org>
22816
22817 * insdel.c (replace_range): For undo, record insertion first.
22818
228192007-04-29 Andreas Schwab <schwab@suse.de>
22820
22821 * lisp.h (VECSIZE): Use OFFSETOF.
22822
228232007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22824
22825 * xdisp.c (try_window_reusing_current_matrix): Fix number of
22826 disabled lines.
22827
228282007-04-28 Richard Stallman <rms@gnu.org>
22829
22830 * lread.c (read_escape): In a string, \s is always space.
22831
228322007-04-27 Jan Djärv <jan.h.d@swipnet.se>
22833
22834 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
22835
22836 * gtkutil.c (xg_update_menubar, create_menus): Create empty
22837 submenu for menu bar items.
22838
22839See ChangeLog.10 for earlier changes.
22840
22841;; Local Variables:
22842;; coding: utf-8
22843;; add-log-time-zone-rule: t
aac0c6e3
MR
22844;; End:
22845
5df4f04c 22846 Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
aac0c6e3
MR
22847
22848 This file is part of GNU Emacs.
22849
22850 GNU Emacs is free software: you can redistribute it and/or modify
22851 it under the terms of the GNU General Public License as published by
22852 the Free Software Foundation, either version 3 of the License, or
22853 (at your option) any later version.
22854
22855 GNU Emacs is distributed in the hope that it will be useful,
22856 but WITHOUT ANY WARRANTY; without even the implied warranty of
22857 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22858 GNU General Public License for more details.
22859
22860 You should have received a copy of the GNU General Public License
22861 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22862
22863;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40