* net/tramp.el (tramp-debug-message): Extend function exclude
[bpt/emacs.git] / src / ChangeLog
CommitLineData
7cae64b4
PE
12011-01-18 Paul Eggert <eggert@cs.ucla.edu>
2
3 * lisp.h (DECL_ALIGN): Define if HAVE_ATTRIBUTE_ALIGNED, not if
4 defined __GNUC__. ../configure now checks for this GCC feature,
5 which is now also supported by IBM and Oracle compilers.
6 (USE_LSB_TAG) [defined DECL_ALIGN]: Also define if defined __sun,
7 since Solaris malloc returns mult-of-8.
8
a9faac5c 92011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
0514b4be
SM
10
11 * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
12
a3e44e79 132011-01-17 Paul Eggert <eggert@cs.ucla.edu>
fa2c4f56 14
6e8e6bf2
PE
15 Give a name FLOAT_TO_STRING_BUFSIZE to the constant 350.
16 * lisp.h (FLOAT_TO_STRING_BUFSIZE): New macro.
17 * data.c (Fnumber_to_string): Use it.
18 * print.c (float_to_string, print_object): Likewise.
19
4004364e
PE
20 Include <unistd.h> unilaterally.
21 * alloc.c, atimer.c, buffer.c, callproc.c, dired.c, dispnew.c, doc.c:
22 * doprnt.c, editfns.c, emacs.c, fileio.c, filelock.c, fns.c:
23 * getloadavg.c, getpagesize.h, gmalloc.c, image.c, keyboard.c:
24 * lread.c, process.c, process.h, ralloc.c, regex.c, sysdep.c:
25 * systty.h, term.c, termcap.c, xfns.c, xrdb.c, xselect.c, xsmfns.c:
26 * xterm.c:
27 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
28 unistd.h is always present now, possibly supplied by gnulib.
29
e84aba69
PE
30 * mktime.c: Remove; moving to ../lib.
31
1e11dbe3
PE
32 Use gnulib's mktime module.
33 * deps.mk (mktime.o): Remove rule.
34
fa2c4f56
PE
35 Use gnulib's ftoastr module.
36 * print.c: Include ftoastr.h.
37 (FLT_RADIX, DBL_MANT_DIG, DBL_DIG, DBL_MIN, DOUBLE_DIGITS_BOUND):
38 Remove; no longer needed.
39 (float_to_string): Use dtoastr rather than rolling our own code,
40 which had an off-by-one bug on non-IEEE hosts.
41
9a514d4a
PE
42 Automate syncing from gnulib.
43 * Makefile.in (lib): New macro.
44 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib.
45 ($(lib)/libgnu.a): New rule.
46 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a.
47
717c30e0
PE
48 * xfns.c (x_real_positions): Fix signedness of local var 'ign'.
49 XGetGeometry wants unsigned int *, not int *, for its last 4 args,
50 so change the type of 'ign' to unsigned int from int.
51
8865d794
PE
52 * regex.c (analyse_first): Remove unreachable 'continue' statement.
53
4ef36a7b
PE
54 * xterm.h (struct x_display_info): Remove stray semicolon.
55 The extra semicolon didn't conform to the C standard.
56 Problem reported by Sun cc.
57
6df4097e
PE
58 * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
59 These changes make compilation easier to follow with Sun cc.
60 (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to
61 EMACS_INT values without provoking overflow diagnostics.
62 (PSEUDOVECTOR_FLAG): Likewise, for consistency.
63 (XSET) [! USE_LSB_TAG]: Use unsigned left shift to avoid overflow
64 diagnostic with signed left shift.
9fba3563 65
410ed5c3
PE
66 * fileio.c (make_temp_name): Remove unreachable code.
67
97be3ce3
PE
68 * fontset.c (free_realized_fontset): Mark unreachable code with if (0).
69 Previously it was marked by preceding it with "return;", but
70 Sun cc complains about this.
71
9fba3563
PE
72 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
73 This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
74 which fixed Bug#2370. Caught by Sun cc.
75
6dc1d2d3
MR
762011-01-15 Martin Rudalics <rudalics@gmx.at>
77
78 * window.c (inhibit_point_swap): New variable.
79 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
80 point this time.
81 (Fset_window_configuration): Set inhibit_point_swap to 1 instead
82 of setting selected_window to nil (Bug#7728).
83
f853f599
TH
842011-01-11 Tassilo Horn <tassilo@member.fsf.org>
85
86 * image.c (imagemagick_load_image, Finit_image_library): Free
87 intermediate image after creating a MagickWand from it. Terminate
88 MagickWand environment after image loading.
89
2bc92a93
MA
902011-01-10 Michael Albinus <michael.albinus@gmx.de>
91
92 * dbusbind.c (Fdbus_register_service): Raise an error in case of
93 unexpected return values.
94 (Fdbus_register_method): Remove connection initialization.
95
962011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
5b83ba18
MA
97
98 * dbusbind.c (QCdbus_request_name_allow_replacement): New symbol;
99 used by Fdbus_register_service.
100 (QCdbus_request_name_replace_existing): Likewise.
101 (QCdbus_request_name_do_not_queue): Likewise.
102 (QCdbus_request_name_reply_primary_owner): Likewise.
103 (QCdbus_request_name_reply_in_queue): Likewise.
104 (QCdbus_request_name_reply_exists): Likewise.
105 (QCdbus_request_name_reply_already_owner): Likewise.
106 (Fdbus_register_service): New function.
107 (Fdbus_register_method): Use Fdbus_register_service to do the name
108 registration.
109 (syms_of_dbusbind): Add symbols dbus-register-service,
110 :allow-replacement, :replace-existing, :do-not-queue,
111 :primary-owner, :existing, :in-queue and :already-owner.
112
21a76236
CY
1132011-01-09 Chong Yidong <cyd@stupidchicken.com>
114
115 * gtkutil.c (update_frame_tool_bar): Don't advance tool-bar index
116 when removing extra buttons.
117
3d91e302
CY
1182011-01-08 Chong Yidong <cyd@stupidchicken.com>
119
120 * fns.c (Fyes_or_no_p): Doc fix.
121
0d23ffb5
AS
1222011-01-08 Andreas Schwab <schwab@linux-m68k.org>
123
124 * fns.c (Fyes_or_no_p): Add usage.
125
9dc3366b
GM
1262011-01-08 Glenn Morris <rgm@gnu.org>
127
d0981f82
GM
128 * makefile.w32-in ($(EMACS)):
129 * Makefile.in (emacs$(EXEEXT)): -batch implies -q.
130
9dc3366b
GM
131 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here...
132 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here.
133
466cbae9
AS
1342011-01-07 Andreas Schwab <schwab@linux-m68k.org>
135
136 * image.c (imagemagick_load_image): Fix some resource leaks and
137 error handling.
138
8c51d2a2
CY
1392011-01-07 Chong Yidong <cyd@stupidchicken.com>
140
141 * fns.c (Fyes_or_no_p): Accept format string args.
142
66b7b0fe
GM
1432011-01-07 Glenn Morris <rgm@gnu.org>
144
145 * emacs.c (no_site_lisp): New int.
146 (USAGE1): Add --no-site-lisp, mention -Q uses it.
147 (main): Set no_site_lisp.
148 (standard_args): Add --no-site-lisp.
149 * lisp.h (no_site_lisp): New int.
150 * lread.c (init_lread): If no_site_lisp, don't re-add site-lisp
151 directories to Vload_path.
152
2018939f
AS
1532011-01-05 Andreas Schwab <schwab@linux-m68k.org>
154
155 * alloc.c (mark_stack): Use __builtin_unwind_init if available.
156
6ed843e5
MA
1572011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
158
159 * dbusbind.c (Fdbus_register_method): Added optional parameter
160 dont_register_service. Updated docstring accordingly.
161
3f9b7090
GM
1622011-01-04 Glenn Morris <rgm@gnu.org>
163
164 * emacs.c (emacs_copyright): Update short copyright year to 2011.
165
d82bce4a
EZ
1662011-01-03 Eli Zaretskii <eliz@gnu.org>
167
168 * image.c (png_jmpbuf): Remove definition.
169 (my_png_error, png_load): Don't use png_jmpbuf.
170
7c420169
CY
1712011-01-02 Eli Zaretskii <eliz@gnu.org>
172
173 * keyboard.c (Vselect_active_regions): Doc fix. (Bug#7702)
174
1752011-01-02 Eli Zaretskii <eliz@gnu.org>
5be1c984
EZ
176
177 * image.c <Qlibpng_version>: New variable.
178 (syms_of_image): Intern and staticpro it. Set its value to the
179 version of PNG library we were compiled with.
180 (my_png_error, png_load): Avoid GCC warnings about direct access
181 to png_ptr->jmpbuf. (Bug#7716)
18da2e74
EZ
182 (png_jmpbuf): New macro.
183 (my_png_error, png_load): Use it instead of #ifdef'ing according
184 to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
5be1c984 185
7c420169 1862011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
cf07311b
SM
187
188 * .gdbinit (xgetptr): Fix the union+lsb case.
189 (xbacktrace): Fix the union case.
190
7c420169 1912011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
794b75c7
SM
192
193 * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
194 different from selected-window's.
195
7c420169 1962011-01-02 Eli Zaretskii <eliz@gnu.org>
2e4ab211 197
71fe378d
EZ
198 * keyboard.c (parse_menu_item): Prepend " " to the key sequence
199 equivalent of a menu item when the key sequence is given by the
200 `:keys' attribute. (Bug#7662)
201
2e4ab211
EZ
202 * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
203 the basic faces are supported.
204
7c420169 2052011-01-02 Jan Djärv <jan.h.d@swipnet.se>
84595ff0
JD
206
207 * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
208
7c420169 2092011-01-02 Eli Zaretskii <eliz@gnu.org>
30d621a2
EZ
210
211 * xdisp.c (Fformat_mode_line): Fix last change.
212
7c420169 2132011-01-02 Chong Yidong <cyd@stupidchicken.com>
4bf3e46e
CY
214
215 * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
216 faces (Bug#7587).
217
7c420169 2182011-01-02 Eli Zaretskii <eliz@gnu.org>
1b2a627f
EZ
219
220 * fileio.c (Fexpand_file_name): One more doc fix.
221
3afff00e
CY
2222011-01-01 Chong Yidong <cyd@stupidchicken.com>
223
224 * gtkutil.c (xg_get_tool_bar_widgets): Use NULL for a missing
225 image or label in the container.
226 (xg_make_tool_item): Replace VERT_ONLY arg with HORIZ, TEXT_IMAGE.
227 (xg_show_toolbar_item): Function deleted.
228 (xg_tool_item_stale_p): New function.
229 (update_frame_tool_bar): Calculate tool-bar style once per call.
230 Instead of hiding text labels, omit them. Don't use
231 xg_show_toolbar_item; create new GtkToolItems from scratch if
232 necessary, instead of trying to re-use them. This avoids an
233 annoying animation when changing tool-bars.
234
aeb7e951
JD
2352010-12-31 Jan Djärv <jan.h.d@swipnet.se>
236
237 * nsfns.m (ns_set_name_as_filename): Always use buffer name for
238 title and buffer filename only for RepresentedFilename.
239 Handle bad UTF-8 in buffer name (Bug#7517).
240
5bbb4727
JD
2412010-12-30 Jan Djärv <jan.h.d@swipnet.se>
242
243 * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
244
245 * nsfns.m (ns_set_name_iconic): Remove.
246 (ns_set_name_internal): New function (Bug#7517).
247 (Vicon_title_format): Extern declare.
248 (ns_set_name): Call ns_set_name_internal.
249 (x_explicitly_set_name): Remove call to ns_set_name_iconic.
250 (x_implicitly_set_name): Ditto.
251 (x_set_title): Remove commet about EXPLICIT. Call ns_set_name_internal.
252 (ns_set_name_as_filename): Encode name with ENCODE_UTF_8 (Bug#7517).
253
f1aab3ff
ŠN
2542010-12-29 Štěpán Němec <stepnem@gmail.com> (tiny change)
255
256 * window.c (syms_of_window): Add missing defsubr for
257 window-use-time.
258
365525b3
AS
2592010-12-28 Andreas Schwab <schwab@linux-m68k.org>
260
261 * xterm.h (x_alloc_lighter_color_for_widget): Restore declaration.
262 * xterm.c (x_alloc_lighter_color_for_widget): Restore.
263
59fc5cf9
AS
2642010-12-27 Andreas Schwab <schwab@linux-m68k.org>
265
2f7c71a1
AS
266 * buffer.c: Remove unused declarations.
267 * buffer.h: Likewise.
268 * charset.h: Likewise.
269 * composite.h: Likewise.
270 * dispextern.h: Likewise.
271 * dispnew.c: Likewise.
272 * font.h: Likewise.
273 * fontset.c: Likewise.
274 * fontset.h: Likewise.
275 * intervals.h: Likewise.
276 * keymap.h: Likewise.
277 * lisp.h: Likewise.
278 * syntax.c: Likewise.
279 * syntax.h: Likewise.
280 * termhooks.h: Likewise.
281 * window.h: Likewise.
282 * xsettings.h: Likewise.
283 * xterm.c: Likewise.
284 * xterm.h: Likewise.
285
286 * chartab.c (sub_char_table_ref): Make static.
287 * dispnew.c (line_hash_code, required_matrix_height)
288 (required_matrix_width): Likewise.
289 * eval.c (interactive_p, apply_lambda): Likewise.
290 * fns.c (string_make_multibyte, copy_hash_table, hash_clear):
291 Likewise.
292 * font.c (QCadstyle, QCregistry, font_make_spec)
293 (font_parse_fcname, font_encode_char, font_at): Likewise.
294 * frame.c (x_frame_get_arg): Likewise.
295 * keymap.c (get_keyelt): Likewise.
296 * lread.c (read_filtered_event): Likewise.
297 * print.c (write_string_1): Likewise.
298 * window.c (delete_window, window_height, window_width)
299 (foreach_window): Likewise.
300 * xrdb.c (x_get_customization_string, x_get_resource): Likewise.
301 * xterm.c (x_scroll_bar_clear, xembed_set_info)
302 (xembed_send_message): Likewise.
303
304 * eval.c (run_hook_list_with_args): Delete.
305 * font.c (font_unparse_gtkname, font_update_lface): Likewise.
306 * terminal.c (get_terminal_param): Likewise.
307 * xterm.c (x_alloc_lighter_color_for_widget): Likewise.
308
c4b607ed
AS
309 * scroll.c: Fix comment.
310
59fc5cf9
AS
311 * dispnew.c (add_window_display_history)
312 (add_frame_display_history, glyph_row_slice_p)
313 (find_glyph_row_slice, flush_stdout)
314 (check_matrix_pointer_lossage, matrix_row)
315 (check_matrix_invariants, check_window_matrix_pointers)
316 (check_matrix_pointers, window_to_frame_vpos)
317 (window_to_frame_hpos): Prototize.
318 * textprop.c (erase_properties): Likewise.
319
a65b85b5
SM
3202010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
321
17870c01
SM
322 * print.c (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): Remove.
323 (print_preprocess): Fix handling of uninterned symbols in last change.
324
a65b85b5
SM
325 * print.c (print, print_preprocess, print_object): Use a hash table
326 rather than a linear table for Vprint_number_table.
327
f13183cf
CY
3282010-12-20 Chong Yidong <cyd@stupidchicken.com>
329
330 * frame.c (focus_follows_mouse): Default to 0 (Bug#7269).
331
94975270
CY
3322010-12-20 Chong Yidong <cyd@stupidchicken.com>
333
334 * keyboard.c (Vtool_bar_separator_image_expression): New variable.
335 (parse_tool_bar_item): Use it to obtain image separators for
336 displays not using native tool-bar separators.
337
338 * xdisp.c (build_desired_tool_bar_string): Don't handle separators
339 specially, since this is now done in parse_tool_bar_item.
340
ef1b0ba7
SM
3412010-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
342
343 Minor clean up to silence some gcc warnings.
344 * window.c (Fset_window_buffer):
345 * xterm.c (x_set_frame_alpha): Restructure code to silence
346 compiler warning.
347 (handle_one_xevent): Remove unused var `p'.
348 (do_ewmh_fullscreen): Remove unused var `lval'.
349 (xembed_set_info): Remove unused var `atom'.
350 * textprop.c (Fremove_list_of_text_properties): Add braces to silence
351 compiler warning.
352 * fontset.c (fontset_id_valid_p, dump_fontset):
353 * ftfont.c (ftfont_drive_otf): Modernize k&r declaration.
354 * eval.c (Feval, Ffuncall): Avoid unneeded gotos.
355 * dispnew.c (update_frame, update_frame_1): Compile the `do_pause'
356 label only when it's used.
357 * image.c (x_create_bitmap_from_xpm_data):
358 * dispextern.h (x_create_bitmap_from_xpm_data): Use const char** like
359 its callers.
360 * coding.c (detect_coding_utf_16): Remove unused vars `src_base' and
361 `consumed_chars'.
362 (DECODE_EMACS_MULE_21_COMPOSITION): Remove unused var `charbuf_base'.
363 (decode_coding_emacs_mule): Remove unused label `retry'.
364 (detect_eol): Add parens to silence compiler warning.
365 * alloc.c (bytes_used_when_reconsidered): Move to the #ifdef where
366 it's used to silence the compiler.
367 (make_number): Modernize k&r declaration.
368 (mark_char_table): Add parens to silence compiler warning.
369
4039c786
CY
3702010-12-17 Chong Yidong <cyd@stupidchicken.com>
371
372 * keyboard.c (parse_tool_bar_item): Allow menu separators in
373 tool-bar maps.
374 (menu_separator_name_p): New function, from gtkutil.c.
375 (separator_names): Move from gtkutil.c.
376
377 * keyboard.h (menu_separator_name_p): Add prototype.
378
379 * gtkutil.c (XG_BIN_CHILD): New macro.
380 (xg_get_menu_item_label, xg_update_menubar)
381 (xg_update_menu_item, xg_tool_bar_menu_proxy)
382 (xg_show_toolbar_item, update_frame_tool_bar): Use it.
383 (separator_names, xg_separator_p): Move to keyboard.c.
ef1b0ba7
SM
384 (create_menus, xg_update_submenu, update_frame_tool_bar):
385 Use menu_separator_name_p.
4039c786
CY
386
387 * nsmenu.m (name_is_separator): Function deleted.
388 (addItemWithWidgetValue): Use menu_separator_name_p.
389
390 * w32menu.c (name_is_separator): Function deleted.
391 (add_menu_item): Use menu_separator_name_p.
392
aa936e8e
JD
3932010-12-16 Jan Djärv <jan.h.d@swipnet.se>
394
395 * nsterm.m (ns_draw_window_cursor): If the cursor color is the
396 same as the background, use the face forground as cursor.
397
f49d1f52 3982010-12-13 Eli Zaretskii <eliz@gnu.org>
15579471
EZ
399
400 * fileio.c (Fexpand_file_name): Doc fix. (Bug#7617)
401
f49d1f52 4022010-12-13 Eli Zaretskii <eliz@gnu.org>
76feb864 403
f0559026
EZ
404 * xdisp.c (string_pos_nchars_ahead, c_string_pos)
405 (face_before_or_after_it_pos, next_element_from_string)
406 (next_element_from_c_string, produce_stretch_glyph): Remove unused
407 calculations of maximum string length before calling
408 string_char_and_length and STRING_CHAR_AND_LENGTH.
409 (string_char_and_length): Update commentary: MAXLEN is no longer
410 needed.
411
f49d1f52 4122010-12-13 Jan Djärv <jan.h.d@swipnet.se>
0b9fc69a
JD
413
414 * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
415 as (Qsave_session arg).
416
417 * xsmfns.c (smc_interact_CB): Set arg to Qnil.
418 (smc_die_CB): Make an event with arg Qt.
419 (Fhandle_save_session): If event has Qt as argument,
420 call Fkill_emacs (Bug#7552).
421
f49d1f52
SM
4222010-12-13 Chong Yidong <cyd@stupidchicken.com>
423
424 * buffer.c (transient-mark-mode): Doc fix (Bug#7465).
425
4262010-12-13 Jan Djärv <jan.h.d@swipnet.se>
2b815743
JD
427
428 * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
429
f49d1f52 4302010-12-13 Chong Yidong <cyd@stupidchicken.com>
d8b2a962
CY
431
432 * dispextern.h (struct it): New member overlay_strings_charpos.
433
434 * xdisp.c (next_overlay_string, load_overlay_strings): Record the
435 charpos where we computed n_overlay_strings.
436 (next_overlay_string): Load overlay strings at recorded position,
437 which may not be the same as the iterator's charpos (Bug#7016).
438
f49d1f52 4392010-12-13 Chong Yidong <cyd@stupidchicken.com>
77f1ed6c
CY
440
441 * xdisp.c (try_scrolling): Avoid infloop if the first line is
442 obscured due to a vscroll (Bug#7537).
443
f49d1f52 4442010-12-13 Jan Djärv <jhd@zeplinf.localdomain>
2a91a0b5
JD
445
446 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
447
448 * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
449 Use FRAME_TOOLBAR_HEIGHT.
450 (x_set_offset): Handle XNegative and YNegative in
451 f->size_hint_flags (Bug#7510).
452
39321b94
EZ
4532010-12-11 Eli Zaretskii <eliz@gnu.org>
454
455 * w32fns.c (Fx_show_tip): Call try_window with last argument
456 TRY_WINDOW_IGNORE_FONTS_CHANGE. Delete the TODO ifdef: problem
457 solved. Round up the tip height to an integral multiple of the
458 frame's line height. Add FRAME_COLUMN_WIDTH to the tip width.
459 (Bug#7398)
460
ec1b9b17
GM
4612010-12-08 Glenn Morris <rgm@gnu.org>
462
463 * fileio.c (Fverify_visited_file_modtime): Default to current buffer.
464
3c2317e8
LMI
4652010-12-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
466
467 * xml.c (parse_region): Ignore blank HTML nodes.
468 (make_dom): Return CDATA sections (like <style>foo</style>) as
469 text nodes.
470
bba3e508
SM
4712010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
472
473 * lread.c (read1): Allow newstyle unquote outside of backquote.
474 Disallow old-style backquotes inside new-style backquotes.
475 Don't count unquotes to figure out when we're "syntactically inside
476 but semantically outside of a backquote" any more.
477 Extend the restriction no-unescaped-commas-and-backquotes-in-symbols
478 to all contexts.
479
d23d8608
CY
4802010-12-05 Chong Yidong <cyd@stupidchicken.com>
481
482 * process.c: Remove checks for HAVE_SYS_IOCTL_H (Bug#7484).
483
d6a003a8
AS
4842010-12-04 Andreas Schwab <schwab@linux-m68k.org>
485
486 * Makefile.in (M_FILE): Substitute @M_FILE@ instead of @machfile@.
487 (S_FILE): Substitute @S_FILE@ instead of @opsysfile@.
488 * m/arm.h, m/sh3.h, m/xtensa.h: Remove files.
489
201ef780
AS
4902010-12-03 Andreas Schwab <schwab@linux-m68k.org>
491
492 * lisp.h (union Lisp_Object): Explicitly declare signedness of
493 bit-field.
494 (XINT): Remove variant for EXPLICIT_SIGN_EXTEND.
495 * m/alpha.h (EXPLICIT_SIGN_EXTEND): Don't define.
496 * m/amdx86-64.h (EXPLICIT_SIGN_EXTEND): Likewise.
497 * m/ia64.h (EXPLICIT_SIGN_EXTEND): Likewise.
498 * m/ibms390.h (EXPLICIT_SIGN_EXTEND): Likewise.
499 * m/ibms390x.h (EXPLICIT_SIGN_EXTEND): Likewise.
500 * m/iris4d.h (EXPLICIT_SIGN_EXTEND): Likewise.
501 * m/m68k.h (EXPLICIT_SIGN_EXTEND): Likewise.
502 * m/sparc.h (EXPLICIT_SIGN_EXTEND): Likewise.
503 * m/template.h (EXPLICIT_SIGN_EXTEND): Likewise.
504 * m/hp800.h: Remove file.
505 * m/mips.h: Remove file.
506
146490c3
JD
5072010-12-03 Jan Djärv <jan.h.d@swipnet.se>
508
509 * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
510 with cursor color and draw a rectangle around the image (Bug#7412).
511
babc8f0d
AS
5122010-12-03 Andreas Schwab <schwab@linux-m68k.org>
513
514 * frame.c (x_set_font): Remove unused variable.
515
9583e9a0
JD
5162010-12-02 Jan Djärv <jan.h.d@swipnet.se>
517
dd723bbd
JD
518 * nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
519
9583e9a0
JD
520 * nsterm.m (ns_draw_glyph_string): Switch fore- and background if
521 drawing text under filled box cursor (Bug#7479).
522
07976ae3 5232010-11-27 Kenichi Handa <handa@m17n.org>
b84ae584
KH
524
525 * charset.c (emacs_mule_charset): Make it an array of charset ID;
526 i.e. integer.
bba3e508 527 (Fdefine_charset_internal): Adjust for the above change.
b84ae584
KH
528 (init_charset_once): Likewise.
529
bba3e508
SM
530 * charset.h (emacs_mule_charset): Adjust the prototype.
531 Delete duplicated extern.
b84ae584
KH
532
533 * coding.c (emacs_mule_char): Adjust for the change of
534 emacs_mule_charset.
535
536 * lread.c (read_emacs_mule_char): Adjust for the change of
537 emacs_mule_charset.
538
07976ae3 5392010-11-27 Eli Zaretskii <eliz@gnu.org>
b8e5cf1d
EZ
540
541 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
542 of w32api >= 3.15. (Bug#6989) (Bug#7452)
543
07976ae3 5442010-11-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
96ad0af7
YM
545
546 * alloc.c (mark_terminals): Ensure that the image cache is marked
547 even if the terminal object was marked earlier (Bug#6301).
548
35f1de62
CY
5492010-11-21 Chong Yidong <cyd@stupidchicken.com>
550
551 * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
552
07976ae3 5532010-11-27 Jan Djärv <jan.h.d@swipnet.se>
8d7f026f
JD
554
555 * gtkutil.c (menubar_map_cb): New function (Bug#7425).
556 (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
557 Use 23 as menubar height if 0. (Bug#7425).
558
8547874a
EZ
5592010-11-26 Eli Zaretskii <eliz@gnu.org>
560
228482b2
EZ
561 * xdisp.c (set_message_1): Force paragraph direction in echo area
562 be left-to-right.
563
8547874a
EZ
564 * keyboard.c (make_lispy_position): Put a meaningful value in yret
565 when the click is on the header or mode line.
566
1e2dddbe
EZ
5672010-11-25 Eli Zaretskii <eliz@gnu.org>
568
569 * xdisp.c (set_cursor_from_row): Don't forget to consider the
570 `cursor' property of the first character in overlay strings.
12365240 571 (Bug#7474) (Bug#7481)
1e2dddbe 572
50795d1f
JD
5732010-11-24 Jan Djärv <jan.h.d@swipnet.se>
574
575 * nsterm.m (NSLeftControlKeyMask, NSLeftCommandKeyMask)
576 (NSLeftAlternateKeyMask): New defines.
c80c6166
JD
577 (keyDown): Parse left and right keys separately (Bug#7458).
578 Compare Left key masks exactly (Bug#7458).
50795d1f 579
f8ab8c1f
EZ
5802010-11-23 Eli Zaretskii <eliz@gnu.org>
581
582 * intervals.c (temp_set_point_both): Define before calling, to
583 avoid GCC warnings.
584
2e8a4797
DN
5852010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
586
b29116ef
DN
587 * nsmenu.m: Use #include <config.h> instead of "config.h".
588
b932f8b1
DN
589 * term.c (Qglyphless_char,last_glyphless_glyph_frame)
590 (last_glyphless_glyph_face_id. last_glyphless_glyph_merged_face_id):
591 Move declarations ...
592 * lisp.h (Qglyphless_char,last_glyphless_glyph_frame)
593 (last_glyphless_glyph_face_id. last_glyphless_glyph_merged_face_id):
594 ... here.
595
42c8bc9b
DN
596 * emacs.c (gdb_use_union, gdb_valbits,gdb_gctypebits)
597 (gdb_data_seg_bits, gdb_array_mark_flag, PVEC_FLAG)
598 (gdb_pvec_type):
599 * print.c (print_output_debug_flag):
600 * lisp.h (debug_print): Mark as EXTERNALLY_VISIBLE.
601 (safe_debug_print): New declaration.
602
2e8a4797
DN
603 * xterm.c:
604 * systty.h:
605 * sound.c: Include <sys/ioctl.h> unconditionally.
606
b609f591
YM
6072010-11-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
608
609 * alloc.c (mark_maybe_object): Return early if given a Lisp
610 integer (Bug#6301).
611
731e263a
KB
6122010-11-21 Ken Brown <kbrown@cornell.edu>
613
614 * sheap.c (STATIC_HEAP_SIZE): Revert previous change.
615
b7d1e144
JD
6162010-11-21 Jan Djärv <jan.h.d@swipnet.se>
617
618 * nsterm.m (ns_right_command_modifier, ns_right_control_modifier):
619 Define (Bug#7458).
620 (NSRightCommandKeyMask, NSRightControlKeyMask): Define (Bug#7458).
621 (EV_MODIFIERS): Check for NSRightCommandKeyMask and
622 NSRightControlKeyMask also (Bug#7458).
623 (keyDown): Ditto (Bug#7458).
624 (syms_of_nsterm): Defvar ns-right-command-modifier and
625 ns-right-control-modifier (Bug#7458).
626
b7982059
DN
6272010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
628
bee3419f
DN
629 * sysdep.c (sys_subshell): Remove SET_EMACS_PRIORITY.
630 * emacs.c (emacs_priority, syms_of_emacs): Remove emacs_priority.
631
b7982059
DN
632 * intervals.h (temp_set_point, temp_set_point_both):
633 * buffer.h (offset_intervals, copy_intervals): Remove INLINE.
634
01664ed1
KB
6352010-11-20 Ken Brown <kbrown@cornell.edu>
636
637 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
638
7c2d713b
EZ
6392010-11-20 Eli Zaretskii <eliz@gnu.org>
640
641 * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or
642 \xNNNNNN for hex-code display of glyphless characters.
643
d2bd5189
JD
6442010-11-20 Jan Djärv <jan.h.d@swipnet.se>
645
646 * gtkutil.c (xg_make_tool_item): Take vert_only as argument.
647 Set important to ! vert_only.
648 (xg_show_toolbar_item): Don't show label horizontally if
649 tool item isn't important.
650 (update_frame_tool_bar): Get TOOL_BAR_ITEM_VERT_ONLY and pass it to
651 xg_make_tool_item, or update important on existing tool item.
652
653 * keyboard.c (QCvert_only): New variable.
654 (parse_tool_bar_item): Check for QCvert_only.
655 (syms_of_keyboard): Initialize QCvert_only.
656
657 * dispextern.h (tool_bar_item_idx): Add TOOL_BAR_ITEM_VERT_ONLY.
658
d9a95e67
EZ
6592010-11-20 Eli Zaretskii <eliz@gnu.org>
660
661 * msdos.c (dos_rawgetc): Use gen_help_event, instead of doing the
662 same in-line.
663
b6557553
AS
6642010-11-20 Andreas Schwab <schwab@linux-m68k.org>
665
666 * xfaces.c (lookup_face): Make static.
667 * dispnew.c (copy_row_except_pointers): Likewise.
668 * syntax.c (dec_bytepos): Likewise.
669 (inc_bytepos): Remove.
670 * dispextern.h (lookup_face): Remove declaration.
671
f48fe1f0
EZ
6722010-11-19 Eli Zaretskii <eliz@gnu.org>
673
674 * xdisp.c (set_cursor_from_row): Display cursor after all the
675 glyphs that come from an overlay. Don't overstep the last glyph
676 when skipping glyphs from an overlay. (Bug#6687)
677
654ef137
DN
6782010-11-18 Dan Nicolaescu <dann@ics.uci.edu>
679
84dfc8a7
DN
680 * alloc.c (refill_memory_reserve): Move declaration ...
681 * lisp.h (refill_memory_reserve): ... here.
682
94fa3833
DN
683 * strftime.c (_strftime_copytm): Add declaration.
684
dde990a0
DN
685 * callproc.c (syms_of_callproc): Use intern_c_string.
686
50c77428
DN
687 Move declarations from .c files to .h files.
688 * process.c (timers_run):
689 * minibuf.c (quit_char):
690 * lread.c (read_emacs_mule_char):
691 * keyboard.c (minibuf_level, message_enable_multibyte)
692 (pending_malloc_warning):
693 * insdel.c (Vselect_active_regions, Vsaved_region_selection)
694 (Qonly): Remove declarations.
695 * lisp.h (pending_malloc_warning, Vsaved_region_selection)
696 (Vselect_active_regions):
697 * keyboard.h (timers_run): Add declarations.
698
654ef137
DN
699 * strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
700 (tm_diff): Convert definitions to standard C.
701 (extra_args_spec_iso): Remove, unused.
702
4a47c275 7032010-11-18 Jan Djärv <jan.h.d@swipnet.se>
37de8fd0
J
704
705 * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
706
707 * config.in (HAVE_G_TYPE_INIT): New symbol.
708
4a47c275 7092010-11-18 Eli Zaretskii <eliz@gnu.org>
c7926fe2
EZ
710
711 * lread.c (Fload): Mention `load-in-progress' and
712 `load-file-name'. (Bug#7346)
713
86520d8c
EZ
714 * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
715 (kbd_buffer_store_event_hold, kbd_buffer_get_event)
716 (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
717 subprocesses. Use buffer_free only ifdef subprocesses.
718
719 * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
720 the subprocesses version, not in the non-subprocesses one.
721
794a4b6d
EZ
722 * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
723
146d267b
EZ
7242010-11-17 Eli Zaretskii <eliz@gnu.org>
725
726 * xdisp.c (set_cursor_from_row): Fix cursor positioning in empty
727 lines on text-mode terminals. (bug#7417)
728
fad0d565
SM
7292010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
730
731 * xterm.c (get_current_wm_state): Rename from get_current_vm_state.
732 (do_ewmh_fullscreen, x_handle_net_wm_state): Update callers.
733
6b4bb703
KH
7342010-11-17 Kenichi Handa <handa@m17n.org>
735
736 * coding.c (Fset_terminal_coding_system_internal): Fix previous
737 change (set charset-ID list instead of charset-symbol list).
738
9173a8fb
CY
7392010-11-16 Chong Yidong <cyd@stupidchicken.com>
740
741 * keyboard.c (make_lispy_position): For text area clicks, record Y
742 pixel position relative to the text area, excluding header line.
743 Also change X and Y to Lisp_Objects, not pointers; don't return
744 coordinate values via pointers. Pass ON_TEXT_AREA coordinate to
745 buffer_posn_from_coords counting from the start of the text area.
746 (Fposn_at_x_y, make_lispy_event): Callers changed.
747
748 * window.c (coordinates_in_window): Change X and Y to ints rather
749 than pointers; don't return coordinates via pointers.
750 (struct check_window_data): Change X and Y from pointers to ints.
751 (window_from_coordinates): Remove args WX and WY; don't return
752 coordinates via pointers.
753 (Fcoordinates_in_window_p, window_from_coordinates):
754 (check_window_containing, Fwindow_at): Callers changed.
755 (window_relative_x_coord): New function.
756
757 * window.h (window_from_coordinates, window_relative_x_coord):
758 Update prototypes.
759
760 * dispnew.c (buffer_posn_from_coords): Assume that X counts from
761 the start of the text area.
762
763 * xdisp.c (remember_mouse_glyph): Change window_from_coordinates
764 call. Use window_relative_x_coord.
765 (note_mouse_highlight): Change window_from_coordinates call.
766
767 * w32term.c (w32_read_socket):
768 * msdos.c (dos_rawgetc):
769 * xterm.c (handle_one_xevent): Likewise.
770
d2762c86
DN
7712010-11-16 Dan Nicolaescu <dann@ics.uci.edu>
772
773 * strftime.c (LOCALE_PARAM_DECL): Update for standard C.
774 (LOCALE_PARAM, LOCALE_PARAM_PROTO): Remove, unused.
775 (memcpy_lowcase, so_week_days, extra_args_spec, emacs_strftimeu):
776 Convert definitions to standard C.
777 * regex.c: Do not include <stdlib.h>, config.h does it.
778 Include unistd.h.
779 (xrealloc, init_syntax_once, re_match, regcomp, regexec)
780 (regerror, regfree): Convert definitions to standard C.
781 * mktime.c (my_mktime_localtime_r, ydhms_tm_diff, ranged_convert)
782 (__mktime_internal): Convert definitions to standard C.
783
c2f0866a
DN
7842010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
785
42a7e7f1
DN
786 * w32proc.c:
787 * w32inevt.c:
788 * w32heap.c:
789 * w32.c: Remove config.h include guards.
790
67802943
DN
791 * callproc.c (child_setup): Reorder code to simplify #ifdefs.
792 No code changes.
793
f0e1af46
DN
794 * process.c: Include <sys/ioctl.h> unconditionally,
795 keyboard.c already does it.
796
c2f0866a
DN
797 * keyboard.c (pending_malloc_warning): Add const to match
798 definition in alloc.c.
799 (Fset_input_interrupt_mode): Simplify #ifdefs.
800
92d3ab7e
DN
8012010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
802
12e610e8
DN
803 Clean up systty.h macros.
804 * systty.h (EMACS_GET_TTY_PGRP, EMACS_SET_TTY_PGRP, EMACS_GET_TTY)
805 (EMACS_SET_TTY): Remove unneeded abstraction, instead inline the
806 definition in all uses.
807 (EMACS_TTY_TABS_OK): Remove, it has a single user.
808 * sysdep.c (discard_tty_input, child_setup_tty)
809 (init_sys_modes, tabs_safe_p, reset_sys_modes):
810 * emacs.c (shut_down_emacs):
811 * callproc.c (child_setup):
812 * term.c (dissociate_if_controlling_tty): Inline removed macros.
813
92d3ab7e
DN
814 * data.c (sign_extend_temp, sign_extend_lisp_int): Remove, unused.
815
a3e6bad4
CY
8162010-11-14 Chong Yidong <cyd@stupidchicken.com>
817
818 * w32fns.c (Fx_create_frame):
819 * nsfns.m (Fx_create_frame): Don't check for the cursorColor
820 resource here; it's now done at startup.
821
5a232ffb
J
8222010-11-14 Jan Djärv <jan.h.d@swipnet.se>
823
824 * xterm.c (set_wm_state): Add Qnil to final cons.
825
826 * xselect.c (x_send_client_event): Remove unused variables cons and
827 size.
828
24021b38
YM
8292010-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
830
831 * keyboard.c (modify_event_symbol) : Add const to array elements of
832 arg NAME_TABLE.
833 (lispy_accent_keys, lispy_function_keys, lispy_multimedia_keys)
834 (lispy_kana_keys, iso_lispy_function_keys, lispy_wheel_names)
835 (lispy_wheel_names, lispy_drag_n_drop_names, modifier_names):
836 Add const to array elements.
837 (scroll_bar_parts): Make static. Fix position of const.
838
839 * w32fns.c (lispy_function_keys): Add const to extern.
840
841 * w32inevt.c (lispy_function_keys): Likewise.
842
afa42fe3
CY
8432010-11-14 Chong Yidong <cyd@stupidchicken.com>
844
845 * xfns.c (Fx_create_frame): Don't check for the cursorColor
846 resource here; it's now done at startup.
847
53260a94
DN
8482010-11-13 Dan Nicolaescu <dann@ics.uci.edu>
849
c865c575 850 * xmenu.c: Make it clear that ../lwlib/lwlib.h is only needed for Motif.
ff2e8052 851
c865c575 852 Fix compilation on Solaris.
ff2e8052
DN
853 * sysdep.c: Do not #include <term.h>.
854 (tputs): Add declaration, similar to what cm.c does. (Bug#7178)
855
53260a94
DN
856 * s/ms-w32.h (HAVE_TERMIOS_H): Do not undef, not used anymore.
857
933e29ff
J
8582010-11-13 Jan Djärv <jan.h.d@swipnet.se>
859
860 * xterm.c (set_wm_state): Don't put Atom in cons, call
861 make_fixnum_or_float on them first.
862 (x_term_init): Initialize Xatom_net_supporting_wm_check and
863 Xatom_net_supported correctly.
864
865 * xselect.c (x_send_client_event): Move CHECK_STRING ...
866 (Fx_send_client_event): to here.
867
a048073e
MR
8682010-11-13 Martin Rudalics <rudalics@gmx.at>
869
870 * window.c (Fwindow_use_time): New function.
871
0eb025fb
EZ
8722010-11-13 Eli Zaretskii <eliz@gnu.org>
873
874 * xdisp.c (set_cursor_from_row): Fix cursor positioning on
875 zero-width characters.
876
877 * .gdbinit (pgx): Adapt to latest changes in `struct glyph'.
878
879 * w32term.c (x_draw_glyphless_glyph_string_foreground): Draw the
880 box before drawing the glyphs inside it.
881
882 * xdisp.c (syms_of_xdisp) <glyphless-char-display>: Doc fix.
883
bba3e508
SM
884 * dispextern.h (enum glyphless_display_method):
885 Rename GLYPHLESS_DISPLAY_HEXA_CODE to GLYPHLESS_DISPLAY_HEX_CODE.
886 All users changed.
0eb025fb 887
bba3e508
SM
888 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
889 Fix comments.
0eb025fb
EZ
890 (produce_glyphless_glyph): Enclose "U+nnnn" and "empty box"
891 whitespace in "[]", to simulate a box. Don't use uninitialized
892 variable `width'.
893
c869cc37
JD
8942010-11-11 Julien Danjou <julien@danjou.info>
895
2d9074ba
JD
896 * xsettings.c (init_xsettings): Use already fetch atoms.
897
898 * xsmfns.c (create_client_leader_window): Use SM_CLIENT_ID atom
899 from dpyinfo.
900
901 * xselect.c (Fx_send_client_event): Split and create
902 x_send_client_event.
903
904 * lisp.h: Do not EXFUN Fx_send_client_event.
905
906 * xterm.c (x_set_frame_alpha): Use _NET_WM_WINDOW_OPACITY atom
907 from dpyinfo.
908 (wm_supports): Use atoms from dpyinfo.
909 (do_ewmh_fullscreen): Use atoms from dpyinfo.
910 (x_ewmh_activate_frame): Use atoms from dpyinfo.
911 (xembed_set_info): Use atoms from dpyinfo.
912 (x_term_init): Fetch _XEMBED_INFO, _NET_SUPPORTED,
913 _NET_SUPPORTING_WM_CHECK, _NET_WM_WINDOW_OPACITY and
914 _NET_ACTIVE_WINDOW, XSETTINGS atoms.
915 Get all atoms in one round-trip.
916 (set_wm_state): Use x_send_client_event rather than
917 Fx_send_client_event, using Atom directly.
918 (x_ewmh_activate_frame): Ditto.
919 (x_set_sticky): Pass atoms to set_wm_state.
920 (do_ewmh_fullscreen): Ditto.
921
922
923 * xterm.h (x_display_info): Add Xatom_net_supported,
924 Xatom_net_supporting_wm_check, Xatom_net_active_window,
925 Xatom_net_wm_window_opacity, Xatom_XEMBED_INFO, SM_CLIENT_ID.
926
c869cc37
JD
927 * xfns.c (Fx_show_tip): Fix typo in docstring.
928
1a4236ea
SM
9292010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
930
931 * cmds.c (Fself_insert_command): Don't call XFASTINT without checking
932 it's not negative.
933
3106121c
YM
9342010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
935
936 * font.c (font_filter_properties): Add const to array elements of
937 properties args.
938
939 * font.h (font_filter_properties): Likewise.
940
941 * ftfont.c (ftfont_booleans, ftfont_non_booleans): Add const to array
942 elements.
943
944 * w32font.c (w32font_booleans, w32font_non_booleans): Likewise.
945
da1fec2b
MA
9462010-11-10 Michael Albinus <michael.albinus@gmx.de>
947
948 * dbusbind.c (QCdbus_type_unix_fd): New Lisp object.
949 (XD_BASIC_DBUS_TYPE, xd_symbol_to_dbus_type, xd_signature)
950 (xd_append_arg, xd_retrieve_arg): Support DBUS_TYPE_UNIX_FD.
951 (Fdbus_call_method): Add DBUS_TYPE_UNIX_FD type mapping to doc string.
952 (syms_of_dbusbind): Initialize QCdbus_type_unix_fd).
953
bd6bc222
GM
9542010-11-10 Glenn Morris <rgm@gnu.org>
955
956 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
957
c0098065
EZ
9582010-11-09 Eli Zaretskii <eliz@gnu.org>
959
bd6bc222 960 * xfns.c (x_real_positions): Fix declaration-after-statement problem.
c0098065 961
d607b96b 9622010-11-09 Chong Yidong <cyd@stupidchicken.com>
be3faa80
CY
963
964 * image.c (free_image): Don't garbage the frame here, since this
965 function can be called while redisplaying (Bug#7210).
966 (uncache_image): Garbage the frame here (Bug#6426).
967
d607b96b 9682010-11-09 Jan Djärv <jan.h.d@swipnet.se>
184765cc 969
d607b96b
SM
970 * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
971 parent is the root window. Check this after traversing window tree.
184765cc 972
d607b96b 973 * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
bd80a886 974
d607b96b 975 * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
bd80a886 976
d607b96b
SM
977 * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
978 before traversing window tree (Bug#5721).
c2e124a9 979
27f92be7
J
9802010-11-07 Jan Djärv <jan.h.d@swipnet.se>
981
66b16767
J
982 * xfns.c (set_machine_and_pid_properties): Let X set WM_CLIENT_MACHINE.
983
25f38310
SM
984 * xdisp.c (note_mode_line_or_margin_highlight):
985 Initialize Cursor to No_Cursor for HAVE_WINDOW_SYSTEM also.
27f92be7 986
a971c0a7
EZ
9872010-11-06 Eli Zaretskii <eliz@gnu.org>
988
989 * xfns.c (Fx_show_tip): If any of the tool-tip text lines is R2L,
990 adjust width of tool-tip frame to the width of text, excluding the
991 stretch glyph at the beginning of R2L glyph rows.
992
993 * w32fns.c (Fx_show_tip): Likewise.
994
80417b95
JD
9952010-11-06 Jan Djärv <jan.h.d@swipnet.se>
996
997 * nsfont.m: Include termchar for new mouse-highlight.
6dc61cf1 998 (nsfont_draw): Use MOUSE_HL_INFO.
80417b95 999
28118eb6
EZ
10002010-11-05 Eli Zaretskii <eliz@gnu.org>
1001
c1fc2d3a 1002 Unify mouse-highlight code for all GUI and TTY sessions.
cf482c50
EZ
1003
1004 * term.c: Remove static mouse_face_* variables. All users
1005 changed.
1006 (term_show_mouse_face, term_clear_mouse_face)
1007 (fast_find_position, term_mouse_highlight): Functions deleted.
1008 (tty_draw_row_with_mouse_face): New function.
1009 (term_mouse_movement): Call note_mouse_highlight instead of
1010 term_mouse_highlight.
1011
bbf534ce
EZ
1012 * nsterm.m (ns_update_window_begin, ns_update_window_end)
1013 (ns_update_end, x_destroy_window, ns_frame_up_to_date)
1014 (ns_dumpglyphs_box_or_relief, ns_maybe_dumpglyphs_background)
1015 (ns_dumpglyphs_image, ns_dumpglyphs_stretch)
1016 (ns_initialize_display_info, keyDown, mouseMoved, mouseExited):
1017 Replace Display_Info with Mouse_HLInfo everywhere where
1018 mouse_face_* members were accessed for mouse highlight purposes.
1019
1020 * xterm.c (x_update_window_begin, x_update_window_end)
1021 (x_update_end, XTframe_up_to_date, x_set_mouse_face_gc)
bba3e508
SM
1022 (handle_one_xevent, x_free_frame_resources, x_term_init):
1023 Replace Display_Info with Mouse_HLInfo everywhere where mouse_face_*
bbf534ce
EZ
1024 members were accessed for mouse highlight purposes.
1025
1026 * w32term.c (x_update_window_begin, x_update_window_end)
1027 (x_update_end, w32_read_socket, x_free_frame_resources)
1028 (w32_initialize_display_info): Replace Display_Info with
1029 Mouse_HLInfo everywhere where mouse_face_* members were accessed
1030 for mouse highlight purposes.
1031
1032 * xdisp.c (show_mouse_face, note_mode_line_or_margin_highlight)
1033 (note_mouse_highlight) [HAVE_WINDOW_SYSTEM]: Don't run GUI code
1034 unless the frame is on a window-system.
c1fc2d3a 1035 (get_tool_bar_item, handle_tool_bar_click)
7ea692f6
EZ
1036 (note_tool_bar_highlight, draw_glyphs, erase_phys_cursor)
1037 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
1038 (note_mode_line_or_margin_highlight, note_mouse_highlight)
1039 (x_clear_window_mouse_face, cancel_mouse_face, expose_frame):
1040 Replace Display_Info with Mouse_HLInfo everywhere where
1041 mouse_face_* members were accessed for mouse highlight purposes.
c1fc2d3a 1042 (coords_in_mouse_face_p): Move prototype out of the
d009ae66
EZ
1043 HAVE_WINDOW_SYSTEM conditional.
1044 (x_y_to_hpos_vpos, frame_to_window_pixel_xy): Move out of the
1045 HAVE_WINDOW_SYSTEM block.
bba3e508
SM
1046 (try_window_id) [HAVE_GPM || MSDOS]:
1047 Call x_clear_window_mouse_face.
d009ae66 1048 (draw_row_with_mouse_face): Implementation for HAVE_WINDOW_SYSTEM
c1fc2d3a
EZ
1049 systems. Call tty_draw_row_with_mouse_face for TTY systems.
1050 (show_mouse_face): Call draw_row_with_mouse_face, instead of
1051 calling draw_glyphs directly.
d009ae66
EZ
1052 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
1053 (cursor_in_mouse_face_p, rows_from_pos_range)
1054 (mouse_face_from_buffer_pos, mouse_face_from_string_pos)
1055 (note_mode_line_or_margin_highlight, note_mouse_highlight)
1056 (x_clear_window_mouse_face, cancel_mouse_face): Move out of the
1057 HAVE_WINDOW_SYSTEM block. Ifdef away window-system specific
1058 fragments.
1059 (note_mouse_highlight): Call popup_activated for MSDOS as well.
1060 Clear mouse highlight if pointer is over glyphs whose OBJECT is an
1061 integer.
1062 (mouse_face_from_buffer_pos): Add parentheses around && within ||.
bba3e508
SM
1063 (x_consider_frame_title, tool_bar_lines_needed):
1064 Move prototypes to HAVE_WINDOW_SYSTEM-only part.
c1fc2d3a
EZ
1065 (get_window_cursor_type): Move inside a HAVE_WINDOW_SYSTEM-only
1066 part. Remove "#ifdef HAVE_WINDOW_SYSTEM" from body of function.
1067 (null_glyph_slice): Move declaration into HAVE_WINDOW_SYSTEM-only
1068 part.
d009ae66
EZ
1069
1070 * dispnew.c (mirror_make_current): Set Y coordinate of the
1071 mode-line and header-line rows.
c1fc2d3a
EZ
1072 (init_display): Setup initial frame's output_data for text
1073 terminal frames.
d009ae66 1074
c1fc2d3a
EZ
1075 * xmenu.c (popup_activated): Don't define on MSDOS, which now has
1076 its own definition on msdos.c.
d009ae66
EZ
1077
1078 * msdos.c (show_mouse_face, clear_mouse_face)
1079 (fast_find_position, IT_note_mode_line_highlight)
1080 (IT_note_mouse_highlight): Functions deleted.
1081 (IT_frame_up_to_date, dos_rawgetc): Call note_mouse_highlight
1082 instead of IT_note_mouse_highlight.
1083 (draw_row_with_mouse_face, popup_activated): New functions.
c1fc2d3a
EZ
1084 (dos_set_window_size, draw_row_with_mouse_face, IT_update_begin)
1085 (IT_update_end, IT_frame_up_to_date, internal_terminal_init)
1086 (dos_rawgetc): Replace Display_Info with Mouse_HLInfo everywhere
1087 where mouse_face_* members were accessed for mouse highlight
1088 purposes.
1089
1090 * msdos.h (initialize_msdos_display): Add prototype.
1091
1092 * frame.h (MOUSE_HL_INFO): New macro.
1093
1094 * lisp.h (Mouse_HLInfo): New data type.
1095
1096 * xterm.h (struct x_display_info):
1097 * w32term.h (struct w32_display_info):
1098 * nsterm.h (struct ns_display_info):
1099 * termchar.h (struct tty_display_info): Use it instead of
1100 mouse_face_* members.
1101
1102 * dispextern.h (show_mouse_face, clear_mouse_face): Update type of
1103 1st argument.
1104 (frame_to_window_pixel_xy, note_mouse_highlight)
1105 (x_clear_window_mouse_face, cancel_mouse_face, clear_mouse_face)
1106 (show_mouse_face, cursor_in_mouse_face_p): Move prototypes out of
1107 HAVE_WINDOW_SYSTEM conditional.
1108 (draw_row_with_mouse_face): Declare prototype.
1109 (tty_draw_row_with_mouse_face): Declare prototype.
1110
6e8d7c47
EZ
11112010-11-05 Eli Zaretskii <eliz@gnu.org>
1112
bba3e508
SM
1113 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
1114 Remove unused variables.
6e8d7c47 1115
f31ba3f0
AR
11162010-11-05 Adrian Robert <Adrian.B.Robert@gmail.com>
1117
1118 * nsterm.m (EmacsView-mouseExited:): Correct error in conditional
1119 logic pointed out by Eli Zaretskii.
1120
448e17d6
LMI
11212010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
1122
0c3a9a9f
GM
1123 * coding.c (coding-category-list): Refer to set-coding-system-priority
1124 instead of the obsolete set-coding-priority in the doc string.
448e17d6 1125
f31ba3f0 1126
3fdebbf9 11272010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com>
f31ba3f0
AR
1128
1129 * nsfont.m (nsfont_draw): Correct previous patch to return
1130 correct value.
1131 * nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
1132 don't change the method signature, change the return.
1133
11342010-11-04 Ismail Donmez <ismail@namtrac.org> (tiny change)
3fdebbf9
AR
1135
1136 * nsfont.m (nsfont_draw)
1137 * nsimage.m (EmacsImage-setXBMColor:)
f31ba3f0 1138 * nsterm.m (EmacsView-performDragOperation:): Correct empty return.
3fdebbf9 1139
17c0c952
JD
11402010-11-03 Julien Danjou <julien@danjou.info>
1141
1142 * image.c (gif_load): Add support for transparency and specified
1143 :background.
1144
b18fad6d
KH
11452010-11-01 Kenichi Handa <handa@m17n.org>
1146
1147 * dispextern.h (lookup_glyphless_char_display): Extern it.
1148
1149 * termhooks.h (struct terminal): New member charset_list.
1150
1151 * coding.c (Fset_terminal_coding_system_internal): Set the
1152 `charset_list' member of struct terminal.
1153
a8039db1 1154 * term.c (produce_glyphs): Handle the case it->what == IT_GLYPHLESS.
b18fad6d
KH
1155 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
1156
1157 * xdisp.c (lookup_glyphless_char_display): Make it non-static.
1158 (lookup_glyphless_char_display): Set it->what at the end.
1159 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
1160 (last_glyphless_glyph_merged_face_id): Make them non-static.
1161
a8039db1
JB
1162 * w32term.c (x_draw_glyphless_glyph_string_foreground):
1163 Fix the arg with_background for font->driver->draw.
65b6b59a 1164
a8039db1 11652010-11-01 Kenichi Handa <handa@m17n.org>
0269bd90 1166
a8039db1
JB
1167 * w32gui.h (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
1168 Surround chp by parentheses.
0269bd90 1169
a8039db1 11702010-11-01 Kenichi Handa <handa@m17n.org>
b2cca856
KH
1171
1172 Implement various display methods for glyphless characters.
1173
1174 * xdisp.c (Qglyphless_char, Vglyphless_char_display)
1175 (Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space)
1176 (Qzero_width): New variables.
1177 (THIN_SPACE_WIDTH): New macro.
1178 (lookup_glyphless_char_display): New funciton.
1179 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
1180 (last_glyphless_glyph_merged_face_id): New variables.
1181 (get_next_display_element): Check glyphless characters.
1182 (redisplay_internal): Initialize last_glyphless_glyph_frame and
1183 last_glyphless_glyph_face_id.
1184 (fill_glyphless_glyph_string): New function.
1185 (BUILD_GLYPHLESS_GLYPH_STRING): New macro.
1186 (BUILD_GLYPH_STRINGS): Handle the case GLYPHLESS_GLYPH.
1187 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
1188 (x_produce_glyphs): If a suitable font is not found, produce a
1189 glyphless glyph. Handle the case it->what == IT_GLYPHLESS.
1190 (syms_of_xdisp): Intern and staticpro Qglyphless_char,
1191 Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space, and
1192 Qzero_width.
1193 (Vglyphless_char_display): Declare it as a Lisp variable.
1194
1195 * dispextern.h (enum glyph_type): Add GLYPHLESS_GLYPH.
a8039db1
JB
1196 (struct glyph): Change the size of the member "type" to 3.
1197 Add glyphless to the union slice and u.
b2cca856
KH
1198 (enum display_element_type): Add IT_GLYPHLESS.
1199 (enum glyphless_display_method): New enum.
1200 (struct it): New member glyphless_method.
1201 (Vglyphless_char_display): Extern it.
1202
1203 * xterm.c (x_draw_glyphless_glyph_string_foreground): New function.
1204 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
1205
a8039db1 1206 * w32term.c (x_draw_glyphless_glyph_string_foreground): New function.
b2cca856
KH
1207 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
1208
1209 * nsterm.m (ns_draw_glyph_string): Handle the case
1210 GLYPHLESS_GLYPH (the detail is not yet implemented).
1211
c8c59954
GM
12122010-10-31 Glenn Morris <rgm@gnu.org>
1213
80696982
GM
1214 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Fix merge, maybe.
1215
c8c59954
GM
1216 * frame.c (syms_of_frame) <tool-bar-mode>:
1217 Default to nil if !HAVE_WINDOW_SYSTEM. (Bug#7299)
1218
46eadc7a
CY
12192010-10-31 Chong Yidong <cyd@stupidchicken.com>
1220
1221 * xterm.c (x_connection_closed): Print informative error message
1222 when aborting on GTK. This requires using shut_down_emacs
1223 directly instead of Fkill_emacs.
1224
ffe75e6b
EZ
12252010-10-29 Eli Zaretskii <eliz@gnu.org>
1226
1227 * emacs.c (main): Call syms_of_filelock unconditionally.
1228
1229 * filelock.c (syms_of_filelock): Move out of #ifdef CLASH_DETECTION
1230 clause, but keep part of it conditioned on CLASH_DETECTION.
1231
9d794026
GM
12322010-10-29 Glenn Morris <rgm@gnu.org>
1233
4f4f2973
GM
1234 * nsfns.m (Fx-display-save-under, Fx-open-connection)
1235 (Fxw-color-defined-p, Fxw-display-color-p, Fx-show-tip):
1236 * w32fns.c (Fxw_color_defined_p, Fx_open_connection):
1237 * xfns.c (Fxw_color_defined_p, Fx_open_connection):
1238 Sync docs between X, W32, NS.
1239
9d794026
GM
1240 * buffer.c (syms_of_buffer) <abbrev-mode, transient-mark-mode>:
1241 * frame.c (syms_of_frame) <tool-bar-mode>: Move doc here from Lisp.
1242
d46f6bbb
JB
12432010-10-26 Juanma Barranquero <lekktu@gmail.com>
1244
1245 * eval.c (init_eval_once): Set max_lisp_eval_depth to 600;
1246 otherwise, bootstrapping on Windows fails to compile macroexp.el.
1247
2e35f1a2
EZ
12482010-10-26 Eli Zaretskii <eliz@gnu.org>
1249
1250 * cmds.c (internal_self_insert): Don't insert if argument N is
84b28888 1251 zero or negative. (Bug#7281)
2e35f1a2 1252
8daaeda6
J
12532010-10-26 Jan Djärv <jan.h.d@swipnet.se>
1254
1255 * gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
1256
6a5c2175
GM
12572010-10-25 Glenn Morris <rgm@gnu.org>
1258
1259 * Makefile.in (SOME_MACHINE_LISP): Remove easymenu.elc.
1260
7c051dd8
GM
12612010-10-24 Glenn Morris <rgm@gnu.org>
1262
1263 * w32fns.c (Fx_synchronize, Fx_change_window_property)
1264 (Fx_window_property, Fx_file_dialog):
1265 * xfns.c (Fx_synchronize, Fx_change_window_property)
1266 (Fx_window_property, Fx_file_dialog): Sync docs between w32 and X.
1267
23c261f5
CY
12682010-10-24 Chong Yidong <cyd@stupidchicken.com>
1269
1270 * xterm.c (x_connection_closed): Kill Emacs unconditionally.
1271
d414c713 12722010-10-24 Eli Zaretskii <eliz@gnu.org>
89baa1df
EZ
1273
1274 * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
1275
1276 * dispnew.c (syms_of_display) <initial-window-system, window-system>:
1277 Deprecate use as a boolean flag.
1278
947f5e01
JM
12792010-10-24 Jim Meyering <jim@meyering.net>
1280
1281 * emacs.c (argmatch): Don't treat "--" as "--chdir".
1282
65807d73
GM
12832010-10-24 Glenn Morris <rgm@gnu.org>
1284
f5f25615
GM
1285 * w16select.c (syms_of_win16select) <selection-coding-system>:
1286 <next-selection-coding-system>:
1287 * w32select.c (syms_of_w32select) <selection-coding-system>:
1288 <next-selection-coding-system>:
3646b86d
GM
1289 Sync docs with select.el.
1290
46710489
GM
1291 * xfaces.c (syms_of_xfaces) <tty-defined-color-alist>: Sync doc with
1292 Lisp version.
1293
ea883883
GM
1294 * w32term.c (syms_of_w32term) <x-use-underline-position-properties>:
1295 Sync doc with the xterm.c version.
1296
65807d73
GM
1297 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
1298 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
1299
f3d87560
GM
13002010-10-23 Glenn Morris <rgm@gnu.org>
1301
66c6abf0 1302 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
e1fd756b 1303 * frame.c (syms_of_frame) <menu-bar-mode>:
6e82cf1a 1304 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>:
a102db1e 1305 <hourglass-delay>: Sync docs with Lisp.
f3d87560 1306
7b7e2c18
EZ
13072010-10-23 Eli Zaretskii <eliz@gnu.org>
1308
d1d6801e 1309 Implement mouse highlight for bidi-reordered lines.
d0010be5
EZ
1310
1311 * xdisp.c (fast_find_string_pos): #ifdef away, not used anymore.
1312 (mouse_face_from_string_pos): New function, replaces
1313 fast_find_string_pos.
1314 (note_mouse_highlight): Call it instead of fast_find_string_pos.
d1d6801e
EZ
1315 (note_mode_line_or_margin_highlight): Support bidi-reordered
1316 strings and R2L glyph rows. Fix comments.
2f3f89b3
EZ
1317 (note_mouse_highlight): When bidi reordering is turned on in a
1318 buffer, call next-single-property-change and
ef1b0ba7
SM
1319 previous-single-property-change with last argument nil.
1320 Clear mouse highlight when mouse pointer is in a R2L row on the stretch
d1d6801e 1321 glyph that stands for no text beyond the line end.
1f382a02
EZ
1322 (row_containing_pos): Don't return too early when CHARPOS is in a
1323 bidi-reordered continued line. Return immediately when the first
1324 hit is found in a line that is not continued, or when an exact
1325 match for CHARPOS is found.
d1d6801e
EZ
1326 (rows_from_pos_range): New function.
1327 (mouse_face_from_buffer_pos): Use it instead of calling
1328 row_containing_pos for START_CHARPOS and END_CHARPOS. Rewrite the
1329 function to support mouse highlight in bidi-reordered lines and
1330 not to assume that START_CHARPOS is always in mouse_face_beg_row.
1331 If necessary, swap mouse_face_beg_row and mouse_face_end_row so
1332 that the former is always above the latter or identical to it.
1554d88e 1333 (show_mouse_face): Support drawing highlighted R2L lines.
1b5a721b
EZ
1334 (coords_in_mouse_face_p): New function, bidi-aware.
1335 (cursor_in_mouse_face_p, note_mouse_highlight, erase_phys_cursor):
1336 Call it instead of comparing with mouse-face members of dpyinfo.
1337 (note_mode_line_or_margin_highlight): Fix confusingly swapped
1338 usage of hpos and vpos.
544bbc31 1339
dee186b6
J
13402010-10-22 Jan Djärv <jan.h.d@swipnet.se>
1341
1342 * xrdb.c: Include keyboard.h for MOTIF.
1343
1344 * xmenu.c: Revert 2010-07-27 change: lwlib.h is needed for
1345 MOTIF (Bug#7263).
1346
1347 * xfns.c: Include Xm/TextF and Xm/List.
bba3e508
SM
1348 (file_dialog_cb, file_dialog_unmap_cb, clean_up_file_dialog):
1349 Make ANSI prototypes.
dee186b6 1350
5fb59edb
GM
13512010-10-22 Glenn Morris <rgm@gnu.org>
1352
1353 * Makefile.in (SOME_MACHINE_LISP): Add w32-vars.
1354 Remove ccl and duplicate mouse.
1355
8b78d5e3
CY
13562010-10-21 Chong Yidong <cyd@stupidchicken.com>
1357
1358 * insdel.c (prepare_to_modify_buffer): Don't set
1359 saved-region-selection if modification hooks are disabled.
1360
b8a47412
CY
13612010-10-19 Chong Yidong <cyd@stupidchicken.com>
1362
1363 * cmds.c (Fdelete_char): Doc fix.
1364
ca3fa302 13652010-10-19 Ken Brown <kbrown@cornell.edu>
5419963b
KB
1366
1367 * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
1368
ca3fa302 13692010-10-19 Kenichi Handa <handa@m17n.org>
31daa5e1
KH
1370
1371 Fix incorrect font metrics when the same font is opened with
1372 different pixelsizes.
1373
1374 * xftfont.c: Include composite.h.
1375 (xftfont_shape): New function.
1376 (syms_of_xftfont): Set xftfont_driver.shape.
1377
c978536f
JD
13782010-10-18 Julien Danjou <julien@danjou.info>
1379
1380 * frame.c (Fframe_pointer_visible_p):
1381 Add `frame-pointer-visible-p' to get the pointer visibility.
1382
4b2d9ec2
LMI
13832010-10-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
1384
1385 * gnutls.c (emacs_gnutls_read): Return 0 if we get a
1386 non-"EAGAIN"-like error to signal to Emacs that the socket should
1387 be closed.
1388
9cf66cf2
EZ
13892010-10-15 Eli Zaretskii <eliz@gnu.org>
1390
c3911ead
EZ
1391 * unexcoff.c (make_hdr): Fix prototype according to changes in
1392 2010-10-03T13:59:56Z!dann@ics.uci.edu.
1393
9cf66cf2
EZ
1394 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning.
1395
be98da05
TH
13962010-10-15 Tassilo Horn <tassilo@member.fsf.org>
1397
1398 * Makefile.in (really-oldXMenu): Fix typo in variable name that
1399 made building the X menu fail.
cc98b256 1400 (really-oldXMenu): Fix my previous fix.
be98da05 1401
220d91b8 14022010-10-14 Damyan Pepper <damyanp@gmail.com>
9fa82824
DP
1403
1404 Fix handling of font properties on Windows (bug#6303).
1405 * font.c (font_filter_properties): New function, refactored from
1406 ftfont_filter_properties.
1407 * font.h (font_filter_properties): Declare.
1408 * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
1409 * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
1410 (w32font_filter_properties): New function.
1411 (w32font_driver): Add w32font_filter_properties.
1412
220d91b8 14132010-10-14 Juanma Barranquero <lekktu@gmail.com>
51e4f4a8 1414
c0943d3d 1415 * font.c (Ffont_variation_glyphs):
51e4f4a8
JB
1416 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
1417
24f981c9
JB
14182010-10-14 Juanma Barranquero <lekktu@gmail.com>
1419
1420 * w32fns.c (w32_wnd_proc, file_dialog_callback):
1421 * w32font.c (w32_generic_family):
1422 * w32inevt.c (key_event):
1423 * w32menu.c (fill_in_menu):
1424 * w32proc.c (reader_thread, w32_executable_type, compare_env)
1425 (merge_and_sort_env, int_from_hex, enum_locale_fn, enum_codepage_fn):
1426 * w32term.c (w32_read_socket): Make static.
1427
850690cc
JB
14282010-10-13 Juanma Barranquero <lekktu@gmail.com>
1429
1430 * image.c (DEF_IMGLIB_FN): Add argument to adapt to strict
1431 prototypes; all callers changed.
1432
5e371708
JB
14332010-10-13 Juanma Barranquero <lekktu@gmail.com>
1434
1435 * makefile.w32-in (TLIB2): Rename from TLIBW32.
1436 (OBJ2): New macro.
1437 (WIN32OBJ, FONTOBJ): Remove.
1438 (OBJ1): Redistribute object files with OBJ2.
1439 (LIBS, $(TEMACS)): Use TLIB2.
1440 (make-buildobj-CMD, make-buildobj-SH): Use OBJ2.
1441 ($(TLIB2), TAGS, TAGS-LISP, TAGS-gmake): Depend on OBJ2.
1442
2e288d54
JB
14432010-10-13 Juanma Barranquero <lekktu@gmail.com>
1444
1445 * emacs.c (Vdynamic_library_alist)
1446 (syms_of_emacs) <dynamic-library-alist>: Move from image.c and rename.
1447 Doc fix.
1448
1449 * lisp.h (Vdynamic_library_alist): Declare extern.
1450
1451 * image.c (Vimage_library_alist)
1452 (syms_of_image) <image-library-alist>: Move to emacs.c and rename.
1453 (lookup_image_type): Use Vdynamic_library_alist.
1454 (Finit_image_library): Doc fix.
1455
aba1381b
DN
14562010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
1457
1458 * Makefile.in (lispsource, libsrc, etc, oldxmenudir, lwlibdir)
1459 (lispdir): Remove trailing /, update all uses.
1460
4c14013d 14612010-10-12 Jan Djärv <jan.h.d@swipnet.se>
a2e35ef5
JD
1462
1463 * nsterm.m (Qleft): Declare.
1464 (ns_right_alternate_modifier): New variable
1465 (NSRightAlternateKeyMask): New define.
1466 (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
1467 ns_right_alternate_modifier isn't Qleft.
1468 (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
1469 as emacs modifier for NSRightAlternateKeyMask.
1470 (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
1471
355cdaf3
LMI
14722010-10-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
1473
1474 * gnutls.c (emacs_gnutls_write): If we're trying to write before
1475 gnutls is ready, return EAGAIN as the errno.
1476
4c620157
DN
14772010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
1478
edfd76ce
DN
1479 * vm-limit.c:
1480 * unexhp9k800.c:
1481 * unexelf.c:
1482 * unexaix.c:
1483 * termcap.c: Remove #ifdef emacs / #ifndef emacs code, unused.
1484
a4daeecf
DN
1485 * Makefile.in (temacs): Use $(ALL_CFLAGS) on the link line.
1486 (PROFILING_LDFLAGS): Remove, not needed anymore.
1487
2cb72a75 1488 * Makefile.in: Use $(...) everywhere instead of ${...}
4cf3ad30
DN
1489 (CRT_DIR): Move near potential user.
1490 (START_FILE): Move near CRT_DIR, it might use it.
2cb72a75 1491
4c620157
DN
1492 * sysdep.c (LPASS8): Remove, unused.
1493 (emacs_ospeed): Change from being a global to a local in the only
1494 user: init_baud_rate.
1495
b845653d
LMI
14962010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
1497
1498 * gnutls.c (syms_of_gnutls): All the bootprops are keywords.
bda6d2bd 1499 (emacs_gnutls_write): Remove the debuggin fsync call.
b845653d 1500 (emacs_gnutls_read): Return -1 if we got an error from
bda6d2bd 1501 gnutls_read. This allows us to actually read lots of data from
b845653d 1502 the GnuTLS stream.
2e6c74c5
LMI
1503 (emacs_gnutls_write): Check for GNUTLS_E_AGAIN and not EINTR.
1504 According to the documentation, this is correct, and it seems to
1505 make things work.
b845653d 1506
3625b3e2
CY
15072010-10-09 Chong Yidong <cyd@stupidchicken.com>
1508
1509 * xterm.c (x_draw_relief_rect): Clear corner pixels.
1510
8b1c619f
MA
15112010-10-08 Michael Albinus <michael.albinus@gmx.de>
1512
1513 * keyboard.c: Revert last change; it was not intended to be
1514 synchronized with the trunk.
1515
93d50df8
KH
15162010-10-08 Kenichi Handa <handa@m17n.org>
1517
2b7c9342 1518 * coding.c (complement_process_encoding_system): Fix previous change.
5886ec9c 1519
4628bef1 15202010-10-08 Michael Albinus <michael.albinus@gmx.de>
a79b0f28
MA
1521
1522 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
1523 (Fdbus_init_bus): ... here. (Bug#7113)
1524
4628bef1 15252010-10-08 Glenn Morris <rgm@gnu.org>
7b2bf907
GM
1526
1527 * buffer.c (before-change-functions, after-change-functions):
1528 Three-year overdue doc fix following 2007-08-13 change.
1529
4628bef1 15302010-10-08 Kenichi Handa <handa@m17n.org>
1911a33b
KH
1531
1532 * coding.c (coding_inherit_eol_type): If parent doesn't specify
1533 eol-format, inherit from the system's default.
1534 (complement_process_encoding_system): Make a new coding system
1535 inherit the original eol-format.
1536
4628bef1 15372010-10-08 Kenichi Handa <handa@m17n.org>
fcaf8878
KH
1538
1539 * coding.c (complement_process_encoding_system): New function.
1540
1541 * coding.h (complement_process_encoding_system): Extern it.
1542
1543 * callproc.c (Fcall_process): Complement the coding system for
1544 encoding arguments.
1545 (Fcall_process_region): Complement the coding system for encoding
1546 the input to the process.
1547
1548 * process.c (Fstart_process): Complement the coding system for
1549 encoding arguments.
1550 (send_process): Complement the coding system for encoding what
1551 sent to the process.
1552
4628bef1 15532010-10-08 Kenichi Handa <handa@m17n.org>
18acb5ad
KH
1554
1555 * xfont.c (xfont_open): Fix setting of font->average_width from
1556 :avgwidth property (Bug#7123).
1557
4628bef1 15582010-10-08 Michael Albinus <michael.albinus@gmx.de>
dec83468
MA
1559
1560 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
1561 is more portable.
1562
1563 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
1564 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
1565 has not defined SIGIO.
1566
389454fb
CY
15672010-10-08 Chong Yidong <cyd@stupidchicken.com>
1568
1569 * xterm.c (x_draw_relief_rect): If box width is larger than 1,
1570 draw the outermost line using the black relief, for legibility.
1571 Omit drawing the four corner pixels.
1572
51b403bd
CY
15732010-10-04 Chong Yidong <cyd@stupidchicken.com>
1574
1575 * keyboard.c (echo_prompt): Function moved into read_key_sequence.
1576 (read_key_sequence): Inline echo_prompt.
1577 (echo_dash): Add a dash only if key is continued (Bug#7137).
1578
3e6ae1a4
DN
15792010-10-04 Dan Nicolaescu <dann@ics.uci.edu>
1580
1581 Remove O_RDONLY, O_WRONLY definitions, not needed.
1582 * unexcoff.c:
1583 * lread.c:
1584 * fileio.c:
1585 * doc.c:
1586 * callproc.c:
1587 * alloc.c:
1588 * termcap.c: Remove O_RDONLY O_WRONLY definitions.
1589
c1ae068b
LMI
15902010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
1591
1592 * gnutls.h (GNUTLS_LOG2): Convenience macro.
1593
1594 * gnutls.c: Add property list symbol holders.
1595 (emacs_gnutls_handshake): Clarify how sockets are passed to
1596 GnuTLS.
1597 (gnutls_log_function2): Convenience function using GNUTLS_LOG2.
1598 (Fgnutls_boot): Get all parameters from a plist. Require trustfiles
1599 and keyfiles to be a list of file names. Default to "NORMAL" for
1600 the priority string. Improve logging.
1601
e2afe435
GM
16022010-10-03 Glenn Morris <rgm@gnu.org>
1603
1604 * fileio.c (Vdirectory_sep_char): Remove.
1605
dd5ecd6b
DN
16062010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
1607
b5437a05
DN
1608 * termhooks.h: Remove #ifdef CONSP.
1609
4777478a
DN
1610 * xterm.c (NO_INLINE, noinline): Move definitions to ../configure.in.
1611
a3d5088d
DN
1612 Include <fcntl.h> unconditionally.
1613 * termcap.c:
1614 * sysdep.c:
1615 * lread.c:
1616 * keyboard.c:
1617 * filelock.c:
1618 * fileio.c:
1619 * doc.c:
1620 * callproc.c:
1621 * alloc.c: Remove include guards for <fcntl.h>, process.c already
1622 does it.
1623
82719735
DN
1624 * process.c: Do not include <sys/wait.h>, syswait.h does it.
1625
9de940b5
DN
1626 * sysdep.c (flush_pending_output): Remove code, does not do
1627 anything on any platform.
1628
57507bf8 1629 Remove unused code.
bba3e508
SM
1630 * sysdep.c (select_alarm, sys_select, read_input_waiting):
1631 Remove select emulation, all systems support select.
57507bf8
DN
1632 (set_exclusive_use): Remove, the only user is in an #if 0 block.
1633 * process.c (create_process): Remove #if 0 code.
1634
dd5ecd6b
DN
1635 Remove unused arguments for unexec.
1636 The third one is never used, and the last two are always passed as zero.
1637 * emacs.c (unexec): Add declaration.
1638 (Fdump_emacs): Only pass the first two arguments to unexec.
1639 Simplify #ifdef.
1640 * unexw32.c (unexec):
1641 * unexsol.c (unexec):
1642 * unexhp9k800.c (unexec):
1643 * unexcw.c (unexec): Remove the last 3 arguments, unused.
1644 * unexelf.c (unexec): Remove the last 3 arguments, unused.
1645 (find_section): Use const.
1646 * unexmacosx.c (unexec): Remove the last 3 arguments, unused.
1647 (unexec_error): Declare it NO_RETURN.
1648 * unexcoff.c (make_hdr): Assume bss_start is always zero, remove
1649 it as an argument, remove data_start and entry_address arguments, unused.
1650 (unexec): Remove bss_start, data_start and
1651 entry_address arguments.
1652 * unexaix.c (make_hdr): Assume bss_start is always zero, remove
1653 it as an argument, remove data_start and entry_address arguments, unused.
1654 (unexec): Remove bss_start, data_start and
1655 entry_address arguments.
1656
74f1829d
JB
16572010-10-03 Juanma Barranquero <lekktu@gmail.com>
1658
7f467e14
JB
1659 * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ).
1660
74f1829d
JB
1661 * gnutls.c (emacs_gnutls_handshake, gnutls_make_error)
1662 (gnutls_emacs_global_init, gnutls_emacs_global_deinit): Make static.
1663 (Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
1664 Fix typos in docstrings.
1665 (Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
1666 (Fgnutls_errorp): Doc fix; use ERR for the argument name.
1667
6926550f
CY
16682010-10-03 Chong Yidong <cyd@stupidchicken.com>
1669
1670 * keyboard.c (command_loop_1): Make sure the mark is really alive
1671 before using it (Bug#7044).
1672
54b65f7b
JB
16732010-10-02 Juanma Barranquero <lekktu@gmail.com>
1674
1675 * makefile.w32-in (tags): Rename target to full-tags.
1676
383ebd15
EZ
16772010-10-02 Eli Zaretskii <eliz@gnu.org>
1678
1679 * emacs.c (main): Remove !WINDOWSNT conditional.
1680 (Fkill_emacs): Don't mention exemption on MS-Windows.
1681
9c524fcb
GM
16822010-10-02 Glenn Morris <rgm@gnu.org>
1683
3226d6ca
GM
1684 * character.c (Fchar_bytes): Remove obsolete function.
1685 (syms_of_character): Remove Schar_bytes.
1686
9c524fcb
GM
1687 * emacs.c (fatal_error_signal): Also run Fkill_emacs on SIGINT.
1688 (main) [!WINDOWSNT]: Handle SIGINT with fatal_error_signal
1689 in batch-mode.
1690 (Fkill_emacs): Doc fix. Also run the hook in batch mode.
1691 (kill-emacs-hook): Doc fix.
1692
1b217849
LMI
16932010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
1694
1695 * xml.c (Flibxml_parse_xml_region, Flibxml_parse_html_region)
bba3e508 1696 (parse_region): Rework to take regions instead of strings, and
1b217849
LMI
1697 renamed to reflect that these are the libxml functions.
1698
54cc6a83
EZ
16992010-10-01 Eli Zaretskii <eliz@gnu.org>
1700
0ebf79de
EZ
1701 * term.c (init_tty) [DOS_NT]: Don't call Wcm_clear after setting
1702 screen dimensions in tty->Wcm.
1703
54cc6a83
EZ
1704 * xdisp.c (set_cursor_from_row): When the row is truncated and
1705 point is outside the range of displayed characters, position the
1706 cursor inside the scroll margin. (Bug#6349)
1707
321401d1
DN
17082010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
1709
4cacd822
DN
1710 Do not include stdlib.h and string.h, config.h does it.
1711 * xfont.c:
1712 * w32term.c:
1713 * w32reg.c:
1714 * w32inevt.c:
1715 * w32heap.c:
1716 * w32console.c:
1717 * w16select.c:
1718 * unexsol.c:
1719 * term.c:
1720 * sound.c:
1721 * scroll.c (m):
1722 * gtkutil.c:
1723 * font.c:
1724 * filelock.c:
1725 * fileio.c:
1726 * dosfns.c:
1727 * dbusbind.c:
1728 * bidi.c:
1729 * callproc.c:
1730 * process.c:
1731 * msdos.c:
1732 * charset.c: Do not include stdlib.h and string.h, config.h does it.
1733
bba3e508
SM
1734 * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h
1735 defines it.
0781e7ab 1736
9bf58201
DN
1737 * process.c: Move #include <pty.h> earlier.
1738 (SIGCHLD): Remove conditional definition, syssignal.h defines it.
1739 (pty_name): Move definition later.
1740
088dcc3e
DN
1741 * nsselect.m (syms_of_nsselect):
1742 * nsmenu.m (syms_of_nsmenu):
1743 * nsfns.m (syms_of_nsfns):
1744 * msdos.c (syms_of_msdos):
4cacd822 1745
088dcc3e
DN
1746 * image.c (syms_of_image):
1747 * charset.c (syms_of_charset): Use intern_c_string instead of intern.
1748
321401d1
DN
1749 * point.h: Remove, unused.
1750
73077a9a
EZ
17512010-10-01 Eli Zaretskii <eliz@gnu.org>
1752
1753 * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
1754 (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
1755 (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
1756
55e572ef
DN
17572010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
1758
1759 * xml.c (parse_string): Use const.
1760
d4b6d95d
LMI
17612010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
1762
ef1b0ba7
SM
1763 * eval.c (Fbacktrace): Don't overwrite print-level on exit.
1764 Also only override Vprint_level if it isn't already bound, and increase
d4b6d95d
LMI
1765 the level to 8 to produce more useful backtraces for bug reports.
1766
e4b6db12
DN
17672010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
1768
1769 * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
1770
1becef93
JB
17712010-09-30 Juanma Barranquero <lekktu@gmail.com>
1772
1773 * w32console.c (vga_stdcolor_name): Remove unused function;
1774 presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
1775
df7fcaff
LMI
17762010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
1777
bac5cef8
LMI
1778 * gnutls.c (emacs_gnutls_handshake): Made into internal function.
1779 (Fgnutls_boot): Start the handshake.
1780 (emacs_gnutls_read): Perform the handshake from the reader loop.
e6059fa2
LMI
1781 (Fgnutls_boot): Remove some debugging messages.
1782 Change indentation throughout to use the Emacs style.
1783 (emacs_gnutls_handshake): Cast the fds to something that's
1784 possibly the expected length.
1785 (emacs_gnutls_write): Return -1 if we try to write before handshake.
bac5cef8 1786
df7fcaff
LMI
1787 * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
1788
1789 * process.c (make_process): Set the gnutls_p field to zero by
1790 default.
1791 (read_process_output): Always call the gnutls_read function if the
1792 stream is a gnutls stream.
1793 (send_process): Ditto for writes.
1794
1795 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
1796 or write anything until the state is GNUTLS_STAGE_READY.
1797 (Fgnutls_boot): Mark the stream as being a gnutls stream.
1798
d585695f
EZ
17992010-09-29 Eli Zaretskii <eliz@gnu.org>
1800
af7ef32d
EZ
1801 * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
1802 NEUTRAL_DIR.
1803 (handle_invisible_prop, iterate_out_of_display_property)
1804 (next_element_from_buffer): If bidi_it.first_elt is set, call
1805 bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
1806 (Bug#7128)
1807
d585695f
EZ
1808 * print.c (print_object): Fix format string and argument types for
1809 printing a Lisp_Misc_Marker.
1810
1811 * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
1812 (load_overlay_strings, get_overlay_strings_1)
1813 (get_overlay_strings, forward_to_next_line_start)
1814 (back_to_previous_visible_line_start, reseat, reseat_to_string)
1815 (get_next_display_element, next_element_from_string)
1816 (next_element_from_c_string, next_element_from_buffer)
1817 (move_it_vertically_backward, move_it_by_lines, add_to_log)
1818 (message_dolog, message_log_check_duplicate, message2_nolog)
1819 (message3, message3_nolog, vmessage, set_message, set_message_1)
1820 (hscroll_window_tree, text_outside_line_unchanged_p)
1821 (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
1822 (find_last_unchanged_at_beg_row)
1823 (find_first_unchanged_at_end_row, row_containing_pos)
1824 (trailing_whitespace_p, display_mode_element, decode_mode_spec)
bba3e508
SM
1825 (display_count_lines, x_produce_glyphs, note_mouse_highlight):
1826 Use EMACS_INT for buffer and string positions.
d585695f
EZ
1827
1828 * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
1829 (row_containing_pos): Adjust prototype.
1830
1831 * lisp.h (pos_visible_p, message2, message2_nolog, message3)
1832 (message2_nolog, set_message): Adjust prototypes.
1833
a6f3211f
SM
18342010-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1835
1836 * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
1837 (Fgnutls_boot): Use SDATA.
1838 (Fgnutls_handshake): Remove unused var `max_log_level'.
1839
e0720500
MA
18402010-09-27 Michael Albinus <michael.albinus@gmx.de>
1841
11a5af7c 1842 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
e0720500
MA
1843 (Bug#7113)
1844
d8a4b27a
J
18452010-09-27 Jan Djärv <jan.h.d@swipnet.se>
1846
42d3022b
J
1847 * xgselect.c (xg_select): Clear file descriptors not set from
1848 rfds and wfds.
1849
d8a4b27a
J
1850 * process.c (wait_reading_process_output): Add missing FD_CLR
1851 for write_mask (must mirror connect_wait_mask).
1852
8ed70bf3
LMI
18532010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
1854
1855 * gnutls.c (gnutls_log_function): Show level and "gnutls.c"
1856 prefix.
1857 (Fgnutls_boot): Use changed process members. Use log level with a
1858 function parameter to set it. Bring back Emacs-level debugging
1859 messages at log level 1 and 2.
1860
1861 * process.c (make_process): Initialize gnutls_log_level.
1862
1863 * process.h: Add gnutls_log_level and rename x509_cred and
1864 anon_cred to have the gnutls_ prefix for consistency.
1865
1866 * gnutls.h (GNUTLS_LOG): Add convenience macro.
1867
bedf4aab
JB
18682010-09-27 Juanma Barranquero <lekktu@gmail.com>
1869
1870 * w32.c (g_b_init_get_sid_identifier_authority)
1871 (GetSidIdentifierAuthority_Proc, get_sid_identifier_authority):
1872 Remove, not used.
1873 (globals_of_w32): Don't set g_b_init_get_sid_identifier_authority.
1874 (init_winsock): Remove useless assignment.
1875 (open_process_token, get_token_information, lookup_account_sid)
1876 (get_sid_sub_authority, get_sid_sub_authority_count, get_file_security)
1877 (get_security_descriptor_owner, get_security_descriptor_group)
1878 (is_valid_sid, equal_sid, get_length_sid, copy_sid)
1879 (get_native_system_info, get_system_times, init_user_info, crlf_to_lf)
1880 (is_unc_volume, GetCachedVolumeInformation, get_volume_info)
1881 (is_fat_volume, open_unc_volume, read_unc_volume, close_unc_volume)
1882 (unc_volume_file_attributes, convert_from_time_t)
1883 (create_toolhelp32_snapshot, process32_first, process32_next)
1884 (open_thread_token, impersonate_self, revert_to_self)
1885 (get_process_memory_info, get_process_working_set_size)
1886 (global_memory_status, global_memory_status_ex, socket_to_fd)
1887 (shutdown_handler): Make static.
1888
08609ffd
MA
18892010-09-27 Michael Albinus <michael.albinus@gmx.de>
1890
1891 * dbusbind.c (dbus_fd_cb, xd_get_dispatch_status)
1892 (xd_pending_messages): Functions removed.
1893 (xd_read_queued_messages): Add parameters fd, *data, for_read in
1894 order to be compatible with add_read_fd. Determine bus from data,
1895 and call xd_read_message just for this bus.
1896 (xd_add_watch): Use xd_read_queued_messages as callback function.
1897 Add data.
1898
1899 * lisp.h (xd_pending_messages, xd_read_queued_messages): Remove.
1900
d2e9d0bb
LMI
19012010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
1902
ef1b0ba7 1903 * gnutls.c (gnutls_log_function): Add more debugging.
ec9f09be 1904 (emacs_gnutls_read): Don't infloop while reading.
d2e9d0bb 1905
4be9765d
KH
19062010-09-27 Kenichi Handa <handa@m17n.org>
1907
1908 These changes are to remove restriction on the number of glyphs in
1909 one composition.
1910
1911 * dispextern.h (struct glyph): Change the member "slice" to union.
1912 Remove u.cmp.from and u.cmp.to. Give more bits to u.cmp.id.
bba3e508 1913 (GLYPH_SLICE_EQUAL_P): Adjust for the above change.
4be9765d
KH
1914
1915 * dispnew.c (buffer_posn_from_coords): Use glyph->slice.img
1916 instead of glyph->slice.
1917 (marginal_area_string): Likewise.
1918
1919 * term.c (encode_terminal_code): Use glyph->slice.cmp instead of
1920 glyph->u.cmp.
1921 (append_composite_glyph): Likewise.
1922
1923 * xdisp.c (dump_glyph): Use glyph->slice.cmp instead of
1924 glyph->u.cmp.
1925 (fill_gstring_glyph_string, x_get_glyph_overhangs)
1926 (append_composite_glyph): Likewise.
1927 (fill_image_glyph_string): Use glyph->slice.img instead of
1928 glyph->slice.
1929 (append_glyph, produce_image_glyph, append_stretch_glyph)
1930 (note_mouse_highlight): Likewise.
1931
3fad2ad2
J
19322010-09-26 Jan Djärv <jan.h.d@swipnet.se>
1933
bf05eed6
J
1934 * process.c (add_keyboard_wait_descriptor)
1935 (delete_keyboard_wait_descriptor): Reinstate ifdef subprocesses.
82d6e50b
J
1936 (wait_reading_process_output): Don't pass write_mask to select
1937 if SELECT_CANT_DO_WRITE_MASK is defined.
1938 (SELECT_CANT_DO_WRITE_MASK): Define if SELECT_CANT_DO_WRITE_MASK.
bf05eed6 1939
3fad2ad2
J
1940 * process.h (add_read_fd, delete_read_fd, add_write_fd)
1941 (delete_write_fd): Declare.
1942
1943 * process.c (gpm_wait_mask, max_gpm_desc): Remove.
1944 (write_mask): New variable.
ef1b0ba7 1945 (max_input_desc): Rename from max_keyboard_desc.
3fad2ad2 1946 (fd_callback_info): New variable.
70e31436
JB
1947 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd):
1948 New functions.
3fad2ad2
J
1949 (Fmake_network_process): FD_SET write_mask.
1950 (deactivate_process): FD_CLR write_mask.
1951 (wait_reading_process_output): Connecting renamed to Writeok.
70e31436
JB
1952 check_connect removed. check_write is new. Remove references to gpm.
1953 Use Writeok/check_write unconditionally (i.e. no #ifdef
3fad2ad2
J
1954 NON_BLOCKING_CONNECT) instead of Connecting.
1955 Loop over file descriptors and call callbacks in fd_callback_info
1956 if file descriptor is ready for I/O.
1957 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor.
1958 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor.
1959 (keyboard_bit_set): Use max_input_desc.
70e31436
JB
1960 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor):
1961 Remove #ifdef subprocesses. Use max_input_desc.
3fad2ad2
J
1962 (init_process): Initialize write_mask and fd_callback_info.
1963
1964 * keyboard.c (readable_events, gobble_input): Remove DBUS code.
1965
1966 * dbusbind.c: Include process.h.
1967 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch)
1968 (xd_read_message_1): New functions.
70e31436
JB
1969 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd.
1970 Handle watch for both read and write.
3fad2ad2
J
1971 (Fdbus_init_bus): Also register xd_toggle_watch.
1972 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
1973 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call
1974 to dbus_connection_flush.
70e31436 1975 (xd_read_message): Move most of the code to xd_read_message_1.
3fad2ad2
J
1976 Call xd_read_message_1 until status is COMPLETE.
1977
dce4c2ac
DN
19782010-09-26 Dan Nicolaescu <dann@ics.uci.edu>
1979
1980 * term.c: Do not include sys/ioctl.h, not needed.
70e31436
JB
1981 (init_tty): Reorder code to reduce the number of #ifdefs.
1982 No code changes.
dce4c2ac 1983
8af55556
TZ
19842010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
1985
1986 * process.h: Set up GnuTLS support.
1987
1988 * process.c (make_process, Fstart_process)
1989 (read_process_output, send_process): Set up GnuTLS support for
1990 process input/output file descriptors.
1991
1992 * gnutls.h: The GnuTLS glue for Emacs, macros and enums.
1993
1994 * gnutls.c: The source code for GnuTLS support in Emacs.
1995
1996 * emacs.c: Set up GnuTLS support and call syms_of_gnutls.
1997
1998 * config.in: Set up GnuTLS support.
1999
2000 * Makefile.in (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS, ALL_CFLAGS)
2001 (obj, LIBES): Set up GnuTLS support.
2002
83e245c4
JB
20032010-09-26 Juanma Barranquero <lekktu@gmail.com>
2004
2005 * w32.c (get_emacs_configuration_options): Fix previous change.
2006
d24ec09a
CY
20072010-09-25 Chong Yidong <cyd@stupidchicken.com>
2008
2009 * insdel.c (prepare_to_modify_buffer): Ensure the mark marker is
2010 alive before using it (Bug#6977).
2011
b7bdc47c
LMI
20122010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
2013
a952d5f3
LMI
2014 * xdisp.c (face_before_or_after_it_pos): EMACS_INT/int fixup.
2015
2016 * dispextern.h: EMACS_INT/int fixup.
2017
2018 * xdisp.c (string_pos_nchars_ahead, init_iterator): EMACS_INT/int
2019 fixup.
2020
b7bdc47c
LMI
2021 * xrdb.c (magic_file_p): EMACS_INT/int fixup.
2022
41118bd3
EZ
20232010-09-25 Eli Zaretskii <eliz@gnu.org>
2024
2452438f
EZ
2025 * window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
2026 (Fselect_window, window_scroll_pixel_based)
2027 (window_scroll_line_based, Frecenter, Fset_window_configuration):
2028 Use EMACS_INT for buffer positions.
2029
2030 * textprop.c (validate_interval_range, interval_of)
2031 (property_change_between_p, Fadd_text_properties)
2032 (set_text_properties_1, Fremove_text_properties)
2033 (Fremove_list_of_text_properties, Ftext_property_any)
2034 (Ftext_property_not_all, copy_text_properties)
2035 (text_property_list, extend_property_ranges)
2036 (verify_interval_modification): Use EMACS_INT for buffer
2037 positions.
2038
f877c546
EZ
2039 * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
2040 for buffer positions.
2041
2042 * process.c (read_process_output, send_process)
2043 (Fprocess_send_region, status_notify): Use EMACS_INT for buffer
2044 and string positions and size.
2045
da43f021
EZ
2046 * print.c (print_object, print_string, strout): Use EMACS_INT for
2047 string indices.
2048
2049 * minibuf.c (string_to_object): Use EMACS_INT for string position
2050 and size.
2051
2052 * marker.c (verify_bytepos): Use EMACS_INT for buffer positions.
2053
2054 * lread.c <read_from_string_index, read_from_string_index_byte>
2055 <read_from_string_limit, readchar_count>: Define EMACS_INT.
2056 (readchar, unreadchar, read_internal_start): Use EMACS_INT for
2057 buffer positions and string length.
2058
41118bd3
EZ
2059 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare
2060 EMACS_INT.
2061 (echo_truncate, adjust_point_for_property, read_char)
2062 (gen_help_event, make_lispy_event, modify_event_symbol)
2063 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
2064 for buffer positions and string length.
2065
2066 * keyboard.h (gen_help_event): Adjust prototype.
2067
2068 * termhooks.h <struct input_event>: Make `code' member EMACS_INT.
2069
2070 * commands.h <last_point_position>: Declare EMACS_INT.
2071
2072 * xdisp.c <help_echo_pos>: Define as EMACS_INT.
2073 (truncate_echo_area): Accept EMACS_INT argument.
2074
2075 * dispextern.h <help_echo_pos>: Declare EMACS_INT.
2076
2077 * lisp.h (truncate_echo_area): Adjust prototype.
2078
2079 * composite.c (composition_adjust_point): Return EMACS_INT.
2080
2081 * composite.h (composition_adjust_point): Adjust prototype.
2082
ba3033ee
JB
20832010-09-25 Juanma Barranquero <lekktu@gmail.com>
2084
2085 * process.c (Fmake_network_process): When arg :host is 'local,
2086 use address 127.0.0.1, not name "localhost". (Bug#6781)
2087
4f3a2f8d
EZ
20882010-09-24 Eli Zaretskii <eliz@gnu.org>
2089
5816888b
EZ
2090 * indent.c (Fcurrent_indentation, indented_beyond_p)
2091 (compute_motion): Use EMACS_INT for buffer position variables.
2092
2093 * lisp.h (indented_beyond_p): Adjust prototype.
2094
2095 * buffer.c (overlay_strings): Return EMACS_INT.
2096
2097 * buffer.h (overlay_strings): Adjust prototype.
2098
2099 * region-cache.c (pp_cache): Adjust format to arguments.
2100
2101 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
2102 (call_debugger): Use EMACS_INT for specpdl_size related variables.
2103 (verror): Use EMACS_INT for size of allocated buffer.
2104
ace1712c
EZ
2105 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
2106 positions.
2107
2108 * xdisp.c (redisplay_internal, try_window_id)
bba3e508
SM
2109 (set_cursor_from_row, find_first_unchanged_at_end_row):
2110 Use EMACS_INT for buffer positions.
ace1712c 2111
f5276b75 2112 * dispextern.h (set_cursor_from_row): Adjust prototype.
ace1712c
EZ
2113
2114 * dispnew.c (increment_matrix_positions)
2115 (increment_row_positions, copy_glyph_row_contents)
2116 (mode_line_string, marginal_area_string): Use EMACS_INT for buffer
2117 positions.
2118
2119 * dispextern.h (mode_line_string, marginal_area_string)
bba3e508
SM
2120 (increment_matrix_positions, increment_row_positions):
2121 Adjust prototypes.
ace1712c
EZ
2122
2123 * data.c (Faref, Faset): Use EMACS_INT for string length and
2124 positions.
2125
2126 * cmds.c (internal_self_insert): Use EMACS_INT for the count of
2127 characters to insert.
2128
2129 * ccl.c (Fccl_execute_on_string): Use EMACS_INT for string
2130 position and size.
2131
4f3a2f8d
EZ
2132 * syntax.c (scan_words, update_syntax_table)
2133 (prev_char_comend_first, back_comment, skip_chars)
bba3e508
SM
2134 (skip_syntaxes, Fforward_comment, Fbackward_prefix_chars):
2135 Use EMACS_INT for buffer and string positions.
4f3a2f8d
EZ
2136
2137 * syntax.h (scan_words, update_syntax_table): Adjust prototypes.
2138
2139 * casefiddle.c (operate_on_word): Use EMACS_INT for buffer
2140 positions.
2141
db063399
LMI
21422010-09-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
2143
f0812d35
LMI
2144 * scroll.c (calculate_scrolling, line_ins_del)
2145 (calculate_direct_scrolling, scroll_cost): Fix EMACS_INT/int
2146 conversion.
2147
f5c7fc27
LMI
2148 * region-cache.c (move_cache_gap, set_cache_region, pp_cache)
2149 (region_cache_backward, region_cache_forward)
2150 (revalidate_region_cache, set_cache_region): FIX EMACS_INT/int
2151 conversion.
2152
db063399
LMI
2153 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
2154
2155 * eval.c (verror): Fix EMACS_INT/int conversion.
2156
07914cd0 2157 * print.c (PRINTDECLARE, PRINTPREPARE, strout, print_string)
db063399
LMI
2158 (print_preprocess, print_check_string_charset_prop)
2159 (print_object): Fix EMACS_INT/int conversion.
2160
2161 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
2162
e6d4aefa
EZ
21632010-09-24 Eli Zaretskii <eliz@gnu.org>
2164
69481da7
EZ
2165 * callproc.c (Fcall_process): Use EMACS_INT for count of
2166 characters read from the subprocess.
2167
61bfec98
EZ
2168 * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
2169 positions.
2170 (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
2171 positions.
2172
145582a0
EZ
2173 * buffer.c (struct sortvec): Use EMACS_INT for buffer positions.
2174 (struct sortstrlist, overlay_str_len): Use EMACS_INT for string
2175 length.
2176 (advance_to_char_boundary, Fset_buffer_multibyte)
2177 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
2178 (overlay_touches_p, record_overlay_string, overlay_strings)
2179 (recenter_overlay_lists, fix_start_end_in_overlays)
2180 (modify_overlay, Fmove_overlay, report_overlay_modification)
2181 (evaporate_overlays): Use EMACS_INT for buffer positions.
2182
bba3e508
SM
2183 * lisp.h (fix_start_end_in_overlays, overlay_touches_p):
2184 Adjust prototypes.
145582a0 2185
446470a9
EZ
2186 * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
2187 positions.
2188
e6d4aefa
EZ
2189 * fns.c (Fcompare_strings, Fstring_lessp, concat)
2190 (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
2191 (Fsubstring_no_properties, substring_both, Ffillarray)
2192 (Fclear_string, mapcar1, Fmapconcat, Fmapcar, Fmapc)
2193 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
2194 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
2195 (Fmd5): Use EMACS_INT for buffer and string positions and length
2196 variables and arguments.
2197
2198 * lisp.h (substring_both): Adjust prototype.
2199
eb652396
JB
22002010-09-24 Juanma Barranquero <lekktu@gmail.com>
2201
2202 Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org).
2203 * w32fns.c (clipboard_sequence_fn): Don't declare.
2204 (globals_of_w32fns): Don't initialize it.
2205
266a86bd 22062010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
fbb3da77
SM
2207
2208 * syntax.c (back_comment): Detect the case where a 1-char comment
2209 starter is also the 2nd char of a 2-char comment ender.
2210
266a86bd 22112010-09-23 Jan Djärv <jan.h.d@swipnet.se>
2b5b82db
J
2212
2213 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
2214
40283062
LMI
22152010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
2216
db063399
LMI
2217 * eval.c (verror): EMACS_INT/int cleanup.
2218
faf8b5bc
LMI
2219 * lisp.h (SPECPDL_INDEX): Cast to int, since we're not going to
2220 unwind_protect more than 2GB worth of functions.
2221
2222 * editfns.c (Finsert_char): EMACS_INT/int cleanup.
2223
40283062
LMI
2224 * lisp.h: Have oblookup take EMACS_INT to allow interning big
2225 string and avoid compiler warnings.
2226 (USE_SAFE_ALLOCA): Cast to int to avoid compilation warnings in
2227 all users.
2228
2229 * lread.c (oblookup): EMACS_INT/int cleanup.
2230
2231 * cmds.c (Fforward_line, Fdelete_char): EMACS_INT/int cleanup.
2232
fe3537c3
EZ
22332010-09-23 Eli Zaretskii <eliz@gnu.org>
2234
2235 * editfns.c (clip_to_bounds): Return an EMACS_INT value.
2236
2237 * lisp.h (clip_to_bounds): Adjust prototype.
2238
2239 * intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
2240
0350982f
LMI
22412010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
2242
84c9ce05
LMI
2243 * lisp.h: doprnt.c EMACS_INT/int cleanup.
2244
2245 * doprnt.c (doprnt): EMACS_INT/int cleanup.
2246
2247 * doc.c (Fsnarf_documentation, get_doc_string): EMACS_INT/int
2248 cleanup.
2249
0350982f
LMI
2250 * lisp.h: Change the definition of all marker.c functions that
2251 take and return buffer stuff to be EMACS_INT instead of int.
2252
2253 * marker.c (buf_charpos_to_bytepos, CONSIDER, set_marker_both)
2254 (buf_charpos_to_bytepos, bytepos_to_charpos)
2255 (buf_bytepos_to_charpos, Fbuffer_has_markers_at)
2256 (set_marker_restricted, set_marker_both): Convert int to EMACS_INT
2257 for all buffer positions.
2258
c50bd0d2
CY
22592010-09-23 Chong Yidong <cyd@stupidchicken.com>
2260
2261 * intervals.c (traverse_intervals, rotate_right, rotate_left)
2262 (split_interval_right, find_interval, next_interval)
2263 (delete_node, delete_interval, interval_deletion_adjustment)
2264 (adjust_intervals_for_deletion, merge_interval_right)
2265 (merge_interval_left, graft_intervals_into_buffer)
2266 (copy_intervals): Convert EMACS_UINTs to EMACS_INT.
2267
2268 * intervals.h (traverse_intervals): Update prototype.
2269
14162469
EZ
22702010-09-23 Eli Zaretskii <eliz@gnu.org>
2271
c098fdb8
EZ
2272 * indent.c (compute_motion): Use EMACS_INT for arguments to
2273 region_cache_forward.
2274
bba3e508
SM
2275 * region-cache.c (struct boundary, struct region_cache):
2276 Use EMACS_INT for positions.
c098fdb8
EZ
2277 (find_cache_boundary, move_cache_gap, insert_cache_boundary)
2278 (delete_cache_boundaries, set_cache_region)
2279 (invalidate_region_cache, know_region_cache)
bba3e508
SM
2280 (region_cache_forward, region_cache_backward, pp_cache):
2281 Use EMACS_INT for buffer positions.
c098fdb8
EZ
2282
2283 * region-cache.h (know_region_cache, invalidate_region_cache)
2284 (region_cache_forward, region_cache_backward): Adjust prototypes.
2285
2286 * search.c (string_match_1, fast_c_string_match_ignore_case)
2287 (looking_at_1, scan_buffer, scan_newline)
2288 (find_next_newline_no_quit, find_before_next_newline)
2289 (search_command, trivial_regexp_p, search_buffer, simple_search)
2290 (boyer_moore, wordify, Freplace_match): Use EMACS_INT for buffer
2291 and string positions and length.
2292
caefdbe7
EZ
2293 * lisp.h (scan_buffer, scan_newline, find_next_newline_no_quit)
2294 (find_before_next_newline): Adjust prototypes.
c098fdb8 2295
29cdc13e
EZ
2296 * editfns.c (transpose_markers, update_buffer_properties)
2297 (buildmark, clip_to_bounds, Fgoto_char, overlays_around)
2298 (get_pos_property, Fconstrain_to_field)
2299 (Fline_beginning_position, Fline_end_position, Fprevious_char)
2300 (Fchar_after, Fchar_before, Finsert_char)
2301 (Finsert_buffer_substring, Fcompare_buffer_substrings)
bba3e508
SM
2302 (Fsubst_char_in_region, Fformat, Ftranspose_regions):
2303 Use EMACS_INT for buffer and string position variables.
c098fdb8 2304 (Finsert_char): Protect against too large insertions.
29cdc13e
EZ
2305
2306 * lisp.h (clip_to_bounds): Adjust prototype.
2307
e79123aa
EZ
2308 * intervals.c (traverse_intervals, rotate_right, rotate_left)
2309 (balance_an_interval, split_interval_right, split_interval_left)
2310 (find_interval, next_interval, update_interval)
2311 (adjust_intervals_for_insertion, delete_node, delete_interval)
2312 (interval_deletion_adjustment, adjust_intervals_for_deletion)
2313 (offset_intervals, merge_interval_right, merge_interval_left)
2314 (graft_intervals_into_buffer, adjust_for_invis_intang)
2315 (move_if_not_intangible, get_local_map, copy_intervals)
2316 (copy_intervals_to_string, compare_string_intervals)
2317 (set_intervals_multibyte_1): Use EMACS_INT for buffer positions
6e48267a 2318 and for interval tree size.
e79123aa
EZ
2319
2320 * intervals.h (traverse_intervals, split_interval_right)
2321 (split_interval_left, find_interval, offset_intervals)
2322 (graft_intervals_into_buffer, copy_intervals)
2323 (copy_intervals_to_string, move_if_not_intangible, get_local_map)
2324 (update_interval): Adjust prototypes.
2325
579c18d0
EZ
2326 * xdisp.c (check_point_in_composition, reconsider_clip_changes):
2327 Use EMACS_INT for buffer position variables and arguments.
2328
2329 * composite.c (get_composition_id, find_composition)
2330 (run_composition_function, compose_text)
2331 (composition_gstring_width, autocmp_chars)
2332 (composition_update_it, Ffind_composition_internal): Use EMACS_INT
2333 for buffer positions and string length variables and arguments.
2334
2335 * composite.h (get_composition_id, find_composition, compose_text)
2336 (composition_gstring_width): Adjust prototypes.
2337
2338 * editfns.c (Fformat): Use EMACS_INT for string size variables.
2339
bba3e508
SM
2340 * xdisp.c (store_mode_line_noprop, display_mode_element):
2341 Use EMACS_INT for string positions.
579c18d0
EZ
2342
2343 * intervals.c (get_property_and_range): Use EMACS_INT for buffer
2344 position arguments.
2345
2346 * intervals.h (get_property_and_range): Adjust prototype.
14162469
EZ
2347
2348 * character.c (parse_str_as_multibyte, str_as_multibyte)
2349 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
579c18d0 2350 (string_count_byte8, string_escape_byte8, c_string_width)
bba3e508
SM
2351 (strwidth, lisp_string_width, multibyte_chars_in_text):
2352 Use EMACS_INT for string length variables and arguments.
14162469
EZ
2353
2354 * character.h (parse_str_as_multibyte, str_as_multibyte)
579c18d0 2355 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
bba3e508
SM
2356 (c_string_width, strwidth, lisp_string_width):
2357 Adjust prototypes.
14162469 2358
579c18d0
EZ
2359 * font.c (font_intern_prop): Use EMACS_INT for string length
2360 variables.
2361
2362 * font.c (font_intern_prop): Use EMACS_INT for string length
2363 variables.
2364
14162469
EZ
2365 * fns.c (Fstring_as_multibyte): Use EMACS_INT for string length
2366 variables.
2367
2368 * alloc.c <total_string_size>: Declare as EMACS_INT, not int.
2369 (Fmake_string): Protect against too large strings.
2370 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
2371 (live_misc_p): Use ptrdiff_t instead of int for pointer
2372 differences.
2373 (string_bytes, check_sblock, check_string_free_list)
2374 (allocate_string_data, compact_small_strings, Fmake_string)
2375 (Fmake_bool_vector, make_string, make_unibyte_string)
2376 (make_multibyte_string, make_string_from_bytes)
bba3e508
SM
2377 (make_specified_string_string, Fmake_list, Fmake_vector):
2378 Use EMACS_INT for string length variables and arguments.
14162469
EZ
2379 (find_string_data_in_pure, make_pure_string, make_pure_c_string)
2380 (Fpurecopy): Use EMACS_INT for string size.
2381 (mark_vectorlike, mark_char_table, mark_object): Use EMACS_UINT
2382 for vector size.
2383
2384 * lisp.h (make_string, make_unibyte_string, make_multibyte_string)
2385 (make_string_from_bytes, make_specified_string_string)
579c18d0
EZ
2386 (make_pure_string, string_bytes, check_point_in_composition):
2387 Adjust prototypes.
14162469 2388
c8a66ab8
EZ
23892010-09-22 Eli Zaretskii <eliz@gnu.org>
2390
2391 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
2392 (check_translation): Use EMACS_INT for buffer positions and
2393 length.
2394
2395 * undo.c (record_marker_adjustment, record_delete)
2396 (record_change, record_point, record_insert)
2397 (record_property_change, Fprimitive_undo): Use EMACS_INT for
2398 buffer positions.
2399
2400 * lisp.h (record_marker_adjustment, record_delete)
2401 (record_change, record_point, record_insert)
2402 (record_property_change, Fprimitive_undo): Adjust prototypes.
2403
38c54d9d
JB
24042010-09-22 Juanma Barranquero <lekktu@gmail.com>
2405 Eli Zaretskii <eliz@gnu.org>
2406
2407 * w32.c (get_emacs_configuration_options): Fix buffer overrun.
2408
413d18e7
EZ
24092010-09-22 Eli Zaretskii <eliz@gnu.org>
2410
2411 * minibuf.c (Fminibuffer_contents)
2412 (Fminibuffer_contents_no_properties)
2413 (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
2414 positions.
2415
2416 * keyboard.c (command_loop_1): Use EMACS_INT to compare point with
2417 mark.
2418
2419 * alloc.c (make_uninit_string, make_uninit_multibyte_string)
2420 (allocate_string_data): Accept EMACS_INT for string length.
2421
2422 * editfns.c (Ffield_string, Ffield_string_no_properties)
2423 (make_buffer_string, make_buffer_string_both, Fbuffer_substring)
2424 (Fbuffer_substring_no_properties, find_field, Fdelete_field)
2425 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
2426 (Ffield_end): Use EMACS_INT for buffer positions.
2427
2428 * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
2429 point with mark.
2430
2431 * lisp.h (allocate_string_data, make_uninit_string)
2432 (make_uninit_multibyte_string, make_buffer_string)
2433 (make_buffer_string_both): Adjust prototypes.
2434
4b9832a6
CY
24352010-09-22 Chong Yidong <cyd@stupidchicken.com>
2436
2437 * xml.c: Switch to GNU indentation.
2438 (make_dom): Change parse tree format to match xml.el.
2439 (Fxml_parse_html_string_internal): Rename from html-parse-string.
2440 (Fxml_parse_string_internal): Rename from xml-parse-string.
2441
86282aab
KH
24422010-09-22 Kenichi Handa <handa@m17n.org>
2443
2444 * xdisp.c (compute_stop_pos): Call composition_compute_stop_pos
2445 only if we are not at a composition.
2446 (set_iterator_to_next): Give it->end_charpos to
2447 composition_compute_stop_pos.
2448 (set_iterator_to_next, next_element_from_buffer): Likewise.
2449
2450 * dispnew.c (buffer_posn_from_coords): Fix position when the
2451 current display element is a grapheme cluster in bidi-reordered
2452 region.
2453
840b985a
AR
24542010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
2455
2456 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
2457 the regions may overlap.
2458
5bc88f4b
JB
24592010-09-21 Juanma Barranquero <lekktu@gmail.com>
2460
2461 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
2462
92bc9a36
DN
24632010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
2464
d19e096e
DN
2465 * emacs.c: Do not include sys/ioctl.h, not needed.
2466
92bc9a36
DN
2467 * doprnt.c: Do not include stdlib.h, config.h does it.
2468 Move #include before macro definition.
2469
15f844ac
DN
24702010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
2471
48e24408
DN
2472 * Makefile.in (temacs): Link using $(CC) not $(LD).
2473 (LD_FIRSTFLAG): Define using autoconf.
2474 (LD): Remove.
2475
65539506
DN
2476 Remove HAVE_TERMIOS definitions.
2477 * s/usg5-4-common.h (HAVE_TERMIOS):
2478 * s/template.h (HAVE_TERMIOS):
2479 * s/gnu-linux.h (HAVE_TERMIOS):
2480 * s/darwin.h (HAVE_TERMIOS):
2481 * s/cygwin.h (HAVE_TERMIOS):
2482 * s/bsd-common.h (HAVE_TERMIOS):
2483 * s/aix4-2.h (HAVE_TERMIOS):
2484 * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
2485 defined on all non-MS platforms.
2486 (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
2487
15f844ac
DN
2488 * xterm.c (xt_action_hook): Use const.
2489
7d701334
JB
24902010-09-20 Juanma Barranquero <lekktu@gmail.com>
2491
2492 Don't make W32 code conditional on HAVE_SOCKETS, it's always defined.
2493 * w32.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
2494 (gethostname) [!HAVE_SOCKETS]: Remove.
2495 (SOCK_REPLACE_HANDLE): Remove macro.
2496 (socket_to_fd, sys_close, _sys_read_ahead, sys_read, sys_write)
2497 (term_ntproc, init_ntproc): Don't conditionalize on HAVE_SOCKETS.
2498 * w32proc.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
2499 (syms_of_ntproc): Don't conditionalize on HAVE_SOCKETS.
2500
f3ec267a
EZ
25012010-09-18 Eli Zaretskii <eliz@gnu.org>
2502
2503 * deps.mk (xml.o): Add dependencies.
2504
93acd23d
JB
2505 * xdisp.c (Fcurrent_bidi_paragraph_direction):
2506 Call bidi_paragraph_init with NO_DEFAULT_P non-zero. (Bug#7038)
bea4f10c
EZ
2507
2508 * bidi.c (bidi_paragraph_init): Accept an additional argument
2509 NO_DEFAULT_P; all callers changed. If NO_DEFAULT_P is non-zero,
2510 search back until a paragraph with a strong directional character
2511 is found, and use that to determine paragraph's base direction.
2512
2513 * dispextern.h (bidi_paragraph_init): Update prototype.
2514
69e847be
EZ
25152010-09-17 Eli Zaretskii <eliz@gnu.org>
2516
2517 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
2518 of w32api >= 3.15. (Bug#6989)
2519
283357a7
LMI
25202010-09-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
2521
2522 * process.c (wait_reading_process_output): Don't message about
2523 accept-process-output unless the time limit really is zero.
2524
4ddb20d6
SM
25252010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
2526
2527 * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another
2528 int/Lisp_Object mixup).
2529
e24ad6dd
J
25302010-09-17 Jan Djärv <jan.h.d@swipnet.se>
2531
2532 * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
2533 not HELP.
2534
fb0cf781
J
25352010-09-17 Stephen Berman <stephen.berman@gmx.net>
2536
2537 * frame.c (Ftool_bar_pixel_width): New function to expose tool
2538 bar's pixel width to Lisp (Bug#7048).
2539
4ddb20d6
SM
25402010-09-14 Juanma Barranquero <lekktu@gmail.com>
2541
2542 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
fb0cf781 2543
318a04c6
J
25442010-09-17 Jan Djärv <jan.h.d@swipnet.se>
2545
2546 * gtkutil.c (xg_pack_tool_bar): Call gtk_handle_box_set_handle_position
2547 with argument top/left if tool bar is vertical/horizontal (Bug#7051).
2548
78a21772
KH
25492010-09-17 Kenichi Handa <handa@m17n.org>
2550
2551 * ftfont.c (ftfont_check_otf): Fix previous change.
2552
fa3f6039
KH
25532010-09-14 Kenichi Handa <handa@m17n.org>
2554
2555 * ftfont.c (ftfont_check_otf): Fix the case of checking just
2556 existence of GSUB or GPOS.
2557
2b5491fa
JB
25582010-09-14 Juanma Barranquero <lekktu@gmail.com>
2559
2560 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
2561
c97c655f
LMI
25622010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2563
ef1b0ba7 2564 * xml.c (parse_buffer): Rename to parse_string(), since that's
c97c655f
LMI
2565 what it does.
2566 (parse_string): Return nil when the document can't be parsed.
2567
6664fc59 25682010-09-14 Jan Djärv <jan.h.d@swipnet.se>
5f61a25c
J
2569
2570 * xterm.c (get_current_vm_state): New function.
2571 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
2572 want_fullscreen so set_wm_state calls are few (Bug#7013).
2573 (x_handle_net_wm_state): Move code to get_current_vm_state and
2574 call that function.
2575
6664fc59 25762010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
65b3d997
A
2577
2578 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
2579
6664fc59 25802010-09-14 Kenichi Handa <handa@m17n.org>
a552b35a
KH
2581
2582 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
2583 we may use designation or locking-shift.
2584
6664fc59 25852010-09-14 Kenichi Handa <handa@m17n.org>
396475b7
KH
2586
2587 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
2588 sequence when the source is multibyte.
2589
1da70e99
AS
25902010-09-14 Andreas Schwab <schwab@linux-m68k.org>
2591
6664fc59
JB
2592 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
2593 Don't make first argument optional. Doc fix.
1da70e99 2594
26632d8d
LMI
25952010-09-14 Leo <sdl.web@gmail.com> (tiny change)
2596
2597 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
2598 parameters for the doc string.
2599
21fa8e37
LMI
26002010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
2601
2602 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
2603
5616cc54
SM
26042010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2605
2606 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
2607 (syms_of_fns): Don't defsubr Sy_or_n_p.
2608 * lisp.h: Don't declare Fy_or_n_p.
2609 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
2610
381408e2
LMI
26112010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
2612
2613 * xml.c (Fxml_parse_buffer): New function to parse XML files.
2614
26152010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
2616
2617 * xml.c: New file.
2618 (Fhtml_parse_buffer): New function to interface to the libxml2
2619 html parsing function.
2620
733946e7
JB
26212010-09-05 Juanma Barranquero <lekktu@gmail.com>
2622
2623 * biditype.h: Regenerate.
2624
7574650a
AS
26252010-09-04 Andreas Schwab <schwab@linux-m68k.org>
2626
2627 * nsimage.m (ns_load_image): Check argument types.
2628
2629 * image.c: Remove all uses of gcpro.
2630 (xpm_load): Check all lisp types.
2631 (pbm_load): Likewise.
2632 (png_load): Likewise.
2633 (jpeg_load): Likewise.
2634 (tiff_load): Likewise.
2635 (gif_load): Likewise.
2636 (imagemagick_load_image): Likewise.
2637 (imagemagick_load): Likewise.
2638 (svg_load): Likewise.
2639 (gs_load): Likewise.
2640
6e6b8e25
EZ
26412010-09-04 Eli Zaretskii <eliz@gnu.org>
2642
bba3e508
SM
2643 * w32uniscribe.c (uniscribe_shape): Update commentary.
2644 Don't try to reorder grapheme clusters, since LGSTRING should always
6e6b8e25
EZ
2645 hold them in the logical order.
2646 (uniscribe_encode_char, uniscribe_shape): Force ScriptShape to
2647 return glyph codes in the logical order.
2648
dbfe4532
AS
26492010-09-04 Andreas Schwab <schwab@linux-m68k.org>
2650
2651 * image.c (imagemagick_image_p): Replace bcopy by memcpy.
b7d187f8 2652 (imagemagick_load_image): Fix type mismatch.
5e5992c2 2653 (Fimagemagick_types): Likewise. Doc fix.
dbfe4532 2654
6d7cc563
JD
26552010-09-02 Jan Djärv <jan.h.d@swipnet.se>
2656
2657 * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
2658
2659 * xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
2660
2661 * xselect.c: Remove declaration of cut-buffer objects and functions.
2662 (symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
2663 (x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
2664 (Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
2665 (Fx_rotate_cut_buffers_internal): Remove.
2666 (syms_of_xselect): Remove defsubr of above.
2667 Remove intern of QCUT_BUFFERn.
2668
8f4e9110
SM
26692010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
2670
2671 * cmds.c (Vblink_paren_function): Remove.
2672 (internal_self_insert): Make it insert N chars at a time.
2673 Don't call blink-paren-function.
2674 (Fself_insert_command): Adjust accordingly.
2675 (syms_of_cmds): Don't declare blink-paren-function.
2676
d419e1d9
KH
26772010-08-31 Kenichi Handa <handa@m17n.org>
2678
2679 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
2680 characters.
2681
2682 * term.c (encode_terminal_code): Fix the previous change.
5616cc54
SM
2683 (produce_glyphs): Don't set it->char_to_display here.
2684 Don't handle unibyte-display-via-language-environment here.
d419e1d9
KH
2685 (produce_special_glyphs): Set temp_it.char_to_display before
2686 calling produce_glyphs.
2687
2688 * xdisp.c (get_next_display_element): Set it->char_to_display
2689 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
2690 characters.
2691 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
2692 calling PRODUCE_GLYPHS.
2693 (append_space_for_newline): Save and store it->char_to_display.
2694 Set it->char_to_display before calling PRODUCE_GLYPHS.
2695 (extend_face_to_end_of_line): Set it->char_to_display before
2696 calling PRODUCE_GLYPHS.
2697 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
2698 character to its byte value.
2699 (get_char_glyph_code): New function.
2700 (produce_stretch_glyph): Set it2.char_to_display too before
2701 calling x_produce_glyphs.
2702 (x_produce_glyphs): Simplify by using the same code for ASCII and
65b3d997
A
2703 non-ASCII characters. Don't set it->char_to_display here.
2704 Don't handle unibyte-display-via-language-environment here. For a
2b5491fa 2705 character of no glyph, use font->space_width instead of FONT_WIDTH.
d419e1d9 2706
b819f760
SM
27072010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
2708
2709 * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
2710
07fa68a7
CY
27112010-08-31 Chong Yidong <cyd@stupidchicken.com>
2712
2713 * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
2714
cd196f12
SM
27152010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2716
2717 * marker.c (Fcopy_marker): Make the first arg optional.
2718
49a752bb
KH
27192010-08-30 Kenichi Handa <handa@m17n.org>
2720
2721 * composite.c (composition_update_it): Fix computing of
2722 cmp_it->width.
2723
769ae9e1
KH
27242010-08-29 Kenichi Handa <handa@m17n.org>
2725
9e69cb05 2726 * term.c (encode_terminal_code): Encode byte chars to the
5616cc54 2727 corresponding bytes.
9e69cb05 2728
4520b858
J
27292010-08-29 Jan Djärv <jan.h.d@swipnet.se>
2730
2731 * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
2732
fe50eb41
KH
27332010-08-26 Kenichi Handa <handa@m17n.org>
2734
2735 * xdisp.c (compute_stop_pos): Pay attention to bidi scan direction
2736 on calling composition_compute_stop_pos.
2737
f6aa6ec6
KH
27382010-08-25 Kenichi Handa <handa@m17n.org>
2739
9dfdbc0a
KH
2740 * fontset.c (reorder_font_vector): Prefer a font-spec specifying
2741 :otf.
2742
f6aa6ec6
KH
2743 * composite.c (composition_compute_stop_pos): Don't break
2744 composition at PT.
2745 (composition_reseat_it): Likewise. Fix calculation of character
2746 position starting a composition.
2747 (Fcomposition_get_gstring): Don't limit the number of components
2748 for automatic composition.
2749
ff94e32c
KH
27502010-08-25 Kenichi Handa <handa@m17n.org>
2751
2752 * composite.c (composition_compute_stop_pos): In forward search,
2753 pay attention to the possibility that some character after ENDPOS
2754 will be composed with charactrs before ENDPOS.
2755
1c409d0b
CY
27562010-08-24 Chong Yidong <cyd@stupidchicken.com>
2757
2758 * keyboard.c (command_loop_1): Don't clobber primary selection
2759 during handle-switch-frame (Bug#6872).
2760
0c372655
MA
27612010-08-23 Michael Albinus <michael.albinus@gmx.de>
2762
2763 * dbusbind.c: Accept UNIX domain sockets as bus address.
2764 (Fdbus_close_bus): New function.
2765 (Vdbus_registered_buses): New variable.
2766 (xd_initialize): Implement string as bus address.
2767 (Fdbus_init_bus): Add bus to Vdbus_registered_buses).
2768 (Fdbus_get_unique_name, Fdbus_call_method)
2769 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
2770 (Fdbus_method_error_internal, Fdbus_send_signal)
2771 (Fdbus_register_signal, Fdbus_register_method): Remove bus type
2772 check. This is done in xd_initialize_bus. Adapt doc string, if
2773 necessary.
2774 (xd_pending_messages, xd_read_queued_messages): Loop over buses in
2775 Vdbus_registered_buses.
2776 (Vdbus_registered_objects_table): Create hash.
2777
7133b7ee
JL
27782010-08-22 Juri Linkov <juri@jurta.org>
2779
2780 * keyboard.c (Fexecute_extended_command): Move reading a command name
2781 with `completing-read' to a new Elisp function `read-extended-command'.
2782 Call it to read a command to `function' (bug#5364, bug#5214).
2783
198a7a97
CY
27842010-08-22 Chong Yidong <cyd@stupidchicken.com>
2785
2786 * emacs.c (main): Remove handling of --unibyte arg (Bug#6886).
2787
b0126eac 27882010-08-22 Andreas Schwab <schwab@linux-m68k.org>
b72e0717
AS
2789
2790 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
2791 instead of SAFE_ALLOCA.
2792
b0126eac 27932010-08-22 Chong Yidong <cyd@stupidchicken.com>
3a7a9129
CY
2794
2795 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
2796 (Bug#6214).
2797
b0126eac 27982010-08-22 Jan Djärv <jan.h.d@swipnet.se>
983b8302
J
2799
2800 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
2801
b0126eac
CY
28022010-08-22 Jan Djärv <jan.h.d@swipnet.se>
2803
2804 * doc.c (Fsnarf_documentation): Initialize skip_file before
2805 build-files test.
2806
692f3ddc 28072010-08-22 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
b0126eac 2808
692f3ddc
JB
2809 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
2810 New definitions.
b0126eac
CY
2811 (HAVE_TERMIO): Remove.
2812
5f2f0bc1
EZ
28132010-08-22 Eli Zaretskii <eliz@gnu.org>
2814
b613941b
EZ
2815 * deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.
2816
a583bbef
EZ
2817 * sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff
2818 for w32.
2819
2820 * s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H,
2821 it's done in nt/config.nt.
2822
2823 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.
2824
5f2f0bc1
EZ
2825 * unexcoff.c (report_error, make_hdr, write_segment)
2826 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
2827 Convert argument lists and prototypes to ANSI C.
2828 (make_hdr, write_segment): Remove unused variables.
2829 (unexec): Remove commented-out line. Initialize `new' to shut up
2830 compiler warnings.
2831
a7ebc409
DN
28322010-08-22 Dan Nicolaescu <dann@ics.uci.edu>
2833
2834 Simplify termio code.
2835 All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
2836 HAVE_TERMIO code is obsolete.
2837 Replace HAVE_TERMIOS conditionals with !DOS_NT.
2838 * systty.h: Do not define HAVE_TCATTR.
2839 Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
2840 Do not define EMACS_HAVE_TTY_PGRP. Only define
2841 EMACS_GET_TTY_PGRP for !DOS_NT.
2842 * sysdep.c: Include sysselect.h unconditionally. Do not include
bba3e508
SM
2843 sys/ioctl.h and termios.h, systty.h does it.
2844 Use HAVE_SYS_UTSNAME_H instead of USG as an include guard.
a7ebc409
DN
2845 (init_baud_rate): Remove HAVE_TERMIO code.
2846 (child_setup_tty): Remove HAVE_TERMIO code.
2847 (emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
2848 and HAVE_LTCHARS code. Use !DOS_NT instead of HAVE_TCATTR.
2849 (new_ltchars, new_tchars): Remove, unused.
2850 (init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
bba3e508
SM
2851 code. Remove special casing for __mips__, it was a no-op.
2852 Remove HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
a7ebc409
DN
2853 (init_sys_modes): Remove HPUX special case.
2854 * process.c: Include stdlib.h unconditionally. Do not include
2855 fcntl.h, systty.h does it. Remove conditional code for
2856 HAVE_SERIAL, it is always true.
2857 (process_send_signal): Remove HAVE_TERMIOS conditional, it's
2858 always true when SIGNALS_VIA_CHARACTERS is true.
2859 (Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
2860 !WINDOWSNT means HAVE_TERMIOS.
2861 (create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
2862 conditional, which is true for all HAVE_TERMIOS systems.
2863 * keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
2864 instead of HAVE_TERMIOS.
2865 * emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
2866 EMACS_HAVE_TTY_PGRP.
2867 * callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
2868 non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
2869 anyway.
2870
914f049b 28712010-08-21 Eli Zaretskii <eliz@gnu.org>
40629f17
EZ
2872
2873 * dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
2874 mirroring pixel positions.
2875
d931da8c
DN
28762010-08-20 Dan Nicolaescu <dann@ics.uci.edu>
2877
b5c76d0c
DN
2878 * alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
2879 write only.
2880 (init_alloc_once): Remove writes to malloc_sbrk_unused, and
2881 malloc_sbrk_used, nothing uses them.
2882
74815588
DN
2883 * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
2884 defined, unconditionally defined in lisp.h.
2885
f5817d1c
DN
2886 * term.c: Do not include <termios.h>, systty.h does it.
2887
d931da8c
DN
2888 * s/unixware.h (HAVE_TCATTR):
2889 * s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
2890 systty.h defines it when HAVE_TERMIOS is defined.
2891
ff2de6d2 28922010-08-20 Eli Zaretskii <eliz@gnu.org>
491a1546 2893
b43c883c 2894 * dispnew.c (buffer_posn_from_coords): Fix last change for text
00c53994 2895 terminals: add one-character offset for R2L lines.
b43c883c 2896
491a1546
EZ
2897 * emacs.c <emacs_version>: Add a comment regarding
2898 msdos/mainmake.v2's dependency on the syntax of this declaration.
2899
2396cbba
EZ
29002010-08-20 Eli Zaretskii <eliz@gnu.org>
2901
2902 * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
2903 position for R2L lines by mirroring the pixel position wrt the
2904 text are box. Improve commentary.
2905
7df6150a
AS
29062010-08-20 Andreas Schwab <schwab@linux-m68k.org>
2907
2908 * image.c (imagemagick_clear_image): Remove debugging output.
2909
a2e5caf7
SM
29102010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
2911
2912 * cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
2913 (Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
2914 (internal_self_insert): Run Qpost_self_insert_hook rather than handle
2915 self-insert-face.
2916 (syms_of_cmds): Initialize the new vars.
2917
20d60baf
JR
29182010-08-19 Jason Rumney <jasonr@gnu.org>
2919
cc477da7
JR
2920 * w32menu.c (set_frame_menubar): Remove call to undefined function.
2921
20d60baf
JR
2922 * w32fns.c (w32_wnd_proc): Don't check context before initializing.
2923
2c0ac867
J
29242010-08-19 Jan Djärv <jan.h.d@swipnet.se>
2925
2926 * nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
2927
93352106
EZ
29282010-08-18 Eli Zaretskii <eliz@gnu.org>
2929
2930 * xterm.c (x_draw_bar_cursor):
2931 * w32term.c (x_draw_bar_cursor): If the character under cursor is
2932 R2L, draw the bar cursor on its right rather than on its left.
2933
c785836d
SM
29342010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
2935
0193499f
SM
2936 * eval.c (Fdefmacro): Only obey one declaration.
2937
c785836d
SM
2938 * casefiddle.c (casify_region): Setup gl_state.
2939
9cb728a5
J
29402010-08-18 Jan Djärv <jan.h.d@swipnet.se>
2941
2942 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
2943
e1e18511
J
29442010-08-18 Jan Djärv <jan.h.d@swipnet.se>
2945
1d77b63e 2946 * gtkutil.c (update_frame_tool_bar): Literal strings are const char*.
e1e18511 2947
64cb6c78
J
29482010-08-18 David De La Harpe Golden <david@harpegolden.net>
2949
2950 * nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
2951 (symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
2952 QPRIMARY => NXPrimaryPboard.
2953 (ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
2954 NXPrimaryPboard => QPRIMARY.
2955 (nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
2956 NXSecondaryPboard = SecondarySelection.
2957 (syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).
2958
0c9b8993
GM
29592010-08-18 Joakim Verona <joakim@verona.se>
2960
2961 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
2962 defined:
2963 (imagemagick_image_p): New function to test for ImageMagic image.
2964 (imagemagick_load): New function to load ImageMagick image.
2965 (imagemagick_load_image): New function, helper for imagemagick_load.
2966 (imagemagick-types): New function.
2967 (Qimagemagick): New Lisp_object.
2968 (imagemagick-render-type): New variable, decides which renderer to use.
ccd80618 2969
c3554f68
SM
29702010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
2971
2972 * gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
2973 is a string.
2974
1ff2e434
J
29752010-08-17 Jan Djärv <jan.h.d@swipnet.se>
2976
2977 * nsfns.m (ns_frame_parm_handlers): Add a slot for the
2978 x_set_tool_bar_position handler.
2979
0cc56427
EZ
29802010-08-17 Eli Zaretskii <eliz@gnu.org>
2981
2982 * w32fns.c <w32_frame_parm_handlers>: Add a slot for the
2983 x_set_tool_bar_position handler, needed to support changes from
2984 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar. (Bug#6796)
2985
e45a249b
JD
29862010-08-16 Jan Djärv <jan.h.d@swipnet.se>
2987
921242c6
J
2988 * nsselect.m: include keyboard.h for QPRIMARY, remove its
2989 declaration (Bug#6863).
573d150b 2990 (syms_of_nsselect): Don't intern QPRIMARY.
921242c6 2991
e45a249b
JD
2992 * xselect.c: Remove declaration of QPRIMARY (Bug#6864).
2993
2994 * keyboard.h (QPRIMARY): Declare (Bug#6864).
2995
7c23dd44
CY
29962010-08-16 Chong Yidong <cyd@stupidchicken.com>
2997
2998 * keyboard.c (command_loop_1): Avoid setting selection twice,
2999 since it's done in deactivate-mark as well.
3000 (Vselect_active_regions): Change default to t. Replace `lazy'
3001 with non-default value `only', meaning only set PRIMARY for
3002 temporarily active regions.
3003
3004 * insdel.c (prepare_to_modify_buffer): Handle `only' value of
3005 select-active-regions.
3006
0005830c
J
30072010-08-15 Jan Djärv <jan.h.d@swipnet.se>
3008
3009 * keyboard.c (parse_tool_bar_item): Put in a bad label if :label
3010 isn't a string.
3011
603dfc72
AS
30122010-08-15 Andreas Schwab <schwab@linux-m68k.org>
3013
3014 * keyboard.c (parse_tool_bar_item): Avoid excessive use of strlen.
3015
c25ce9d0
J
30162010-08-15 Jan Djärv <jan.h.d@swipnet.se>
3017
c3554f68
SM
3018 * keyboard.c (parse_tool_bar_item): malloc buf.
3019 Set TOOL_BAR_ITEM_LABEL to empty string if not set to
3020 new_lbl (Bug#6855).
c25ce9d0 3021
5872c762
EZ
30222010-08-14 Eli Zaretskii <eliz@gnu.org>
3023
b236615c
EZ
3024 * xterm.c (x_draw_stretch_glyph_string):
3025 * w32term.c (x_draw_stretch_glyph_string): In R2L rows, display
3026 the cursor on the right edge of the stretch glyph.
3027
c3554f68
SM
3028 * xdisp.c (window_box_right_offset, window_box_right):
3029 Fix commentary.
b236615c 3030
5872c762
EZ
3031 * xdisp.c (Fcurrent_bidi_paragraph_direction): Fix paragraph
3032 direction when point is inside a run of whitespace characters.
3033
3034 * bidi.c (bidi_at_paragraph_end): Remove obsolete comment.
3035
e66f9a1b
JR
30362010-08-14 Jason Rumney <jasonr@gnu.org>
3037
3038 * keyboard.c (lispy_function_keys): Do not define VK_PACKET (bug#4836)
3039
79d6f59e
CY
30402010-08-14 Chong Yidong <cyd@stupidchicken.com>
3041
3042 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
3043
1c9b4129
JR
30442010-08-13 Jason Rumney <jasonr@gnu.org>
3045
3046 * w32menu.c (simple_dialog_show): Use unicode message box if available.
3047 (MessageBoxW_Proc): New function typedef.
3048 (unicode-message-box): New function pointer.
3049 (globals_of_w32menu): Import it from user32.dll. (Bug#5629)
3050
2b4e6277
J
30512010-08-13 Jan Djärv <jan.h.d@swipnet.se>
3052
3053 * frame.h (Qtool_bar_position): Declare.
3054
3055 * xfns.c (Fx_create_frame): Call x_default_parameter for
3056 Qtool_bar_position.
3057
94c97d85
EZ
30582010-08-13 Eli Zaretskii <eliz@gnu.org>
3059
8ee81892
EZ
3060 * unexcoff.c: Remove the parts used when "emacs" is not defined.
3061 (report_error, report_error_1): Ditto.
3062 (write_segment): Remove "#if 0" unused code.
3063 (make_hdr): Remove code that was "#ifndef NO_REMAP" before
3064 NO_REMAP was removed (in 2010-07-29T03:25:08Z!dann@ics.uci.edu).
3065 (start_of_text): Remove unused function (was used only if NO_REMAP
3066 was NOT defined).
3067
891ef8f7
EZ
3068 * msdos.c (IT_set_face): Fix format string to match argument
3069 types.
3070 (IT_write_glyphs, IT_note_mode_line_highlight)
3071 (IT_set_frame_parameters): Remove unused variables.
3072 (x_set_menu_bar_lines): Declare set_menu_bar_lines.
3073 (IT_set_terminal_modes): Disambiguate expression in if clause.
3074 (Fmsdos_remember_default_colors): Return Qnil.
3075 (IT_set_frame_parameters): Add parens to disambiguate boolean
3076 expression for logging the cursor type to termscript.
3077 (keyboard_layout_list, keypad_translate_map)
3078 (grey_key_translate_map): Add braces in inner initializers.
3079 (dos_rawgetc): Add parens in condition for mouse-3 button-press.
3080 (dos_rawgetc): Remove unused label.
3081 (XMenuActivate): Add braces to remove ambiguous `else'.
3082 (dos_ttraw): Always return a value.
3083 (spawnve): Declare.
3084 (run_msdos_command): Cast 3rd arg of spawnve to "char **".
3085
3086 * dosfns.h (x_set_title): Declare.
3087
3088 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
3089 Remove unused variables.
3090
3091 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused
3092 variables.
3093 (init_dosfns): Declare get_lim_data.
3094 (system_process_attributes): Declare Fget_internal_run_time.
3095
38e41e0e
EZ
3096 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument
3097 list to be consistent with menu.h.
3098
94c97d85
EZ
3099 * w32menu.c (add_menu_item, name_is_separator): Shut up compiler
3100 warnings due to mixing of "char *" and "const char *".
3101
c5683ceb
SM
31022010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3103
3104 Introduce a new comment style "c" flag.
3105 * syntax.c (SYNTAX_FLAGS_COMMENT_STYLEB)
3106 (SYNTAX_FLAGS_COMMENT_STYLEC): New macros.
3107 (SYNTAX_FLAGS_COMMENT_STYLE): Use them, add an argument.
3108 (syntax_prefix_flag_p): New function.
3109 (Fstring_to_syntax): Understand new "c" flag.
3110 (Finternal_describe_syntax_value): Recognize new flag; use the
3111 SYNTAX_FLAGS_* macros.
3112 (scan_sexps_forward, Fparse_partial_sexp): Change representation of
3113 comment style to accomodate the new styles.
3114 (back_comment, forw_comment, Fforward_comment, scan_lists)
3115 (scan_sexps_forward): Update code to obey the new comment style flag.
3116
3117 * syntax.h: Move SYNTAX_FLAGS_FOO() macros to syntax.c.
3118
3119 * casefiddle.c (casify_region): Use the new syntax_prefix_flag_p.
3120
7aee76f4
J
31212010-08-11 Jan Djärv <jan.h.d@swipnet.se>
3122
3a46642b
J
3123 * xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
3124 first.
94dff98f 3125 (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
3a46642b
J
3126
3127 * gtkutil.h (xg_check_special_colors): Declare.
3128
3129 * gtkutil.c (xg_check_special_colors, style_changed_cb): New functions.
3130 (xg_create_frame_widgets): Connect theme name changes to
3131 style_changed_cb.
3132
42ca4633
J
3133 * xterm.c (emacs_class): New char[] for EMACS_CLASS.
3134 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
3135 (x_term_init): Use char[] display_opt and name_opt instead of
93acd23d 3136 string literal. file is const char*.
42ca4633
J
3137
3138 * xsmfns.c (NOSPLASH_OPT): Change to char[].
3139 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
3140 props. Free them at the end.
3141
3142 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
3143
c5683ceb
SM
3144 * xrdb.c (get_system_app): Make path const and use char *p for
3145 non-const char.
42ca4633
J
3146
3147 * xmenu.c (Fx_popup_dialog): error_name is const char*.
93acd23d 3148 (xmenu_show): error parameter is const char **. pane_string is const
42ca4633
J
3149 char *.
3150 (button_names): Is const char *.
3151 (xdialog_show): error_name and pane_string is const.
3152
3153 * process.h (synch_process_death): Is const char*.
3154
3155 * w32menu.c (w32_menu_show):
3156 * nsmenu.m (ns_menu_show): error parameter is const char **.
3157
3158 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
3159 is const char **.
3160
3161 * menu.c (Fx_popup_menu): error_name is const.
3162
3163 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
3164 with unsigned char and XtPointer with void *.
3165
3166 * gtkutil.h: Replace widget_value with struct _widget_value.
3167 (enum button_type, struct _widget_value): Remove and use the one from
3168 keyboard.h.
3169
3170 * gtkutil.c (get_utf8_string): Always return an allocated string.
3171 Parameter is const.
3172 (create_dialog, xg_create_one_menuitem, create_menus)
3173 (xg_item_label_same_p, xg_update_menu_item): Free result from
3174 get_utf8_string.
3175 (xg_separator_p, xg_item_label_same_p): label is const.
3176
3177 * font.h (font_open_by_name): Make name const.
3178
3179 * font.c (font_open_by_name): Make name const.
3180
3181 * floatfns.c (matherr): Use a const char* variable for x->name.
3182
3183 * emacs.c (main): Pass char[] to putenv instead of literal.
3184
3185 * callproc.c (synch_process_death): Make const.
3186 (Fcall_process): Make signame const.
3187
9c5bd55a
J
3188 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle)
3189 (addDisplayItemWithImage): Use const char*.
3190
3191 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle)
3192 (addDisplayItemWithImage, update_frame_tool_bar): Use const char*.
3193
3194 * nsfont.m (ns_descriptor_to_entity): Use const char*.
3195
3196 * keyboard.h (_widget_value): name, value and key are const char*.
3197
7aee76f4
J
3198 * unexmacosx.c (unexec_error): Use const char *.
3199
09d93395
DN
32002010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
3201
3202 * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
c5683ceb 3203 (font_parse_name, font_open_by_name):
09d93395 3204 * font.c (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
c5683ceb 3205 (font_parse_name, font_open_by_name): Remove const.
09d93395 3206
671d409f
AS
32072010-08-09 Andreas Schwab <schwab@linux-m68k.org>
3208
3209 Use autoconf determined WORDS_BIGENDIAN instead of hardcoded
3210 definition.
3211
3212 * m/alpha.h: Don't define/undef WORDS_BIG_ENDIAN.
3213 * m/amdx86-64.h: Likewise.
3214 * m/arm.h: Likewise.
3215 * m/hp800.h: Likewise.
3216 * m/ia64.h: Likewise.
3217 * m/ibmrs6000.h: Likewise.
3218 * m/ibms390.h: Likewise.
3219 * m/intel386.h: Likewise.
3220 * m/iris4d.h: Likewise.
3221 * m/m68k.h: Likewise.
3222 * m/macppc.h: Likewise.
3223 * m/mips.h: Likewise.
3224 * m/sh3.h: Likewise.
3225 * m/sparc.h: Likewise.
3226 * m/template.h: Likewise.
3227 * m/vax.h: Likewise.
3228 * m/xtensa.h: Likewise.
3229 * fringe.c (init_fringe_bitmap): Test WORDS_BIGENDIAN instead of
3230 WORDS_BIG_ENDIAN.
3231 * lisp.h: Likewise.
3232 * md5.c: Likewise.
3233 * sound.c (le2hl, le2hs, be2hl, be2hs): Likewise.
3234
8ea90aa3
DN
32352010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
3236
3237 Use const char* instead of char*.
3238 Reduce the number of warnings with -Wwrite-strings.
3239 * xrdb.c (get_environ_db, get_system_name):
3240 * unexelf.c (find_section):
3241 * term.c (string_cost, string_cost_one_line, per_line_cost)
3242 (get_named_tty, init_tty):
3243 * sysdep.c (sys_subshell):
3244 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
3245 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
3246 * search.c (Freplace_match):
3247 * process.c (Fmake_network_process, send_process, init_process):
3248 * lread.c (Fload, init_lread):
3249 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
3250 * keyboard.c (parse_tool_bar_item, struct event_head):
3251 * gtkutil.h (xg_get_font_name):
3252 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
3253 (make_widget_for_menu_item, make_menu_item, create_menus)
3254 (xg_make_tool_item):
3255 * font.c (parse_matrix, font_parse_name):
3256 * floatfns.c (rounding_driver, float_error_fn_name):
3257 * filelock.c (get_boot_time_1, lock_file_1):
3258 * fileio.c (barf_or_query_if_file_exists, check_writable):
3259 * editfns.c (get_system_name, get_operating_system_release)
3260 (Fencode_time, Fset_time_zone_rule):
3261 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
3262 * buffer.c (defvar_per_buffer): Use const.
3263
7815fe19 32642010-08-08 Kenichi Handa <handa@m17n.org>
7a84eee5 3265
692f3ddc 3266 * charset.c: Include <stdlib.h>.
7a84eee5
KH
3267 (struct charset_sort_data): New struct.
3268 (charset_compare): New function.
692f3ddc 3269 (Fsort_charsets): New function.
7a84eee5
KH
3270 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
3271
3272 * coding.c (decode_coding_iso_2022): Fix checking of dimension
3273 number in CTEXT extended segment.
3274
7815fe19 32752010-08-08 Juanma Barranquero <lekktu@gmail.com>
f5f6c0e0
JB
3276
3277 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
3278 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
3279
7815fe19 32802010-08-08 Juanma Barranquero <lekktu@gmail.com>
b756c005
JB
3281
3282 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
3283 (Fhash_table_size): Fix typos in docstrings.
3284 (Fmake_hash_table): Doc fix.
3285
7815fe19 32862010-08-08 Juanma Barranquero <lekktu@gmail.com>
b4f588fa
JB
3287
3288 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
3289 Doc fix (bug#5625).
3290
7815fe19 32912010-08-08 Ken Brown <kbrown@cornell.edu>
9f8c08a7
KB
3292
3293 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
3294 the MSDOS definition.
3295
1b6d8cf0
DN
32962010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
3297
675e2c69
DN
3298 Use const char* instead of char*.
3299 * xterm.c (x_create_toolkit_scroll_bar):
3300 * xfont.c (xfont_list_pattern):
3301 * xfns.c (x_default_scroll_bar_color_parameter)
3302 (xic_create_fontsetname, x_default_font_parameter)
3303 (x_screen_planes):
3304 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
3305 (store_mode_line_string, decode_mode_spec, display_string):
3306 * menu.c (digest_single_submenu):
3307 * keymap.h (initial_define_key, initial_define_lispy_key):
3308 * keymap.c (initial_define_key, initial_define_lispy_key):
3309 * image.c (image_error, image_keyword):
3310 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
3311 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
3312 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
3313 (ftfont_list, ftfont_match):
3314 * frame.c (frame_parm_table):
3315 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
3316 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
3317 (font_add_log, font_deferred_log):
3318 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
3319 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
3320 (font_add_log, font_deferred_log):
3321 * emacs.c (argmatch):
3322 * dispextern.h (struct it):
3323 * coding.c (ENCODE_DESIGNATION):
3324 * charset.c (define_charset_internal): Use const.
3325
25717ca1
DN
3326 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
3327
c5683ceb
SM
3328 * xrdb.c: Remove include guard.
3329 Remove DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
1b6d8cf0
DN
3330 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
3331 realloc->xrealloc instead of using #defines.
3332
efb41e21
EZ
33332010-08-08 Eli Zaretskii <eliz@gnu.org>
3334
cd21226d 3335 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
c5683ceb
SM
3336 * editfns.c (Fline_beginning_position, Fline_end_position):
3337 State in the doc strings that start and end of line are in the
3338 logical order.
cd21226d 3339
efb41e21
EZ
3340 * xdisp.c (display_line): Move the handling of overlay arrow after
3341 the call to find_row_edges. (Bug#6699)
3342
746812d9
CY
33432010-08-07 Chong Yidong <cyd@stupidchicken.com>
3344
3345 * keyboard.c (command_loop_1):
3346 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
3347
9852377f
CY
33482010-08-07 Chong Yidong <cyd@stupidchicken.com>
3349
3350 * insdel.c (prepare_to_modify_buffer): Save active region text to
3351 Vsaved_region_selection.
3352
3353 * xselect.c (QPRIMARY): Move to keyboard.c.
3354
3355 * keyboard.c (Vselect_active_regions): Move from simple.el.
8d9e03e4
JB
3356 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
3357 (command_loop_1): Set window selection prior to deactivating the mark.
9852377f 3358
0e9c8657
JB
33592010-08-07 Juanma Barranquero <lekktu@gmail.com>
3360
3361 * alloc.c (lisp_malloc):
3362 * buffer.c (set_buffer_internal, set_buffer_internal_1):
3363 * charset.h (emacs_mule_charset):
3364 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
3365 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
3366 (bitch_at_user):
3367 * lisp.h (Fcheck_coding_system, Fget_text_property)
3368 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
3369 Remove duplicate declarations.
3370
648801d1
DN
33712010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
3372
32bc6709
DN
3373 * process.c: Simplify include logic.
3374
3ef1d108
DN
3375 * keyboard.h (quit_char): Add declaration.
3376 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
8d9e03e4
JB
3377 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
3378 Add declarations.
3ef1d108
DN
3379 * sysdep.c:
3380 * w32.c: Remove the above declarations.
3381
97ec208f
DN
3382 Remove extern declarations in .c files, .h files have them.
3383 * xterm.c:
3384 * xdisp.c:
97ec208f
DN
3385 * msdos.c:
3386 * image.c:
3387 * gtkutil.c:
3388 * fileio.c:
3389 * eval.c: Remove declarations.
3390
94eed851
DN
3391 * frame.c (frame_params): Make const.
3392
36e053eb
DN
3393 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
3394
0e843971
DN
3395 * emacs.c (emacs_copyright, emacs_version): Make static.
3396 (Vinitial_window_system, Vauto_save_list_file_name)
3397 (Vinhibit_redisplay): Remove declarations.
3398 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
3399 for AIX.
3400
648801d1
DN
3401 Use const for some arrays and functions.
3402 * xterm.h (xg_set_icon_from_xpm_data):
3403 * xfns.c (xg_set_icon_from_xpm_data):
3404 * term.c (fkeys):
3405 * keyboard.c (lispy_accent_keys, lispy_function_keys)
3406 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
3407 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
3408 (frame.c frame_parms):
3409 * emacs-icon.h (gnu_xpm_bits):
3410 * callint.c (callint_argfuns): Use const.
3411
8646d999
J
34122010-08-06 Jan Djärv <jan.h.d@swipnet.se>
3413
3414 * sysdep.c: Move include term.h last of includes (Bug#6812).
3415
cb4545ad
EZ
34162010-08-06 Eli Zaretskii <eliz@gnu.org>
3417
3418 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
3419
3420 * msdos.c (IT_display_cursor): Log cursor position on termscript.
3421
3422 * .gdbinit (pgx): Display the avoid_cursor_p flag.
3423
da7e2be6
JB
34242010-08-06 Juanma Barranquero <lekktu@gmail.com>
3425
3426 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
3427
3d608a86
J
34282010-08-06 Jan Djärv <jan.h.d@swipnet.se>
3429
7908fb60
J
3430 * xterm.h (x_get_focus_frame): Declare.
3431
3432 * keyboard.h (poll_for_input_1): Unconditionally declare.
3433
4094bf36
J
3434 * nsterm.h (x_set_menu_bar_lines): Declare.
3435
3436 * window.c: Don't include menu.h, it depends on lots of other .h-files.
3437
3d608a86
J
3438 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
3439
3440 * window.c: Include menu.h.
3441
3442 * unexmacosx.c (print_region_list, print_regions)
3443 (build_region_list, find_emacs_zone_regions)
3444 (unexec_regions_merge, read_load_commands, dump_it)
3445 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
3446
3447 * term.c: Check HAVE_SYS_IOCTL_H.
3448
686b968e 3449 * sysdep.c: Check HAVE_TERM_H.
3d608a86 3450
686b968e 3451 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
3d608a86
J
3452
3453 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
3454 (ns_ring_bell, ns_defined_color, hide_hourglass)
3455 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
3456 Convert to ANSI C prototypes.
3457 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
3458 before code.
3459
3460 * nsterm.h : Include sysselect.h.
3461 (x_sync, x_get_focus_frame, x_set_mouse_position)
3462 (x_set_mouse_pixel_position, x_make_frame_visible)
3463 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
3464 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
3465 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
3466 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
686b968e 3467 Declare.
3d608a86
J
3468
3469 * nsmenu.m (popup_activated, name_is_separator)
3470 (syms_of_nsmenu): Convert to ANSI C prototypes.
3471 (runMenuAt): Prototypes and move declarations before code.
3472
3473 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
3474
3475 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
3476 prototypes.
3477
3478 * nsfns.m (have_menus_p, ns_display_info_for_name)
3479 (x_set_cursor_type, ns_appkit_version_str)
3480 (ns_appkit_version_int, ns_do_applescript)
3481 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
3482 (syms_of_nsfns): Convert to ANSI C prototypes.
3483
3484 * menu.h (x_set_menu_bar_line): Declare.
3485 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
3486
3487 * lisp.h (fmod_float): Declare.
3488
3489 * image.c (xpm_scan, xpm_make_color_table_v)
3490 (xpm_put_color_table_v, xpm_get_color_table_v)
3491 (xpm_make_color_table_h, xpm_put_color_table_h)
3492 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
3493 (xpm_load): Convert to ANSI C prototypes.
3494
3495 * emacs.c: Include nsterm.h if HAVE_NS.
3496
3497 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
3498
fce70521
DN
34992010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
3500
3501 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
3502 subprocesses, only MSDOS does not define HAVE_SOCKETS.
3503 (socket_options): Use const char* for name.
3504
a11889ab
JB
35052010-08-06 Juanma Barranquero <lekktu@gmail.com>
3506
3507 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
3508
3509 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
3510 Don't declare xmalloc_widget_value and digest_single_submenu.
3511
3512 * w32font.c (Qlatin): Remove declaration.
3513
3514 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
3515
c95b508f 3516 * dired.c (compile_pattern): Restore declaration.
a11889ab 3517
6254cdda
DN
35182010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
3519
04bab72c
DN
3520 Remove extern declarations in .c files, .h files have them.
3521 * data.c:
3522 * dired.c:
3523 * editfns.c:
3524 * filelock.c:
3525 * fns.c:
3526 * font.c:
3527 * fontset.c:
3528 * frame.c:
3529 * fringe.c:
3530 * ftfont.c:
3531 * gtkutil.c:
3532 * indent.c:
3533 * keyboard.c:
3534 * keymap.c:
3535 * lread.c:
3536 * menu.c:
3537 * print.c:
3538 * search.c:
3539 * sound.c:
3540 * window.c:
3541 * xdisp.c:
3542 * xfaces.c:
3543 * xfns.c:
3544 * xfont.c:
3545 * xftfont.c:
3546 * xmenu.c:
3547 * xterm.c: Remove declarations.
3548
dff94ed5
DN
3549 Cleanup syssignal.h.
3550 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
3551 (main_thread): Move down to remove #ifdef.
3552 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
3553 Remove conditional definition following unconditional ones.
3554
99f3388e
DN
3555 * lisp.h: Remove HAVE_SHM code, unused.
3556 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
3557 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
3558 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
3559 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
3560 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
3561 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
3562 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
3563 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
3564 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
3565 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
3566 (Qwindow_scroll_functions, Vafter_load_alist)
3567 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
3568 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
3569 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
3570 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
3571 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
3572 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
3573 (initial_argv, last_nonmenu_event, load_in_progress)
3574 (noninteractive_need_newline, scroll_margin): Add declarations.
3575
bba3e508
SM
3576 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
3577 Remove declarations, menu.h has them.
99f3388e
DN
3578 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
3579 (Vinput_method_function, Qinput_method_function)
3580 (Qevent_symbol_element_mask, last_event_timestamp):
3581 * dispextern.h (Voverflow_newline_into_fringe):
3582 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
3583 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
3584 (syms_of_w32font, syms_of_nsfont):
3585 * fontset.h (find_font_encoding, Qlatin):
3586 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
3587 (Vtool_bar_mode, set_frame_menubar):
3588 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
3589 * xterm.h (Qx_gtk_map_stock):
3590 * keymap.h (meta_prefix_char): Add declarations.
3591
9f5dd6f2
DN
3592 * term.c: Remove dead code.
3593
6254cdda
DN
3594 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
3595 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
3596 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
3597 which is what was there before BSD_PGRPS was removed.
3598
29cf3e20
EZ
35992010-08-05 Eli Zaretskii <eliz@gnu.org>
3600
3601 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
3602
3603 * unexcoff.c: Renamed from unexec.c.
3604
aaa0a19a
SM
36052010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3606
3607 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
3608
8d1d9587
JB
36092010-08-03 Johan Bockgård <bojohan@gnu.org>
3610
3611 * data.c (Flocal_variable_p): Handle variable aliases correctly.
e0d62a9b 3612 (Bug#6744)
8d1d9587 3613
9a747ba6
JD
36142010-08-02 Jan Djärv <jan.h.d@swipnet.se>
3615
4d464ae4
JD
3616 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
3617 to TRUE if depth of screen is < 16.
3618
ac01763e
JD
3619 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
3620 USE_GTK_TOOLTIP.
e0d62a9b
JB
3621 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
3622 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
4d464ae4 3623 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
ac01763e
JD
3624 USE_GTK_TOOLTIP.
3625 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
3626
3627 * xterm.h (USE_GTK_TOOLTIP): New define.
3628 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
3629
9a747ba6
JD
3630 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
3631 to Control-D (Bug#6771).
3632
7b0815ba
JB
36332010-08-02 Juanma Barranquero <lekktu@gmail.com>
3634
3635 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
3636 Wording by Drew Adams <drew.adams@oracle.com>.
3637
aa1859f5
J
36382010-08-01 Jan Djärv <jan.h.d@swipnet.se>
3639
3640 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
3641 ttip_lbl.
3642
3643 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
3644 calling gtk_widget_queue_draw.
3645 (x_free_frame_resources): Call xg_free_frame_widgets.
3646
3647 * xfns.c (x_gtk_use_system_tooltips): New variable.
3648 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
3649 new gtkutil tooltip functions to show the tooltip.
3650 (Fx_hide_tip): Call xg_hide_tooltip.
3651 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
3652
3653 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
3654 (xg_show_tooltip, xg_hide_tooltip): Declare.
3655
3656 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
e0d62a9b
JB
3657 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
3658 New functions.
aa1859f5
J
3659 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
3660 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
3661 Remove code that is commented out.
3662
76417ef4
SM
36632010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3664
3665 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
3666
16041401
CY
36672010-07-31 Chong Yidong <cyd@stupidchicken.com>
3668
3669 * xselect.c (x_own_selection): Use list4.
3670
2c09a58f
DN
36712010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
3672
3673 * buffer.c (Qwindow): Do not define, already defined in data.c.
3674 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
3675
59df9fdd 36762010-07-29 Chad Brown <yandros@mit.edu>
1c97e857 3677
59df9fdd
JB
3678 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
3679 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
3680 * config.in: Undef HAVE_DIRENT_H.
1c97e857 3681 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
59df9fdd 3682 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
1c97e857 3683
1b231651
DN
36842010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
3685
3686 Rename s/usg5-4.h -> s/usg5-4-common.h.
3687 * s/usg5-4.h: Rename file to ...
3688 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
3689 * s/unixware.h:
3690 * s/sol2-6.h:
3691 * s/irix6-5.h: Update includes accordingly.
3692
bfeabdc3
JD
36932010-07-29 Jan Djärv <jan.h.d@swipnet.se>
3694
2ebf1083
J
3695 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
3696
bfeabdc3 3697 * xterm.h (struct x_output): Add toolbar_top_height,
e0d62a9b
JB
3698 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
3699 Remove toolbar_height.
3700 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
bfeabdc3
JD
3701 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
3702 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
3703 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
3704
3705 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
3706
3707 * xfns.c (x_set_tool_bar_position): New function.
3708 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
3709 (x_frame_parm_handlers): Add x_set_tool_bar_position.
e0d62a9b 3710 (syms_of_xfns): If USE_GTK, provide move-toolbar.
bfeabdc3
JD
3711
3712 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
3713 and FRAME_TOOLBAR_LEFT_WIDTH.
3714
3715 * gtkutil.h (xg_change_toolbar_position): Declare.
3716
3717 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
3718 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
3719 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
3720 (xg_create_frame_widgets): Create a hobox for placing widgets
3721 vertically. Use gtk_box_pack_start.
ef1b0ba7 3722 (xg_height_or_width_changed): Rename from xg_height_changed.
bfeabdc3
JD
3723 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
3724 (xg_update_frame_menubar, free_frame_menubar): Change to
3725 xg_height_or_width_changed.
3726 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
3727 size correctly. Remove hardcoded 4, instead use handlebox size -
3728 toolbar size.
3729 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
e0d62a9b 3730 size correctly. Use handlebox size + toolbar size as additional size.
bfeabdc3
JD
3731 (xg_pack_tool_bar): POS is a new parameter.
3732 Set orientation of tool bar based on pos.
3733 Only make handlebox_widget if NULL.
3734 Check if tool bar goes to vbox or hbox depending on pos.
3735 (xg_update_tool_bar_sizes): New function.
686b968e 3736 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
bfeabdc3
JD
3737 height, call xg_update_tool_bar_sizes instead.
3738 (free_frame_tool_bar): Remove from hbox or vbox depending on
3739 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
3740 (xg_change_toolbar_position): New function.
3741
3742 * frame.h (struct frame): Add tool_bar_position.
3743 (Qbottom): Declare.
3744
3745 * frame.c (Qtool_bar_position): New variable.
3746 (make_frame): Set tool_bar_position to Qtop.
3747 (frame_parms): Add tool-bar-position.
3748 (x_report_frame_params): Store tool_bar_position.
3749 (x_set_fringe_width): Reset wm size hint after fringe changes.
3750
26469a38
DN
37512010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
3752
3753 Make lisp_time_argument declaration work on all systems.
3754 * lisp.h (lisp_time_argument): Move declaration ...
3755 * systime.h (lisp_time_argument): ... here
3756 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
3757
8848b728
JD
37582010-07-29 Jan Djärv <jan.h.d@swipnet.se>
3759
3760 * vm-limit.c (POINTER): Add typedef for it.
3761 (start_of_data): Change return type from POINTER to char *.
3762
3763 * frame.h (Qtty_color_mode): Move declaration out of ifdef
3764 HAVE_WINDOW_SYSTEM.
3765
76fd1ee9
DN
37662010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
3767
0441987e
DN
3768 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
3769 Remove reference to __osf__, unused.
3770
56a000c7
DN
3771 * mem-limits.h: Remove duplicated includes.
3772 (NULL): Remove definition, unused.
3773 (POINTER): Remove definition.
3774 (start_of_data): Use char* in prototype, as the function
3775 definition does.
3776
e6cba650
DN
3777 Remove extern declarations from .c files, and them to .h files.
3778 * keyboard.h (Qhelp_echo, waiting_for_input)
3779 (input_available_clear_time, ignore_mouse_drag_p)
3780 (Vdouble_click_time, real_this_command, Vthis_original_command):
3781 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
3782 (Voverriding_local_map_menu_flag):
3783 * lisp.h (Qinteractive_form, use_file_dialog)
3784 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
3785 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
3786 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
3787 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
3788 (Qfunction, debug_on_next_call, Qfield)
3789 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
3790 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
3791 (Qfile_directory_p, Qinsert_file_contents)
3792 (Qcompletion_ignore_case, Qcompletion_ignore_case)
3793 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
3794 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
3795 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
3796 (Qminibuffer_prompt)
3797 (Vtemporary_file_directory,char_ins_del_vector, Qface):
3798 * xterm.h (gray_bitmap_width, gray_bitmap_height)
3799 (gray_bitmap_bits, xic_create_fontsetname):
3800 * coding.h (Vtranslation_table_for_input): Add extern declarations.
3801
3802 * xsmfns.c (Vuser_login_name):
3803 * xrdb.c (Vdouble_click_time):
3804 * xfaces.c (xic_create_fontsetname):
3805 * w32select.c (waiting_for_input):
3806 * print.c (minibuffer_auto_raise):
3807 * msdos.c (Qhelp_echo):
3808 * macros.c (real_this_command):
3809 * keymap.c (Voverriding_local_map):
3810 * xterm.c (poll_for_input_1, gray_bitmap_width)
3811 (gray_bitmap_height, gray_bitmap_bits;
3812 * xmenu.c ( Voverriding_local_map)
3813 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
3814 (use_file_dialog, Xt_app_con):
3815 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
3816 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
3817 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
3818 (Qtool_bar_lines, ignore_mouse_drag_p):
3819 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
3820 (Qrear_nonsticky, nconc2):
3821 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
3822 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
3823 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
3824 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
3825 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
3826 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
3827 (gc_in_progress):
3828 * doc.c (Voverriding_local_map, Qremap):
3829 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
3830 (Vcompletion_regexp_list):
3831 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
3832 (Qcompletion_ignore_case):
3833 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
3834 (Vhistory_length, Vthis_original_command, real_this_command)
3835 (Qface, Qminibuffer_prompt, history_delete_duplicates):
3836 * image.c (Qrisky_local_variable):
3837 * fontset.c (QCname):
3838 * fns.c (minibuffer_auto_raise, QCname):
3839 * dispnew.c (char_ins_del_cost):
3840 * composite.c (font_fill_lglyph_metrics):
3841 * cmds.c (Qface, Vtranslation_table_for_input):
3842 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
3843 * ccl.c (charset_unicode):
3844 * callproc.c (Vtemporary_file_directory):
3845 * buffer.c (emacs_strerror): Remove extern declarations.
3846
3847 * data.c (Qwindow): Make non-static, used from other files too.
3848 * frame.c (validate_x_resource_name): Remove shadow definition for i.
3849
76fd1ee9
DN
3850 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
3851 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
3852 * s/usg5-4.h (COFF):
3853 * s/template.h:
3854 * s/msdos.h (COFF, NO_REMAP):
3855 * s/ms-w32.h (NO_REMAP):
3856 * s/hpux10-20.h (NO_REMAP):
3857 * m/sparc.h (SEGMENT_MASK):
3858 * m/m68k.h (NO_REMAP):
3859 * m/intel386.h (SEGMENT_MASK):
3860 * m/arm.h (NO_REMAP):
3861 * m/alpha.h (COFF):
3862 * m/template.h: Remove references to unused defines.
3863
8a52f00a
JD
38642010-07-28 Jan Djärv <jan.h.d@swipnet.se>
3865
3866 * xsettings.c (Ftool_bar_get_system_style): Also check for
3867 Qtext_image_horiz.
3868
3869 * xdisp.c (Qtext_image_horiz): Define.
3870 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
087b38a0 3871 to documentation of tool-bar-style.
8a52f00a
JD
3872
3873 * lisp.h (Qtext_image_horiz): Declare.
3874
3875 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
3876 style text_image_horiz.
3877
89dc303e
DN
38782010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
3879
60799703
DN
3880 * emacs.c (Fkill_emacs): Remove return statement.
3881
37254dc1
DN
3882 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
3883 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
bba3e508
SM
3884 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys):
3885 Remove local extern declarations.
37254dc1 3886
71c7345a
DN
3887 * xmenu.c: Do not included lwlib.h, not needed.
3888
6ba577cb
DN
3889 * m/iris4d.h (XUINT, XSET): Remove, not needed.
3890
fdb183d6
DN
3891 * process.c: Move definitions earlier to minimize #ifdefs.
3892
3893 * xterm.h (x_get_customization_string, x_load_resources)
3894 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
3895 (x_check_errors, x_property_data_to_lisp, defined_color)
3896 (xic_set_xfontset, x_defined_color): Use const.
3897
3898 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
3899 (x_text_icon, x_check_errors, x_connection_closed): Use const.
3900
3901 * xselect.c (selection_data_to_lisp_data)
3902 (x_property_data_to_lisp):
3903 * xrdb.c (x_get_string_resource, file_p)
3904 (x_get_customization_string, magic_file_p, search_magic_path)
3905 (get_system_app, get_user_app, x_load_resources, x_get_resource)
3906 (x_get_string_resource): Use const.
3907
3908 * xfns.c: Include xlwmenu.h when USE_LUCID.
3909 (x_defined_color, xic_set_xfontset): Use const.
3910 (Fx_hide_tip): Remove local extern declaration.
3911
3912 * xfaces.c (Qmouse_face): Remove declaration.
3913 (face_color_gray_p, tty_defined_color, defined_color)
686b968e 3914 (face_color_gray_p, face_color_supported_p): Add const.
fdb183d6
DN
3915
3916 * xdisp.c (do_mouse_tracking): Remove declaration.
3917 (add_to_log): Use const.
3918
3919 * minibuf.c (Qmouse_face): Remove declaration.
3920
3921 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
3922
3923 * keyboard.h (do_mouse_tracking): Add declaration.
3924
3925 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
3926 (QCdata, QCtype, Qcenter): Remove declarations.
3927
3928 * frame.c (x_get_resource_string, x_get_string_resource)
3929 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
3930 (x_default_parameter): Use const.
3931
3932 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
3933 (QCheight, QCsize, QCname): Remove declarations.
3934
3935 * emacs.c (main): Remove local extern declaration.
3936
3937 * editfns.c (region_limit, syms_of_editfns): Remove local extern
3938 declarations.
3939
3940 * dispnew.c: Remove duplicate #include <unistd.h>.
3941 (update_window, update_frame_1, init_display): Remove local extern
3942 declarations.
3943
3944 * dispextern.h (add_to_log): Remove declaration.
3945 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
3946 (x_frame_get_and_record_arg, x_default_parameter): Add const.
3947
3948 * dired.c (scmp): Add const.
3949 (directory_files_internal): Remove local extern declaration.
3950
3951 * data.c (Finteractive_form): Use const.
3952
3953 * composite.c (syms_of_composite): Remove local extern declarations.
3954
3955 * charset.c (add_to_log): Remove declaration.
3956
3957 * character.c (strwidth, parse_str_to_multibyte): Add const.
3958
3959 * character.h (strwidth, parse_str_to_multibyte): Likewise.
3960
3961 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
3962
89dc303e 3963 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
fdb183d6
DN
3964 (Lisp_Subr): Make doc and intspec constant.
3965 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
3966 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
3967 (QCheight, QCsize, QCname, QCwidth, QCforeground)
3968 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
3969 (display_arg): Add declarations.
89dc303e 3970
0ed082fe 39712010-07-27 Christoph Scholtes <cschol2112@gmail.com>
a2a0d36b
CS
3972
3973 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
3974
0ed082fe
JB
3975 * window.c (Fwindow_height): Doc fix (bug#6518).
3976
39772010-07-27 Juanma Barranquero <lekktu@gmail.com>
3978
3979 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
3980
ccaf0336
DN
39812010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
3982
977105dc
DN
3983 * keyboard.c (Ftop_level, Fexit_recursive_edit)
3984 (Fabort_recursive_edit): Remove return statements in NO_RETURN
3985 functions.
3986
f5ada890
DN
3987 * frame.h (Qtty_color_mode): Add declaration.
3988
ccaf0336
DN
3989 * lisp.h (Ftop_level, Fexit_recursive_edit)
3990 (Fabort_recursive_edit): Mark as NO_RETURN.
3991
dfe3c90f
KH
39922010-07-26 Kenichi Handa <handa@m17n.org>
3993
3994 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
e29eb8cf 3995 number of glyphs gets smaller than the original length. (Bug#6621)
dfe3c90f 3996
7d383292
JB
39972010-07-26 Juanma Barranquero <lekktu@gmail.com>
3998
3999 * lread.c (unreadpure, mapatoms_1): Make static.
4000
da31e629
JB
40012010-07-25 Juanma Barranquero <lekktu@gmail.com>
4002
4003 * terminfo.c (tparam): Fix prototype of tparm.
4004
7bfa6d77
AS
40052010-07-25 Andreas Schwab <schwab@linux-m68k.org>
4006
dcc19aac
AS
4007 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
4008 find start of text segment.
4009 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
4010 is defined.
4011
7bfa6d77
AS
4012 * callproc.c (set_initial_environment): Avoid unbalanced braces.
4013
63f9a672
KB
40142010-07-25 Ken Brown <kbrown@cornell.edu>
4015
4016 * vm-limit.c (check_memory_limits): Fix previous change;
4017 accidentally reverted an earlier change.
4018
24933075
KB
40192010-07-25 Ken Brown <kbrown@cornell.edu>
4020
4021 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
4022 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
4023
361358ea
JB
40242010-07-25 Juanma Barranquero <lekktu@gmail.com>
4025
4026 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
4027 * dired.c (opendir, readdir): Fix prototypes.
4028 * editfns.c (w32_get_internal_run_time): Fix prototypes.
4029 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
4030 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
4031 (telldir): Remove declaration.
4032 * ralloc.c (real_morecore, __morecore): Fix prototypes.
4033 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
4034 * syssignal.h (strsignal): Fix prototype.
4035 * term.c (tparam): Fix prototype.
4036 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
4037 (term_get_fkeys): Set inside "#ifndef DOS_NT".
4038 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
4039 and __morecore.
4040 * w32gui.h (XParseGeometry): Fix prototype.
4041 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
4042 * w32term.c (my_set_focus): Declare inside #if 0.
4043 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
4044 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
4045 (drain_message_queue, get_next_msg, post_msg, parse_button)
4046 (ClipboardSequence_Proc): Fix prototypes.
4047 (wait_for_sync): Remove declaration.
4048
630b9592
JB
40492010-07-24 Juanma Barranquero <lekktu@gmail.com>
4050
4051 * w32fns.c (w32_to_x_color): Remove, unused.
4052
6a0d6611
AS
40532010-07-24 Andreas Schwab <schwab@linux-m68k.org>
4054
4055 * lisp.h: Remove leftover P_.
4056
4e8608ff
DN
40572010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
4058
4059 * ecrt0.c, unexalpha.c: Remove files, unused.
4060
c8197983
AS
40612010-07-24 Andreas Schwab <schwab@linux-m68k.org>
4062
4063 * cmds.c (internal_self_insert): Make static.
4064 * lisp.h (internal_self_insert): Remove declaration.
4065
97b372d7
JB
40662010-07-23 Juanma Barranquero <lekktu@gmail.com>
4067
33ac0414
JB
4068 * alloc.c (free_float):
4069 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
4070 * frame.c (delete_frame_handler):
4071 * ralloc.c (reorder_bloc):
4072 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
4073 Remove unused static functions.
4074
94da8397
JB
4075 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
4076 it is called only from NS code.
4077
2e6c8532
JB
4078 * w32term.c (my_set_focus): #ifdef away; it is called only from
4079 "#ifdef 0" code.
4080
97b372d7
JB
4081 * w32fns.c (x_edge_detection):
4082 * xfaces.c (may_use_scalable_font_p):
4083 Remove obsolete static declarations.
4084
7c3320d8
JB
40852010-07-20 Juanma Barranquero <lekktu@gmail.com>
4086
4087 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
4088 (emacs_blocked_realloc, uninterrupt_malloc):
4089 * fringe.c (w32_reset_fringes):
4090 * image.c (convert_mono_to_color_image, lookup_rgb_color)
4091 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
4092 * sound.c (be2hs, do_play_sound):
4093 * vm-limit.c (get_lim_data, ret_lim_data):
4094 * w32term.c (x_free_frame_resources):
4095 * xfaces.c (x_create_gc, x_free_gc):
4096 Convert definitions to standard C.
4097
d5273788
SM
40982010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
4099
4100 * eval.c (Feval, Ffuncall): Use the new names.
4101
4102 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
4103 (DEFUN): Add braces around the union initialisation and use ## to
4104 specify the right union alternative and avoid a cast.
4105
8d16a259
JB
41062010-07-18 Juanma Barranquero <lekktu@gmail.com>
4107
4108 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
4109
3b8eff32
CY
41102010-07-17 Chong Yidong <cyd@stupidchicken.com>
4111
4112 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
4113
499322ce
J
41142010-07-17 Jan Djärv <jan.h.d@swipnet.se>
4115
4116 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
4117 is related to the menu bar (Bug#6499).
a628ad9d 4118 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
499322ce 4119
f6003da5 41202010-07-16 Jan Djärv <jan.h.d@swipnet.se>
b78f9767
J
4121
4122 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
4123
4124 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
4125
4126 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
4127 i.e. don't put back ButtonRelease (Bug#6608).
4128
4129 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
4130 instead of Window. Call xg_event_is_for_menubar when
4131 USE_GTK (Bug#6499).
4132
4133 * gtkutil.h (xg_event_is_for_menubar): Declare.
4134
4135 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
4136
f6003da5 41372010-07-16 Eli Zaretskii <eliz@gnu.org>
1f60c16a
EZ
4138
4139 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
4140 when it's the same as the old foreground. (Bug#6609)
4141
23243f29
J
41422010-07-16 Jan Djärv <jan.h.d@swipnet.se>
4143
4144 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
4145 widget is non-null (Bug#6645).
4146
2b23d2a6
AS
41472010-07-15 Andreas Schwab <schwab@linux-m68k.org>
4148
01b564ff
AS
4149 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
4150 Convert old-style definition.
4151
2b23d2a6
AS
4152 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
4153 timestamp argument.
4154
c4affd2c
EZ
41552010-07-15 Eli Zaretskii <eliz@gnu.org>
4156
4157 * fringe.c (update_window_fringes): Restore mistakenly reverted
4158 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
4159
cf28cebc
J
41602010-07-14 Jan Djärv <jan.h.d@swipnet.se>
4161
4162 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
4163 (SET_SAVED_KEY_EVENT): Remove (not used).
4164 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
4165 remove size parameter.
4166 (handle_one_xevent): Check popup_activated () for menu for Xt also.
4167 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
4168 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
4169 ButtonRelease.
6b2c4bd9
J
4170 (x_set_window_size_1): scroll_bar_actual_width is always
4171 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
cf28cebc
J
4172
4173 * xdisp.c (pending_menu_activation): Remove extern declaration.
4174 (prepare_menu_bars): Remove setting of pending_menu_activation.
4175
4176 * xmenu.c (pending_menu_activation): Remove.
f6003da5
JB
4177 (x_activate_menubar): Set popup_activated_flag for Xt also.
4178 Remove setting of pending_menu_activation.
cf28cebc
J
4179 (set_frame_menubar): Remove check of pending_menu_activation.
4180 Declare menubar_size before code. Correct spelling in comment.
4181
f6c1c771
KH
41822010-07-14 Kenichi Handa <handa@m17n.org>
4183
4184 * font.c (font_open_entity): Cancel previous change.
4185 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
4186
20477505
EZ
41872010-07-13 Eli Zaretskii <eliz@gnu.org>
4188
77defa9a
EZ
4189 Remove subprocesses #ifdefs.
4190 * process.c <inhibit_sentinels>: Move to the common part.
4191 (Fwaiting_for_user_input_p): Move to the common part; return nil
4192 if async subprocesses aren't supported.
4193 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
4194 MS-DOS. Remove "#ifdef subprocesses".
4195 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
4196 (gettimeofday): Remove "#ifdef subprocesses".
4197 (wait_without_blocking): Remove function.
4198 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
4199 Remove "#ifdef subprocesses".
4200 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
4201 compiled on MS-DOS.
4202 * callproc.c (Fcall_process) [!MSDOS]: Don't call
4203 wait_for_termination on MS-DOS.
4204 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
4205 initialization of inhibit_sentinels.
4206 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
4207 subprocesses" conditional.
4208 * callproc.c (Fcall_process) [!subprocesses]: Don't call
4209 wait_for_termination, since `buffer' cannot be an integer when
4210 async subprocesses are not supported
4211 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
4212 for ifdefing away the call to Fprocess_status.
4213
20477505
EZ
4214 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
4215 away the entire body of the function.
4216
b3ffc17c
DN
42172010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
4218
01faa934
DN
4219 Remove subprocesses #ifdefs from term.c.
4220 * process.c (add_keyboard_wait_descriptor)
4221 (delete_keyboard_wait_descriptor): Move to common section, do
4222 nothing when subprocesses is not defined.
a628ad9d
JB
4223 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
4224 Remove subprocesses #ifdefs.
01faa934 4225
b3ffc17c
DN
4226 Convert maybe_fatal to standard C.
4227 * lisp.h (verror): Declare.
4228 * eval.c (verror): New function containing the code from ...
4229 (error): ... this. Call verror.
4230 * term.c (vfatal): New function containing the code from ...
4231 (fatal): ... this. Call vfatal.
4232 (maybe_fatal): Convert to standard C, use variable number of
4233 arguments. Declare as non-return.
4234 (init_tty): Fix maybe_fatal call.
4235
0521f580
DN
42362010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
4237
4238 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
4239 (_scroll_bar_note_movement): Convert definitions to standard C.
4240 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
4241 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
4242
ebd15611
DN
42432010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
4244
4245 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
4246 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
4247 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
4248 (xaw_jump_callback, xaw_scroll_callback)
4249 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
bba3e508
SM
4250 (x_wm_set_size_hint, x_activate_timeout_atimer):
4251 Convert definitions to standard C.
ebd15611
DN
4252 * xmenu.c (menubar_id_to_frame, popup_get_selection)
4253 (popup_activate_callback, popup_deactivate_callback)
4254 (menu_highlight_callback, menubar_selection_callback)
4255 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
4256 (free_frame_menubar, popup_selection_callback, as)
4257 (create_and_show_popup_menu, dialog_selection_callback)
4258 (create_and_show_dialog):
4259 * xfns.c (hack_wm_protocols, x_window):
4260 * xfaces.c (x_update_menu_appearance):
4261 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
4262 (char_to_pixel_size, round_size_to_char, get_wm_shell)
4263 (set_frame_size, update_wm_hints, setup_frame_gcs)
4264 (update_various_frame_slots, update_from_various_frame_slots)
4265 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
4266 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
4267 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
4268
de06a2dd
AS
42692010-07-12 Andreas Schwab <schwab@linux-m68k.org>
4270
a628ad9d 4271 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
de06a2dd 4272
fc549af9
EZ
42732010-07-12 Eli Zaretskii <eliz@gnu.org>
4274
4275 * process.c (setup_process_coding_systems): Move to the part
4276 shared by non-subprocesses systems, and make its body empty when
4277 subprocesses is not defined.
4278 (close_process_descs): Move to the part shared by non-subprocesses
4279 systems.
1408902e
EZ
4280 (wait_reading_process_output) [!subprocesses]: Convert arg list to
4281 ANSI C.
fc549af9 4282
d5a3eaaf
AS
42832010-07-12 Andreas Schwab <schwab@linux-m68k.org>
4284
4285 * editfns.c (transpose_markers): Convert old-style definition.
4286 * emacs.c (abort, shut_down_emacs, fixup_locale)
4287 (synchronize_system_time_locale)
4288 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
4289 * floatfns.c (extract_float, matherr, init_floatfns)
4290 (syms_of_floatfns): Likewise.
4291 * fns.c (make_hash_table): Likewise.
4292 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
4293 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
4294 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
4295 (ftfont_variation_glyphs): Likewise.
4296 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
4297 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
4298 * lread.c (read_filtered_event): Likewise.
4299 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
4300 * process.c (wait_reading_process_output): Likewise.
4301 * scroll.c (do_line_insertion_deletion_costs): Likewise.
4302 * search.c (search_buffer, boyer_moore): Likewise.
4303 * syntax.c (scan_sexps_forward): Likewise.
4304 * xdisp.c (try_scrolling): Likewise.
4305 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
4306 (face_at_string_position): Likewise.
4307 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
4308 * xselect.c (x_get_window_property, receive_incremental_selection)
4309 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
4310 Likewise.
4311 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
4312
6f704c76
DN
43132010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
4314
ded80a25
DN
4315 * callproc.c (child_setup): Remove subprocesses conditional.
4316 Remove code dealing with SET_EMACS_PRIORITY, unused.
4317
49d937f4 4318 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
2e31d424
DN
4319 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
4320
4321 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
4322 (__do_global_dtors, __main): Use void in definition.
4323 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
4324 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
4325 the only users from ...
4326 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
4327 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
4328 (HAVE_VOLATILE): Remove, unused.
4329
6f704c76
DN
4330 Convert more function definitions to standard C.
4331 * xdisp.c (window_box_edges, handle_single_display_spec)
4332 (display_string): Convert definition to standard C.
4333 * scroll.c (do_direct_scrolling, scrolling_1):
4334 * dispnew.c (allocate_matrices_for_frame_redisplay)
4335 (mirrored_line_dance):
4336 * coding.c (code_convert_string):
4337 * charset.c (map_charset_chars):
4338 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
4339 (Fregister_ccl_program, Fregister_code_conversion_map):
4340 * keyboard.c (kbd_buffer_nr_stored): Likewise.
4341 (head_table): Make static and const.
4342
e6cfa7c3
AS
43432010-07-12 Andreas Schwab <schwab@linux-m68k.org>
4344
4345 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
4346 (PROFILING_LDFLAGS): Set from substitution.
4347 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
4348 CFLAGS last.
4349
892dd565
KH
43502010-07-12 Kenichi Handa <handa@m17n.org>
4351
6f2cdcd1
KH
4352 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
4353 (shortlisp): Likewise.
4354
892dd565
KH
4355 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
4356
4357 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
4358 of FONT_ENTITY_INDEX.
4359 (Ffont_get): If KEY is :otf and the font-object doesn't have the
4360 property, get the property value dynamically.
4361 (Ffont_put): Accept font-entity and font-object too.
ef1b0ba7 4362 (Ffont_get_glyhphs): Rename from Fget_font_glyphs. Arguments and
892dd565 4363 return value changed.
bba3e508 4364 (syms_of_font): Adjust for the above change.
892dd565 4365
ae96d47a
AS
43662010-07-11 Andreas Schwab <schwab@linux-m68k.org>
4367
c8fc18ee
AS
4368 * blockinput.h: Remove obsolete comment.
4369
89887d67
AS
4370 * lisp.h: Include <stddef.h>.
4371 (OFFSETOF): Don't define.
4372 (VECSIZE): Use offsetof instead of OFFSETOF.
4373 (PSEUDOVECSIZE): Likewise.
4374 * process.c (conv_sockaddr_to_lisp): Likewise.
4375 * alloc.c: Don't include <stddef.h>.
4376 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
4377
ae96d47a
AS
4378 * process.c: Remove obsolete comment.
4379
635c0aa1
CY
43802010-07-11 Chong Yidong <cyd@stupidchicken.com>
4381
4382 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
4383
a64df650
AS
43842010-07-11 Andreas Schwab <schwab@linux-m68k.org>
4385
8966b757
AS
4386 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
4387 index, rindex.
4388 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
4389 * editfns.c (Fuser_full_name, Fformat): Likewise.
4390 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
4391 * fileio.c (Ffile_symlink_p): Likewise.
4392 * filelock.c (current_lock_owner): Likewise.
4393 * font.c (font_parse_name, font_parse_family_registry): Likewise.
4394 * fontset.c (fontset_pattern_regexp): Likewise.
4395 * lread.c (read1): Likewise.
4396 * sysdep.c (init_system_name): Likewise.
4397 * xfns.c (select_visual): Likewise.
4398 * s/hpux10-20.h (index, rindex): Don't define.
4399 * s/ms-w32.h (index): Likewise.
4400 * s/usg5-4.h: Likewise.
4401
cf237e27
AS
4402 * callproc.c (relocate_fd): Use F_DUPFD if defined.
4403
a8fe7202
AS
4404 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
4405 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
4406 (egetenv): Likewise.
4407 * doprnt.c (doprnt): Likewise.
4408 * editfns.c (set_time_zone_rule, format2): Likewise.
4409 * emacs.c (decode_env_path): Likewise.
4410 * eval.c (signal_error, error): Likewise.
4411 * insdel.c (replace_range_2): Likewise.
4412 * keyboard.c (cmd_error_internal): Likewise.
4413 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
4414 * print.c (write_string, write_string_1, print_error_message):
4415 Likewise.
4416 * vm-limit.c (warn_function, memory_warnings): Likewise.
4417 * xdisp.c (message1, message1_nolog, message_with_string)
4418 (vmessage, message, message_nolog): Likewise.
4419 * emacs.c: Remove duplicate declaration.
4420 * keyboard.h: Likewise.
4421 * lisp.h: Update prototypes.
4422
bb8e180f
AS
4423 * eval.c: Fix indentation problem.
4424
83380e65
AS
4425 * keyboard.c: Include "process.h"
4426
a64df650
AS
4427 * eval.c: Remove obsolete noinline declaration.
4428 * fns.c: Likewise.
4429
6a8033e1
KR
44302010-07-11 Ken Raeburn <raeburn@raeburn.org>
4431
4432 * doprnt.c (doprnt): Take a va_list argument instead of count and
4433 pointer.
4434 * eval.c (error): Change to a standard-C variadic function.
ef1b0ba7 4435 * xdisp.c (vmessage): Rename from message, made static, and
6a8033e1
KR
4436 changed to take a va_list argument.
4437 (message): New variadic wrapper.
4438 (message_nolog): Now a variadic function, calling vmessage.
4439 * lisp.h: Include stdarg.h for va_list.
4440 (doprnt, error, message, message_nolog): Decls updated.
4441
462aa963
EZ
44422010-07-11 Eli Zaretskii <eliz@gnu.org>
4443
4444 * process.c (syms_of_process) <delete-exited-processes>: Define
4445 even if !subprocesses.
4446 (delete_exited_processes): Ditto.
4447
4448 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
4449 (delete_exited_processes): Don't define.
4450
48104462
CY
44512010-07-10 Chong Yidong <cyd@stupidchicken.com>
4452
4453 * frame.c (make_frame): Initialize menu_bar_lines and
4454 tool_bar_lines members.
bba3e508
SM
4455 (make_initial_frame, make_terminal_frame):
4456 Initialize menu_bar_lines using value of menu-bar-mode.
48104462
CY
4457
4458 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
4459
f388c88a
EZ
44602010-07-10 Eli Zaretskii <eliz@gnu.org>
4461
4462 * process.c: Reshuffle #include's. Condition some of the global
4463 and static variables on `subprocesses'.
4464 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
4465 Leave only one implementation.
4466 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
4467 (kill_buffer_processes, Flist_system_processes)
4468 (Fprocess_attributes, init_process, syms_of_process): Unify the
4469 implementations for with subprocesses and without them.
4470
723f5a07
J
44712010-07-09 Jan Djärv <jan.h.d@swipnet.se>
4472
4473 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
4474 correct size for Motif.
4475 (free_frame_menubar): Call x_set_window_size to update frame size.
4476
4477 * xfns.c (x_window): Set borderWidth to 0 for pane and
4478 EmacsFrame. Frame size calculation is wrong otherwise.
4479
2536a4b7
MA
44802010-07-09 Michael Albinus <michael.albinus@gmx.de>
4481
4482 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
4483 allows to suppress errors when polling in Emacs' main loop.
4484 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
4485 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
4486 (Fdbus_method_error_internal, Fdbus_send_signal)
4487 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
4488 (Fdbus_register_method): Use it. (Bug#6579)
4489
5842a27b
DN
44902010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
4491
4492 * alloc.c: Convert DEFUNs to standard C.
4493 * buffer.c:
4494 * bytecode.c:
4495 * callint.c:
4496 * callproc.c:
4497 * casefiddle.c:
4498 * casetab.c:
4499 * category.c:
4500 * character.c:
4501 * charset.c:
4502 * chartab.c:
4503 * cmds.c:
4504 * coding.c:
4505 * composite.c:
4506 * data.c:
4507 * dbusbind.c:
4508 * dired.c:
4509 * dispnew.c:
4510 * doc.c:
4511 * dosfns.c:
4512 * editfns.c:
4513 * emacs.c:
4514 * eval.c:
4515 * fileio.c:
4516 * filelock.c:
4517 * floatfns.c:
4518 * fns.c:
4519 * font.c:
4520 * fontset.c:
4521 * frame.c:
4522 * fringe.c:
4523 * image.c:
4524 * indent.c:
4525 * insdel.c:
4526 * keyboard.c:
4527 * keymap.c:
4528 * lread.c:
4529 * macros.c:
4530 * marker.c:
4531 * menu.c:
4532 * minibuf.c:
4533 * msdos.c:
4534 * nsfns.m:
4535 * nsmenu.m:
4536 * nsselect.m:
4537 * print.c:
4538 * process.c:
4539 * search.c:
4540 * sound.c:
4541 * syntax.c:
4542 * term.c:
4543 * terminal.c:
4544 * textprop.c:
4545 * undo.c:
4546 * w16select.c:
4547 * w32console.c:
4548 * w32fns.c:
4549 * w32font.c:
4550 * w32menu.c:
4551 * w32proc.c:
4552 * w32select.c:
4553 * window.c:
4554 * xdisp.c:
4555 * xfaces.c:
4556 * xfns.c:
4557 * xmenu.c:
4558 * xselect.c:
4559 * xsettings.c:
4560 * xsmfns.c: Likewise.
4561
d568829b
EZ
45622010-07-08 Eli Zaretskii <eliz@gnu.org>
4563
4564 * process.c (kbd_is_on_hold, hold_keyboard_input)
4565 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
4566
52214050
J
45672010-07-08 Jan Djärv <jan.h.d@swipnet.se>
4568
4569 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
4570 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
4571 unless USE_LUCID.
4572
313d9eb2
DN
45732010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
4574
a628ad9d
JB
4575 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
4576 declaration.
d8825aa3 4577
295d0d8f
DN
4578 Clean up include guards.
4579 * tparam.c: Remove include guards for config.h, string.h and code
4580 that assumes #ifndef emacs.
4581 * termcap.c:
4582 * unexalpha.c:
4583 * sysdep.c:
4584 * filemode.c:
4585 * filelock.c:
4586 * bidi.c: Likewise.
4587
49d9e6b0
DN
4588 Remove prefix-args.c
4589 * prefix-args.c: Remove file.
4590 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
4591 * Makefile.in (temacs${EXEEXT}): Remove references to
4592 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
4593 (mostlyclean): Remove reference to prefix-args.
4594 (prefix-args): Remove.
4595
313d9eb2
DN
4596 Simplify cstart_of_data, start_of_code and related code.
4597 * mem-limits.h: Remove !emacs and _LIBC conditional code.
4598 (start_of_data): Merge into start_of_data function.
4599 * sysdep.c (start_of_text): Remove. Move simplified versions of
4600 it in the only users: unexaix.c and unexec.c.
4601 (read_input_waiting): Remove local declaration of quit_char.
4602 (start, etext): Remove declarations.
4603 (start_of_data): Merge with the version in mem-limits.h and move
4604 to vm-limits.c.
4605 * vm-limit.c (start_of_data): Merged and simplified version of the
4606 code formerly in mem-limits.h and sysdep.c.
4607 * unexec.c (start): New declaration, moved from sysdep.c.
4608 (start_of_text): Simplified version of the code formerly in sysdep.c.
4609 * unexaix.c (start_of_text): Simplified version of the code
4610 formerly in sysdep.c.
4611 * m/alpha.h (HAVE_TEXT_START): Remove.
4612 (TEXT_START): Move ...
4613 * unexalpha.c (TEXT_START): ... here.
4614 * s/hpux10-20.h (TEXT_START): Remove.
4615 * s/darwin.h (TEXT_START):
4616 * m/mips.h (TEXT_START):
4617 * m/macppc.h (HAVE_TEXT_START):
4618 * m/m68k.h (TEXT_START):
4619 * m/iris4d.h (TEXT_START):
4620 * m/intel386.h (TEXT_START):
4621 * m/ibmrs6000.h (TEXT_START):
4622 * m/ia64.h (HAVE_TEXT_START):
4623 * s/msdos.h (TEXT_START): Likewise.
4624
72af86bd
AS
46252010-07-07 Andreas Schwab <schwab@linux-m68k.org>
4626
4627 * alloc.c (overrun_check_malloc, overrun_check_realloc)
4628 (overrun_check_free, xstrdup, allocate_string)
4629 (allocate_string_data, compact_small_strings, Fmake_string)
4630 (make_unibyte_string, make_multibyte_string)
4631 (make_string_from_bytes, make_specified_string, make_float)
4632 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
4633 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
4634 memcpy, memmove, memset, memcmp.
4635 * atimer.c (start_atimer, set_alarm): Likewise.
4636 * buffer.c (clone_per_buffer_values, report_overlay_modification)
4637 (mmap_realloc, init_buffer_once): Likewise.
4638 * callint.c (Fcall_interactively): Likewise.
4639 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
4640 (getenv_internal_1): Likewise.
4641 * casefiddle.c (casify_object): Likewise.
4642 * ccl.c (ccl_driver): Likewise.
4643 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
4644 * charset.c (load_charset_map_from_file)
4645 (load_charset_map_from_file, load_charset_map_from_vector)
4646 (Fdefine_charset_internal): Likewise.
4647 * cm.c (Wcm_clear): Likewise.
4648 * coding.c (decode_eol, decode_coding_object)
4649 (Fset_coding_system_priority, make_subsidiaries): Likewise.
4650 * data.c (Faset): Likewise.
4651 * dired.c (directory_files_internal, file_name_completion_stat):
4652 Likewise.
4653 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
4654 (clear_glyph_row, copy_row_except_pointers)
4655 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
4656 (save_current_matrix, restore_current_matrix)
4657 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
4658 (mirror_line_dance, scrolling_window): Likewise.
4659 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
4660 Likewise.
4661 * doprnt.c (doprnt): Likewise.
4662 * editfns.c (Fuser_full_name, make_buffer_string_both)
4663 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
4664 * emacs.c (sort_args): Likewise.
4665 * eval.c (Fapply, Ffuncall): Likewise.
4666 * fileio.c (Ffile_name_directory, make_temp_name)
4667 (Fexpand_file_name, search_embedded_absfilename)
4668 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
4669 (auto_save_error): Likewise.
4670 * fns.c (Fstring_equal, Fcopy_sequence, concat)
4671 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
4672 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
4673 (Fmake_hash_table): Likewise.
4674 * fringe.c (Fdefine_fringe_bitmap): Likewise.
4675 * ftfont.c (ftfont_text_extents): Likewise.
4676 * getloadavg.c (getloadavg): Likewise.
4677 * image.c (define_image_type, make_image, make_image_cache)
4678 (x_create_x_image_and_pixmap, xbm_image_p)
4679 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
4680 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
4681 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
4682 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
4683 (tiff_image_p, tiff_read_from_memory, gif_image_p)
4684 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
4685 Likewise.
4686 * indent.c (scan_for_column, compute_motion): Likewise.
4687 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
4688 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
4689 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
4690 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
4691 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
4692 (store_user_signal_events, menu_bar_items, tool_bar_items)
4693 (process_tool_bar_item, append_tool_bar_item)
4694 (read_char_minibuf_menu_prompt, read_key_sequence)
4695 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
4696 Likewise.
4697 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
4698 Likewise.
4699 * lisp.h (STRING_COPYIN): Likewise.
4700 * lread.c (Fload, read1, oblookup): Likewise.
4701 * msdos.c (Frecent_doskeys): Likewise.
4702 * nsfns.m (Fx_create_frame): Likewise.
4703 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
4704 Likewise.
4705 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
4706 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
4707 Likewise.
4708 * nsmenu.m (ns_update_menubar): Likewise.
4709 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
4710 * print.c (print_unwind, printchar, strout, print_string)
4711 (print_error_message): Likewise.
4712 * process.c (conv_lisp_to_sockaddr, set_socket_option)
4713 (Fmake_network_process, Fnetwork_interface_list)
4714 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
4715 (init_process): Likewise.
4716 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
4717 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
4718 Likewise.
4719 * scroll.c (do_scrolling, do_direct_scrolling)
4720 (scrolling_max_lines_saved): Likewise.
4721 * search.c (search_buffer, wordify, Freplace_match): Likewise.
4722 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
4723 * syntax.c (skip_chars, skip_syntaxes): Likewise.
4724 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
4725 (emacs_set_tty): Likewise.
4726 * term.c (encode_terminal_code, calculate_costs)
4727 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
4728 Likewise.
4729 * termcap.c (tgetst1, gobble_line): Likewise.
4730 * termhooks.h (EVENT_INIT): Likewise.
4731 * tparam.c (tparam1): Likewise.
4732 * unexalpha.c (unexec): Likewise.
4733 * unexec.c (write_segment): Likewise.
4734 * unexmacosx.c (unexec_write_zero): Likewise.
4735 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
4736 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
4737 * w32font.c (w32font_list_family, w32font_text_extents)
4738 (w32font_list_internal, w32font_match_internal)
4739 (w32font_open_internal, compute_metrics, Fx_select_font):
4740 Likewise.
4741 * w32menu.c (set_frame_menubar, add_menu_item)
4742 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
4743 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
4744 * w32uniscribe.c (uniscribe_list_family): Likewise.
4745 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
4746 * window.c (make_window, replace_window, set_window_buffer)
4747 (Fsplit_window): Likewise.
4748 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
4749 (add_to_log, message3, x_consider_frame_title)
4750 (append_space_for_newline, extend_face_to_end_of_line)
4751 (decode_mode_spec_coding, init_glyph_string): Likewise.
4752 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
4753 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
4754 (face_attr_equal_p, make_realized_face, make_face_cache)
4755 (free_realized_faces, lookup_named_face, smaller_face)
4756 (face_with_height, lookup_derived_face)
4757 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
4758 (Finternal_set_font_selection_order, realize_default_face)
4759 (compute_char_face, face_at_buffer_position)
4760 (face_for_overlay_string, face_at_string_position, merge_faces):
4761 Likewise.
4762 * xfns.c (xic_create_fontsetname, Fx_create_frame)
4763 (Fx_window_property, x_create_tip_frame)
4764 (Fx_backspace_delete_keys_p): Likewise.
4765 * xfont.c (xfont_list, xfont_match, xfont_list_family)
4766 (xfont_text_extents): Likewise.
4767 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
4768 * xrdb.c (magic_file_p, x_get_resource): Likewise.
4769 * xselect.c (x_queue_event, x_get_window_property)
4770 (receive_incremental_selection): Likewise.
4771 * xsmfns.c (x_session_check_input): Likewise.
4772 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
4773 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
4774 Likewise.
4775 * character.h (BCOPY_SHORT): Removed.
4776 * config.in: Regenerate.
4777 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
4778 * emacs.c (main) [PROFILING]: Don't declare
4779 dump_opcode_frequencies.
4780 * lisp.h (safe_bcopy): Remove declaration.
4781 (memset) [!HAVE_MEMSET]: Declare.
4782 (memcpy) [!HAVE_MEMCPY]: Likewise.
4783 (memmove) [!HAVE_MEMMOVE]: Likewise.
4784 (memcmp) [!HAVE_MEMCMP]: Likewise.
4785 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
4786 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
4787 Don't define.
4788 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
4789 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
4790 (BCOPY_DOWNWARD_SAFE): Don't define.
4791 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
4792 (memcpy) [!HAVE_MEMCPY]: Define.
4793 (memmove) [!HAVE_MEMMOVE]: Define.
4794 (memcmp) [!HAVE_MEMCMP]: Define.
4795
cb768704
J
47962010-07-07 Jan Djärv <jan.h.d@swipnet.se>
4797
4798 * process.c (kbd_is_on_hold): New variable.
a628ad9d
JB
4799 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
4800 New functions.
cb768704
J
4801 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
4802 select on empty input mask.
4803 (init_process): Initialize kbd_is_on_hold to 0.
4804
4805 * process.h (hold_keyboard_input, unhold_keyboard_input)
4806 (kbd_on_hold_p): Declare.
4807
4808 * keyboard.c (input_available_signal): Declare.
4809 (kbd_buffer_nr_stored): New function.
4810 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
4811 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
4812 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
4813 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
4814 (tty_read_avail_input): If input is on hold, return.
4815 Don't read more that free slots in kbd_buffer (Bug#6571).
4816
3a8ce822
EZ
48172010-07-07 Eli Zaretskii <eliz@gnu.org>
4818
4819 * msdos.h:
4820 * msdos.c:
4821 * dosfns.c:
4822 * w16select.c: Convert function definitions to ANSI C.
4823
a628ad9d
JB
4824 * msdos.h (ctrl_break_func, install_ctrl_break_check):
4825 Remove unused prototypes.
3a8ce822 4826
cf84bb53
JB
48272010-07-07 Juanma Barranquero <lekktu@gmail.com>
4828
4829 * coding.c, sysdep.c: Convert some more functions to standard C.
4830
1a4990fb
JB
48312010-07-07 Juanma Barranquero <lekktu@gmail.com>
4832
4833 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
4834 (encode_coding_object): Use SPECPDL_INDEX.
4835 (syms_of_coding): Use DOS_NT.
4836
c0f2f16b
DN
48372010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
4838
48fb6855
DN
4839 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
4840
c0f2f16b
DN
4841 Make the function member of Lisp_Subr use standard C prototypes.
4842 * lisp.h (struct Lisp_Subr): Use a union for the function member.
4843 (DECL_ALIGN): Add a cast for the function.
4844 * eval.c (Feval, Ffuncall): Use the proper type for each type
4845 function call.
4846
67aecef9
CY
48472010-07-06 Chong Yidong <cyd@stupidchicken.com>
4848
4849 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
4850 fringe face id, so face-remapping-alist works (Bug#6091).
4851
b56ceb92
JB
48522010-07-06 Juanma Barranquero <lekktu@gmail.com>
4853
4854 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
4855 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
4856 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
4857
7af07b96
AS
48582010-07-06 Andreas Schwab <schwab@linux-m68k.org>
4859
4860 * xterm.c (x_get_keysym_name): Change type of parameter to int.
4861 * lisp.h: Declare x_get_keysym_name.
4862 * keyboard.c (modify_event_symbol): Don't declare
4863 x_get_keysym_name here.
4864
69e24e34
DN
48652010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
4866
4867 * ecrt0.c: Revert conversion to standard C.
4868
d3da34e0 48692010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
d2aa42f8
DN
4870
4871 * vm-limit.c (memory_warnings):
4872 * keyboard.c (modify_event_symbol):
4873 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
4874 (round2, emacs_rint):
4875 * process.c (send_process, old_sigpipe): Convert function
4876 definitions and declarations to standard C.
4877
48782010-07-05 Juanma Barranquero <lekktu@gmail.com>
d3da34e0
JB
4879
4880 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
4881 * xdisp.c: Convert function definitions to standard C.
4882
4883 * cm.c (cmputc): Arg C is now int, not char.
4884 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
4885
00be444c
J
48862010-07-05 James Cloos <cloos@jhcloos.com>
4887
4888 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
4889
4890 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
4891 _NET_WM_ICON_NAME atoms.
4892
4893 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
4894 and _NET_WM_ICON_NAME properties, too, matching what is
4895 done in the Gtk+ case.
4896
e4c8d29a
J
48972010-07-05 Jan Djärv <jan.h.d@swipnet.se>
4898
ff919460
J
4899 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
4900
e4c8d29a
J
4901 * xsmfns.c (SSDATA): New macro.
4902 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
4903 passed to strlen/strcpy/strcat.
bba3e508
SM
4904 (create_client_leader_window): Surround with #ifndef USE_GTK.
4905 Cast 7:th arg to XChangeProperty to (unsigned char *).
e4c8d29a
J
4906
4907 * xsettings.c (something_changedCB, parse_settings)
4908 (apply_xft_settings): Reformat prototype.
4909 (something_changedCB, init_gconf): Remove unused variable i.
4910 (read_settings): Remove unused variable long_len.
4911
4912 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
4913 (xg_get_image_for_pixmap, create_dialog)
4914 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
4915 (menuitem_highlight_callback, make_menu_item)
4916 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
4917 (xg_create_scroll_bar, xg_update_scrollbar_pos)
4918 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
4919 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
4920 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
4921 (xg_tool_bar_item_expose_callback): Reformat prototype.
4922 (xg_update_menubar): GList *group => GSList *group.
4923 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
4924 before use.
4925 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
4926 to GTK_IMAGE (wimage).
4927
dd4c5104
DN
49282010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
4929
898b4c5c
DN
4930 * atimer.c: Use "" instead of <> for local includes for
4931 consistency with the rest of the code.
4932
dd4c5104
DN
4933 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
4934 * xrdb.c (get_system_name):
4935 * window.c (shrink_windows):
4936 * syntax.c (forw_comment):
4937 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
4938 (ins_del_costs):
4939 * mem-limits.h (start_of_data):
4940 * lread.c (readevalloop):
4941 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
4942 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
4943 * frame.c (x_get_focus_frame):
4944 * floatfns.c (fmod_float):
4945 * fileio.c (choose_write_coding_system):
4946 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
4947 (malloc_initialize_hook, sort_args, synchronize_locale):
4948 * doprnt.c (doprnt):
4949 * dired.c (compile_pattern):
4950 * data.c (fmod_float):
4951 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
4952 (map_char_table_for_charset):
4953 * charset.c (define_charset_internal):
4954 * alloc.c (Fgarbage_collect): Convert declarations or definitions
4955 to standard C.
4956
9a39b306 49572010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
9c8a2331 4958 Stefan Monnier <monnier@iro.umontreal.ca>
9a39b306
TO
4959
4960 * lread.c (read1): Fix up last change to not mess up `c'.
4961
e6cb2cbb
JB
49622010-07-04 Juanma Barranquero <lekktu@gmail.com>
4963
4964 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
4965
438105ed
JB
49662010-07-04 Juanma Barranquero <lekktu@gmail.com>
4967
4968 Fix prototypes.
4969
e5447b22 4970 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
438105ed 4971 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
9c8a2331
JB
4972 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
4973 arg, as required by internal_condition_case_1.
dcc7404b 4974 * print.c (strout): Use const char* for arg PTR.
438105ed
JB
4975 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
4976 (analyse_first): Fix "const const".
e5447b22 4977 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
b9503078 4978 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
e5447b22 4979 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
438105ed 4980
971de7fb
DN
49812010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
4982
4983 * alloc.c: Convert function definitions to standard C.
4984 * atimer.c:
4985 * bidi.c:
4986 * bytecode.c:
4987 * callint.c:
4988 * callproc.c:
4989 * casefiddle.c:
4990 * casetab.c:
4991 * category.c:
4992 * ccl.c:
4993 * character.c:
4994 * charset.c:
4995 * chartab.c:
4996 * cmds.c:
4997 * coding.c:
4998 * composite.c:
4999 * data.c:
5000 * dbusbind.c:
5001 * dired.c:
5002 * dispnew.c:
5003 * doc.c:
5004 * doprnt.c:
5005 * ecrt0.c:
5006 * editfns.c:
5007 * fileio.c:
5008 * filelock.c:
5009 * filemode.c:
5010 * fns.c:
5011 * font.c:
5012 * fontset.c:
5013 * frame.c:
5014 * fringe.c:
5015 * ftfont.c:
5016 * ftxfont.c:
5017 * gtkutil.c:
5018 * indent.c:
5019 * insdel.c:
5020 * intervals.c:
5021 * keymap.c:
5022 * lread.c:
5023 * macros.c:
5024 * marker.c:
5025 * md5.c:
5026 * menu.c:
5027 * minibuf.c:
5028 * prefix-args.c:
5029 * print.c:
5030 * ralloc.c:
5031 * regex.c:
5032 * region-cache.c:
5033 * scroll.c:
5034 * search.c:
5035 * sound.c:
5036 * strftime.c:
5037 * syntax.c:
5038 * sysdep.c:
5039 * termcap.c:
5040 * terminal.c:
5041 * terminfo.c:
5042 * textprop.c:
5043 * tparam.c:
5044 * undo.c:
5045 * unexelf.c:
5046 * window.c:
5047 * xfaces.c:
5048 * xfns.c:
5049 * xfont.c:
5050 * xftfont.c:
5051 * xgselect.c:
5052 * xmenu.c:
5053 * xrdb.c:
5054 * xselect.c:
5055 * xsettings.c:
5056 * xsmfns.c:
5057 * xterm.c: Likewise.
5058
ae492bec
EZ
50592010-07-03 Eli Zaretskii <eliz@gnu.org>
5060
76ea4cc9
EZ
5061 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
5062 frames other than the initial one. Fix reversal of colors when
bba3e508
SM
5063 `reverse' is specified in the frame parameters.
5064 Call update_face_from_frame_parameter instead of
76ea4cc9
EZ
5065 internal-set-lisp-face-attribute. Initialize screen colors from
5066 initial_screen_colors[] when f->default_face_done_p is zero,
5067 instead of depending on being called with default-frame-alist as
5068 the alist argument.
5069
5070 * xfaces.c (update_face_from_frame_parameter): Move out of
5071 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
5072 with HAVE_WINDOW_SYSTEM.
5073
1e6255ae
EZ
5074 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
5075 to menu-bar-mode, if not set in the frame parameters or in
5076 default-frame-alist.
5077
ae492bec
EZ
5078 * w32console.c (sys_tputs): Adjust argument list to prototype in
5079 term.c.
5080
3a35a84c
JB
50812010-07-03 Juanma Barranquero <lekktu@gmail.com>
5082
5083 * lisp.h (memory_warnings): Fix prototype.
5084
5085 * cm.h (evalcost): Fix prototype.
5086
5087 * cm.c (evalcost): Fix arg type.
5088
c532d349
DN
50892010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
5090
5091 * term.c (term_clear_mouse_face, Fidentity):
5092 * syssignal.h (signal_handler_t):
5093 * lisp.h (memory_warnings):
5094 * coding.h (preferred_coding_system):
5095 * cm.h (evalcost):
5096 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
5097
c0b36d46
EZ
50982010-07-02 Eli Zaretskii <eliz@gnu.org>
5099
5100 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
5101 from prototypes.
5102
5103 * msdos.h (load_pixmap): Don't define away.
5104
383e0970
J
51052010-07-02 Jan Djärv <jan.h.d@swipnet.se>
5106
f57e2426
J
5107 * lisp.h:
5108 * atimer.h: Remove define for P_.
5109
5110 * alloc.c: Remove __P and P_ from .c and .m files.
5111 * atimer.c:
5112 * buffer.c:
5113 * callint.c:
5114 * category.c:
5115 * charset.c:
5116 * chartab.c:
5117 * cm.c:
5118 * coding.c:
5119 * composite.c:
5120 * data.c:
5121 * dired.c:
5122 * dispnew.c:
5123 * doc.c:
5124 * editfns.c:
5125 * emacs.c:
5126 * eval.c:
5127 * fileio.c:
5128 * filelock.c:
5129 * fns.c:
5130 * font.c:
5131 * fontset.c:
5132 * frame.c:
5133 * ftfont.c:
5134 * ftxfont.c:
5135 * gmalloc.c:
5136 * gtkutil.c:
5137 * image.c:
5138 * indent.c:
5139 * intervals.c:
5140 * keyboard.c:
5141 * keymap.c:
5142 * lread.c:
5143 * marker.c:
5144 * menu.c:
5145 * minibuf.c:
5146 * print.c:
5147 * process.c:
5148 * scroll.c:
5149 * search.c:
5150 * sound.c:
5151 * strftime.c:
5152 * syntax.c:
5153 * sysdep.c:
5154 * term.c:
5155 * terminal.c:
5156 * textprop.c:
5157 * unexalpha.c:
5158 * w32console.c:
5159 * w32fns.c:
5160 * w32font.c:
5161 * w32menu.c:
5162 * w32term.c:
5163 * w32uniscribe.c:
5164 * window.c:
5165 * xdisp.c:
5166 * xfaces.c:
5167 * xfns.c:
5168 * xfont.c:
5169 * xftfont.c:
5170 * xmenu.c:
5171 * xselect.c:
5172 * xterm.c: Likewise.
5173
383e0970 5174 Remove P_ and __P macros.
f57e2426
J
5175 * atimer.h: Remove P_ and __P macros.
5176 * buffer.h:
383e0970
J
5177 * category.h:
5178 * ccl.h:
5179 * character.h:
5180 * charset.h:
5181 * cm.h:
5182 * coding.h:
5183 * composite.h:
5184 * dispextern.h:
5185 * disptab.h:
9e892c8d 5186 * dosfns.h:
383e0970
J
5187 * font.h:
5188 * fontset.h:
5189 * frame.h:
5190 * gtkutil.h:
5191 * indent.h:
5192 * intervals.h:
5193 * keyboard.h:
5194 * keymap.h:
5195 * lisp.h:
5196 * macros.h:
5197 * md5.h:
5198 * menu.h:
5199 * msdos.h:
5200 * nsterm.h:
5201 * puresize.h:
5202 * region-cache.h:
5203 * syntax.h:
5204 * syssignal.h:
5205 * systime.h:
5206 * termhooks.h:
9e892c8d 5207 * w32font.h:
383e0970
J
5208 * w32term.h:
5209 * widget.h:
5210 * window.h:
5211 * xgselect.h:
5212 * xsettings.h:
5213 * xterm.h: Likewise.
5214
98601119
DN
52152010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
5216
d9170db5
DN
5217 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
5218
98601119
DN
5219 Cleanup old code.
5220 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
5221 * syssignal.h: Remove code for Lynx, not supported anymore.
5222 * vm-limit.c: Remove unused code the depends on emacs not being
5223 defined and NO_LIM_DATA being defined.
5224 * mem-limits.h: Remove dead code.
5225
1f984e12
J
52262010-07-01 Jan Djärv <jan.h.d@swipnet.se>
5227
c49d071a
J
5228 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
5229
9d5405ec
J
5230 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
5231 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
5232
7a18115b
J
5233 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
5234 parameters, they are already absolute.
5235
a628ad9d
JB
5236 * nsterm.m (x_set_window_size, initFrameFromEmacs):
5237 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
581a8100 5238
a628ad9d 5239 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
581a8100 5240
a628ad9d
JB
5241 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
5242 Update FRAME_TOOLBAR_HEIGHT.
581a8100 5243
a628ad9d
JB
5244 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
5245 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
1f984e12 5246
c1ef4455
CY
52472010-06-30 Chong Yidong <cyd@stupidchicken.com>
5248
bba3e508
SM
5249 * frame.c (get_future_frame_param, Fmake_terminal_frame):
5250 Don't check default-frame-alist.
c1ef4455 5251
ce8f5a9a
AS
52522010-06-30 Andreas Schwab <schwab@linux-m68k.org>
5253
5254 * process.c (create_process): Avoid using invalid file descriptors.
5255
5256 * callproc.c (child_setup): Avoid closing a file descriptor twice.
5257
bf935339
J
52582010-06-30 Jan Djärv <jan.h.d@swipnet.se>
5259
5260 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
5261 Improve documentation. Return font regardless of use_system_font.
5262 (syms_of_xsettings): Improve documentation for font-use-system-font.
5263
7c33a057
CY
52642010-07-10 Chong Yidong <cyd@stupidchicken.com>
5265
2ec1b5ee
CY
5266 * xfaces.c (realize_face): Garbage the frame if a face is removed
5267 (Bug#6593).
5268
52692010-07-05 Andreas Schwab <schwab@linux-m68k.org>
5270
5271 * keyboard.c: Remove duplicate <setjmp.h>.
5272 (read_key_sequence): Remove volatile qualifiers.
5273
52742010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5275
5276 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
5277 (struct glyph_row): New members left_fringe_offset and
5278 right_fringe_offset.
5279
5280 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
5281 specially.
5282 * w32term.c (w32_draw_fringe_bitmap): Likewise.
5283 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
5284
5285 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
f6003da5 5286 Take account of bitmap offset.
2ec1b5ee
CY
5287 (draw_window_fringes): Take account of window vscroll.
5288 (update_window_fringes): Likewise. Extend top-aligned top indicator
5289 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
5290 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
5291 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
5292
52932010-07-04 Juanma Barranquero <lekktu@gmail.com>
5294
5295 * w32fns.c (Qtooltip): Declare.
5296 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
5297
52982010-07-03 Jan Djärv <jan.h.d@swipnet.se>
5299
5300 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
5301 grab on just Press (Bug#6499).
5302
53032010-07-02 Chong Yidong <cyd@stupidchicken.com>
5304
5305 * frame.c (Qtooltip): New var.
5306 (delete_frame): Use it. Fix faulty if statement. Don't update
5307 mode line for tooltip frames. Suggested by Martin Rudalics.
5308
5309 * xfns.c (x_create_tip_frame):
5310 * w32fns.c (x_create_tip_frame): Use it.
5311
53122010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
769e9d47
KH
5313
5314 * xftfont.c (xftfont_open): Check font width one by one also when
5315 spacing is dual.
5316
5317 * ftfont.c (ftfont_open): Ditto.
5318
6259c2ec
GM
53192010-06-30 Glenn Morris <rgm@gnu.org>
5320
a46007e9
GM
5321 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
5322
6259c2ec
GM
5323 * Makefile.in (CANNOT_DUMP): Update for configure name change.
5324
5325 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
5326 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
5327 * s/darwin.h (SYSTEM_MALLOC):
5328 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
5329
5d1d3d04
J
53302010-06-29 Jan Djärv <jan.h.d@swipnet.se>
5331
5332 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
5333 (ns_get_screen): Don't assign integer to f.
5334 (Fx_display_color_cells): Declarations before statements.
5335
e547b051
J
53362010-06-28 Jan Djärv <jan.h.d@swipnet.se>
5337
5fc8e5bc
J
5338 * xfns.c (x_default_font_parameter): Remove got_from_system
5339 (Bug#6526).
5340
e547b051 5341 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
bba3e508
SM
5342 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper):
5343 New defines based on what configure finds.
e547b051
J
5344
5345 * xterm.c (XTflash): Use gtk_widget_get_window.
5346 (xg_scroll_callback): Use gtk_adjustment_get_upper and
5347 gtk_adjustment_get_page_size.
5348 (handle_one_xevent): Use gtk_widget_get_mapped.
5349 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
5350 messages.
5351
5352 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
5353
5354 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
5355 HAVE_GTK_FILE_SELECTION_NEW.
5356
bba3e508
SM
5357 * gtkutil.c (xg_display_open, xg_display_close):
5358 Remove HAVE_GTK_MULTIDISPLAY, it is always defined.
e547b051
J
5359 (xg_display_open): Return type is void.
5360 (gtk_widget_set_has_window)
5361 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
5362 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
5363 (gtk_adjustment_set_page_increment)
5364 (gtk_adjustment_get_step_increment): #define these if not found
5365 by configure.
5366 (remove_submenu): New define based on Gtk+ version.
bba3e508
SM
5367 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar):
5368 Use gtk_widget_get_window.
e547b051
J
5369 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
5370 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
5371 (create_dialog): Use gtk_dialog_get_action_area and
5372 gtk_dialog_get_content_area.
5373 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
5374 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
5375 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
bba3e508
SM
5376 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item):
5377 Use g_object_ref and g_object_unref.
5378 (xg_update_menu_item, xg_tool_bar_menu_proxy):
5379 Use gtk_widget_get_sensitive.
e547b051
J
5380 (xg_update_submenu): Use remove_submenu.
5381 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
5382 properties instead to get old x and y position.
5383 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
5384 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
2b7e356a 5385 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
e547b051
J
5386 (xg_get_tool_bar_widgets): New function.
5387 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
5388 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
5389 (toolbar_set_orientation): New #define based on if configure
5390 finds gtk_orientable_set_orientation.
5391 (xg_create_tool_bar): Call toolbar_set_orientation.
5392 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
5393 instead of gtk_box_pack_start_defaults.
5394
b9229673
CY
53952010-06-28 Chong Yidong <cyd@stupidchicken.com>
5396
5397 * cmds.c (Fdelete_backward_char): Move into Lisp.
5398
bbc803b0
DN
53992010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
5400
5401 * s/freebsd.h (BSD4_2): Remove redundant definition.
5402 bsd-common.h defines it already.
5403
6431f2e6
CY
54042010-06-27 Chong Yidong <cyd@stupidchicken.com>
5405
5406 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
5407 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
5408 tool-bar-mode, which are now set using these X resources at
5409 startup, to determine the defaults (Bug#2249).
5410
5411 * w32fns.c (Fx_create_frame):
5412 * nsfns.m (Fx_create_frame): Likewise.
5413
5414 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
5415
8c079ebb
JB
54162010-06-24 Juanma Barranquero <lekktu@gmail.com>
5417
5418 * gtkutil.c (xg_update_scrollbar_pos):
5419 Avoid C99 mid-block variable declaration.
5420
e9b7ab96
JD
54212010-06-22 Jan Djärv <jan.h.d@swipnet.se>
5422
bc869eca
JD
5423 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
5424
2b7e356a 5425 * gtkutil.h (xg_show_scroll_bar): Remove.
bc869eca
JD
5426
5427 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
5428 if height is less than scroll bar min size.
5429 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
5430
e9b7ab96
JD
5431 * xfns.c (x_default_font_parameter): Try to open font from system
5432 before using it (bug#6478). Rename got_from_gconf to got_from_system.
5433
a628ad9d 54342010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
32a679fd
JD
5435
5436 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
5437
70c4cfbb
EZ
54382010-06-20 Eli Zaretskii <eliz@gnu.org>
5439
5440 * xdisp.c (try_scrolling): When scroll-conservatively is set to
5441 most-positive-fixnum, be extra accurate when scrolling window
5442 start, to avoid missing the cursor line.
5443
ad5a12b5
EZ
54442010-06-19 Eli Zaretskii <eliz@gnu.org>
5445
5446 * xdisp.c (try_scrolling): Compute the limit for searching point
5447 in forward scroll from scroll_max, instead of an arbitrary limit
ef1b0ba7
SM
5448 of 10 screen lines.
5449 See http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
ad5a12b5
EZ
5450 and
5451 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
5452 for details.
5453
2a64315a 54542010-06-16 Glenn Morris <rgm@gnu.org>
6fda6a0c
GM
5455
5456 * editfns.c (Fbyte_to_string): Pacify compiler.
5457
288cf4e9
SM
54582010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
5459
5460 * lread.c (read1): Phase out old-style backquotes a bit more.
5461
6e6e5760
EZ
54622010-06-12 Eli Zaretskii <eliz@gnu.org>
5463
cbc4fd20
EZ
5464 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
5465 bidimirror.h.
5466
5467 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
5468
317fbf33
EZ
5469 * bidi.c (bidi_initialize): Remove explicit initialization of
5470 bidi_type_table; include biditype.h instead. Don't support
288cf4e9 5471 entries whose second codepoint is zero. Initialize bidi_mirror_table.
cbc4fd20 5472 (bidi_mirror_char): Use bidi_mirror_table.
317fbf33
EZ
5473
5474 * biditype.h: New file.
5475
cbc4fd20
EZ
5476 * bidimirror.h: New file.
5477
6e6e5760
EZ
5478 * window.c (syms_of_window): Doc fix (bug#6409).
5479
4176cba2
RF
54802010-06-12 Romain Francoise <romain@orebokech.com>
5481
5482 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
5483 ediff-hook.
5484
cb4bfcb5
GM
54852010-06-10 Glenn Morris <rgm@gnu.org>
5486
64c60c2f
GM
5487 * editfns.c (Fbyte_to_string): Pacify compiler.
5488
cb4bfcb5
GM
5489 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
5490
2ec1b5ee
CY
54912010-06-26 Andreas Schwab <schwab@linux-m68k.org>
5492
5493 * alloc.c (Fmake_byte_code): Don't access undefined argument
5494 (Bug#6517).
5495
54962010-06-25 Chong Yidong <cyd@stupidchicken.com>
5497
5498 * xdisp.c (next_element_from_image): Ensure that after-strings are
5499 read the next time we hit handle_stop (Bug#1336).
5500
55012010-06-23 Andreas Schwab <schwab@linux-m68k.org>
5502
5503 * lread.c (read1): Signal error if #s is not followed by paren.
5504
55052010-06-19 Chong Yidong <cyd@stupidchicken.com>
5506
5507 * image.c (free_image): Mark frame as garbaged (Bug#6426).
5508
5509 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
5510
55112010-06-15 Glenn Morris <rgm@gnu.org>
5512
5513 * editfns.c (Fbyte_to_string): Pacify compiler.
5514
e454a4a3
SM
55152010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
5516
5517 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
5518 Check `object's type before accessing its guts.
5519
c1b1acc2
DN
55202010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
5521
5522 * s/usg5-4.h: Fix previous change.
5523 Suggested by Lawrence Mitchell <wence@gmx.li>
5524
657d4c0b
AS
55252010-06-08 Andreas Schwab <schwab@linux-m68k.org>
5526
5527 * minibuf.c (Fall_completions): Add more checks.
5528
9b27fd9f
JB
55292010-06-08 Juanma Barranquero <lekktu@gmail.com>
5530
5531 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
5532
a99ebb40
DN
55332010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
5534
d7c5d87d
DN
5535 * lread.c (X_OK): Remove, unused.
5536
0263a941
DN
5537 * dispnew.c: Remove obsolete comment.
5538
a99ebb40
DN
5539 Remove INCLUDED_FCNTL.
5540 * xterm.c (INCLUDED_FCNTL):
5541 * callproc.c (INCLUDED_FCNTL):
5542 * alloc.c (INCLUDED_FCNTL):
5543 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
5544 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
5545
13b5221f
MR
55462010-06-07 Martin Rudalics <rudalics@gmx.at>
5547
5548 * window.c (Fselect_window): Move `record_buffer' up to the
5549 beginning of this function, so the buffer gets recorded
5550 even if the selected window does not change.
5551 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
5552
5220357f
JB
55532010-06-07 Juanma Barranquero <lekktu@gmail.com>
5554
5555 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
5556 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
5557
3085237c
DN
55582010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
5559
5560 Remove BSTRING related code, all platforms define it.
5561 * s/usg5-4.h (BSTRING): Remove definition.
5562 * s/template.h (BSTRING):
5563 * s/msdos.h (BSTRING):
5564 * s/ms-w32.h (BSTRING):
5565 * s/hpux10-20.h (BSTRING):
5566 * s/gnu-linux.h (BSTRING):
5567 * s/darwin.h (BSTRING):
5568 * s/cygwin.h (BSTRING):
5569 * s/bsd-common.h (BSTRING):
5570 * s/aix4-2.h (BSTRING): Likewise.
5571 * sysdep.c: Remove code depending on BSTRING not being defined.
5572
409f2919
JB
55732010-06-05 Juanma Barranquero <lekktu@gmail.com>
5574
5575 Remove obsolete macro BASE_LEADING_CODE_P.
5576 * character.h (BASE_LEADING_CODE_P): Remove.
5577 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
5578 * buffer.c (Fset_buffer_multibyte):
5579 * indent.c (scan_for_column, compute_motion):
5580 * insdel.c (count_combining_before, count_combining_after):
5581 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
5582
087fc47a
JB
55832010-06-04 Juanma Barranquero <lekktu@gmail.com>
5584
5585 Turn `directory-sep-char' into a noop.
5586
5587 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
5588 (DIRECTORY_SEP): Define unconditionally.
5589
5590 * s/ms-w32.h (DIRECTORY_SEP): Remove.
5591
5592 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
5593 call dostounix_filename directly.
5594
5595 * fileio.c (CORRECT_DIR_SEPS): Remove.
5596 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
5597 (Fsubstitute_in_file_name): Use dostounix_filename instead.
5598 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
5599 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
5600
5601 * w32proc.c (CORRECT_DIR_SEPS): Remove.
5602 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
5603
0eb7675e
AS
56042010-06-03 Andreas Schwab <schwab@linux-m68k.org>
5605
a628ad9d
JB
5606 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
5607 (Bug#6346)
0eb7675e 5608
78edd3b7
JB
56092010-06-03 Juanma Barranquero <lekktu@gmail.com>
5610
5611 * ccl.c (Fccl_program_p): Fix typo in docstring.
5612
eb697db5
DN
56132010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
5614
5615 Move UNEXEC definition to autoconf.
5616 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
5617 * s/sol2-10.h (UNEXEC):
5618 * s/irix6-5.h (UNEXEC):
5619 * s/hpux10-20.h (UNEXEC):
5620 * s/gnu-linux.h (UNEXEC):
5621 * s/darwin.h (UNEXEC):
5622 * s/cygwin.h (UNEXEC):
5623 * s/bsd-common.h (UNEXEC):
5624 * s/aix4-2.h (UNEXEC):
5625 * m/alpha.h (UNEXEC): Likewise.
5626 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
5627
aa3830c4
JB
56282010-06-03 Juanma Barranquero <lekktu@gmail.com>
5629
5630 Remove obsolete pre-unicode2 macros.
5631 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
5632 * composite.c (composition_reseat_it):
5633 * data.c (Faset):
5634 * fns.c (Ffillarray):
5635 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
5636 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
5637
d234d13e
JL
56382010-06-03 Juri Linkov <juri@jurta.org>
5639
5640 * buffer.c (Fother_buffer): Add CHECK_FRAME.
5641 (Fswitch_to_buffer): Remove unused variable `err'.
5642
0d4bcf4d
GM
56432010-06-03 Glenn Morris <rgm@gnu.org>
5644
e23dc1e2
GM
5645 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
5646
05b09564
GM
5647 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
5648 now that AH_BOTTOM does it.
5649
824e2978
GM
5650 * m/hp800.h (HAVE_ALLOCA):
5651 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
5652
0d4bcf4d
GM
5653 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
5654 Remove NOT_C_CODE tests, it is always true now.
5655
c55d2abf
DN
56562010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
5657
08a494a3
DN
5658 Fix config.h includes.
5659 * xsettings.c:
5660 * xgselect.c:
5661 * nsterm.m:
5662 * nsselect.m:
5663 * nsimage.m:
5664 * nsfont.m:
5665 * nsfns.m:
5666 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
5667 other files do.
5668
75934b1d
DN
5669 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
5670
9f32a766
DN
5671 * s/sol2-6.h: Remove obsolete comments.
5672
c55d2abf
DN
5673 Remove unnecessary alloca.h includes.
5674 * keymap.c: Do not include alloca.h, config.h does that.
5675 * sysdep.c: Likewise. Do not define fwrite, not used.
5676
06ac62b4
SM
56772010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
5678
5679 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
5680 the HAVE_TERMIO where it belongs (bug#6149).
5681
1ab8293c
SM
56822010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
5683
5684 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
5685 of bug#6305).
5686
6dcfd253
EZ
56872010-05-30 Eli Zaretskii <eliz@gnu.org>
5688
5689 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
5690 state is always cached (bug#6306).
5691
6d26bbb2
EZ
56922010-05-29 Eli Zaretskii <eliz@gnu.org>
5693
06fa4a23
EZ
5694 Fix cursor motion in bidi-reordered continued lines.
5695 * xdisp.c (try_cursor_movement): Backup to non-continuation line
5696 only after finding point's row. Fix the logic. Rewrite the loop
ef1b0ba7
SM
5697 over continuation lines in bidi-reordered buffers.
5698 Return CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
6d26bbb2
EZ
5699 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
5700
f5783df3
MA
57012010-05-28 Michael Albinus <michael.albinus@gmx.de>
5702
5703 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
5704
7d56b2dd
KH
57052010-05-28 Kenichi Handa <handa@m17n.org>
5706
5707 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
5708 Don't sheck SPEC if it is nil.
5709 (font_list_entities): Call font_delete_unmatched if
b925d231 5710 Vface_ignored_fonts is non-nil. (Bug#6287)
7d56b2dd 5711
e58d4ff7
GM
57122010-05-28 Glenn Morris <rgm@gnu.org>
5713
5714 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
5715
f1a5d776
CY
57162010-05-27 Chong Yidong <cyd@stupidchicken.com>
5717
5718 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
5719 whether to trash.
5720 (internal_delete_file, Frename_file): Callers changed.
5721 (delete_by_moving_to_trash): Doc fix.
5722 (Fdelete_directory_internal): Don't move to trash.
5723
5724 * callproc.c (delete_temp_file):
5725 * buffer.c (Fkill_buffer): Callers changed.
5726
5727 * lisp.h: Update prototype.
5728
f44a59e6
CY
57292010-05-27 Chong Yidong <cyd@stupidchicken.com>
5730
5731 * xdisp.c (redisplay_window): After redisplay, check if point is
5732 still valid before setting it (Bug#6177).
5733
81ac4f35
GM
57342010-05-27 Glenn Morris <rgm@gnu.org>
5735
5736 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
5737 Convert comments to Makefile format.
5738
5739 * Makefile.in (bootstrap-clean): No more Makefile.c.
5740
ccd89fb3
GM
57412010-05-26 Glenn Morris <rgm@gnu.org>
5742
90278cb6
GM
5743 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
5744 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
5745
ccd89fb3
GM
5746 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
5747 Remove.
5748 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
5749
b7050583
KH
57502010-05-26 Kenichi Handa <handa@m17n.org>
5751
5752 * composite.c (composition_compute_stop_pos): Fix condition for
5753 backward scanning.
5754
e5458003
GM
57552010-05-25 Glenn Morris <rgm@gnu.org>
5756
c345fe90
GM
5757 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
5758 Move before TEMACS_LDFLAGS.
5759 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
5760 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
5761
2e0689ab
GM
5762 * Makefile.in (NOT_C_CODE): No longer define.
5763 (config.h): No longer include.
5764
8009a5e8
GM
5765 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
5766 variables it may reference.
5767
e5458003
GM
5768 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
5769 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
5770
10f72a37
KH
57712010-05-25 Kenichi Handa <handa@m17n.org>
5772
5773 * dispextern.h (struct composition_it): New members rule_idx and
5774 charpos.
5775
5776 * xdisp.c (set_iterator_to_next): While scanning backward, assume
5777 that the character positions of IT point the last character of the
5778 current grapheme cluster.
5779 (next_element_from_composition): Don't change character positions
5780 of IT.
5781 (append_composite_glyph): Set glyph->charpos to
5782 it->cmp_it.charpos.
5783
5784 * composite.c (autocmp_chars): Change the first argument to RULE,
5785 and try composition with RULE only.
5786 (composition_compute_stop_pos): Record the index number of the
5787 composition rule in CMP_IT->rule_idx.
5788 (composition_reseat_it): Call autocmp_chars repeatedly until the
5789 correct rule of the composition is found.
5790 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
5791 is at the last character of the current grapheme cluster when
5792 CMP_IT->reversed_p is nonzero.
5793
171eda53 57942010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
f5b416d2 5795
171eda53
SM
5796 * editfns.c (Fbyte_to_string): New function.
5797
66a9f7f4
SM
57982010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
5799
5800 * process.c (Fmake_network_process): Set :host to nil if it's not used.
5801 Suggested by Masatake YAMATO <yamato@redhat.com>.
5802
d8c315d1
EZ
58032010-05-23 Eli Zaretskii <eliz@gnu.org>
5804
171eda53 5805 * dispextern.h (init_iterator): Sync prototype with changed definition.
d8c315d1 5806
f5b416d2 58072010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
5808
5809 * s/netbsd.h: If terminfo is found, use it in preference to
5810 termcap. (Bug#6190) [Backport from trunk]
5811
0416466c
EZ
58122010-05-19 Eli Zaretskii <eliz@gnu.org>
5813
11117830 5814 Redesign and reimplement bidi-aware edge positions of glyph rows.
d36fe237
EZ
5815
5816 * dispextern.h (struct glyph_row): New members minpos and maxpos.
5817 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
5818 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
5819 and maxpos members instead of start.pos and end.pos, respectively.
5820
5821 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
5822 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
5823 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
66a9f7f4
SM
5824 (try_window_reusing_current_matrix, try_window_id):
5825 Use ROW->minpos rather than ROW->start.pos.
d36fe237
EZ
5826 (init_from_display_pos, init_iterator): Use EMACS_INT for
5827 character and byte positions.
66a9f7f4 5828 (find_row_edges): Rename from find_row_end. Accept additional
d36fe237
EZ
5829 arguments for minimum and maximum buffer positions seen by
5830 display_line for this row. Don't use iterator to find the
5831 position following the maximum one; instead, increment the
11117830
EZ
5832 position found by display_line directly. Fix logic; eol_pos
5833 should be tested before the rest. Handle the case of characters
5834 delivered from display vector (bug#6036). Fix tests related to
5835 it->method. Handle the truncated_on_right_p rows.
5836 (RECORD_MAX_MIN_POS): New macro.
5837 (display_line): Use it to record the minimum and maximum buffer
5838 positions for glyphs in the row being assembled. Record the
5839 position of the newline that terminates the line. If word wrap is
5840 in effect, restore minimum and maximum positions seen up to the
5841 wrap point, when iterator returns to it.
5842 (try_window_reusing_current_matrix): Give up if in bidi-reordered
5843 row and cursor not already at point. Restore original pre-bidi
5844 code for unidirectional buffers.
d36fe237
EZ
5845
5846 * dispnew.c (increment_row_positions, check_matrix_invariants):
5847 Increment and check row->start.pos and row->end.pos, in addition
5848 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
5849
11117830
EZ
5850 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
5851 Display truncated_on_left_p and truncated_on_right_p flags.
5852 Formatting fixes.
5853 (pmtxrows): Display the ordinal number of each row. Don't display
5854 rows beyond the last one.
5855
5856 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
5857 it is not copied by bidi_copy_it.
5858
6e83d800
EZ
58592010-05-22 Eli Zaretskii <eliz@gnu.org>
5860
5861 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
5862 (Bug#6237)
5863
110683ad
CY
58642010-05-22 Chong Yidong <cyd@stupidchicken.com>
5865
5866 * image.c (Fimage_flush): Rename from image-refresh.
5867
98fe5161
CY
58682010-05-21 Chong Yidong <cyd@stupidchicken.com>
5869
5870 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
5871 just one window.
5872
5873 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
5874 (clear_image_cache): If the number of cached images is unusually
5875 large, decrease the cache eviction delay (Bug#6230).
5876
e8752c66
GM
58772010-05-21 Glenn Morris <rgm@gnu.org>
5878
66dbf213
GM
5879 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
5880 Move these rules to ns.mk.
5881 * ns.mk: New file.
5882
04384b2d
GM
5883 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
5884
e8752c66
GM
5885 * Makefile.in (CANNOT_DUMP): New, set by configure.
5886 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
5887
2e2bbddb
JL
58882010-05-20 Juri Linkov <juri@jurta.org>
5889
5890 * fileio.c (Fdelete_file): Change interative spec to use
5891 `read-file-name' like in `find-file-read-args' where the default
5892 value is `default-directory' instead of `buffer-file-name'.
5893 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
5894
31c4aaf6
KR
58952010-05-20 Kevin Ryde <user42@zip.com.au>
5896
5897 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
5898 (Voverriding_terminal_local_map, Vsystem_key_alist)
5899 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
5900
9d5cf9b6
GM
59012010-05-20 Glenn Morris <rgm@gnu.org>
5902
5903 * Makefile.in (DEPDIR): New constant.
5904 (DEPFLAGS): Set with configure, not cpp.
5905 (MKDEPDIR): New, set by configure.
5906 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
5907 (clean): Use $DEPDIR.
5908 (deps_frag): Include from configure.
5909 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
5910 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
5911
bba3e508
SM
5912 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state):
5913 Fix reallocation of the cache. (Bug#6210)
ead6f8f5 5914
7f34aec3
GM
59152010-05-19 Glenn Morris <rgm@gnu.org>
5916
d494e8f2
GM
5917 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
5918
c1d0dcfd
GM
5919 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
5920 (GNULIB_VAR): Remove.
5921 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
5922
5923 * m/ibms390x.h (LINKER):
5924 * m/macppc.h (LINKER) [GNU_LINUX]:
5925 * s/aix4-2.h (ORDINARY_LINK):
5926 * s/cygwin.h (LINKER):
5927 * s/darwin.h (ORDINARY_LINK):
5928 * s/gnu.h (ORDINARY_LINK):
5929 * s/netbsd.h (LINKER):
5930 * s/usg5-4.h (ORDINARY_LINK):
5931 Move to configure.
5932
7f34aec3
GM
5933 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
5934
754790b6
CY
59352010-05-18 Chong Yidong <cyd@stupidchicken.com>
5936
5937 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
5938 prevent stack overflow if number of arguments is too large
5939 (Bug#6214).
5940
161e44d1
JB
59412010-05-18 Juanma Barranquero <lekktu@gmail.com>
5942
5943 * charset.c (load_charset_map_from_file): Don't call close after fclose.
5944
be4ff9da
GM
59452010-05-18 Glenn Morris <rgm@gnu.org>
5946
9539dc5d
GM
5947 * s/gnu-linux.h: Combine two conditionals.
5948
5949 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
6665f4c5
GM
5950 $(POST_ALLOC_OBJ).
5951
40dc6bf4
GM
5952 * Makefile.in (RALLOC_OBJ): New, set by configure.
5953 (rallocobj): Replace with the previous variable.
5954 (otherobj): Use $RALLOC_OBJ.
5955
5956 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
5957 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
5958
be4ff9da
GM
5959 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
5960 (gmallocobj, vmlimitobj): Replace with previous two variables.
5961 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
5962
16455a85
GM
59632010-05-17 Glenn Morris <rgm@gnu.org>
5964
5965 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
5966 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
5967
5fdb7468
GM
59682010-05-16 Glenn Morris <rgm@gnu.org>
5969
7ca1f3f9
GM
5970 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
5971
7541dad5
GM
5972 * Makefile.in (clean): Get rid of HAVE_NS conditional.
5973
da53fab9
GM
5974 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
5975 trailing "/".
5976
b02a6645
GM
5977 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
5978 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
5979
8877ca0f
GM
5980 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
5981 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
5982 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
5983 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
5984 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
5985
5fdb7468
GM
5986 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
5987 Remove ${STARTFLAGS}, nothing ever sets it.
5988
95adb4b1
DN
59892010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
5990
5991 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
5992
676b6304
GM
59932010-05-16 Glenn Morris <rgm@gnu.org>
5994
9beab9ce
GM
5995 * Makefile.in (LIBX_BASE): Always define.
5996
8a95f0e7
GM
5997 * Makefile.in (LIBX_OTHER): Move out of cpp section.
5998
676b6304
GM
5999 * Makefile.in (LIBXT): Always define.
6000
6e546d18
GM
60012010-05-15 Glenn Morris <rgm@gnu.org>
6002
4235ca47 6003 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
02d4ac0e 6004
6e546d18
GM
6005 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
6006 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
6007
8c5ff6dd
KR
60082010-05-15 Ken Raeburn <raeburn@raeburn.org>
6009
560bb7ae 6010 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
52766425
KR
6011 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
6012
8b4eb796
KR
6013 * emacs.c (main): Initialize initial-environment and
6014 process-environment before generating from env, not after.
6015
8c5ff6dd
KR
6016 Handle --version reasonably in CANNOT_DUMP configuration.
6017 * emacs.c (emacs_version, emacs_copyright): New string variables.
6018 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
6019 (syms_of_emacs): Defvar them, and initialize them from the C
6020 string variables.
6021 (main): If initialization hasn't been done, print initial version
6022 info from the C strings, instead of starting an interactive session.
6023
dbd3f723
EZ
60242010-05-15 Eli Zaretskii <eliz@gnu.org>
6025
d20e1419
EZ
6026 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
6027 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
2e9abc3d
EZ
6028 (bidi_paragraph_init): Remove redundant assertion that we are at
6029 the beginning of a line after call to bidi_find_paragraph_start.
d20e1419
EZ
6030
6031 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
6032 (syms_of_xdisp): Defsubr it.
6033
d36fe237
EZ
6034 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
6035
dbd3f723
EZ
6036 * Makefile.in: Fix MSDOS-related comments.
6037
02be533b
GM
60382010-05-15 Glenn Morris <rgm@gnu.org>
6039
1a82cca9
GM
6040 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
6041 (really-lwlib, really-oldXMenu): Always define.
6042 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
6043
3df7b338
GM
6044 * Makefile.in: Simplify cpp conditional.
6045
2b5f541b
GM
6046 * Makefile.in (${ns_appdir}): Simplify using umask.
6047
02be533b
GM
6048 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
6049
4e2db1fe
SM
60502010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
6051
6052 * eval.c (specbind): Remove left-over duplicate test.
6053 Disallow let-binding frame-local vars. Add comment.
6054
4b292a22
EZ
60552010-05-14 Eli Zaretskii <eliz@gnu.org>
6056
2fe72643 6057 Make the cache of bidi iterator states dynamically allocated.
1edbd309 6058 * bidi.c (bidi_cache_shrink): New function.
2fe72643
EZ
6059 (bidi_init_it): Call it.
6060 (bidi_cache_iterator_state): Enlarge the cache if needed.
6061
4e2db1fe 6062 * bidi.c (bidi_move_to_visually_next): Rename from
4b292a22
EZ
6063 bidi_get_next_char_visually. All callers changed.
6064
82ebc97b
KH
60652010-05-14 Kenichi Handa <handa@m17n.org>
6066
6067 * dispextern.h (struct composition_it): New member reversed_p.
6068
6069 * composite.c (composition_compute_stop_pos): Search backward if
6070 ENDPOS < CHARPOS.
6071 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
6072 Set CMP_IT->reversed_p.
b4b6e17e 6073 (composition_update_it): Pay attention to CMP_IT->reversed_p.
82ebc97b 6074
4e2db1fe
SM
6075 * xdisp.c (set_iterator_to_next):
6076 Call composition_compute_stop_pos with negative ENDPOS if we are
82ebc97b
KH
6077 scanning backward. Call composition_compute_stop_pos if scan
6078 direction is changed.
6079 (next_element_from_buffer): Call composition_compute_stop_pos with
6080 negative ENDPOS if we are scanning backward.
6081 (next_element_from_composition): Pay attention to
6082 IT->cmp_it.reversed_p.
6083
0e5d7800
KH
60842010-05-14 Kenichi Handa <handa@m17n.org>
6085
560bb7ae 6086 * font.c (font_range): Return the range for the font found at first.
0e5d7800 6087
cb027b32
GM
60882010-05-14 Glenn Morris <rgm@gnu.org>
6089
177b0288
GM
6090 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
6091
fbc00890
GM
6092 * Makefile.in (mktime, X11, register): Move undefs to configure.
6093
f14d1dfd
GM
6094 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
6095 (MSDOS_X_OBJ): New variable.
6096 (MSDOS_SUPPORT_REAL): New constant.
6097 (MSDOS_SUPPORT): Set as a variable, not with cpp.
6098 (obj): Use MSDOS_X_OBJ.
6099 (lisp): Use MSDOS_SUPPORT as a variable.
6100
11842bd8
GM
6101 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
6102 (GPM_MOUSE_SUPPORT): Now it's a constant.
6103 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
6104 not cpp.
6105
489d31a4 6106 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
845612ac 6107 (ns_appresdir): Remove, unused.
e20f1f07 6108
489d31a4
GM
6109 * Makefile.in (SHELL): Move outside cpp section.
6110
cb027b32
GM
6111 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
6112
5a903aa9
GM
61132010-05-13 Glenn Morris <rgm@gnu.org>
6114
3369c79f
GM
6115 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
6116 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
6117
d5e982a6
GM
6118 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
6119 HAVE_WINDOW_SYSTEM must be too.
6120
6192e163
GM
6121 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
6122 (lisp): Remove WINNT_SUPPORT.
6123
472c5d6b
GM
6124 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
6125 Let configure set these variables (to empty) in this case as well.
6126
0116466b
GM
6127 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
6128 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
6129
5a903aa9
GM
6130 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
6131 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
6132 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
6133 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
6134 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
c0a2b70a 6135 the values output by configure.
5a903aa9
GM
6136 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
6137
1a0d7c06
GM
61382010-05-12 Glenn Morris <rgm@gnu.org>
6139
b5457f14
GM
6140 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
6141 (LINKER_WAS_SPECIFIED): Remove.
6142
1a0d7c06
GM
6143 * Makefile.in (LIB_GCC): Set using configure, not cpp.
6144 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
6145 * m/arm.h (LIB_GCC) [GNU_LINUX]:
6146 * s/cygwin.h (LIB_GCC):
6147 * s/freebsd.h (LIB_GCC):
6148 * s/gnu-linux.h (LIB_GCC):
6149 * s/msdos.h (LIB_GCC):
6150 * s/netbsd.h (LIB_GCC):
6151 Move to configure.
6152
d1ddd1d0 61532010-05-11 Karel Klíč <kklic@redhat.com>
c90ca7b7
KH
6154
6155 * ftfont.c: Fix incorrect parentheses of #if condition for
6156 definining M17N_FLT_USE_NEW_FEATURE.
6157
acddf8ae
GM
61582010-05-11 Glenn Morris <rgm@gnu.org>
6159
6160 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
6161 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
6162
ae5e04fa
EZ
61632010-05-10 Eli Zaretskii <eliz@gnu.org>
6164
6165 * xdisp.c (init_iterator): Don't turn on bidi reordering in
6166 unibyte buffers. See
6167 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
6168
7490175b
GM
61692010-05-10 Glenn Morris <rgm@gnu.org>
6170
97efb629
GM
6171 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
6172 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
6173 (LIBES): Use LIBS_SYSTEM as a variable.
6174 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
6175 * s/aix4-2.h (LIBS_SYSTEM):
6176 * s/freebsd.h (LIBS_SYSTEM):
6177 * s/hpux10-20.h (LIBS_SYSTEM):
6178 * s/sol2-6.h (LIBS_SYSTEM):
6179 * s/unixware.h (LIBS_SYSTEM):
6180 Move to configure.
6181
7490175b
GM
6182 * s/aix4-2.h (MAIL_USE_LOCKF):
6183 * s/bsd-common.h (MAIL_USE_FLOCK):
6184 * s/darwin.h (MAIL_USE_FLOCK):
6185 * s/gnu-linux.h (MAIL_USE_FLOCK):
6186 * s/irix6-5.h (MAIL_USE_FLOCK):
6187 * s/template.h (MAIL_USE_FLOCK):
6188 Move to configure.
6189
0235128c 61902010-05-08 Chong Yidong <cyd@stupidchicken.com>
61a808e8
CY
6191
6192 * Version 23.2 released.
6193
0235128c 61942010-05-08 Andreas Schwab <schwab@linux-m68k.org>
5dcde606
AS
6195
6196 * composite.c (autocmp_chars): Save point as marker before calling
6197 auto-composition-function (Bug#5984).
6198
6199 * lisp.h (restore_point_unwind): Add prototype.
6200
6201 * fileio.c (restore_point_unwind): Remove static attribute.
6202
0235128c 62032010-05-08 Kenichi Handa <handa@m17n.org>
c4170e32
KH
6204
6205 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
6206 new feature of libotf and m17n-flt.
0235128c
SM
6207 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
6208 Call OTF_check_features even if no specific feature is given.
c4170e32
KH
6209 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
6210 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
6211 that OUT is NULL. Use OTF_drive_gsub_with_log and
6212 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
6213 OTF_drive_gpos.
6214 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
0235128c
SM
6215 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
6216 Setup mflt_enable_new_feature and mflt_try_otf.
6217
4721152c
J
62182010-05-08 Jan Djärv <jan.h.d@swipnet.se>
6219
6220 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
6221
6222 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
6223 box and toolbar (Bug #6139).
6224 (xg_create_tool_bar): Remove comment (Bug #6139).
6225 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
6226 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
6227
ee0a16cf
JB
62282010-05-08 Juanma Barranquero <lekktu@gmail.com>
6229
6230 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
6231 Update dependencies.
6232
96d79611
EZ
62332010-05-08 Eli Zaretskii <eliz@gnu.org>
6234
6235 * fringe.c (update_window_fringes): Set up truncation bitmaps for
6236 R2L lines.
6237
40c17879
GM
62382010-05-08 Glenn Morris <rgm@gnu.org>
6239
7b42b29f
GM
6240 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
6241
40c17879
GM
6242 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
6243 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
6244 (termcapobj): Replace with TERMCAP_OBJ.
6245 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
6246 (LIBES): Use LIBS_TERMCAP as a variable.
6247
6248 * s/freebsd.h (osreldate.h): No longer include, since this file
6249 does not use __FreeBSD_version any more.
6250
6251 * s/aix4-2.h (TERMINFO):
6252 * s/cygwin.h (TERMINFO):
6253 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
6254 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
6255 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
6256 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
6257 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
6258 * s/irix6-5.h (TERMINFO):
6259 * s/netbsd.h (LIBS_TERMCAP):
6260 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
6261 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
6262 * s/usg5-4.h (TERMINFO):
6263 Move to configure.
6264
94b612ad
SM
62652010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
6266
6267 * eval.c (unbind_to): Don't unbind a local binding into the global
6268 binding when the local binding disappeared. Inversely, don't unbind
6269 a global binding into a newly created local binding.
6270 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
6271 can specify the frame to use, when applicable. Adjust callers.
6272
15e12598 62732010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
acd0102a 6274 Stefan Monnier <monnier@iro.umontreal.ca>
15e12598
VB
6275
6276 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
6277
f724825e
EZ
62782010-05-07 Eli Zaretskii <eliz@gnu.org>
6279
5cba3209
EZ
6280 * w32fns.c: Include w32.h.
6281 (Fw32_shell_execute): Decode the error message before passing it
6282 to `error'. (Bug#6126)
6283
d16bdfc3
EZ
6284 * msdos.c (dos_set_window_size):
6285 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
6286 instead of `XSYMBOL (foo)->value'.
6287
59d93e87
EZ
62882010-05-07 Eli Zaretskii <eliz@gnu.org>
6289
9fdec8bc
EZ
6290 Fix the MS-DOS build, broken by autoconfiscation.
6291
6292 * Makefile.in: Don't use Make-style comments past the "start of
6293 cpp stuff" line.
6294 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
6295
6296 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
6297 edited directly by msdos/sed1v2.inp).
f724825e 6298
2f86b22b
GM
62992010-05-07 Glenn Morris <rgm@gnu.org>
6300
6301 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
6302 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
6303 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
6304 move out of cpp section.
6305 * s/freebsd.h (LD_SWITCH_SYSTEM):
6306 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
6307 * s/netbsd.h (LD_SWITCH_SYSTEM):
6308 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
6309
49ebbd65
DN
63102010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
6311
6312 Define LIB_STANDARD and START_FILES using autoconf.
6313 * s/usg5-4.h (LIB_STANDARD):
6314 * s/netbsd.h (START_FILES):
6315 * s/irix6-5.h (LIB_STANDARD):
6316 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
6317 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
6318 * s/freebsd.h (START_FILES):
6319 * s/darwin.h (START_FILES):
6320 * s/cygwin.h (START_FILES):
6321 * s/aix4-2.h (LIB_STANDARD):
6322 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
6323 * Makefile.in (STARTFILES): Rename to START_FILES, define using
6324 autoconf, not cpp.
6325
d43c06d6
DN
63262010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
6327
28823648
DN
6328 Remove NEED_BSDTTY and NEED_UNISTD_H.
6329 * s/hpux10-20.h (NEED_BSDTTY): Remove.
6330 * s/aix4-2.h (NEED_UNISTD_H): Remove.
6331 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
6332 <sys/ptyio.h> and <unistd.h>.
6333
aca00430
DN
6334 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
6335
d43c06d6
DN
6336 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
6337 * s/gnu.h (START_FILES): Remove empty definition.
6338
3e56b11d
JD
63392010-05-06 Jan Djärv <jan.h.d@swipnet.se>
6340
6341 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
6342
e3cf0cde
GM
63432010-05-06 Glenn Morris <rgm@gnu.org>
6344
6345 * Makefile.in (CPP, LN_S): Remove unused variables.
6346
774b9a60
SM
63472010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
6348
6349 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
6350
4ab92842
LM
63512010-05-05 Lawrence Mitchell <wence@gmx.li>
6352
6353 * m/sparc.h: Fix typo in earlier change.
6354
178f2507
SM
63552010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
6356
6357 Misc tweaks.
6358 * eval.c (Fdefvaralias): Remove unintended nested if.
6359 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
6360
80f00217 63612010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
991be6d4
JD
6362
6363 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
6364
ef03a4e6
DN
63652010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
6366
58eb6cf0
DN
6367 Remove BSD_PGRPS.
6368 * s/bsd-common.h (BSD_PGRPS): Remove undef.
6369 * s/gnu-linux.h (BSD_PGRPS): Remove.
6370 * term.c (dissociate_if_controlling_tty):
6371 * sysdep.c (narrow_foreground_group, widen_foreground_group)
6372 (init_sys_modes, reset_sys_modes):
6373 * emacs.c (main):
6374 * callproc.c (Fcall_process, child_setup): Remove code depending
6375 on BSD_PGRPS.
6376
ef03a4e6
DN
6377 Remove POSIX_SIGNALS.
6378 * s/usg5-4.h (POSIX_SIGNALS):
6379 * s/netbsd.h (POSIX_SIGNALS):
6380 * s/msdos.h (POSIX_SIGNALS):
6381 * s/ms-w32.h (POSIX_SIGNALS):
6382 * s/hpux11.h (POSIX_SIGNALS):
6383 * s/gnu.h (POSIX_SIGNALS):
6384 * s/gnu-linux.h (POSIX_SIGNALS):
6385 * s/freebsd.h (POSIX_SIGNALS):
6386 * s/darwin.h (POSIX_SIGNALS):
6387 * s/cygwin.h (POSIX_SIGNALS):
6388 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
6389 * s/unixware.h:
6390 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
6391 * process.c (create_process):
6392 * syssignal.h:
6393 * sysdep.c (wait_for_termination, init_signals):
6394 * process.c (create_process):
6395 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
6396 remove all code that assumes the contrary.
6397
49628785
GM
63982010-05-04 Glenn Morris <rgm@gnu.org>
6399
27a2cdfc
GM
6400 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
6401 variable.
6402 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
6403 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
6404 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
6405 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
6406 LD_SWITCH_SYSTEM_tmp.
6407 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
6408 New variables, set by configure.
6409
eb21eab5
GM
6410 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
6411 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
6412 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
6413 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
6414 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
6415
49628785
GM
6416 * s/aix4-2.h (C_SWITCH_SYSTEM):
6417 * m/alpha.h (C_SWITCH_MACHINE):
6418 Move to configure.in.
6419 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
6420 New variables, set by configure.
6421 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
6422 $c_switch_machine and $c_switch_system.
6423
7dff330b
DN
64242010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
6425
6426 * s/hpux10-20.h (LIB_STANDARD): New definition.
6427 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
6428 on it, not used anymore.
6429
53967e09
CY
64302010-05-03 Chong Yidong <cyd@stupidchicken.com>
6431
6432 * eval.c (internal_condition_case_n): Rename from
6433 internal_condition_case_2.
6434 (internal_condition_case_2): New function.
6435
6436 * xdisp.c (safe_call): Use internal_condition_case_n.
6437
6438 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
6439 (internal_delete_file, Frename_file): Callers changed.
6440
6441 * buffer.c (Fkill_buffer):
6442 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
6443
6444 * lisp.h: Update prototypes.
6445
3dee6fdb
GM
64462010-05-03 Glenn Morris <rgm@gnu.org>
6447
6448 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
6449 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
6450 (LIBXT): Set with configure, not cpp.
6451 (LIBX): Remove.
6452 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
6453
a101e0fb
DN
64542010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
6455
6456 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
6457 The FreeBSD is not needed, the default works, Solaris version is
6458 not needed, and the remaining case is not supported by configure.
6459
f63d0028
JD
64602010-05-02 Jan Djärv <jan.h.d@swipnet.se>
6461
6462 * xsmfns.c (CHDIR_OPT): New define.
6463 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
6464 restarting emacs.
6465
6466 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
6467 shut_down_emacs.
6468
6469 * emacs.c (USAGE1): Mention --chdir.
6470 (main): Handle --chdir.
6471 (standard_args): Add --chdir.
6472 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
6473 #5552).
6474
e4814a9f
DN
64752010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
6476
cd03c74a
DN
6477 Remove LD_SWITCH_MACHINE.
6478 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
6479 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
6480
c3a398a1
DN
6481 Clean up IRIX code.
6482 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
6483 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
6484
87e7285c
DN
6485 Clean up AIX code.
6486 * m/ibmrs6000.inp: Remove file, unused.
6487 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
6488 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
6489 definition ...
6490 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
6491
80f00217
JB
6492 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
6493 unused.
e4814a9f 6494
59ca28de
EZ
64952010-05-01 Eli Zaretskii <eliz@gnu.org>
6496
197daef4
EZ
6497 Emulate POSIX_SIGNALS on MS-Windows.
6498
6499 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
6500 (SIG_SETMASK, SIG_UNBLOCK): Define.
d6dae14b
EZ
6501
6502 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
6503 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
6504 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
6505
80f00217
JB
6506 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
6507 New stubs.
197daef4 6508
af7c7572
EZ
6509 Miscellaneous fixes of bidi display.
6510
59ca28de
EZ
6511 * xdisp.c (find_row_end): New function, refactored from display_line.
6512 (display_line): Use it.
017ea819
EZ
6513 (extend_face_to_end_of_line): In almost-filled rows, extend only
6514 if the row is R2L and not continued.
166e930d 6515 (display_line): Fix prepending of truncation glyphs to R2L rows.
af7c7572 6516 Preserve overlay and string info in row->end.
166e930d
EZ
6517 (insert_left_trunc_glyphs): Support addition of left truncation
6518 glyphs to R2L rows.
b47e0dcf 6519 (set_cursor_from_row): Don't place cursor on the vertical border
af7c7572
EZ
6520 glyph between adjacent windows. Fix a crash when a display string
6521 is continued to the next line. Don't return zero if cursor was
6522 found by `cursor' property of a display string.
b47e0dcf
EZ
6523 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
6524 test for that explicitly.
59ca28de 6525
7acac9f4
GM
65262010-05-01 Glenn Morris <rgm@gnu.org>
6527
6528 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
6529 for clarity.
6530 (OTHER_OBJ): Remove.
6531 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
6532 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
6533
45841e65
KK
65342010-05-01 Karel Klíč <kklic@redhat.com>
6535
6536 * fileio.c (Ffile_selinux_context): Context functions may return null.
6537
afc61943
DN
65382010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
6539
80f00217 6540 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
afc61943 6541
5a1bb006
GM
65422010-04-30 Glenn Morris <rgm@gnu.org>
6543
6544 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
6545 (OTHER_OBJ): Define as a separate variable, for clarity.
6546
210af043
J
65472010-04-30 Jan Djärv <jan.h.d@swipnet.se>
6548
6549 * xsettings.c: include limits.h and update file comment.
6550
0a7df391
GM
65512010-04-30 Glenn Morris <rgm@gnu.org>
6552
d5096f16
GM
6553 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
6554 Set with configure, not cpp.
6555 (LIBW): Remove, replace with $TOOLKIT_LIBW.
6556
7eb1ac33
GM
6557 * Makefile.in (mallocobj): Remove.
6558 (otherobj): Simplify using @OTHER_OBJ@.
6559
517d086b
GM
6560 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
6561 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
6562 Don't bother making nsgui.h dependency platform-specific.
6563
0a7df391
GM
6564 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
6565
d6d23852
SM
65662010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
6567
d2630aef
SM
6568 * process.c (read_process_output, exec_sentinel): Don't burp if the
6569 sentinel/filter kills the current buffer (bug#6060).
6570
f9dddf52 6571 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
d6d23852
SM
6572 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
6573 Remove unused var `args'.
6574 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
6575 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
6576 * doc.c (store_function_docstring): Use XSETCAR.
6577
f1e3642a
GM
65782010-04-28 Glenn Morris <rgm@gnu.org>
6579
faf535f8
GM
6580 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
6581 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
6582
c40f9449
GM
6583 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
6584
658f86ca
GM
6585 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
6586 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
6587
bc0b5f61
GM
6588 * Makefile.in (FONT_OBJ): New, set by configure.
6589 (FONT_DRIVERS): Use $FONT_OBJ.
6590
294c50a0
GM
6591 * Makefile.in (LIBXMU): Set with configure, not cpp.
6592 * s/aix4-2.h (LIBXMU):
6593 * s/hpux10-20.h (LIBXMU):
6594 Remove definition, now set in configure.
6595
e6ec4e99
GM
6596 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
6597
f1e3642a
GM
6598 * m/amdx86-64.h [i386]: Move this test to configure.in.
6599
c6ea2936
GM
66002010-04-27 Glenn Morris <rgm@gnu.org>
6601
8fdac2c3
GM
6602 * Makefile.in (LIBXTR6): Set with configure, not cpp.
6603 * s/unixware.h (NEED_LIBW): Remove definition.
6604
986fb647
GM
6605 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
6606 (TOOLKIT_LIBW): New, set by configure.
6607 (@X_TOOLKIT_TYPE@): No longer define it.
6608
c6ea2936
GM
6609 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
6610 (MOTIF_LIBW): Set with configure, not cpp.
6611 * s/aix4-2.h (LIB_MOTIF):
6612 * s/gnu-linux.h (LIB_MOTIF):
6613 * s/unixware.h (LIB_MOTIF): Move to configure.in.
6614
aaa36002
DN
66152010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
6616
6617 Reduce CPP usage.
6618 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
6619 (obj): Use autoconf for unexec instead of cpp.
bba3e508
SM
6620 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE):
6621 Remove definitions and undefs. Inline definitions in the only user.
ed6281b0 6622 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
aaa36002 6623
b678dd8b
GM
66242010-04-27 Glenn Morris <rgm@gnu.org>
6625
76cda504
GM
6626 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
6627 since the defaults (set by the system file) are fine in most cases.
6628 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
6629 * m/ibms390x.h (START_FILES, LIB_STANDARD):
6630 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
6631 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
6632 Remove definitions, since they are set correctly in s/gnu-linux.h.
6633 * s/freebsd.h (START_FILES, LIB_STANDARD):
6634 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
6635 * s/hpux10-20.h (START_FILES):
6636 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
6637 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
6638
b678dd8b
GM
6639 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
6640 (MOTIF_LIBW): Use $LIBXP.
6641 (otherobj): Use $WIDGET_OBJ.
6642
9452ded1
DN
66432010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
6644
7e10844c
DN
6645 * Makefile.in (LIBS_MACHINE): Remove, unused.
6646
9452ded1
DN
6647 Use autoconf instead of cpp for LIB_MATH.
6648 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
6649 * s/cygwin.h (LIB_MATH): Likewise.
6650 * Makefile.in (LIB_MATH): Do not define with cpp.
6651 (LIBES): Use autoconf for LIB_MATH.
6652
fcebfc6a
KH
66532010-04-26 Kenichi Handa <handa@m17n.org>
6654
6655 * composite.c (Ffind_composition_internal): Fix the return value
6656 for an automatic composition.
6657
39e2ad1b
DN
66582010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
6659
6660 Remove all NO_ARG_ARRAY uses.
6661 * fns.c (concat2, concat3, nconc2):
6662 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
6663 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
6664 * m/xtensa.h (NO_ARG_ARRAY):
6665 * m/template.h (NO_ARG_ARRAY):
6666 * m/sparc.h (NO_ARG_ARRAY):
6667 * m/sh3.h (NO_ARG_ARRAY):
6668 * m/mips.h (NO_ARG_ARRAY):
6669 * m/macppc.h (NO_ARG_ARRAY):
6670 * m/iris4d.h (NO_ARG_ARRAY):
6671 * m/intel386.h (NO_ARG_ARRAY):
6672 * m/ibms390x.h (NO_ARG_ARRAY):
6673 * m/ibms390.h (NO_ARG_ARRAY):
6674 * m/ibmrs6000.h (NO_ARG_ARRAY):
6675 * m/ia64.h (NO_ARG_ARRAY):
6676 * m/hp800.h (NO_ARG_ARRAY):
6677 * m/arm.h (NO_ARG_ARRAY):
6678 * m/amdx86-64.h (NO_ARG_ARRAY):
6679 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
6680
adf4f59c
EZ
66812010-04-25 Eli Zaretskii <eliz@gnu.org>
6682
6bdf5d65
EZ
6683 * xdisp.c (display_line): Don't assume 2nd call to
6684 get_next_display_element cannot return zero. (Bug#6030)
f538fcec
EZ
6685 (iterate_out_of_display_property): New function, body from pop_it.
6686 (pop_it): Use it.
adf4f59c 6687
dfbbda83
GM
66882010-04-24 Glenn Morris <rgm@gnu.org>
6689
6690 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
6691 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
6692 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
6693 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
6694
2d4018aa
EZ
66952010-04-24 Eli Zaretskii <eliz@gnu.org>
6696
a49884a6
EZ
6697 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
6698 use `get_next_display_element' and `set_iterator_to_next' to
6699 advance to the next character, when looking for the character that
6700 begins the next row.
6701
76db6fcc 6702 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
2d4018aa
EZ
6703 definition of "struct Lisp_Symbol".
6704
70eab5c1
GM
67052010-04-24 Glenn Morris <rgm@gnu.org>
6706
6707 * Makefile.in (CRT_DIR): New variable, set by configure.
6708 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
6709 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
6710
1ad4cc3d
DN
67112010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
6712
e769f484
DN
6713 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
6714
4196ff33
DN
6715 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
6716
879b0ee4
DN
6717 Remove redundant flags.
6718 * s/freebsd.h (C_SWITCH_SYSTEM):
6719 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
6720 * s/netbsd.h (C_SWITCH_SYSTEM):
6721 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
6722 of these.
6723
03cbbcb8
DN
6724 Simplify m/intel386.h.
6725 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
6726 user: ecrt0.c.
6727 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
6728 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
6729 the only user: s/unixware.h.
6730 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
6731 from m/intel386.h.
bba3e508
SM
6732 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE):
6733 Definitions moved here from m/intel386.h.
03cbbcb8 6734
1ad4cc3d
DN
6735 * m/mips.h: Remove #if 0 code.
6736
8785b888
EZ
67372010-04-23 Eli Zaretskii <eliz@gnu.org>
6738
728588cc
EZ
6739 Fix display of composed characters from L2R scripts in bidi buffers.
6740 * xdisp.c (set_iterator_to_next, next_element_from_composition):
6741 After advancing IT past the composition, resync the bidi iterator
6742 with IT's position. (Bug#5977)
6743
a63f80b4
DN
67442010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
6745
6746 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
6747 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
6748
ff5dec5c
SM
67492010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
6750
6751 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
6752
8785b888
EZ
67532010-04-23 Eli Zaretskii <eliz@gnu.org>
6754
58ccf243 6755 Support `display' text properties and overlay strings in bidi buffers.
8785b888
EZ
6756 * xdisp.c (pop_it): When the stack is popped after displaying
6757 from a string, bidi-iterate to exit from the text portion covered
6758 by the `display' property or overlay. (Bug#5988, bug#5920)
6759
feeb1604
DN
67602010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
6761
8e324eb6
DN
6762 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
6763 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
6764
809fcaba
DN
6765 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
6766 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
6767
ed710380
DN
6768 Simplify STARTFILES definition.
6769 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
6770 relying on Makefile.in to define it.
6771 * s/cygwin.h (START_FILES): Likewise.
6772 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
6773
feeb1604
DN
6774 Clean up Solaris code.
6775 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
6776 (LIB_MOTIF): Remove, configure takes care of this.
6777 (NOT_USING_MOTIF): Remove, unused.
6778 * xrdb.c: Remove #if 0-ed #include.
6779 (SYSV): Remove conditional for old SysV.
6780 * sysdep.c (closedir): Remove conditional code for Solaris,
6781 Solaris has closedir.
6782
a0d0b563
JD
67832010-04-22 Jan Djärv <jan.h.d@swipnet.se>
6784
6785 * xsettings.c (read_and_apply_settings): Check if current_font is
6786 NULL before strcmp (Bug#6001).
6787
56bae7c7
DN
67882010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
6789
6790 Clean up HP-UX files.
6791 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
6792 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
6793 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
6794 * s/hpux10-20.h: ... to the only user, here.
6795
372b7a95
EZ
67962010-04-21 Eli Zaretskii <eliz@gnu.org>
6797
6798 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
6799 use buffer-local values of paragraph-start and paragraph-separate.
6800 <paragraph_start_re, paragraph_separate_re>: Rename from
6801 fallback_paragraph_start_re and fallback_paragraph_separate_re.
6802 (Bug#5992)
6803
f904c0f9
JD
68042010-04-21 Jan Djärv <jan.h.d@swipnet.se>
6805
6806 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
6807 current_tool_bar_style are new.
6808 (store_config_changed_event): Rename from store_font_changed_event.
6809 (XSETTINGS_TOOL_BAR_STYLE): New define.
6810 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
6811 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
6812 HAVE_XFT.
6813 (something_changedCB): store_font_changed_event is now
c4cc8b9a 6814 store_config_changed_event.
bba3e508
SM
6815 (parse_settings): Rename from parse_xft_settings.
6816 Read non-xft xsettings outside #ifdef HAVE_XFT.
ef1b0ba7 6817 (read_settings): Rename from read_xft_settings.
f904c0f9
JD
6818 (apply_xft_settings): Take current settings as parameter. Do not
6819 call read_(xft)_settings.
6820 (read_and_apply_settings): New function.
bba3e508
SM
6821 (xft_settings_event): Do non-xft stuff out of HAVE_XFT.
6822 Call read_and_apply_settings if there are settings to be read.
ef1b0ba7 6823 (init_xsettings): Rename from init_xfd_settings.
f904c0f9
JD
6824 Call read_and_apply_settings unconditionally.
6825 (xsettings_initialize): Call init_xsettings.
6826 (Ftool_bar_get_system_style): New function.
6827 (syms_of_xsettings): Define Qmonospace_font_name and
6828 Qtool_bar_style. Initialize current_tool_bar_style to nil.
f9dddf52 6829 defsubr Stool_bar_get_system_style. Fprovide on
f904c0f9 6830 dynamic-setting.
31a01b90 6831 Move misplaced HAVE_GCONF
f904c0f9
JD
6832
6833 * xsettings.h (Ftool_bar_get_system_style): Declare.
6834
6835 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
6836 Qtext, Qboth, Qboth_horiz are new.
6837 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
6838 Vtool_bar_style, tool_bar_max_label_size.
6839
6840 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
6841
6842 * keyboard.c: QClabel is new.
6843 (parse_tool_bar_item): Take out QClabel from tool bar items.
6844 Try to construct a label if ther is no QClabel.
6845 (syms_of_keyboard): Intern :label as QClabel.
6846
6847 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
6848 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
6849 New.
6850
6851 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
6852 dynamic-setting.el.
6853
6854 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
6855 (xg_make_tool_item, xg_show_toolbar_item): New function.
6856 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
6857 Call xg_make_tool_item to make a tool bar item.
6858 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
6859
6860 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
6861 into account for toolbars.
6862
c632dfda
JD
68632010-04-21 Jan Djärv <jan.h.d@swipnet.se>
6864
6865 * data.c (make_blv): Declarations before code (Bug#5993).
6866
10efe302
GM
68672010-04-21 Glenn Morris <rgm@gnu.org>
6868
6869 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
6870 Define using autoconf, not cpp.
6871 (LIBXSM): New variable, set by autoconf.
6872 (LIBXT): Use $LIBXSM.
6873
4285ac5a
DN
68742010-04-21 Dan Nicolaescu <local_user@dannlt>
6875
3ec759e7
DN
6876 Remove NOMULTIPLEJOBS, unused.
6877 * s/template.h (NOMULTIPLEJOBS):
6878 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
6879
4285ac5a
DN
6880 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
6881 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
6882 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
6883 detects -znocombreloc and passes it to the linker
6884 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
6885
2807228d
GM
68862010-04-21 Glenn Morris <rgm@gnu.org>
6887
6888 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
6889
574c05e2
KK
68902010-04-21 Karel Klíč <kklic@redhat.com>
6891
6892 * Makefile.in (LIBSELINUX_LIBS): New.
6893 (LIBES): Add $LIBSELINUX_LIBS.
6894 * eval.c, lisp.h (call7): New function.
6895 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
6896 (Ffile_selinux_context, Fset_file_selinux_context):
6897 New functions.
6898 (Fcopy_file): New parameter preserve-selinux-context.
6899 (Frename_file): Preserve selinux context when renaming by copy-file.
6900
91eac4bb 69012010-04-21 Juanma Barranquero <lekktu@gmail.com>
acd0102a 6902 Eli Zaretskii <eliz@gnu.org>
91eac4bb 6903
50426a04
JB
6904 Don't depend on cm.c or termcap.c on Windows, use stubs.
6905 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
6906 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
6907 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
6908 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
6909 (sys_tputs, sys_tgetstr): New stubs.
6910 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
6911 (tputs, tgetstr): New; define to sys_*.
91eac4bb 6912
938efb77
JB
69132010-04-20 Juanma Barranquero <lekktu@gmail.com>
6914
6915 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
6916
b4bf28b7
SM
69172010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6918
8b1e1112
SM
6919 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
6920 Just signal a warning rather than an error when inside a let.
6921 (Fmake_variable_frame_local): Add the same test.
6922
933ac235
SM
6923 * font.c (syms_of_font): Make the style table vars read-only.
6924
b4bf28b7
SM
6925 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
6926 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
6927
6928 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
6929
93d68d0c
EZ
69302010-04-20 Eli Zaretskii <eliz@gnu.org>
6931
6932 Fix R2L paragraph display on TTY.
6933
6934 * xdisp.c (unproduce_glyphs): New function.
6935 (display_line): Use it when produced glyphs are discarded from R2L
6936 glyph rows.
6937 (append_composite_glyph): In R2L rows, prepend the glyph rather
6938 than appending it.
6939
6940 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
6941 rather than append it. Set up the resolved_level and bidi_type
6942 attributes of the appended glyph.
283ccc18
EZ
6943 (produce_special_glyphs): Mirror the backslash continuation
6944 character in R2L lines.
93d68d0c 6945
283ccc18 6946 Implement display of R2L paragraphs in GUI sessions.
26cdf528 6947
283ccc18
EZ
6948 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
6949 append_stretch_glyph.
bba3e508
SM
6950 (set_cursor_from_row) <cursor_x>: Remove unused variable.
6951 Fix off-by-one error in computing x at end of text in the row.
283ccc18
EZ
6952 (append_stretch_glyph): In reversed row, prepend the glyph rather
6953 than append it. Set resolved_level and bidi_type of the glyph.
6954 (extend_face_to_end_of_line): If the row is reversed, prepend a
6955 stretch glyph whose width is such that the rightmost glyph will be
6956 drawn at the right margin of the window. Fix off-by-one error on
bba3e508
SM
6957 TTY frames in testing whether a line needs face extension.
6958 Fix face extension at ZV. If this is the last glyph row, use
283ccc18
EZ
6959 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
6960 region face.
bba3e508
SM
6961 (set_cursor_from_row, display_line):
6962 Use MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
26cdf528 6963 row->continuation_lines_width.
283ccc18
EZ
6964 (next_element_from_buffer): Don't call bidi_paragraph_init if we
6965 are at ZV. Fixes a crash when reseated to ZV by
6966 try_window_reusing_current_matrix.
45903529
EZ
6967 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
6968 which happens with R2L glyph rows. Fixes a crash when inserting a
6969 character at end of an R2L line.
283ccc18
EZ
6970 (set_cursor_from_row): Don't be fooled by truncated rows: don't
6971 treat them as having zero-width characters. Improve comments.
6972 Don't reverse pos_before and pos_after for reversed glyph rows.
6973 Set cursor.x to negative value when the cursor might be on the
6974 left fringe.
6975 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
6976 left fringe, not the right one.
f951a506
EZ
6977 (notice_overwritten_cursor, draw_phys_cursor_glyph)
6978 (erase_phys_cursor): For reversed cursor_row, support cursor on
6979 the left fringe.
6980
283ccc18
EZ
6981 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
6982 of continuation indicators on the fringes.
6983 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
6984 left fringe.
6985
f951a506
EZ
6986 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
6987 draw cursor on the left fringe.
6988
6989 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
6990 cursor on the left fringe.
6991
f951a506
EZ
6992 * dispnew.c (update_text_area): Handle reversed desired rows when
6993 the cursor is on the left fringe.
6994 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
6995 below, not by 0, for when the cursor is on the left fringe.
6996
3bb49aaf
JD
69972010-04-20 Jan Djärv <jan.h.d@swipnet.se>
6998
6999 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
7000 widget is a scrollbar.
7001
c0be27fd
KH
70022010-04-20 Kenichi Handa <handa@m17n.org>
7003
7004 * charset.c (char_charset): Consider Vcharset_non_preferred_head
7005 only when the arg CHARSET_LIST is nil.
7006
ce5b453a
SM
70072010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7008
7009 Make variable forwarding explicit rather the using special values.
7010 Basically, this makes the structure of buffer-local values and object
7011 forwarding explicit in the type of Lisp_Symbols rather than use
7012 special Lisp_Objects for that. This tends to lead to slightly more
7013 verbose code, but is more C-like, simpler, and makes it easier to make
7014 sure we handled all cases, among other things by letting the compiler
7015 help us check it.
7016 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
7017 Removing forwarding objects.
7018 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
7019 (struct Lisp_Symbol): Make the various forms of variable-forwarding
7020 explicit rather than hiding them inside Lisp_Object "values".
7021 (XFWDTYPE): New macro.
7022 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
7023 (XBUFFER_LOCAL_VALUE): Remove.
7024 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
7025 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
7026 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
7027 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
7028 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
7029 Remove the Lisp_Misc_* header.
7030 (struct Lisp_Buffer_Local_Value): Redefine.
7031 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
7032 (struct Lisp_Misc_Any): Add filler to get the right size.
7033 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
7034 Lisp_Intfwd.
7035 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
7036 (DEFVAR_KBOARD): Allocate a forwarding object.
7037 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
7038 (let_shadows_global_binding_p): New function.
7039 (union Lisp_Val_Fwd): New type.
7040 (make_blv): New function.
7041 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
7042 (store_symval_forwarding, swap_in_global_binding, Fboundp)
7043 (swap_in_symval_forwarding, find_symbol_value, Fset)
7044 (let_shadows_buffer_binding_p, set_internal, default_value)
7045 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
7046 (Fkill_local_variable, Fmake_variable_frame_local)
7047 (Flocal_variable_p, Flocal_variable_if_set_p)
7048 (Fvariable_binding_locus):
7049 * xdisp.c (select_frame_for_redisplay):
7050 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
7051 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
7052 * frame.c (store_frame_param):
7053 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
7054 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
7055 value structure.
7056 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
7057 (clone_per_buffer_values): Only adjust markers into the current buffer.
7058 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
7059 (Fbuffer_local_value, set_buffer_internal_1)
7060 (swap_out_buffer_local_variables):
7061 Adapt to the new symbol value structure.
7062 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
7063 (defvar_per_buffer): Take a new arg for the fwd object.
7064 (buffer_lisp_local_variables): Return a proper alist (different fix
7065 for bug#4138).
7066 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
7067 (Fgarbage_collect): Don't handle buffer_defaults specially.
7068 (mark_object): Handle new symbol value structure rather than the old
7069 special Lisp_Misc_* objects.
7070 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
7071 * term.c (set_tty_color_mode):
7072 * bidi.c (bidi_initialize): Don't access the ->value field directly.
7073 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
7074 a buffer_local_flags.
7075 * print.c (print_object): Get rid of impossible forwarding objects.
7076
fd3998ff
EZ
70772010-04-19 Eli Zaretskii <eliz@gnu.org>
7078
7079 * bidi.c (bidi_get_type, bidi_get_category)
7080 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
ce5b453a
SM
7081 (bidi_type_of_next_char, bidi_level_of_next_char):
7082 Declare static. Use `INLINE' rather than `inline'.
fd3998ff 7083
e42cd1a7
JB
70842010-04-19 Juanma Barranquero <lekktu@gmail.com>
7085
7086 * dired.c (Ffile_attributes): Fix typo in docstring.
7087
6e104790 70882010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
79353a53
AR
7089
7090 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
7091 NSInteger (Bug#5811).
7092
6e104790 70932010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
658b9b93
YM
7094
7095 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
7096 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
7097
6e104790 70982010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16009a0e
YM
7099
7100 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
7101
6e104790
SM
71022010-04-19 Chong Yidong <cyd@stupidchicken.com>
7103
7104 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
7105 terminal frames (Bug#5837).
7106
37dcfea0
EZ
71072010-04-19 Eli Zaretskii <eliz@gnu.org>
7108
d1da276f
EZ
7109 * .gdbinit (xsubchartable): New command.
7110
37dcfea0
EZ
71112010-04-19 Eli Zaretskii <eliz@gnu.org>
7112
7113 * xdisp.c (display_line): Don't write beyond the last glyph row in
9166b0f3 7114 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
37dcfea0
EZ
7115 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
7116 and
7117 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
7118
e9515805
SM
71192010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
7120
7121 * alloc.c (Fpurecopy): Hash-cons if requested.
7122 (syms_of_alloc): Update purify-flag docstring.
7123
22aa44a8
JD
71242010-04-18 Jan Djärv <jan.h.d@swipnet.se>
7125
7126 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
7127 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
7128
ebb5722e
EZ
71292010-04-17 Eli Zaretskii <eliz@gnu.org>
7130
7131 Fix a crash when an NSM character is inserted at BEGV.
7132
7133 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
7134 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
7135 NEUTRAL_B or UNKNOWN_BT.
7136
0f4442ef
EZ
71372010-04-16 Eli Zaretskii <eliz@gnu.org>
7138
7139 * xdisp.c (set_cursor_from_row): Don't consider possibility of
7140 other rows with cursor unless they are different from this row and
7141 this row is part of a continued line. (Bug#5943)
7142
7d4e45f8
DN
71432010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
7144
7145 * s/freebsd.h: Restore osreldate.h include.
7146 Suggested by Naohiro Aota.
7147
5ba5ec85
J
71482010-04-16 Jan Djärv <jan.h.d@swipnet.se>
7149
7150 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
7151
20af301d
CY
71522010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
7153
7154 * s/cygwin.h: Avoid linking against static libgcc.
7155
a4b000fb
JL
71562010-04-15 Juri Linkov <juri@jurta.org>
7157
7158 * window.c: Add Qscroll_command.
7159 Remove Vscroll_preserve_screen_position_commands.
7160 (window_scroll_pixel_based, window_scroll_line_based): Check the
7161 `scroll-command' property on the last command instead of searching
7162 the last command in Vscroll_preserve_screen_position_commands.
7163 (syms_of_window): Initialize and staticpro `Qscroll_command'.
7164 Put Qscroll_command property on Qscroll_up and Qscroll_down.
7165 (scroll-preserve-screen-position): Doc fix.
7166 (Vscroll_preserve_screen_position_commands): Remove variable.
7167
bc319ba4
DN
71682010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
7169
6bb24457
DN
7170 * xdisp.c (message): Do not use NO_ARG_ARRAY.
7171
19d4c244
DN
71722010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
7173
7174 Reduce cpp use in Makefile.in.
7175 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
7176 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
7177 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
7178 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
7179 (CRT0_COMPILE): Remove, inline it in the only user.
7180
32129746
JL
71812010-04-14 Juri Linkov <juri@jurta.org>
7182
7183 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
7184 `scroll-up-command' and `M-v' from `scroll-down' to
7185 `scroll-down-command'.
7186
9013a7f8
JL
71872010-04-14 Juri Linkov <juri@jurta.org>
7188
7189 * window.c (Vscroll_preserve_screen_position_commands): New variable
7190 with the default value as the list of Qscroll_down and Qscroll_up.
7191 (window_scroll_pixel_based, window_scroll_line_based): Search the
7192 last command in the list Vscroll_preserve_screen_position_commands
7193 instead of comparing with Qscroll_up and Qscroll_down.
7194
4bef8d26
JD
71952010-04-13 Jan Djärv <jan.h.d@swipnet.se>
7196
92848133
JD
7197 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
7198 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
7199 does that.
7200
4bef8d26
JD
7201 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
7202 to zero.
7203
58b963f7
SM
72042010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
7205
84164a0d
SM
7206 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
7207
2b0a91e7
SM
7208 Try to solve the problem of spurious EOF chars in long lines of text
7209 sent to interactive subprocesses.
7210 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
7211 (system_process_attributes): Remove unused var `ttotal'.
7212 * process.c (send_process): Don't bother breaking long line with EOF
7213 chars when talking to ttys any more.
7214 (wait_reading_process_output): Output a warning when called in such
7215 a way that it could block without being interruptible.
7216
58b963f7
SM
7217 Try to detect file modification within the same second.
7218 * buffer.h (struct buffer): New field modtime_size.
7219 * buffer.c (reset_buffer): Initialize it.
7220 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
7221 (Fverify_visited_file_modtime): Check it.
7222 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
7223 (Fset_visited_file_modtime): Set (or clear) it.
7224
01f5787b
SM
72252010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
7226
7227 * process.c (status_notify): Remove unused var `ro'.
7228
83725342
JD
72292010-04-12 Jan Djärv <jan.h.d@swipnet.se>
7230
7231 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
7232 more than one visual (Bug#5938).
7233
b9465836
DN
72342010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
7235
50426a04
JB
7236 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
7237 Undefine.
b9465836 7238
8d9c8ece
DN
72392010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
7240
b1f52161
DN
7241 Remove C_SWITCH_SYSTEM_TEMACS.
7242 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
7243 (malloc, realloc, free): Use emacs, not temacs for conditional
7244 definition.
7245
7246 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
7247 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
7248
8d9c8ece
DN
7249 Use autoconf, not cpp for some variables.
7250 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
7251 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
7252 (ALL_CFLAGS): Use them as make variables.
7253 (really-lwlib, really-oldXMenu): Do not pass them.
7254
1ecb2d3f
JD
72552010-04-11 Jan Djärv <jan.h.d@swipnet.se>
7256
7257 * xmenu.c (apply_systemfont_to_dialog): New.
7258 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
7259
3a4fa2f2
SM
72602010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
7261
97e53006
SM
7262 * process.c (exec_sentinel): Preserve current-buffer.
7263
3a4fa2f2
SM
7264 * process.c (read_process_output): Move the save-current-buffer to
7265 apply to both the filter and the non-filter branches.
7266
88df7221
DN
72672010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
7268
7269 * s/msdos.h (UNEXEC): New definition.
7270
5634ff85
YM
72712010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7272
6eff5c3d
YM
7273 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
7274 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
7275
7276 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
7277 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
7278 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
7279 TRY_WINDOW_CHECK_MARGINS.
7280
7281 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
5b253e9c
YM
7282 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
7283 width only when it is for padding.
5634ff85 7284
b13aef54
J
72852010-04-09 Jan Djärv <jan.h.d@swipnet.se>
7286
7287 * xfns.c (Fx_show_tip): Call try_window in a loop until
7288 fonts_changed_p is zero (Bug#2423).
7289
21d28484
EZ
72902010-04-08 Eli Zaretskii <eliz@gnu.org>
7291
7292 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
7293 the end of TEXT_AREA. (Bug#5856)
7294
0269ef77
JD
72952010-04-08 Jan Djärv <jan.h.d@swipnet.se>
7296
7297 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
7298 HAVE_GCONF.
7299
5930fe97
EZ
73002010-04-08 Eli Zaretskii <eliz@gnu.org>
7301
7302 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
7303 prev.orig_type, for resolving type of NSM. (Bug#5858)
7304
99852628
JD
73052010-04-08 Jan Djärv <jan.h.d@swipnet.se>
7306
7307 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
7308 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
7309 in current_font.
7310 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
50426a04
JB
7311 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
7312 New functions.
7313 (syms_of_xsettings): Initialize current_font.
7314 defsubr Sfont_get_system_normal_font.
99852628 7315
686b968e
JB
7316 * xsettings.h (Ffont_get_system_normal_font)
7317 (xsettings_get_system_normal_font): Declare.
99852628
JD
7318
7319 * xfns.c (extern xlwmenu_default_font): Remove.
7320 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
7321 to xlwmenu.c.
7322
7323 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
7324 menu items in UTF-8.
7325
7326 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
7327 (apply_systemfont_to_menu): New function.
bba3e508
SM
7328 (set_frame_menubar, create_and_show_popup_menu):
7329 Call apply_systemfont_to_menu.
99852628 7330
7fc874c4
J
73312010-04-07 Jan Djärv <jan.h.d@swipnet.se>
7332
7333 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
7334 FRAME_LINE_TO_PIXEL_Y.
7335
7336 * xterm.c (x_set_window_size_1): Don't add border_width/height to
7337 pixelwidth/height.
7338
863bf481
DN
73392010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
7340
5e5a3b92
DN
7341 Simplify code for HP machines.
7342 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
7343 for GNU_LINUX, not needed.
7344 (UNEXEC, NEED_BSDTTY): Move definitions...
7345 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
7346
863bf481
DN
7347 * m/iris4d.h (UNEXEC): Move definition ...
7348 * s/irix6-5.h (UNEXEC): ... here.
7349
3e6bec3b
JD
73502010-04-04 Jan Djärv <jan.h.d@swipnet.se>
7351
7352 * xfns.c (set_machine_and_pid_properties): New function.
7353 (Fx_create_frame): Call set_machine_and_pid_properties.
7354
2912322b
SM
73552010-04-03 Eli Zaretskii <eliz@gnu.org>
7356
bba3e508
SM
7357 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char):
7358 Check bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
1502b819
EZ
7359 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
7360
2912322b
SM
7361 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
7362 in this function. (Bug#5703)
7363
73642010-04-03 Chong Yidong <cyd@stupidchicken.com>
7365
7366 * nsterm.h: Fix last change.
7367
c435b432
DN
73682010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
7369
a568f507
DN
7370 * m/intel386.h (NO_REMAP): Move definition ...
7371 * s/msdos.h (NO_REMAP): ... here.
7372
4cd9f6c2
DN
7373 * m/vax.h (CRT0_DUMMIES): Remove, unused.
7374
c435b432
DN
7375 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
7376 used on those platforms.
7377
42a2c622
DN
73782010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
7379
7380 Remove extern errno declarations.
7381 * xterm.c:
7382 * xrdb.c:
7383 * w32term.c:
7384 * unexec.c:
7385 * unexaix.c:
7386 * sysdep.c:
7387 * process.c:
7388 * lread.c:
7389 * keyboard.c:
7390 * floatfns.c:
7391 * filelock.c:
7392 * fileio.c:
7393 * emacs.c (main):
7394 * ecrt0.c:
7395 * dispnew.c:
7396 * callproc.c:
7397 * buffer.c: Remove errno extern declarations.
7398 * s/netbsd.h (NEED_ERRNO): Remove.
7399
8224f93d
DN
74002010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
7401
7402 Remove all uses of LIBX11_SYSTEM.
7403 * Makefile.in (LIBX11_SYSTEM): Remove.
7404 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
7405 instead.
7406
814062c7
EZ
74072010-04-01 Eli Zaretskii <eliz@gnu.org>
7408
ed68db4d
EZ
7409 Remove support for DJGPP v1.x (bug#5813).
7410
7411 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
8224f93d
DN
7412 * s/msdos.h:
7413 * unexec.c (make_hdr, copy_text_and_data):
7414 * sysdep.c (wait_for_termination, sys_subshell):
ed68db4d 7415 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
52f4d8d5
EZ
7416 (IT_set_terminal_modes, __write, _rename, gethostname)
7417 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
7418 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
7419 the value of __DJGPP__.
ed68db4d
EZ
7420 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
7421 compatibility code.
8224f93d
DN
7422 * lread.c:
7423 * gmalloc.c (memalign):
7424 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
7425 * emacs.c (main):
7426 * dosfns.c (init_dosfns):
ed68db4d
EZ
7427 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
7428
52f4d8d5
EZ
74292010-04-01 Eli Zaretskii <eliz@gnu.org>
7430
814062c7
EZ
7431 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
7432 string with `cursor' property comes from an `after-string'
7433 overlay. (Bug#5816)
7434
0dc2e11d
GM
74352010-04-01 Glenn Morris <rgm@gnu.org>
7436
7437 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
7438 Define as Makefile variables.
7439 (LIBX): Use above variables rather than directly using autoconf.
7440
1d29df59
DN
74412010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
7442
7443 Clean up BSD_SYSTEM use.
7444 * xterm.c:
7445 * process.c:
7446 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
7447 for including <sys/ioctl.h>.
7448 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
7449 code is only used for MSDOS.
7450
1546c559
JL
74512010-03-31 Juri Linkov <juri@jurta.org>
7452
7453 * image.c: Add `Qextension_data'.
7454 (syms_of_image): Initialize and staticpro `Qextension_data'.
7455 (Fimage_metadata): Rename from `Fimage_extension_data'.
7456 (gif_load): Put GIF extension data to the property
7457 `Qextension_data'.
7458
6521c534
CY
74592010-03-31 Chong Yidong <cyd@stupidchicken.com>
7460
7461 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
7462 * nsterm.h: Fix prototype.
7463
52c30783
EZ
74642010-03-31 Eli Zaretskii <eliz@gnu.org>
7465
7466 * xdisp.c (highlight_trailing_whitespace): Support highlight of
7467 trailing whitespace in right-to-left rows.
7468
855a0da7
SM
74692010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7470
7471 Get rid of the direct_output optimizations.
7472 * keyboard.c (nonundocount): Remove extern declaration.
7473 (command_loop_1): Remove brittle optimisation for cheap and
7474 common operations.
7475 * xdisp.c (redisplay_internal): Don't bother checking
7476 redisplay_performed_directly_p any more.
7477 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
7478 any more.
7479 * dispnew.c (redisplay_performed_directly_p)
7480 (direct_output_for_insert, direct_output_forward_char):
7481 * dispextern.h (redisplay_performed_directly_p)
7482 (direct_output_for_insert, direct_output_forward_char): Remove.
7483 * cmds.c (nonundocount): Make it static.
7484
85738751 74852010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
a6d676d9
CY
7486
7487 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
7488
85738751 74892010-03-31 Jan Djärv <jan.h.d@swipnet.se>
67fee863
JD
7490
7491 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
7492 invisible (Bug#5766).
7493
85738751 74942010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
9ae6e189 7495
855a0da7
SM
7496 * xdisp.c (x_consider_frame_title, update_window_cursor):
7497 Remove HAVE_NS conditionals.
194d44e7 7498 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
9ae6e189
CY
7499
7500 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
7501 filename for the title.
7502 (ns_set_doc_edited): Do nothing if the selected window is a
7503 minibuffer window.
7504
7505 * nsterm.h: Add prototypes for ns_set_name_as_filename and
7506 ns_set_doc_edited.
7507
7508 * nsterm.m: Remove unneeded prototype.
7509
85738751 75102010-03-31 Glenn Morris <rgm@gnu.org>
25c72475
GM
7511
7512 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
7513 in the DOC file. (Bug#5336)
7514
85738751 75152010-03-31 Chong Yidong <cyd@stupidchicken.com>
f79a01db
CY
7516
7517 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
7518
75d1428c
SM
75192010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7520
7521 * window.c (keys_of_window): Remove redundant/overridden bindings.
7522
82043cfb
EZ
75232010-03-30 Eli Zaretskii <eliz@gnu.org>
7524
7525 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
7526 Restore original behavior when the iterator is not bidi_p.
7527
b5dd0ae7
DN
75282010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
7529
7530 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
7531
bd924a5d
EZ
75322010-03-30 Eli Zaretskii <eliz@gnu.org>
7533
7534 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
7535 are outside the range of cached character positions.
7536
3580374b
JB
75372010-03-30 Juanma Barranquero <lekktu@gmail.com>
7538
7539 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
7540
a7b02820
EZ
75412010-03-30 Eli Zaretskii <eliz@gnu.org>
7542
7543 Initial support for bidirectional editing.
7544
7545 * Makefile.in (obj): Include bidi.o.
7546 (bidi.o): New target.
7547
7548 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
7549 ($(BLD)/bidi.$(O)): New target.
7550
7551 * bidi.c: New file.
7552
7553 * buffer.h (struct buffer): New members bidi_display_reordering
7554 and bidi_paragraph_direction.
7555
7556 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
7557 and bidi_paragraph_direction.
7558 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
7559 and bidi-paragraph-direction.
7560 (Fbuffer_swap_text): Swap the values of
7561 bidi_display_reordering and bidi_paragraph_direction.
7562
7563 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
7564 (bidi_type_t, bidi_dir_t): New types.
7565 (bidi_saved_info, bidi_stack, bidi_it): New structures.
7566 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
7567 prev_stop, base_level_stop, and eol_pos.
7568 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
7569 (IT_STACK_SIZE): Enlarge to 5.
7570 (struct glyph_row): New member reversed_p.
7571 <string_buffer_position>: Update prototype.
7572 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
7573 glyph_row if bidi_it.paragraph_dir == R2L.
7574 (struct glyph): New members resolved_level and bidi_type.
7575
7576 * dispnew.c (direct_output_forward_char): Give up if we need bidi
7577 processing or buffer's direction is right-to-left.
7578 (prepare_desired_row): Preserve the reversed_p flag.
7579 (row_equal_p): Compare the reversed_p attributes as well.
7580
bba3e508
SM
7581 * xdisp.c (init_iterator): Initialize it->bidi_p.
7582 Call bidi_init_it and set it->paragraph_embedding from the current
a7b02820
EZ
7583 buffer's value of bidi_paragraph_direction.
7584 (reseat_1): Initialize bidi_it.first_elt.
7585 (set_iterator_to_next, next_element_from_buffer): Use the value of
7586 paragraph_embedding to determine the paragraph direction.
7587 (set_iterator_to_next): Under bidi reordering, call
7588 bidi_get_next_char_visually. Call bidi_paragraph_init if the
7589 new_paragraph flag is set in the bidi iterator.
7590 (next_element_from_buffer): If bidi_it.first_elt is set,
7591 initialize paragraph direction and find the first character to
7592 display in the visual order. If reseated to a middle of a line,
bba3e508
SM
7593 prime the bidi iterator starting at the line's beginning.
7594 Handle the situation where we overstepped stop_charpos due to
a7b02820
EZ
7595 non-linearity of the bidi iteration. Likewise for when we back up
7596 beyond the previous stop_charpos. When moving across stop_charpos,
7597 record it in prev_stop.
7598 (display_line): Set row->end and it->start for the next row to the
7599 next character in logical order. Always extend reversed_p rows to
7600 the end of line, even if they end at ZV. Copy the reversed_p flag
7601 to the next glyph row. Keep calling set_cursor_from_row for
7602 bidi-reordered rows even if we already have a possible candidate
7603 for cursor position. Set row_end after all the row's glyphs have
7604 been produced, by looping over the glyphs. Record the position
7605 after EOL in it->eol_pos, and use it to set end_pos of the last
7606 row produced for a continued line.
7607 <Qright_to_left, Qleft_to_right>: New variables.
7608 (syms_of_xdisp): Initialize and staticpro them.
7609 (string_buffer_position_lim): New function.
7610 (string_buffer_position): Most of code moved to
7611 string_buffer_position_lim. Last argument and return value are
7612 now EMACS_INT; all callers changed.
7613 (set_cursor_from_row): Rewritten to support bidirectional text and
7614 reversed glyph rows.
bba3e508
SM
7615 (text_outside_line_unchanged_p, try_window_id):
7616 Disable optimizations if we are reordering bidirectional text and the
a7b02820
EZ
7617 paragraph direction can be affected by the change.
7618 (append_glyph, append_composite_glyph)
7619 (produce_image_glyph, append_stretch_glyph): Set the
7620 resolved_level and bidi_type members of each glyph.
7621 (append_glyph): If the glyph row is reversed, prepend the glyph
7622 rather than appending it.
7623 (handle_stop_backwards): New function.
7624 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
7625 (reseat): call handle_stop_backwards to recompute prev_stop and
7626 base_level_stop for the new position.
7627 (handle_invisible_prop): Under bidi iteration, skip invisible text
7628 using bidi_get_next_char_visually. If we are `reseat'ed, init the
7629 paragraph direction. Update IT->prev_stop after skipping
7630 invisible text.
7631 (move_it_in_display_line_to): New variables prev_method
7632 and prev_pos. Compare for strict equality in
7633 BUFFER_POS_REACHED_P.
7634 (try_cursor_movement): Examine all the candidate rows that occlude
7635 point, to return the best match. If rows are bidi-reordered
7636 and point moved backwards, back up to the row that is not a
7637 continuation line, and start looking for a suitable row from
7638 there.
7639
7640 * term.c (append_glyph): Reverse glyphs by pre-pending them,
7641 rather than appending, if the glyph_row's reversed_p flag is set.
7642 Set the resolved_level and bidi_type members of each glyph.
7643
7644 * .gdbinit (pbiditype): New command.
7645 (pgx): Use it to display bidi level and type of the glyph.
7646 (pitx): Display some bidi information about the iterator.
7647 (prowlims, pmtxrows): New commands.
7648
32a8894e
DN
76492010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
7650
7651 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
7652 * s/usg5-4.h (LIBS_DEBUG):
7653 * s/irix6-5.h (C_DEBUG_SWITCH):
7654 * s/gnu-linux.h (LIBS_DEBUG):
7655 * s/darwin.h (LIBS_DEBUG):
7656 * s/bsd-common.h (LIBS_DEBUG):
7657 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
7658 * m/iris4d.h (LIBS_DEBUG):
7659 * m/hp800.h (LIBS_DEBUG): Remove definitions.
7660
7661 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
7662 (LIBS_DEBUG): Remove definition.
7663
649dbf36
CY
76642010-03-27 Chong Yidong <cyd@stupidchicken.com>
7665
7666 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
7667 Windows.
7668
cad4261f
YM
76692010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7670
7671 * process.c (Fmake_network_process): Don't call turn_on_atimers around
7672 `connect' (Bug#5723).
7673
cd591dbc
HE
76742010-03-25 Helmut Eller <eller.helmut@gmail.com>
7675
7676 * process.c (Fmake_network_process): Call `select' for interrupted
7677 `connect' rather than creating new socket (Bug#5173).
7678
e867cb5d 76792010-03-24 Jan Djärv <jan.h.d@swipnet.se>
93318cbd
JD
7680
7681 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
7682
7683 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
7684
7685 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
7686
e867cb5d 76872010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
ad13a3ee
YM
7688
7689 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
7690 XLoadQueryFont.
7691
e867cb5d 76922010-03-24 Kenichi Handa <handa@m17n.org>
fbdc1721
KH
7693
7694 * coding.c (decode_coding_ccl): Fix previous change for the
7695 multibyte case.
fb608df3
KH
7696 (encode_coding_ccl): Don't setup ccl program here. Fix for the
7697 case that the output buffer is fullfilled.
7698 (encode_coding): Setup ccl program here.
fbdc1721 7699
5845f0ed
DN
77002010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
7701
814fb708
DN
7702 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
7703
5845f0ed
DN
7704 Simplify LIBS_MACHINE definitions.
7705 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
7706 * m/iris4d.h (LIBS_MACHINE): Likewise.
7707 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
7708 * s/aix4-2.h (LIBS_SYSTEM): ... here.
38e3487c 7709 * s/netbsd.h: Remove commented out code.
5845f0ed 7710
b7064064
DN
77112010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
7712
df7734b2
DN
7713 Remove dead code dealing with POSIX_SIGNALS.
7714 * atimer.c (set_alarm): Remove dead code, all USG systems define
7715 POSIX_SIGNALS.
7716 * data.c (arith_error): Likewise.
7717 * keyboard.c (input_available_signal, handle_user_signal)
7718 (interrupt_signal): Likewise.
7719 * process.c (sigchld_handler): Likewise.
7720 (create_process): Remove if 0 code. Remove HPUX conditional when
7721 !defined (POSIX_SIGNALS), it cannot be true.
7722 * syssignal.h: Remove USG5_4 and USG conditionals when
7723 !POSIX_SIGNALS, they cannot be true.
7724
b7064064
DN
7725 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
7726 NO_SOCK_SIGIO, not used anymore.
7727
55da5ee3
DN
77282010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
7729
0be96e3a
DN
7730 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
7731 support vax on BSDs.
7732
55da5ee3
DN
7733 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
7734 * s/aix4-2.h (ORDINARY_LINK): ... here.
7735
c0282183
AS
77362010-03-21 Andreas Schwab <schwab@linux-m68k.org>
7737
82c3d67a
AS
7738 * Makefile.in (abs_builddir): Define.
7739 (bootstrap_exe): Use it.
7740 (VPATH): Use $(srcdir) instead of @srcdir@.
c0282183 7741
3613edce
SM
77422010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
7743
7744 * Makefile.in (bootstrap_exe): Use an absolute name.
7745
7f110ddc
DN
77462010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
7747
22e87574
DN
7748 Remove support for old GNU/Linux using libc version 5.
7749 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
7750 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
7751
05a670e6
DN
7752 Consolidate redundant definitions in s/bsd-common.h.
7753 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
7754 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
7755 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
7756 doing it in all files that include this one.
7757 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
7758 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
7759 (LDAV_SYMBOL, KERNEL_FILE): Remove.
7760 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
7761 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
7762 (LDAV_SYMBOL, KERNEL_FILE): Remove.
7763 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
7764 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
7765 (LDAV_SYMBOL, KERNEL_FILE): Remove.
7766
2968f561
DN
7767 Consolidate redundant definitions.
7768 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
7769 it's undefined in all files that include this one.
7770 (POSIX_SIGNALS): Define here instead of doing it in all files that
7771 include this one.
7772 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
7773 (POSIX_SIGNALS): Do not define.
7774 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
7775 (POSIX_SIGNALS): Do not define.
7776 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
7777 (POSIX_SIGNALS): Do not define.
7778
15d25dc0
DN
7779 Remove support for old UNIX System V systems.
7780 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
7781 * s/usg-5-4-2.h: Remove.
7782
07e339e4
DN
7783 Remove support for Solaris on PPC and for old versions.
7784 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
7785 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
7786 that cancel each other.
7787 * s/sol2-3.h:
7788 * s/sol2-4.h:
7789 * s/sol2-5.h: Remove.
7790 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
7791 (NO_REMAP): Remove, unused.
7792 (UNEXEC): Move definition ...
7793 * s/aix4-2.h (UNEXEC): ... here.
7794
7f110ddc
DN
7795 * s/openbsd.h: Remove support for non-ELF and for systems that do
7796 not support shared libraries.
7797 * s/netbsd.h:
7798 * s/freebsd.h: Likewise.
7799
605f35cd
DN
78002010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
7801
7802 Remove non-working support for lynxos 3.0.
7803 * s/lynxos.h: Remove file.
7804
7805 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
7806 COFF_BSD_SYMBOLS, nothing defines it anymore.
7807
aed71cf4
DN
78082010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
7809
7810 Remove obsolete uses of HAVE_SHM.
7811 * emacs.c (standard_args):
7812 (Fdump_emacs):
7813 (syms_of_emacs): Remove code depending on HAVE_SHM.
7814
7815 * alloc.c: Remove HAVE_SHM dependent definition.
7816
7817 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
7818
aded53ff
GM
78192010-03-18 Glenn Morris <rgm@gnu.org>
7820
17284745
GM
7821 * emacs.c (USAGE4): Hard-code bug address.
7822 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
7823 (bug_reporting_address): Remove.
7824 (main): Don't call bug_reporting_address.
7825
aded53ff
GM
7826 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
7827 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
7828
303500aa
CY
78292010-03-15 Chong Yidong <cyd@stupidchicken.com>
7830
7831 * xfns.c (Fx_create_frame):
7832 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
7833 on left.
7834
cef3058f
CY
78352010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
7836
7837 * editfns.c (Fformat): Account for string precision when computing
7838 field width (Bug#5710).
7839
a647d59d
CY
78402010-03-12 Chong Yidong <cyd@stupidchicken.com>
7841
4fa42018
CY
7842 * xfns.c (Fx_create_frame): Set default to Qright.
7843
a647d59d
CY
7844 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
7845 all window systems.
7846
6da23aaa
EZ
78472010-03-12 Eli Zaretskii <eliz@gnu.org>
7848
a96f6398 7849 These changes remove termcap.c from the build on Posix platforms.
83d02def 7850 * Makefile.in (termcapobj): Move termcap.o from here...
6da23aaa
EZ
7851 (MSDOS_OBJ): ...to here.
7852 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
7853 now identical to when LIBS_TERMCAP is defined.
7854
7855 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
7856
7857 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
7858
a96f6398 7859 * config.in: Regenerated. (See top-level ChangeLog.)
6da23aaa 7860
288f9fc0
CY
78612010-03-10 Chong Yidong <cyd@stupidchicken.com>
7862
7863 * Branch for 23.2.
7864
d48cd3f4
SM
78652010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
7866
7867 Cleanup setup of gl_state in various parts of the code.
7868 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
7869 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
7870 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
7871 (skip_chars):
7872 * regex.c (regex_compile): Use it.
7873 (re_compile_pattern): Don't set gl_state.current_syntax_table since
7874 it's now set in regex_compile when/if we need it.
7875
618db430
SM
78762010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
7877
c0335e02
SM
7878 Make it possible to C-g in a tight bytecode loop again (bug#5680).
7879 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
7880 (QUIT): Use it to consolidate code and remove redundancy.
7881 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
7882
254c06a8
SM
7883 * regex.c (regex_compile): Setup gl_state as well.
7884
618db430
SM
7885 * syntax.c (skip_chars): Setup gl_state (bug#3823).
7886 (in_classes): Use CONSP before XCAR/XCDR.
7887
233f0c9f
CY
78882010-03-03 Chong Yidong <cyd@stupidchicken.com>
7889
7890 * keymap.c (Fwhere_is_internal): Use Fequal to compare
7891 definitions, so that keyboard macros are correctly handled
7892 (Bug#5481).
7893
75f80e63
EZ
78942010-03-02 Eli Zaretskii <eliz@gnu.org>
7895
7896 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
7897 text that could be relocated inside the call to emacs_mule_char.
7898 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
7899 (CODING_DECODE_CHAR): Add a comment describing its purpose.
7900
dcfb9bc4
KH
79012010-03-02 Kenichi Handa <handa@m17n.org>
7902
fc9a17bc
KH
7903 * character.c (parse_str_as_multibyte): Fix handling of the
7904 multibyte form of raw-bytes.
7905 (str_as_multibyte): Likewise.
7906
dcfb9bc4
KH
7907 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
7908 form of raw-bytes.
7909
412c01b6
CY
79102010-02-28 Chong Yidong <cyd@stupidchicken.com>
7911
7912 * charset.c (load_charset_map_from_file)
7913 (load_charset_map_from_vector): Zero out allocated
7914 charset_map_entries before using them.
7915
df7e1ea0
AS
79162010-02-27 Andreas Schwab <schwab@linux-m68k.org>
7917
7918 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
7919
fe69a722
CY
79202010-02-27 Chong Yidong <cyd@stupidchicken.com>
7921
4ed28cf4
CY
7922 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
7923 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
fe69a722 7924
7379cfce
KH
79252010-02-26 Kenichi Handa <handa@m17n.org>
7926
f88cc4d6
KH
7927 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
7928
7379cfce
KH
7929 * xdisp.c (reseat_to_string): Fix previous change.
7930
cf2fdcfb
CY
79312010-02-26 David Reitter <david.reitter@gmail.com>
7932
7933 * nsfont.m (nsfont_draw): ns_antialias_text should be a
7934 Lisp_Object (Bug#4736).
7935
cc6c7c75
KH
79362010-02-25 Kenichi Handa <handa@m17n.org>
7937
7938 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
7939
32e737d7
JD
79402010-02-24 Jan Djärv <jan.h.d@swipnet.se>
7941
7942 * xterm.c (XTflash): Move declarations before statements.
7943
7944 * gtkutil.c (xg_get_gdk_display): Remove (unused).
7945 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
7946 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
7947 (xg_create_tool_bar): Remove unused variables.
7948 (x_wm_set_size_hint): Move declarations before statements.
a73f9c9d 7949 (xg_create_frame_widgets): Remove variable grav.
32e737d7 7950
676cae9f
CY
79512010-02-21 Chong Yidong <cyd@stupidchicken.com>
7952
7953 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
7954
886cc2b8
SM
79552010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
7956
7957 * term.c (fatal): Add a final \n if needed (bug#5596).
7958
ddb2d8e2
CY
79592010-02-18 Chong Yidong <cyd@stupidchicken.com>
7960
7961 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
7962
2a4f8d3d
GM
79632010-02-18 Glenn Morris <rgm@gnu.org>
7964
7965 * callint.c (Finteractive): Doc fix.
7966
ebaf11b6
KH
79672010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
7968
886cc2b8
SM
7969 * coding.c (record_conversion_result):
7970 Handle CODING_RESULT_INSUFFICIENT_DST.
ebaf11b6
KH
7971 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
7972 memory allocation error.
7973
d0396581
KH
79742010-02-17 Kenichi Handa <handa@m17n.org>
7975
886cc2b8
SM
7976 * coding.c (decode_coding_ccl): Don't setup ccl program here.
7977 Fix for the case that the output buffer is fullfilled.
d0396581
KH
7978 (decode_coding): Setup ccl program here. Keep looping when the
7979 decoder stopped because the output buffer is
7980 fullfilled (bug#5534).
7981
7982 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
7983
98599f74
JD
79842010-02-13 Jan Djärv <jan.h.d@swipnet.se>
7985
471e4f04 7986 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
98599f74 7987 bug #5571.
886cc2b8 7988 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
471e4f04 7989 overdrawn.
98599f74 7990
182659ae
JD
79912010-02-10 Jan Djärv <jan.h.d@swipnet.se>
7992
7993 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
7994 doing_interact here.
7995 (ice_connection_closed): New function.
7996 (x_session_check_input, smc_die_CB, ice_io_error_handler)
7997 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
7998 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
7999 returns I/O error.
8000 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
8001 bug #5512.
8002
9be32c4e 80032010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
14a225f9
CY
8004
8005 * nsfont.m (nsfont_open): The system's value for the font descent
8006 is negative, so round it down to avoid clipping.
8007
a2f3eb19
CY
80082010-02-06 Chong Yidong <cyd@stupidchicken.com>
8009
8010 * charset.c (load_charset_map_from_file)
8011 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
953d248c 8012 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
a2f3eb19 8013
3088147c
CY
80142010-02-05 Chong Yidong <cyd@stupidchicken.com>
8015
8016 * charset.c (load_charset_map_from_file): Allocate large
8017 charset_map_entries structure on the heap rather than the stack.
8018 (Bug#5526).
8019
b57d9029
KH
80202010-01-31 Kenichi Handa <handa@m17n.org>
8021
8022 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
115e4fd3 8023 size in NAME is invalid, return -1 (Bug#5396).
b57d9029 8024
c67d885b
CY
80252010-01-31 Chong Yidong <cyd@stupidchicken.com>
8026
8027 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
8028 <deactivated@gmail.com> (Bug#3605).
8029
8fab2362
CY
80302010-01-31 David De La Harpe Golden <david@harpegolden.net>
8031
8032 * fileio.c (Frename_file): Correctly rename symlinks to
8033 directories (Bug#5496).
8034
cb2a62f2
CY
80352010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
8036
8037 * nsterm.m (ns_ring_bell): Handle visible bell like X.
8038
944c7a26
AS
80392010-01-30 Andreas Schwab <schwab@linux-m68k.org>
8040
8041 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
8042
c024ac08
CY
80432010-01-29 Chong Yidong <cyd@stupidchicken.com>
8044
8045 * frame.c (DEFAULT_ROWS): Change default to 35.
8046
8047 * xfns.c (x_default_font_parameter): Change default XFT font to
8048 monospace-10 (Bug#3643).
8049
af93af83
EZ
80502010-01-29 Eli Zaretskii <eliz@gnu.org>
8051
8052 * w32inevt.c (key_event): Remove unnecessary comparison of
8053 event->uChar.AsciiChar with 128.
8054
ca0eb708
CY
80552010-01-28 Chong Yidong <cyd@stupidchicken.com>
8056
b242dbfc
CY
8057 * fileio.c (Frename_file): Fix last change (Bug#5487).
8058
ca0eb708
CY
8059 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
8060
8061 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
8062
45d45af5
JD
80632010-01-28 Jan Djärv <jan.h.d@swipnet.se>
8064
8065 * xfns.c (Fx_create_frame): Remove window size matching code from
8066 2010-01-15.
a73f9c9d 8067 (x_get_current_desktop, x_get_desktop_workarea): Remove.
45d45af5 8068
7e233730
JR
80692010-01-27 Jason Rumney <jasonr@gnu.org>
8070
8071 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
a292592c 8072 (key_event): Use unicode for characters 128 and higher (Bug#4567).
7e233730 8073
86e893e3
KH
80742010-01-27 Kenichi Handa <handa@m17n.org>
8075
8076 * regex.c (analyse_first): Fix setting of fastmap for unibyte
c8b96b2a 8077 pattern string (Bug#4209).
86e893e3 8078
8719abec
CY
80792010-01-27 David De La Harpe Golden <david@harpegolden.net>
8080
8081 * fileio.c (Frename_file): Call copy-directory and
8082 delete-directory for directories, in order to handle cross-device
8083 renaming (Bug#3353).
8084
844794c8
JD
80852010-01-25 Jan Djärv <jan.h.d@swipnet.se>
8086
aa3e13b5 8087 * xfns.c (Fx_create_frame): If frame height is too big, try
ac146f82 8088 sizes 24 and 10. Bug #3643.
844794c8 8089
bd4b5750
SM
80902010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
8091
8dc1adf6 8092 Try and fix bug#788, hopefully for real this time.
bd4b5750
SM
8093 * keymap.c (shadow_lookup): Add `remap' arg.
8094 (describe_map, describe_vector): Update calls to shadow_lookup.
8095 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
8096 `remapped' so this flag is applicable to `sequence'. Be careful to
8dc1adf6
SM
8097 perform remapping during shadow_lookup check of remapped_sequences.
8098
285d07e2
CY
80992010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
8100
8101 * image.c (png_load): Use png_sig_cmp instead of the obsolete
8102 png_check_sig, which has been removed in libpng 1.4.
8103
c6d09b8d
CY
81042010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
8105
8106 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
8107 lacks this header file).
8108
3d782998
YM
81092010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8110
8111 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
8112 as in Emacs 22.
8113
2aff7c53
YM
81142010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8115
8116 * lisp.h (make_pure_string): String pointer arg now points to const.
8117
8118 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
8119 args now point to const.
8120
74327f7a
EZ
81212010-01-22 Eli Zaretskii <eliz@gnu.org>
8122
8123 * lread.c (Fload): Don't treat files without .elc extension as
8124 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
8125 them. (bug#5303)
8126
4d1e6632
KH
81272010-01-20 Kenichi Handa <handa@m17n.org>
8128
8129 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
8130 treat the source as actual byte sequence.
8131
1fdede8f
AM
81322010-01-19 Alan Mackenzie <acm@muc.de>
8133
8134 Fix spurious before-change-functions invocation from (insert ?\n).
194d44e7 8135 * textprop.c (set_text_properties): Rename parameter
1fdede8f
AM
8136 `signal_after_change_p' to `coherent_change_p', and make the
8137 invocation of `modify_region' conditional on it.
8138
67477f30
JD
81392010-01-19 Jan Djärv <jan.h.d@swipnet.se>
8140
8141 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
8142 for debug purpose.
8143 (syms_of_xsettings): Declare xft-settings.
8144
244b023e
CY
81452010-01-18 Chong Yidong <cyd@stupidchicken.com>
8146
8147 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
8148
617364fe
CY
81492010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
8150
8151 * xterm.c (event_handler_gdk): Block input (Bug#5037).
8152
4fe22cdf
CY
81532010-01-16 Chong Yidong <cyd@stupidchicken.com>
8154
8155 * emacs.c (standard_args): Adjust arg priorities to reflect how
8156 they are processed in startup.el.
8157
e118d2be
AS
81582010-01-16 Andreas Schwab <schwab@linux-m68k.org>
8159
8160 * Makefile.in (lisp, shortlisp): Update.
8161
523ae620
SM
81622010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
8163
8164 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
8165 code, link the new kboard into all_kboard before running Lisp code,
8166 and protect the new terminal with GCPRO (Bug#5365).
8167 (x_term_init): Remove unused var `atom'.
8168 (x_delete_display, x_delete_terminal): Remove unused var `i'.
8169
f0d13888
JD
81702010-01-15 Jan Djärv <jan.h.d@swipnet.se>
8171
8172 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
8173 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
8174 to find out usable size of the desktop. Don't make frames larger than
ac146f82 8175 this. Bug #3643.
f0d13888 8176
cc320f07
KH
81772010-01-15 Kenichi Handa <handa@m17n.org>
8178
8179 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
8180
7ffdf101
CY
81812010-01-15 Chong Yidong <cyd@stupidchicken.com>
8182
8183 * nsterm.m (Qnone): Define.
8184
8185 * nsfns.m (Qnone): Move definition to nsterm.m.
8186
d12bd917
KH
81872010-01-14 Kenichi Handa <handa@m17n.org>
8188
8189 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
8190 systems.
8191
d9a7c140
KH
81922010-01-14 Kenichi Handa <handa@m17n.org>
8193
8194 Make auto-composition work on all buffers even if they are
8195 fundamental mode.
8196
8197 * composite.c (Vauto_composition_mode): New variable.
8198 (composition_compute_stop_pos): Check Vauto_composition_mode
8199 instead of Vauto_composition_function.
8200 (composition_adjust_point, Ffind_composition_internal): Likewise.
8201 (syms_of_composite): Declare Lisp variable
8202 "auto-composition-mode" here.
8203
63286bb2
CY
82042010-01-13 Chong Yidong <cyd@stupidchicken.com>
8205
8206 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
8207 during call to vendor-specific-keysyms (Bug#5365).
8208
c2623ee7
YM
82092010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8210
8211 * keyboard.c (input_available_signal) [SYNC_INPUT]:
8212 Call SIGNAL_THREAD_CHECK (Bug#5333).
8213
8214 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
8215 Call SIGNAL_THREAD_CHECK.
8216
0b5397c2
SM
82172010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
8218
8219 Try to fix bug#5314. This is probably not the final word, tho.
8220 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
8221 recent-auto-save-p as a side-effect.
8222 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
8223 * buffer.c (Fkill_buffer, reset_buffer):
8224 * editfns.c (Fsubst_char_in_region):
8225 * fileio.c (Finsert_file_contents, Fdo_auto_save)
8226 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
8227
dc954cb2
KH
82282010-01-13 Kenichi Handa <handa@m17n.org>
8229
8230 Display buffer name, etc. in mode line by composing correctly.
8231
8232 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
8233 STRING is not nil.
0b5397c2 8234 (display_mode_element): Adjust for the change of
dc954cb2
KH
8235 decode_mode_spec and display_line.
8236 (decode_mode_spec): Change arg MULTIBYTE to STRING.
8237 (display_string): Handle the case that STRING is non-null and
8238 LISP_STRING is not nil.
8239
0b5397c2
SM
8240 * xterm.c (x_draw_composite_glyph_string_foreground):
8241 Pay attention to s->face->overstrike.
dc954cb2
KH
8242
8243 * composite.c (composition_reseat_it): Don't check PT if STRING is
8244 non nil.
8245
4a00eaca
YM
82462010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8247
8248 * keyboard.c (read_char): Don't apply previous change when current
8249 buffer is unchanged by command execution.
8250
60abb287
JD
82512010-01-12 Jan Djärv <jan.h.d@swipnet.se>
8252
8253 * keyboard.c (read_char): Return after executing from special map.
8254
893db5bc
GM
82552010-01-12 Glenn Morris <rgm@gnu.org>
8256
8257 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
8258 bug-gnu-emacs rather than emacs-pretest-bug.
8259
4d03ece0
CY
82602010-01-11 Chong Yidong <cyd@stupidchicken.com>
8261
8262 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
8263 initializing the Lisp variables that depend on them.
8264
1df47e38
YM
82652010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8266
8267 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
8268 Clear areas that will not be updated after change of menu bar lines.
8269 Clear the menu bar window's current matrix when the window gets empty.
8270
2f1c6384
CY
82712010-01-09 Chong Yidong <cyd@stupidchicken.com>
8272
e398c61c
CY
8273 * intervals.h, textprop.c (extend_property_ranges): Return value
8274 and args changed. Discard properties that begin at or after the
8275 new end (Bug#5306).
8276
8277 * editfns.c (Fformat): Caller changed.
8278
e5a29a10
CY
8279 * nsterm.m (ns_set_default_prefs): Delete function.
8280 (syms_of_nsterm): Initialize ns_command_modifier,
8281 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
8282 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
8283
2f1c6384
CY
8284 * xdisp.c (pos_visible_p): Check for invisible text at the correct
8285 position (Bug#4040).
8286
d427a9fa
EZ
82872010-01-09 Eli Zaretskii <eliz@gnu.org>
8288
8289 * editfns.c (Ffloat_time): Doc fix.
8290
21b9df2f
JD
82912010-01-09 Jan Djärv <jan.h.d@swipnet.se>
8292
8293 * xfns.c (Fx_create_frame): Don't create frame larger than display
8294 by default bug#3643.
8295
4b00d3b1
YM
82962010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8297
8298 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
8299 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
8300 windows above internal border.
8301
8302 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
8303 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
8304 windows above internal border.
8305
8306 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
8307 tool bar windows specially.
8308
8309 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
8310
8311 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
8312 specially.
8313 (XTflash): Take account of menu bar height.
8314
8315 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
8316 specially.
8317
5075d853
JD
83182010-01-08 Jan Djärv <jan.h.d@swipnet.se>
8319
ac146f82 8320 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
5075d853
JD
8321 also be true before we can return early (bug #5339).
8322
474217c8
CY
83232010-01-06 David Reitter <david.reitter@gmail.com>
8324
8325 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
8326 (Fns_display_usable_bounds): Rewrite, computing bounds properly
8327 (Bug#3233).
8328
c0e6d47d
JD
83292010-01-06 Jan Djärv <jan.h.d@swipnet.se>
8330
d0cf45b7
JD
8331 * font.c (font_open_entity): Enable chache and call cached_font_ok
8332 for the driver if defined.
8333 (QCuser_spec): New symbol.
8334 (font_spec_from_name): Save name as user-spec.
8335 (font_load_for_lface): Keep user-spec instead of name.
8336 (font_open_by_name): Save name as user-spec.
8337 (syms_of_font): Initialize QCuser_spec.
b7f8e4f5 8338 (font_clear_prop): Clear name if it exists in font (bug#5157).
d0cf45b7
JD
8339
8340 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
8341 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
8342 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
8343
8344 * font.h (struct font_driver): Add cached_font_ok.
8345
c0e6d47d
JD
8346 * xterm.c (x_clear_frame): Queue draw for scroll bars.
8347
7c583cd8
JD
83482010-01-05 Jan Djärv <jan.h.d@swipnet.se>
8349
8350 * xterm.c (x_new_font): Move code for setting rows/cols before
8351 resizing ...
ac146f82 8352 (x_set_window_size): ... to here. Bug #2568.
7c583cd8
JD
8353
8354 * gtkutil.c (xg_clear_under_internal_border): New function.
0b5397c2
SM
8355 (xg_frame_resized, xg_frame_set_char_size):
8356 Call xg_clear_under_internal_border.
7c583cd8 8357 (xg_update_scrollbar_pos): Clear under old scroll bar position.
69e2f185 8358
03f77f0a
CY
83592010-01-05 Chong Yidong <cyd@stupidchicken.com>
8360
8361 * keyboard.c (read_key_sequence): Catch keyboard switch after
8362 making a new tty frame (Bug#5095).
8363
2a1ef5be
KH
83642010-01-05 Kenichi Handa <handa@m17n.org>
8365
8366 * fontset.c (fontset_find_font): Fix getting the frame pointer.
8367
e3eb1dae
SM
83682010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
8369
8370 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
8371 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
8372 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
8373
777013f2
MA
83742010-01-03 Michael Albinus <michael.albinus@gmx.de>
8375
8376 * dbusbind.c (xd_add_watch): Improve debug message.
8377 (xd_remove_watch): Improve debug message. If DATA is the session
8378 bus, unset D-Bus session environment.
8379 (Fdbus_init_bus): Pass the bus as argument to
8380 dbus_connection_set_watch_functions. (Bug#5283)
7c583cd8 8381
8932b1c2
CY
83822010-01-01 Chong Yidong <cyd@stupidchicken.com>
8383
87231e2c
CY
8384 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
8385
4801c5fa
CY
8386 * lread.c (syms_of_lread): Make it clearer that these are the
8387 names of loaded files (Bug#5068).
8388
8932b1c2
CY
8389 * eval.c (run_hook_with_args): Handle the case where the global
8390 value has the obsolete single-function form (Bug#5026).
8391
11e3c684
CY
83922009-12-27 Chong Yidong <cyd@stupidchicken.com>
8393
8394 * minibuf.c (Fall_completions): Minor optimization.
8395
5b28ce35
EZ
83962009-12-26 Eli Zaretskii <eliz@gnu.org>
8397
5ce6e4f4
JB
8398 * .gdbinit (pgx): Fix display of composite glyphs.
8399 Display cmp.from and cmp.to as well.
8400 (pitx): Fix last change.
5b28ce35 8401
bcffff46
KH
84022009-12-25 Kenichi Handa <handa@m17n.org>
8403
8404 * composite.h (composition_adjust_point): Update prototype.
8405
8406 * composite.c (composition_reseat_it): Don't make a composition
8407 spanning over point.
8408 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
8409 composable characters.
8410 (composition_adjust_point): New arg NEW_PT. Callers changed.
8411
8412 * keyboard.c (command_loop_1): Force redisplay if the last point
8413 was within a composition.
8414 (adjust_point_for_property): Don't adjust point for automatic
8415 composition when called after buffer modification.
8416
3f670e9a
EZ
84172009-12-19 Eli Zaretskii <eliz@gnu.org>
8418
5ce6e4f4
JB
8419 * .gdbinit (pitx): Don't use enum names, use their values.
8420 Remove reference to non-existing value GET_FROM_COMPOSITION.
be996d82
EZ
8421 (pgx): Don't use enum names, use their values.
8422 (pitmethod): New helper command.
8423 (pitx): Use it to display iteration method.
8424 (pgrowit): New command.
8425
ad903955
EZ
8426 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
8427
3f670e9a
EZ
8428 Update dependencies in Makefile.in.
8429
8430 * Makefile.in (alloc.o): Depend on termhooks.h.
8431 (atimer.o): Depend on blockinput.h.
8432 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
8433 and frame.h.
8434 (callint.o): Depend on systime.h, coding.h, and composite.h.
8435 (callproc.o): Depend on buffer.h.
8436 (casefiddle.o): Don't depend on charset.h.
8437 (casetab.o): Depend on character.h.
8438 (ccl.o): Depend on composite.h.
8439 (chartab.o): Depend on ccl.h.
8440 (cm.o): Depend on dispextern.h.
8441 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
8442 (coding.o): Don't depend on $(INTERVALS_H).
8443 (composite.o): Don't depend on dispextern.h explicitly (it's in
8444 $(INTERVALS_H)). Depend on ccl.h.
8445 (data.o): Depend on systime.h, coding.h, composite.h,
8446 dispextern.h, font.h, and ccl.h.
8447 (dired.o): Depend on composite.h.
8448 (dispnew.o): Depend on coding.h. Don't depend explicitly on
8449 composite.h (it's in $(INTERVALS_H)).
8450 (doc.o): Depend on systime.h, coding.h, and composite.h.
8451 (editfns.o): Don't depend explicitly on dispextern.h.
8452 (emacs.o): Depend on frame.h and coding.h.
8453 (eval.o): Depend on coding.h, composite.h, and xterm.h.
8454 (fileio.o): Depend on frame.h and commands.h. Don't depend
8455 explicitly on dispextern.h.
8456 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
8457 composite.h.
8458 (fns.o): Don't depend on termhooks.h.
8459 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
8460 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
8461 coding.h, $(INTERVALS_H), window.h, xterm.h.
8462 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
8463 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
8464 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
8465 fontset.h, ccl.h, and ftfont.h.
8466 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
8467 (gtkutil.o): Depend on dispextern.h and composite.h.
8468 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
8469 termhooks.h, and ccl.h.
8470 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
8471 (intervals.o): Depend on systime.h and coding.h.
8472 (keyboard.o): Depend on composite.h and coding.h.
8473 (keymap.o): Depend on coding.h and frame.h.
8474 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
8475 (macros.o): Depend on systime.h, coding.h, and composite.h.
8476 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
8477 and atimer.h.
8478 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
8479 dispextern.h explicitly.
0b5397c2
SM
8480 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
8481 Don't depend explicitly on dispextern.h and composite.h.
3f670e9a
EZ
8482 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
8483 (regex.o): Don't depend on charset.h.
8484 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
8485 (search.o): Don't depend explicitly on composite.h.
8486 (sound.o): Depend on atimer.h and systime.h.
8487 (syntax.o): Don't depend explicitly on composite.h.
8488 (sysdep.o): Depend on coding.h and composite.h.
8489 (term.o): Depend on xterm.h and buffer.h.
8490 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
8491 (textprop.o): Don't depend on dispextern.h explicitly.
8492 (undo.o): Depend on dispextern.h.
8493 (window.o): Depend on coding.h and termhooks.h. Don't depend on
8494 dispextern.h and composite.h explicitly.
8495 (xdisp.o): Depend on ccl.h.
8496 (xfaces.o): Depend on coding.h and ccl.h.
8497 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
8498 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
8499 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
8500 ftfont.h.
8501 (xgselect.o): New dependency.
8502 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
8503 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
8504 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
8505 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
8506 (xsmfns.o): Depend on frame.h and dispextern.h.
8507 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
8508 sysselect.h.
8509
7a6f7fea
AS
85102009-12-19 Andreas Schwab <schwab@linux-m68k.org>
8511
8512 * font.c (Fclear_font_cache): Pass correct cache argument to
8513 font_clear_cache.
8514
f4c21026
AS
85152009-12-16 Andreas Schwab <schwab@linux-m68k.org>
8516
8517 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
8518 twice.
8519
f7ab0997
CY
85202009-12-15 Chong Yidong <cyd@stupidchicken.com>
8521
8522 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
8523 calling file-remote-p. Reported by Jim Meyering.
8524
fa8e045a
MA
85252009-12-15 Michael Albinus <michael.albinus@gmx.de>
8526
8527 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
777013f2 8528 avoid compiler warnings. (Bug #5217)
fa8e045a 8529
a63dba42
KH
85302009-12-14 Kenichi Handa <handa@m17n.org>
8531
8532 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
8533 in 8-bit encoding.
8534
5ce6e4f4 85352009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
36acb2a7
JD
8536
8537 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
8538 tooltip windows.
8539
223e5fc6
JD
85402009-12-13 Jan Djärv <jan.h.d@swipnet.se>
8541
36acb2a7
JD
8542 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
8543 Xatom_net_window_type.
8544
8545 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
8546 Xatom_net_window_type.
8547
b8f00677
JD
8548 * xterm.c (my_log_handler): New function.
8549 (x_term_init): Set my_log_handler as log handler during gtk_init
5ce6e4f4 8550 so we can filter out buggy messages. (Bug #5120).
b8f00677 8551
e5f0bc9a
JD
8552 * xterm.c (xg_scroll_callback): Parameter list changed,
8553 use parameter GtkScrollType to determine scroll/line/page.
8554 Only allow dragging if a button < 4 is grabbed (bug #5177).
8555 (xg_end_scroll_callback): New function.
8556 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
8557 xg_create_scroll_bar.
8558
8559 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
8560 (scroll_end_callback): Remove.
8561 (xg_create_scroll_bar): Add parameter end_callback, bind it to
8562 button-release-event. Replace value-changed event with change-value,
c4cc8b9a 8563 bug #5177.
e5f0bc9a
JD
8564 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
8565 bug #5177.
8566
8567 * gtkutil.h (XG_LAST_SB_DATA): Remove.
8568 (xg_create_scroll_bar): Add GCallback end_callback.
8569
223e5fc6
JD
8570 * xftfont.c (QClcdfilter): New variable.
8571 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
8572 (syms_of_xftfont): Initialize QClcdfilter.
8573
3c055b77
JD
85742009-12-12 Jan Djärv <jan.h.d@swipnet.se>
8575
8576 * xsettings.c (struct xsettings): Add member seen.
8577 (parse_xft_settings): Update member seen with what we have read.
ba68c0b0 8578 Return non-zero if Xft-settings have been parsed, 0 otherwise.
3c055b77
JD
8579 (apply_xft_settings): Only update Xft settings with what member seen
8580 indicates as new.
8581
05fe33ff
EZ
85822009-12-12 Eli Zaretskii <eliz@gnu.org>
8583
c4cc8b9a 8584 * dispextern.h (struct text_pos): Use EMACS_INT.
05fe33ff
EZ
8585 (struct glyph): Use EMACS_INT for charpos.
8586 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
8587 region_beg_charpos, region_end_charpos,
8588 redisplay_end_trigger_charpos, and also for
8589 iterator_stack_entry.end_charpos and
8590 iterator_stack_entry.stop_charpos.
8591
e8d7886a
JD
85922009-12-12 Jan Djärv <jan.h.d@swipnet.se>
8593
5ce6e4f4 8594 * gtkutil.c (scroll_end_callback): New function (bug #5177).
e8d7886a
JD
8595 (xg_create_scroll_bar): Call scroll_end_callback on button release
8596 event (bug #5177).
8597 (xg_event_is_for_scrollbar): != replaced with ==.
8598
d0db2ec8
KH
85992009-12-12 Kenichi Handa <handa@m17n.org>
8600
8601 * ftfont.c (struct ftfont_info): New member matrix.
8602 (ftfont_open): Setup xftfont_info->matrix.
8603 (MFLTFontFT): New member matrix.
8604 (FLOOR, CEIL, ROUND): New macros.
8605 (ftfont_get_metrics): Handle matrix transformation.
8606 (ftfont_shape_by_flt): New arg matrix. Callers changed.
8607
8608 * xftfont.c (struct xftfont_info): New member matrix.
8609 (xftfont_open): Setup xftfont_info->matrix.
8610
86112009-12-10 Kenichi Handa <handa@m17n.org>
8612
8613 * xdisp.c (append_space_for_newline): Consider face-remapping.
8614
2cc7b62f
AS
86152009-12-09 Andreas Schwab <schwab@linux-m68k.org>
8616
b87dd913
AS
8617 * xsettings.c: Include "keyboard.h".
8618
eba5eb94
AS
8619 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
8620
2cc7b62f
AS
8621 Fix implicit function declarations.
8622 * cmds.c: Include "frame.h".
8623 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
8624 * frame.h: Move declaration of delete_frame outside of
8625 HAVE_WINDOW_SYSTEM.
8626
a4ef73c8
CY
86272009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
8628
8629 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
8630
8631 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
8632 GTK builds.
8633
944a300c
AS
86342009-12-07 Andreas Schwab <schwab@linux-m68k.org>
8635
8636 * unexelf.c (unexec): Don't search for .data twice.
8637
022eef62
CY
86382009-12-05 Chong Yidong <cyd@stupidchicken.com>
8639
426ac949
CY
8640 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
8641 if push failed.
8642 (handle_line_prefix): Set avoid_cursor_p here. Check return value
8643 of push_display_prop (Bug#5000).
8644
022eef62
CY
8645 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
8646 value of font_list_entities (Bug#5085).
8647
be95bee9
JB
86482009-12-04 Juanma Barranquero <lekktu@gmail.com>
8649
8650 Fix `string-to-number' to deal consistently with integers and floats.
8651 * lread.c (isfloat_string): New argument ignore_trailing to accept all
8652 trailing characters, not just whitespace.
8653 (read1): Pass new arg 0 to keep old behavior.
8654 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
8655 trailing chars, as it is already done for integers. Doc fixes.
8656 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
8657
24c2d7ce
EZ
86582009-12-04 Eli Zaretskii <eliz@gnu.org>
8659
0b5397c2
SM
8660 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
8661 Delete unused enumeration value.
24c2d7ce 8662
7e694795
EZ
86632009-12-03 Eli Zaretskii <eliz@gnu.org>
8664
8665 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
8666
84b31826
SM
86672009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
8668
8669 * process.c (Fmake_network_process): Fix up the tests for
8670 "connectionless socket", so they DTRT for seqpacket sockets as well.
8671
f00c449b
SM
86722009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8673
8674 * process.c (Qseqpacket): New symbol.
8675 (HAVE_SEQPACKET): New macro.
8676 (Fmake_network_process): Accept new :type `seqpacket'.
8677 (init_process): Add `seqpacket' feature when applicable.
8678 (syms_of_process): Initialize Qseqpacket.
8679
8096a0ff
YM
86802009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8681
8682 * font.c (font_load_for_lface, font_open_by_name): Don't store name
8683 if entity is Qnil.
8684
3e0de07f
SM
86852009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
8686
8687 * print.c (print_preprocess): Preprocess the key_and_value table of
8688 hashtables, even tho they're "hidden" (bug#5082).
8689
abeafb2a
JD
86902009-11-29 Jan Djärv <jan.h.d@swipnet.se>
8691
8692 * frame.c (frame_make_pointer_invisible)
8693 (frame_make_pointer_visible): Declare f before statements.
8694
4bf47195
EZ
86952009-11-28 Eli Zaretskii <eliz@gnu.org>
8696
8697 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
8698 omitted dependencies on lisp.h.
8699
c525b3f2
JD
87002009-11-27 Jan Djärv <jan.h.d@swipnet.se>
8701
ece2d4ed
JD
8702 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
8703 is NULL.
8704
8705 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
8706
8707 * frame.c (frame_make_pointer_invisible)
3e0de07f 8708 (frame_make_pointer_visible): Just return if there isn't any selected
ece2d4ed
JD
8709 frame.
8710
c525b3f2
JD
8711 * search.c (simple_search): Remove warning by making *p const.
8712
2f00e299
DN
87132009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
8714
8715 * xdisp.c (power_letter): Remove duplicate const.
8716
084b049b
JD
87172009-11-25 Jan Djärv <jan.h.d@swipnet.se>
8718
a1fadc6f
JD
8719 * term.c (delete_tty): Remove check for last terminal (bug#4970).
8720
5ce6e4f4 8721 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
084b049b
JD
8722 defaults (bug #5025).
8723
28259cac
SM
87242009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
8725
8726 * insdel.c (adjust_markers_for_delete): Move it in the
8727 right direction! (bug#4803)
8728
e8e14166
YM
87292009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8730
8731 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
8732
8733 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
8734
86677b58
GM
87352009-11-24 Glenn Morris <rgm@gnu.org>
8736
8737 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
8738
581e51e8
JD
87392009-11-23 Jan Djärv <jan.h.d@swipnet.se>
8740
cfc86c7a
JD
8741 * Makefile.in: Must create deps for ecrt0.o in its rule.
8742
581e51e8
JD
8743 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
8744 because that is what Gtk+ font dialog understands.
8745
8746 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
8747 of Fcopy_sequence.
8748 (font_open_by_name): Put name given into QCname for font-object returned.
8749
8750 * frame.c (x_set_font): Save original font name as frame parameter
8751 font-parameter.
8752
8753 * xsettings.c (set_default_xft_settings): New function.
8754 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
8755 is found.
8756
8b264ecb
AS
87572009-11-22 Andreas Schwab <schwab@linux-m68k.org>
8758
8759 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
8760 searching backwards through multibyte buffer.
8761
872870b2
JD
87622009-11-21 Jan Djärv <jan.h.d@swipnet.se>
8763
8764 * xterm.c: #include xgselect.h.
8765 (x_initialize): Call xgselect_initialize.
8766
8767 * xsettings.c (something_changedCB): C++ comments => C comments.
8768 (init_gconf): Do not deal with any GLib file descriptors, xg_select
8769 does that now.
8770
8771 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
8772 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
8773 (scroll_bar_button_cb): Remove.
5ce6e4f4 8774 (create_menus): C++ comments => C comments. Don't bind grab-notify
872870b2
JD
8775 event.
8776 (xg_create_scroll_bar): Don't bind button-press-event and
8777 button-release-event.
8778
8779 * process.c: Include xgselect.h if defined (USE_GTK) ||
8780 defined (HAVE_GCONF).
8781 (wait_reading_process_output): Call xg_select for the same condition.
8782
8783 * xgselect.c (xg_select): New function to better integrate with
8784 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
8785
8786 * xgselect.h: New file, declare xg_select, xgselect_initialize.
8787
8788 * Makefile.in (XOBJ): Add xgselect.o.
8789
62a6e103
AS
87902009-11-21 Andreas Schwab <schwab@linux-m68k.org>
8791
0b5397c2
SM
8792 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
8793 Remove ignored second argument. All callers changed.
62a6e103
AS
8794 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
8795 (RE_STRING_CHAR_AND_LENGTH): Likewise.
8796 * xdisp.c (string_char_and_length): Likewise.
8797
b0ca0f33
DN
87982009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
8799
8800 * xterm.c (x_new_font):
8801 * print.c (print_object):
8802 * cmds.c (Fself_insert_command): Move declarations before statements.
8803
dd5a6279
CY
88042009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
8805
8806 * s/cygwin.h: Remove unneeded linker flags.
8807
4a8e097d
JD
88082009-11-20 Jan Djärv <jan.h.d@swipnet.se>
8809
0d1d0d26
JD
8810 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
8811
8812 * xsettings.h: Declare xsettings_get_system_font.
8813
8814 * xsettings.c (xsettings_get_system_font): New function.
8815 (init_gconf): No use initiating gconf unless we have Xft also.
8816 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
8817 HAVE_GCONF.
8818
4a8e097d
JD
8819 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
8820 add a blank entry so it doesn't collapse into nothing.
8821
8ab1650e
SM
88222009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
8823
8824 * lread.c (Funintern): Comment out last change.
8825
82c602f0
RS
88262009-11-19 Richard Stallman <rms@gnu.org>
8827
8828 * lread.c (Funintern): Error if symbol is t or nil.
8829
87e32266
SM
88302009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
8831
8832 * insdel.c (make_gap_larger): Don't make as many assumptions about the
8833 representation of Lisp integers.
8834 Reported by MJ Chan <mjchan.inbox@gmail.com>.
8835
1b9ac145
AS
88362009-11-17 Andreas Schwab <schwab@linux-m68k.org>
8837
8838 * lisp.h: Remove declaration of Ffont_get_system_font.
8839 * xfns.c: Move include of "xsettings.h".
8840 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
8841
dfb3c4c6
JD
88422009-11-17 Jan Djärv <jan.h.d@swipnet.se>
8843
87e32266
SM
8844 * xsettings.c (something_changedCB, Ffont_get_system_font):
8845 Check use_system_font.
dfb3c4c6
JD
8846 (syms_of_xsettings): DEFVAR font-use-system-font.
8847
9370c1d8
AS
88482009-11-17 Andreas Schwab <schwab@linux-m68k.org>
8849
25fe851a
AS
8850 * xfns.c (x_default_font_parameter): Remove dead assignment.
8851
9370c1d8
AS
8852 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
8853
637fa988
JD
88542009-11-17 Jan Djärv <jan.h.d@swipnet.se>
8855
87e32266 8856 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
21050de1 8857 not have FC_LCD_*. #define them if not there.
a6eb20d8 8858
87e32266 8859 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
a6eb20d8 8860
637fa988
JD
8861 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
8862
8863 * xterm.c (handle_one_xevent): Call xft_settings_event for
8864 ClientMessage, PropertyNotify and DestroyNotify.
8865 (x_term_init): If we have XFT, get DPI from Xft.dpi.
8866 Call xsettings_initialize.
8867
8868 * xftfont.c (xftfont_fix_match): New function.
8869 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
8870 Call xftfont_fix_match after XftFontMatch.
8871
8872 * xfont.c (xfont_driver): Initialize all members.
8873
87e32266
SM
8874 * xfns.c (x_default_font_parameter):
8875 Try font from Ffont_get_system_font.
637fa988
JD
8876 Do not get font from x_default_parameter if we got one from
8877 Ffont_get_system_font.
87e32266 8878 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
637fa988
JD
8879
8880 * w32font.c (w32font_driver): Initialize all members.
8881
8882 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
8883
8884 * lisp.h: Declare syms_of_xsettings.
8885
87e32266
SM
8886 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
8887 Handle CONFIG_CHANGED_EVENT.
637fa988
JD
8888
8889 * ftfont.c (ftfont_filter_properties): New function.
8890
8891 * frame.c (x_set_font): Remove unused variable lval.
8892
87e32266 8893 * font.h (struct font_driver): Add filter_properties.
637fa988
JD
8894
8895 * font.c (font_put_extra): Don't return if val is nil, it means
8896 boolean option is off.
8897 (font_parse_fcname): Collect all extra properties in extra_props
8898 and call filter_properties for all drivers with extra_props and
8899 font as parameter.
87e32266
SM
8900 (font_open_entity): Do not use cache, it does not pick up new
8901 fontconfig settings like hinting.
637fa988
JD
8902 (font_load_for_lface): If spec had a name in it, store it in entity.
8903
a73f9c9d 8904 * emacs.c (main): Call syms_of_xsettings.
637fa988
JD
8905
8906 * config.in: HAVE_GCONF is new.
8907
8908 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
8909 xsettings.o is new.
8910
5a942932
KH
89112009-11-17 Kenichi Handa <handa@m17n.org>
8912
8913 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
8914 back to the default font in case that no suitable font is found.
8915
b7c7a4d1
SM
89162009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
8917
8918 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
8919 Suggested by Chad Brown <yandros@mit.edu>.
8920 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
8921
072f1e39
JD
89222009-11-16 Jan Djärv <jan.h.d@swipnet.se>
8923
8924 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
8925
5d1e70a2
AS
89262009-11-14 Andreas Schwab <schwab@linux-m68k.org>
8927
87e32266 8928 * Makefile.in: Ignore errors from mkdir when creating deps directory.
5d1e70a2 8929
a53cfbe5
JD
89302009-11-14 Jan Djärv <jan.h.d@swipnet.se>
8931
473a99b7
JD
8932 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
8933 has a parent.
8934
a53cfbe5 8935 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
5ce6e4f4 8936 dependency files in deps/. Include those files into Makefile.
a53cfbe5
JD
8937
8938 * config.in: Generated (AUTO_DEPEND).
8939
f04bb9b2
MA
89402009-11-13 Michael Albinus <michael.albinus@gmx.de>
8941
b7c7a4d1 8942 * dbusbind.c (Vdbus_registered_objects_table): Rename from
f04bb9b2
MA
8943 Vdbus_registered_functions_table, because it contains also
8944 properties. Fix docstring.
b7c7a4d1 8945 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
f04bb9b2 8946
8f11f7ec
SM
89472009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
8948
8949 * alloc.c (mark_object): Don't reprocess marked strings.
8950 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
8951 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
8952
8a605fe8
KH
89532009-11-13 Kenichi Handa <handa@m17n.org>
8954
8f11f7ec 8955 * category.c (word_boundary_p): Adjust for the change of the
8a605fe8
KH
8956 semantics of Vword_combining_categories.
8957 (Vword_combining_categories): Describe the slight change of the
8958 semantics.
8959
241c4680
EZ
89602009-11-13 Eli Zaretskii <eliz@gnu.org>
8961
8962 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
8963
8964 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
8965
5d58e44c
SM
89662009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
8967
8968 * xdisp.c (syms_of_xdisp): Fix typo in last change.
8969
5e13f9d3
JB
89702009-11-12 Juanma Barranquero <lekktu@gmail.com>
8971
8972 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
8973
cf54c754
DR
89742009-11-11 David Reitter <david.reitter@gmail.com>
8975
8976 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
8977 variables to fix 2009-11-09 change.
8978
a4ada374
DN
89792009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
8980
91433552
DN
8981 * process.c (ifflag_def): Make flag_sym constant.
8982 (Fnetwork_interface_info): Use a constant pointer.
8983 (ifflag_table):
8984 * xfns.c (cursor_bits):
8985 * xdisp.c (power_letter):
8986 * termcap.c (speeds, esctab):
8987 * sysdep.c (baud_convert):
8988 * keyboard.c (lispy_accent_codes, modifier_names):
8989 * image.c (xbm_format, xpm_format, pbm_format, png_format)
8990 (jpeg_format, tiff_format, gif_format, svg_format)
8991 (interlace_start, interlace_increment, gs_format):
8992 * gtkutil.c (separator_names):
8993 * fringe.c (swap_nibble):
8994 * fns.c (base64_value_to_char, base64_char_to_value):
8995 * fileio.c (make_temp_name_tbl):
8996 * coding.c (suffixes): Make constant.
8997
f4265f6c
DN
8998 * frame.c (make_initial_frame):
8999 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
9000 build_string.
9001 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
9002
04420943
DN
9003 * s/freebsd.h:
9004 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
9005
0a5d24ae
DN
9006 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
9007 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
9008
a4ada374
DN
9009 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
9010 * xterm.c (syms_of_xterm):
9011 * xfaces.c (syms_of_xfaces):
9012 * xdisp.c (syms_of_xdisp):
9013 * lread.c (syms_of_lread):
9014 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
9015 build_string.
91433552 9016
a4ada374
DN
9017 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
9018
af98fc7f
SM
90192009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
9020
8ab1650e 9021 * fns.c (Fplist_get): Merge the active and the commented out code.
af98fc7f 9022
e90292a9
JD
90232009-11-10 Jan Djärv <jan.h.d@swipnet.se>
9024
9025 * keyboard.h: Declare timer_check.
9026
9027 * keyboard.c (timer_check_2): New function that does what the old
9028 timer_check did.
9029 (timer_check): Call timer_check_2 until -1 or a non-zero time is
9030 returned, i.e. don't return -1 with timers pending.
9031
9032 * process.c: Remove extern declaration of timer_check.
9033
9034 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
9035 even if timer_check returned -1.
9036
af98fc7f
SM
9037 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
9038 xg_dialog_data.
e90292a9
JD
9039 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
9040 the event loop.
9041 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
9042 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
9043 Destroy the dialog after xg_dialog_run.
9044
045b83c0
SM
90452009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
9046
9047 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
9048
1fb99a3a
JD
90492009-11-10 Jan Djärv <jan.h.d@swipnet.se>
9050
9051 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
9052
04e452cb
JB
90532009-11-09 Juanma Barranquero <lekktu@gmail.com>
9054
9055 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
9056
ef7417fd
SM
90572009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
9058
9059 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
9060 w32menu.c, and nsmenu.m.
9061 Simplify the obsolete case where position is nil.
9062 (cleanup_popup_menu): New function, moved from nsmenu.m.
9063 (struct skp): Remove slot `notreal'.
9064 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
9065 adjust callers.
9066 (single_menu_item): Adjust call to parse_menu_item.
9067 (syms_of_menu): Defsubr x-popup-menu.
9068 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
9069 (keymap_panes): Don't export any more.
9070 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
9071 (xmenu_show): Declare.
9072 * keyboard.c (parse_menu_item): Remove arg `notreal'.
9073 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
9074 * keyboard.h (parse_menu_item): Update declaration.
9075 * xmenu.c (Fx_popup_menu): Remove.
9076 (syms_of_xmenu): Don't defsubr x-popup-menu.
9077 * w32menu.c (Fx_popup_menu): Remove.
9078 (syms_of_w32menu): Don't defsubr x-popup-menu.
9079 * nsmenu.m (cleanup_popup_menu): Remove.
9080 (ns_menu_show): Rename from ns_popup_menu and remove all the code
9081 moved to menu.c's Fx_popup_menu.
9082 (Fx_popup_menu): Remove.
9083 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
9084 menu_items (it's done in menu.c already).
9085
424d6179
SM
90862009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
9087
9088 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
9089 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
9090
c0df13a6 90912009-11-08 Chong Yidong <cyd@stupidchicken.com>
a20903d0
CY
9092
9093 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
c0df13a6 9094 xmenu_show. Hide any tooltip before opening a menu.
a20903d0
CY
9095 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
9096 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
9097
2de9f71c
SM
90982009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
9099
9100 Let integers use up 2 tags to give them one extra bit and thus double
9101 their range.
9102 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
9103 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
9104 New macros.
9105 (enum Lisp_Type): Use them. Give explicit values.
9106 (Lisp_Type_Limit): Remove.
9107 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
9108 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
9109 Pay attention to USE_2_TAGS_FOR_INTS.
9110 (INTEGERP): Use LISP_INT_TAG_P.
9111 * fns.c (internal_equal): Simplify the default case.
9112 (sxhash): Use case_Lisp_Int.
9113 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
9114 any more.
9115 (Ftype_of): Use case_Lisp_Int.
9116 (store_symval_forwarding): Take into account the fact that Ints can
9117 now have more than one tag.
9118 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
686b968e 9119 (buffer_slot_type_mismatch):
2de9f71c
SM
9120 * xfaces.c (face_attr_equal_p):
9121 * print.c (print_object):
9122 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
9123 Use case_Lisp_Int.
9124
323637a2
EZ
91252009-11-06 Eli Zaretskii <eliz@gnu.org>
9126
7ac65b38
EZ
9127 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
9128
323637a2
EZ
9129 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
9130 warning.
9131
e511451f
JD
91322009-11-06 Jan Djärv <jan.h.d@swipnet.se>
9133
9134 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
9135
9136 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
9137
9138 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
9139 ButtonPressRelease and MotionNotify (bug#4870).
9140
5e2327cf
DN
91412009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
9142
5adc433e
DN
9143 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
9144
d67b4f80
DN
9145 * xterm.c (syms_of_xterm):
9146 * xselect.c (syms_of_xselect):
9147 * xmenu.c (syms_of_xmenu):
9148 * xfns.c (syms_of_xfns):
9149 * xfaces.c (syms_of_xfaces):
9150 * xdisp.c (syms_of_xdisp):
9151 * window.c (syms_of_window):
9152 * w32fns.c (syms_of_w32fns):
9153 * undo.c (syms_of_undo):
9154 * textprop.c (syms_of_textprop):
9155 * terminal.c (syms_of_terminal):
9156 * syntax.c (syms_of_syntax):
9157 * sound.c (syms_of_sound):
9158 * search.c (syms_of_search):
9159 * print.c (syms_of_print):
9160 * minibuf.c (syms_of_minibuf):
9161 * macros.c (syms_of_macros):
9162 * keymap.c (syms_of_keymap, initial_define_key)
9163 (initial_define_lispy_key):
9164 * keyboard.c (syms_of_keyboard):
9165 * insdel.c (syms_of_insdel):
9166 * image.c (syms_of_image):
9167 * fringe.c (syms_of_fringe):
9168 * frame.c (syms_of_frame):
9169 * fontset.c (syms_of_fontset):
9170 * fns.c (syms_of_fns):
9171 * fns.c (syms_of_fns):
9172 * fileio.c (syms_of_fileio):
9173 * fileio.c (syms_of_fileio):
9174 * eval.c (syms_of_eval):
9175 * doc.c (syms_of_doc):
9176 * dispnew.c (syms_of_display):
9177 * dired.c (syms_of_dired):
9178 * dbusbind.c (syms_of_dbusbind):
9179 * data.c (syms_of_data):
9180 * composite.c (syms_of_composite):
9181 * coding.c (syms_of_coding):
9182 * cmds.c (syms_of_cmds):
9183 * charset.c (define_charset_internal, syms_of_character):
9184 * ccl.c (syms_of_ccl):
9185 * category.c (syms_of_category, init_category_once):
9186 * casetab.c (syms_of_casetab):
9187 * casefiddle.c (syms_of_casefiddle):
9188 * callint.c (syms_of_callint):
9189 * bytecode.c (syms_of_bytecode):
9190 * buffer.c (keys_of_buffer, syms_of_buffer):
9191 * alloc.c (syms_of_alloc):
9192 * process.c (syms_of_process, init_process):
9193 * lread.c (syms_of_lread, init_obarray):
9194 * font.c (build_style_table):
9195 * emacs.c (syms_of_emacs, main): Replace calls to intern with
9196 intern_c_string, calls to make_pure_string with
9197 make_pure_c_string. Use pure_cons instead of Fcons.
9198
5e2327cf
DN
9199 * process.c (socket_options): Make it const.
9200 (set_socket_option, init_process): Use a const pointer.
9201
9202 * lread.c (intern_c_string): New function.
9203 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
9204 (defvar_int): Uset it. Make the name const char*.
9205
9206 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
9207 (defvar_int): Update prototypes.
9208 (DEFUN, EXFUN): Support for prototypes is now required.
9209 (intern_c_string): New prototype.
9210 (struct Lisp_Subr): Make symbol_name constant.
9211
9212 * font.c (struct table_entry): Remove unused member. Make NAMES
9213 constant.
9214 (weight_table, slant_table, width_table): Make constant.
9215
9216 * emacs.c (struct standard_args): Make name and longname constant.
9217
9218 * character.h (DEFSYM): Use intern_c_string.
9219
a56eaaef
DN
92202009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
9221
9222 * alloc.c (make_pure_c_string): New function.
9223
9224 * eval.c (Fautoload): Purecopy all arguments.
9225
f6a07420
KH
92262009-11-05 Kenichi Handa <handa@m17n.org>
9227
9228 * fileio.c (Finsert_file_contents): Be sure set coding-system of
9229 the buffer in case of replace.
9230
5d28d4b1
DN
92312009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
9232
9233 * puresize.h (BASE_PURESIZE): Increase to 1620000.
9234
b349d111
SM
92352009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
9236
d528b1ce
SM
9237 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
9238 when applicable (bug#4851).
9239
b349d111
SM
9240 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
9241 (P_): Support for prototypes is now required.
9242
c38eb027
CY
92432009-10-31 Chong Yidong <cyd@stupidchicken.com>
9244
9245 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
9246 (Bug#4827).
9247
0405f8d9
EZ
92482009-10-30 Eli Zaretskii <eliz@gnu.org>
9249
d528b1ce 9250 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
0405f8d9 9251
ca0a881a
DN
92522009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
9253
9254 * puresize.h (BASE_PURESIZE): Increase to 1470000.
9255
d528b1ce
SM
9256 * lread.c (Fload): Purecopy the file name when building
9257 Vpreloaded_file_list.
ca0a881a 9258
47e0e0e4
JR
92592009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
9260
9261 * w32fns.c (syms_of_w32fns): Change default value of
9262 w32-scroll-lock-modifier to nil. (Bug#2827)
9263
057bce6f
JB
92642009-10-26 Juanma Barranquero <lekktu@gmail.com>
9265
782a943e 9266 * minibuf.c (Fall_completions): Fix typos in docstring.
057bce6f 9267
242bc74c
AS
92682009-10-26 Andreas Schwab <schwab@redhat.com>
9269
9270 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
9271
522d013a
JB
92722009-10-26 Juanma Barranquero <lekktu@gmail.com>
9273
9274 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
9275 For delta < 0, skip check that only makes sense when the mini-window
9276 is going to be enlarged. (Bug#4534)
9277
18060980
CY
92782009-10-25 Chong Yidong <cyd@stupidchicken.com>
9279
9280 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
9281 string in menu maps (Bug#4471).
9282
fec8f0fe
CY
92832009-10-24 Chong Yidong <cyd@stupidchicken.com>
9284
9285 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
9286 FRAME_NS_VIEW on terminal frames (Bug#4765).
9287
10d66ec0
AS
92882009-10-24 Andreas Schwab <schwab@linux-m68k.org>
9289
1cae01f7
AS
9290 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
9291 DBUS_TYPE_UINTnn separately to get proper sign extension.
9292
58a12889
AS
9293 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
9294 can properly handle unsigned types.
d528b1ce 9295 (make_uid, make_gid): Remove.
58a12889 9296
987c9327
AS
9297 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
9298 types again.
9299
522d013a 9300 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
10d66ec0
AS
9301 (system_process_attributes): Likewise.
9302
905a9ed3
DN
93032009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
9304
9305 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
9306
9307 * eval.c (Fautoload): Purecopy the filename. Simplify.
9308
9309 * category.c (Fdefine_category): Purecopy docstring.
9310
a599b3e8
AS
93112009-10-23 Andreas Schwab <schwab@linux-m68k.org>
9312
7b792fc9
AS
9313 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
9314
a599b3e8
AS
9315 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
9316
b35ac83e
CY
93172009-10-23 Chong Yidong <cyd@stupidchicken.com>
9318
9319 * window.c (Fwindow_edges, Fwindow_pixel_edges)
9320 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
9321 (Bug#4775).
9322
e8903e00
SM
93232009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
9324
9325 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
9326 (init_fileio_once):
9327 * lisp.h (init_fileio_once): Remove.
9328 * emacs.c (main): Don't call init_fileio_once.
9329
8f43cbf3
DN
93302009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
9331
9332 * puresize.h (BASE_PURESIZE): Increase to 1430000.
9333
26898943
AS
93342009-10-21 Andreas Schwab <schwab@linux-m68k.org>
9335
9336 * doprnt.c (doprnt): Fix overflow check.
9337
5c646d5a
JD
93382009-10-21 Jan Djärv <jan.h.d@swipnet.se>
9339
3132a7ea
JD
9340 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
9341
5c646d5a
JD
9342 * xterm.h (x_wait_for_event): Declare it.
9343
9344 * xterm.c (pending_event_wait): New variable.
9345 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
9346 see pending_event_wait.eventtype.
9347 (handle_one_xevent): Don't change gravity when parent changes.
d528b1ce
SM
9348 (x_new_font): Call change_frame_size with new rows/columns before we
9349 try to resize the frame.
5c646d5a 9350 (x_wait_for_event): New function.
d528b1ce
SM
9351 (x_set_window_size_1): Don't change gravity unless change_gravity
9352 is set.
5c646d5a
JD
9353 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
9354 don't change frame size, instead wait for the ConfigureNotify.
9355 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
9356 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
9357 (x_initialize): Initialize pending_event_wait.
9358
9359 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
9360 size.
9361
9362 * widget.c (EmacsFrameSetValues): Add comment.
9363 (EmacsFrameSetCharSize): Just call x_set_window_size.
9364
9365 * gtkutil.c (xg_frame_set_char_size): Flush events and call
9366 x_wait_for_event.
d528b1ce 9367 (flush_and_sync): Remove again.
5c646d5a
JD
9368 (xg_get_font_name): Suggest monospace if no previous font is known.
9369
e9c1637d
SM
93702009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
9371
9372 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
46be764e 9373 8th bit, since that only made sense in the ASCII world (bug#4751).
e9c1637d 9374
5a72cccb
YM
93752009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9376
9377 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
9378 processing pending events when event is filtered for input method.
ab04798f 9379 (Bug#3681)
5a72cccb 9380
2629aa37
JB
93812009-10-20 Juanma Barranquero <lekktu@gmail.com>
9382
9383 * fns.c: Add #endif accidentally removed in previous change.
9384
c3417a74
DN
93852009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
9386
9387 * fns.c: Remove code for unsupported system: MAC_OS.
9388 * image.c: Likewise. Include setjmp.h.
9389
9685cef2
JD
93902009-10-19 Jan Djärv <jan.h.d@swipnet.se>
9391
9392 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
9393 pixel -1 (bug #4742).
9394
d7306fe6
DN
93952009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
9396
019d2c4c
DN
9397 * process.c (create_pty): Remove conditionals for no longer
9398 supported systems: UNIPLUS and RTU.
9399
ee6bacd4
DN
9400 * xterm.c:
9401 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
9402
d7306fe6
DN
9403 * alloc.c: Do not define struct catchtag.
9404 * eval.c: Move struct catchtag definition ...
9405 * lisp.h: ... here.
9406
9407 * image.c: Move png.h #include earlier to avoid warnings.
9408
9409 * xterm.c:
9410 * xsmfns.c:
9411 * xselect.c:
9412 * xrdb.c:
9413 * xmenu.c:
9414 * xftfont.c:
9415 * xfont.c:
9416 * xfns.c:
9417 * xfaces.c:
9418 * xdisp.c:
9419 * window.c:
9420 * widget.c:
9421 * w32xfns.c:
9422 * w32uniscribe.c:
9423 * w32term.c:
9424 * w32select.c:
9425 * w32reg.c:
9426 * w32proc.c:
9427 * w32menu.c:
9428 * w32inevt.c:
9429 * w32heap.c:
9430 * w32font.c:
9431 * w32fns.c:
9432 * w32console.c:
9433 * w32.c:
9434 * w16select.c:
9435 * vm-limit.c:
9436 * unexsol.c:
9437 * unexec.c:
9438 * unexcw.c:
9439 * unexaix.c:
9440 * undo.c:
9441 * tparam.c:
9442 * textprop.c:
9443 * terminfo.c:
9444 * terminal.c:
9445 * termcap.c:
9446 * term.c:
9447 * syntax.c:
9448 * sound.c:
9449 * sheap.c:
9450 * search.c:
9451 * scroll.c:
9452 * region-cache.c:
9453 * regex.c:
9454 * ralloc.c:
9455 * process.c:
9456 * print.c:
b024548b
DN
9457 * nsterm.m:
9458 * nsselect.m:
9459 * nsmenu.m:
9460 * nsimage.m:
9461 * nsfont.m:
9462 * nsfns.m:
d7306fe6
DN
9463 * msdos.c:
9464 * minibuf.c:
9465 * menu.c:
9466 * marker.c:
9467 * macros.c:
9468 * keymap.c:
9469 * keyboard.c:
9470 * intervals.c:
9471 * insdel.c:
9472 * indent.c:
9473 * gtkutil.c:
9474 * ftxfont.c:
9475 * ftfont.c:
9476 * fringe.c:
9477 * frame.c:
9478 * fontset.c:
9479 * font.c:
9480 * fns.c:
9481 * floatfns.c:
9482 * filelock.c:
9483 * fileio.c:
9484 * emacs.c:
9485 * editfns.c:
9486 * dosfns.c:
9487 * doprnt.c:
9488 * doc.c:
9489 * dispnew.c:
9490 * dired.c:
9491 * dbusbind.c:
9492 * data.c:
9493 * composite.c:
9494 * coding.c:
9495 * cmds.c:
9496 * cm.c:
9497 * chartab.c:
9498 * charset.c:
9499 * character.c:
9500 * ccl.c:
9501 * category.c:
9502 * casetab.c:
9503 * casefiddle.c:
9504 * callproc.c:
9505 * callint.c:
9506 * bytecode.c:
9507 * buffer.c:
9508 * atimer.c: Include setjmp.h. (Bug#4643)
9509
fd5f21e6
SM
95102009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
9511
4c0354d7
SM
9512 Remove leftover table unibyte_to_multibyte_table.
9513 * character.c (unibyte_to_multibyte_table): Remove.
9514 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
9515 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
9516 * character.h (UNIBYTE_TO_CHAR): New macro.
9517 (MAKE_CHAR_MULTIBYTE): Use it.
9518 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
9519 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
9520 (message_dolog, set_message_1):
9521 * search.c (Freplace_match):
9522 * editfns.c (Fcompare_buffer_substrings):
9523 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
9524 (concat):
9525 * insdel.c (copy_text, count_size_as_multibyte):
9526 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
9527 * term.c (produce_glyphs):
9528 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
9529 * regex.c (RE_CHAR_TO_MULTIBYTE):
9530 * cmds.c (internal_self_insert):
9531 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
9532
fd5f21e6
SM
9533 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
9534
4418646e
DN
95352009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
9536
9537 * puresize.h (BASE_PURESIZE): Increase to 1310000.
9538
35f5c1d2
JB
95392009-10-16 Juanma Barranquero <lekktu@gmail.com>
9540
9541 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
9542
a0cd8f6b
AR
95432009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
9544
9545 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
9546 still needed under Tiger.
9547
9548 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
9549
9550 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
9551 __Apple__.
9552
9553 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
9554
01a8d3fa
KH
95552009-10-15 Kenichi Handa <handa@m17n.org>
9556
9557 * print.c (print_object): Escape a symbol like "2E10" too.
9558
bf6c75c9 95592009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
6e4780c5
JB
9560
9561 Cleanups and changes for 64-bit compile under Snow Leopard.
9562 Based on suggestions by Erik Charlebois.
bf6c75c9
AR
9563
9564 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
9565
c5959062 9566 * nsfont.m (ns_char_width): Replace deprecated call.
bf6c75c9
AR
9567 (ns_findfonts, nsfont_list_family): Use long format in printf, and
9568 cast argument.
9569 (nsfont_open): Use ns_char_width() everywhere.
d528b1ce 9570 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
bf6c75c9
AR
9571
9572 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
9573
9574 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
9575 where appropriate.
9576
9577 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
9578 where appropriate.
6e4780c5
JB
9579 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
9580 Use stringWithUTF8String.
bf6c75c9
AR
9581 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
9582
6e4780c5
JB
9583 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
9584 Add formal protocol mention to inheritance.
bf6c75c9
AR
9585 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
9586
6e4780c5
JB
9587 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
9588 Fix printf format.
bf6c75c9
AR
9589 (ns_query_color): Use CGFloat where appropriate.
9590 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
ac146f82 9591 (EmacsScroller-mouseDown:): Use long format in printf, and cast
bf6c75c9
AR
9592 argument.
9593
3d87f118
AR
9594 * config.in (NS_HAVE_NSINTEGER): Drop.
9595
a95c8102
AR
9596 * dbusbind.c (dbus-method-return-internal)
9597 (dbus-method-error-internal): Use long format in printf, and cast
9598 argument.
9599
9600 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
9601 in printf, and cast argument.
9602
6873acca 9603 * process.c (list_processes_1): Use long format in printf, and
a95c8102
AR
9604 cast argument.
9605
9ec6f100
GM
96062009-10-11 Glenn Morris <rgm@gnu.org>
9607
9608 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
9609
5be883cd
JD
96102009-10-08 Jan Djärv <jan.h.d@swipnet.se>
9611
9612 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
9613 menu bar with a small width so it doesn't enlarge the frame.
9614
d7a39b51
JB
96152009-10-08 Juanma Barranquero <lekktu@gmail.com>
9616
9617 * fontset.c (Fset_fontset_font): Fix typos in error messages.
9618
0c2b6f8e
GM
96192009-10-06 Glenn Morris <rgm@gnu.org>
9620
9621 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
9622 SOME_MACHINE_LISP (this enters indirectly via DOC).
9623
e02131a2
EZ
96242009-10-05 Eli Zaretskii <eliz@gnu.org>
9625
9626 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
9627
b4744254
EZ
96282009-10-04 Eli Zaretskii <eliz@gnu.org>
9629
9630 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
9631 Doc fix.
9632
dbf64827
JB
96332009-10-03 Martin Rudalics <rudalics@gmx.at>
9634
9635 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
9636
e9a0aef8
MA
96372009-10-02 Michael Albinus <michael.albinus@gmx.de>
9638
d528b1ce 9639 * lisp.h (Qdelete_directory_internal): Remove, because it is not
e9a0aef8
MA
9640 used anymore outside fileio.c.
9641
9642 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
9643
64eb2b56
JB
96442009-10-01 Juanma Barranquero <lekktu@gmail.com>
9645
9646 * lisp.h (Qdelete_directory_internal):
9647 Declare, instead of Qdelete_directory.
9648
9649 * w32fns.c (Fsystem_move_file_to_trash): Use it.
9650
9d28c33e
SM
96512009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
9652
9653 * eval.c (Fcalled_interactively_p): Add `kind' argument.
9654
9d8f3bd9
MA
96552009-10-01 Michael Albinus <michael.albinus@gmx.de>
9656
9d28c33e 9657 * fileio.c (Fdelete_directory_internal): Rename from
9d8f3bd9
MA
9658 Fdelete_directory. It is not a command anymore. It has no file
9659 name handler.
9660
9694740b
SM
96612009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9662
9663 * xdisp.c (get_next_display_element): Use an enum in last change.
9664
748e162f
KH
96652009-09-28 Kenichi Handa <handa@m17n.org>
9666
9694740b 9667 * xdisp.c (get_next_display_element): Pay attention to
748e162f
KH
9668 unibyte_display_via_language_environment in handling
9669 Vnobreak_char_display.
9670
17efd58d
AR
96712009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
9672
9673 * nsterm.h (ns_app_name): New extern variable.
9674
9675 * nsterm.m (ns_app_name): New variable.
9676 (ns_term_init): Set and use it.
9677 (ns_term_shutdown): Use it.
9678
9679 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
9680 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
9681
9682 * nsfns.m (ns_set_name_iconic, ns_set_name)
9683 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
9684 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
9685
9694740b
SM
9686 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
9687 Remove double-casting in client_data comparison.
31c2d412 9688
3208cb35
YM
96892009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9690
9691 * keyboard.c (make_lispy_event): Remember last wheel direction.
9692 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
9693
b7d552d6
GM
96942009-09-26 Glenn Morris <rgm@gnu.org>
9695
9696 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
9697 internal.elc. Add term/pc-win.elc.
9698 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
9699 term/x-win.elc.
9700 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
9701 term/w32-win.elc.
9702 (NS_SUPPORT): New.
9703 (lisp): Add NS_SUPPORT.
9704 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
9705
4ff670a8
DR
97062009-09-25 David Reitter <david.reitter@gmail.com>
9707
9708 * nsmenu.m (EmacsMenu-clear): Recognize application menu
9709 on Mac OS X 10.6+ (bug#4513).
9710
feabfb6c
JB
97112009-09-24 Juanma Barranquero <lekktu@gmail.com>
9712
9713 * frame.c (xrdb_get_resource): Return nil for empty string resources;
d528b1ce
SM
9714 some parts of Emacs code (like font selection) don't grok them.
9715 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
feabfb6c 9716
de59072a
AS
97172009-09-24 Andreas Schwab <schwab@redhat.com>
9718
9719 * coding.c (decode_coding_iso_2022): Fix operator precedence.
9720
a489517b
JB
97212009-09-24 Juanma Barranquero <lekktu@gmail.com>
9722
9723 * dired.c (Fdirectory_files): Fix typo in docstring.
9724
0592970c
AR
97252009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
9726
9727 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
9728 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
9729 (EmacsScroller-setPosition:portion:whole:): Remove -display call
9730 under GNUstep.
9731 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
9732
9733 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
9734 glyph advancement.
9735
48e8a88b
AR
97362009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
9737
9738 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
b3aac06a 9739 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
48e8a88b
AR
9740
9741 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
9742 deleted (bug #4492).
9743
e14f0a78
AR
9744 * nsfont.m (Vns_reg_to_script): New lisp variable.
9745 (syms_of_nsfont): Declare it.
9746 (ns_registry_to_script): New function.
9747 (ns_get_req_script): Call it.
9748 (ns_findfonts): Don't give up on non-unicode registry.
9749
9750 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
9751
5b650faa
SM
97522009-09-20 Tom Tromey <tromey@redhat.com>
9753
9754 * eval.c (find_handler_clause): Make stack-trace-on-error work in
9755 batch mode (bug#4228).
9756
a489517b 97572009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
0bae4e09
AR
9758
9759 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
a489517b 9760 carefully. (Bug #4339)
0bae4e09 9761
fcfe06f3
CY
97622009-09-18 Chong Yidong <cyd@stupidchicken.com>
9763
d798ba87 9764 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
fcfe06f3 9765
31642728
AR
97662009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
9767
9768 * emacs.c (inhibit_x_resources): Update doc string for NS.
bba3e508
SM
9769 (main) [HAVE_NS]: Don't process --no-init-file option.
9770 Remove legacy code for -NXHost. Fix error printf in daemon case.
31642728
AR
9771
9772 * nsterm.h (ns_no_defaults): Remove.
9773
9774 * nsterm.m (ns_no_defaults): Remove.
9775 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
9776 (ns_use_qd_smoothing): Remove legacy variable.
6516d10a
AR
9777 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
9778 don't update the NSWindow itself.
bba3e508
SM
9779 (EmacsView-windowWillUseStandardFrame:defaultFrame:):
9780 Improve state detection and store user rect ourselves. (Bug #3581)
31642728
AR
9781
9782 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
9783 ns_use_qd_smoothing.
9784
9785 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
9786 platform versions. Drop support for emacs-20-style face specs.
8aad0aea 9787 (x-close-connection): Drop PSFlush() under OS X.
a489517b 9788 (x-focus-frame): Activate the app first. (Bug #4180)
31642728 9789
8686ac71
JB
97902009-09-17 Juanma Barranquero <lekktu@gmail.com>
9791
9792 * emacs.c (inhibit_x_resources): New variable.
9793 (main) [HAVE_NS]: Don't process --quick command line option.
9794 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
9795
9796 * lisp.h (inhibit_x_resources): Declare it extern.
9797
9798 * w32reg.c (x_get_string_resource):
9799 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
9800
e227ba05
EZ
98012009-09-17 Eli Zaretskii <eliz@gnu.org>
9802
362654a6
JB
9803 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
9804 Add lisp/term/internal.elc.
e227ba05 9805
742d40e8
SM
98062009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9807
9808 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
9809 (bug#4461).
9810
005bd5a2
DN
98112009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
9812
9813 * puresize.h (BASE_PURESIZE): Increase to 1290000.
9814
9815 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
9816 (OBJECTS_MACHINE): Remove, unused.
9817
f9af9719
SM
98182009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9819
9820 * frame.c (x_get_resource_string): Remove unused.
9821
0307c7d2
JD
98222009-09-15 Jan Djärv <jan.h.d@swipnet.se>
9823
9824 * xterm.c (x_new_font): Call change_frame_size before calling
9825 x_set_window_size, in case frame size won't change.
9826
9827 * frame.c (x_set_font): Remove dead code.
9828
428b13d6
SM
98292009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
9830
9831 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
9832
5766c380
SM
98332009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9834
9835 * lread.c (Fload): Don't output a message after loading an obsolete
9836 package any more (done in Lisp now).
9837
2fd0161b
CY
98382009-09-12 Chong Yidong <cyd@stupidchicken.com>
9839
9840 * fns.c (syms_of_fns): Doc fix (Bug#4227).
9841
bc5e75b6
SM
98422009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9843
9844 * keymap.c (Fwhere_is_internal): Use nconc2.
9845
c31c985e
AM
98462009-09-11 Alan Mackenzie <acm@muc.de>
9847
9848 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
9849 batch mode.
9850
78012bd2
AS
98512009-09-11 Andreas Schwab <schwab@linux-m68k.org>
9852
9853 * xdisp.c (display_mode_element): Detect cycles.
9854
9d889332
SM
98552009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9856
9857 * keymap.c (where_is_internal): Don't erroneously return nil right after
9858 filling the cache.
9859 (where_is_internal_1): Fix up typo.
9860
7ab5d780
GM
98612009-09-11 Glenn Morris <rgm@gnu.org>
9862
9863 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
9864 share a common doc-string.
9865
5238a749
SM
98662009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9867
66d77eda
SM
9868 * keymap.c (get_keymap): Return the actual keymap symbol rather than
9869 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
9870
5238a749
SM
9871 * keymap.c (QCadvertised_binding): New constant.
9872 (syms_of_keymap): Initialize it.
9873 (Fwhere_is_internal): Try and use bindings from :advertised-binding
9874 if applicable.
9875
19f48442
SM
98762009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
9877
50d4ba39
SM
9878 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
9879 (parse_menu_item): Streamline since bindings are recomputed all the
9880 time anyway. Don't bother checking Vdefine_key_rebound_commands any
9881 more and don't support lmenu's menu-alias any more either.
9882
a88a5372
SM
9883 * keymap.c (where_is_internal_data): Make noindirect a boolean.
9884 (where_is_internal): Strip it down to only traverse the keymaps.
9885 Move the cache handling from Fwhere_is_internal to here.
9886 (Fwhere_is_internal): Move the handling of remapping and the choice of
9887 the best binding from where_is_internal to here.
9888 Unify the cached/noncached paths, so remapping is also handled
9889 correctly when the cache is used, and so the cache can be used to
9890 speed up remap-handling when applicable.
9891 Give preference to non-remapped bindings.
9892 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
9893 non-remapped bindings.
9894 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
9895 command remapping.
9896
19f48442
SM
9897 * xdisp.c (display_mode_element): Move list length limit from 50 to
9898 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
9899
599498c3 99002009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
c1905ca3
AR
9901
9902 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
9903
f9b7b5ac
SM
99042009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
9905
a53af587
JB
9906 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
9907 (Bug#4334)
9908
f9b7b5ac
SM
9909 * keymap.c (where_is_internal): Filter out shadowed remappings.
9910 Assume that where_is_internal returns unshadowed bindings to simplify
9911 the code and get rid of the gotos. Use ASIZE.
9912
04f4b72d
JD
99132009-09-04 Jan Djärv <jan.h.d@swipnet.se>
9914
4da146f2
JD
9915 * xterm.c (x_focus_changed): If we get a focusout and pointer
9916 is invisible, make it visible.
9917
04f4b72d
JD
9918 * xterm.h: Remove condition for declaration of
9919 x_*_window_to_frame.
9920
7cef7ce3
SM
99212009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
9922
9923 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
9924 initial terminal as well.
9925
a54fa5b7
JD
99262009-09-02 Jan Djärv <jan.h.d@swipnet.se>
9927
9928 * xterm.h: Rename x_non_menubar_window_to_frame to
7cef7ce3 9929 x_menubar_window_to_frame.
a54fa5b7 9930
50426a04 9931 * xterm.c: Remove declarations also in xterm.h.
a54fa5b7
JD
9932 (XTmouse_position): Do not return valid positions
9933 for clicks in the menubar and the toolbar for Gtk+.
9934
9935 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
9936 if the widget for the event has the same top level as a frame,
9937 return the frame.
9938 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
9939 internal windows, bug #4122.
9940 (x_non_menubar_window_to_frame): Remove.
9941
5a021dd0
GM
99422009-09-02 Glenn Morris <rgm@gnu.org>
9943
9944 * buffer.c (default-major-mode): Move most of the doc from here...
9945 (major-mode): ... to here.
9946
548fe2f3
NR
99472009-08-30 Nick Roberts <nickrob@snap.net.nz>
9948
9949 * process.c (wait_reading_process_output): Keep the descriptor
9950 when pty is used by a non-child process, e.g., in I/O buffer of
9951 GDB this allows inferior to be restarted.
9952
e0840eef
EZ
99532009-08-29 Eli Zaretskii <eliz@gnu.org>
9954
9955 * xdisp.c (redisplay_internal): Remove redundant test and collapse
9956 both branches into one.
9957
82e98df4
SM
99582009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9959
9960 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
9961 (main): Use enable-multibyte-characters rather than
9962 default-enable-multibyte-characters. Output a warning message when
9963 running a unibyte session.
9964
890617cb
YM
99652009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9966
9967 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
9968 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
9969 (copy_data_segment): Also copy __program_vars section.
9970 (copy_dyld_info) [LC_DYLD_INFO]: New function.
9971 (dump_it) [LC_DYLD_INFO]: Use it.
9972
9973 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
9974
e7adeadc
EZ
99752009-08-28 Eli Zaretskii <eliz@gnu.org>
9976
9977 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
9978 $(SRC)/buildobj.h.
ef1b0ba7 9979 (buildobj.h): Rename from $(SRC)/buildobj.h.
e7adeadc
EZ
9980 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
9981 $(SRC)/buildobj.h.
9982 (clean): Add buildobj.h.
9983
3ed8bbdc
TZ
99842009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
9985
9986 * print.c (print_object): Set escapeflag to 1 when printing
9987 hashtable keys and values.
9988
155a6764
SM
99892009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9990
9991 * lread.c (read_integer): Use doubles (and potentially return a float
9992 number) as we do in string-to-number.
9993 (read1): Use strtol to read integers, signal errors on strtol's
9994 overflow and use floats if strtol's output is too large for
9995 Elisp integers.
9996
877610de
EZ
99972009-08-27 Eli Zaretskii <eliz@gnu.org>
9998
9999 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
10000 (make-buildobj-SH): Fix last change.
10001 (SRC): Move to before where it's first used.
10002
ef73e7be
KH
100032009-08-27 Kenichi Handa <handa@m17n.org>
10004
550c8289
KH
10005 * process.c (send_process): Use encode_coding_object instead of
10006 encode_coding_string to perform eol-conversion even if the string
10007 is unibyte.
10008
60afa08d
KH
10009 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
10010 character.
10011
ef73e7be 10012 * cmds.c (Fself_insert_command): Avoid unnecessay
8a0b709a 10013 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
ef73e7be 10014
7b3a82d7
DN
100152009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
10016
5654bf63
DN
10017 * callproc.c (Fcall_process): Remove always true #if.
10018
7b3a82d7
DN
10019 * lisp.h: Replace #if 0 code for checking with text pointing to
10020 the --enable-checking configure flag.
10021
10022 * emacs.c (main): Mention the --enable-profiling configure flag
10023 instead of using CFLAGS.
10024
878bde49
KR
100252009-08-26 Ken Raeburn <raeburn@raeburn.org>
10026
10027 * Makefile.in (buildobj.h): New target.
10028 (doc.o): Depend on it.
10029 (temacs${EXEEXT}): Don't generate buildobj.lst.
10030 (mostlyclean): Delete buildobj.h, not buildobj.lst.
10031 * makefile.w32-in ($(SRC)/buildobj.h): New target.
10032 ($(BLD)/doc.$(O)): Depend on it.
10033 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
10034 provided by Eli Zaretskii.)
10035 ($(TEMACS)): Don't generate buildobj.lst.
10036 * doc.c: Include buildobj.h.
10037 (buildobj): New static variable.
10038 (Fsnarf_documentation): Use it, instead of opening and reading
10039 buildobj.lst.
10040
1574224c
MA
100412009-08-25 Michael Albinus <michael.albinus@gmx.de>
10042
10043 * dbusbind.c (Fdbus_call_method)
10044 (Fdbus_call_method_asynchronously): Use English numeric format for
10045 timeout values in doc string.
10046
d9da2f45
KH
100472009-08-25 Kenichi Handa <handa@m17n.org>
10048
ef73e7be
KH
10049 * alloc.c (mark_char_table): New function.
10050 (mark_object): Use mark_char_table for a char-table.
10051
d9da2f45
KH
10052 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
10053 (CHAR_TABLE_REF): Use it.
10054
c8edcc01
KR
100552009-08-23 Ken Raeburn <raeburn@raeburn.org>
10056
10057 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
10058 before invoking the newly build emacs to check for load-path
10059 shadowing.
10060
7763401b
GM
100612009-08-22 Glenn Morris <rgm@gnu.org>
10062
10063 * Makefile.in (bootstrap_exe): New variable.
10064 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
10065 Use ${bootstrap_exe}.
10066
729eadda
EZ
100672009-08-22 Eli Zaretskii <eliz@gnu.org>
10068
10069 * coding.h (encode_coding_string): Don't encode unibyte strings.
10070 (Bug#4047)
10071
eb4c6ace
MA
100722009-08-22 Michael Albinus <michael.albinus@gmx.de>
10073
10074 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
10075
10076 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
10077 intended as hotfix only.
10078 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
10079
36e34d1b
AR
100802009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
10081
10082 * nsterm.m (ns_get_color): Update documentation properly for last
bba3e508
SM
10083 change, and clean up loose ends in the code left by it.
10084 Fix longstanding bug with 16-bit hex parsing, and add support for
36e34d1b
AR
10085 yet another X11 format (rgb:r/g/b) for compatibility.
10086 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
10087 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
10088
f983eb8a
SM
100892009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
10090
10091 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
10092
3f56d3c6
MA
100932009-08-20 Michael Albinus <michael.albinus@gmx.de>
10094
10095 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
10096 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
10097 (xd_initialize, xd_pending_messages): Check, whether
10098 $DBUS_SESSION_BUS_ADDRESS is set.
10099
fb641d68
YM
101002009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10101
10102 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
10103
10104 * nsterm.m (ns_get_color): Remove incompatible color formats again.
10105
cf59a374
GM
101062009-08-20 Glenn Morris <rgm@gnu.org>
10107
10108 * emacs.c (system-type): Doc fix.
10109
1373f3be
SM
101102009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10111
10112 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
10113 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
10114
058ed861
MA
101152009-08-18 Michael Albinus <michael.albinus@gmx.de>
10116
1373f3be
SM
10117 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
10118 New functions.
058ed861
MA
10119 (xd_initialize): Revert change from 2009-08-16.
10120
563a866e 101212009-08-18 Kenichi Handa <handa@m17n.org>
5fc05db0
KH
10122
10123 * fontset.c (Ffontset_font): If a nil element is found in a
563a866e 10124 font-group vector, return nil.
5fc05db0 10125
e42bdf01
CY
101262009-08-17 Chong Yidong <cyd@stupidchicken.com>
10127
10128 * process.c (status_notify): Don't perform redisplay.
10129 (Fdelete_process, list_processes_1, process_send_signal):
10130 Expliticly perform redisplay.
10131 (wait_reading_process_output): Always check process status, but
10132 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
10133
4230ab74
KR
101342009-08-17 Ken Raeburn <raeburn@raeburn.org>
10135
1373f3be 10136 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
f601cdf3
KR
10137 (XFLOAT_INIT): New macro for storing a float value.
10138 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
10139 * fns.c (sxhash): Copy out the value of a float in order to
10140 examine its bytes.
10141 * dbusbind.c (xd_append_arg): Likewise.
10142
4230ab74
KR
10143 * emacs.c (main): Don't call syms_of_data twice.
10144
a0645cdd
MA
101452009-08-16 Michael Albinus <michael.albinus@gmx.de>
10146
10147 * dbusbind.c (xd_initialize): Add connection file descriptor to
10148 input_wait_mask, in order to let select() detect, whether a new
10149 message has been arrived.
ca4f31ea 10150 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
a0645cdd 10151
485db0ba
MA
101522009-08-15 Michael Albinus <michael.albinus@gmx.de>
10153
1373f3be
SM
10154 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
10155 New functions.
485db0ba
MA
10156
10157 * lisp.h (xd_pending_messages): Declare.
10158
10159 * keyboard.c (readable_events): Call xd_pending_messages.
10160
b5b98ff4
CY
101612009-08-15 Chong Yidong <cyd@stupidchicken.com>
10162
1373f3be 10163 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
84b17ab0 10164
f8354c6e
CY
10165 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
10166
b5b98ff4
CY
10167 * buffer.c (set_buffer_internal_1)
10168 (swap_out_buffer_local_variables): Check for unbound local
10169 variables (Bug#4138).
10170
8b9fc636
EZ
101712009-08-14 Eli Zaretskii <eliz@gnu.org>
10172
10173 * process.c (create_pty): Fix last change.
10174
ce959360
CY
101752009-08-13 Chong Yidong <cyd@stupidchicken.com>
10176
10177 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
10178 (xbm_load_image): Caller changed.
64b807c9 10179 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
ce959360 10180
c7baf7e9
NR
101812009-08-13 Nick Roberts <nickrob@snap.net.nz>
10182
10183 * process.c (create_pty): New function.
10184 (Fstart_process): Use it to allow Emacs to just associate a pty
10185 with the buffer. See associated change in gdb-mi.el.
10186 (list_processes_1): Deal with no program name.
10187 (start_process_unwind): Use pid == -2 to mean no process.
10188
1ac9108a
SM
101892009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
10190
10191 * cmds.c (nonundocount): New global variable.
10192 (keys_of_cmds): Initialize it.
10193 (Fself_insert_command): Use it to combine upto 20 sequential chars
10194 into a single undo entry, just like the Qself_insert_command code in
10195 keyboard.c does.
10196 Call frame_make_pointer_invisible, also like the Qself_insert_command
10197 code in keyboard.c does.
10198 * keyboard.c (command_loop_1): Use the new global nonundocount rather
10199 than its own local replacement for it.
10200
e267324c
KR
102012009-08-10 Ken Raeburn <raeburn@raeburn.org>
10202
1ac9108a 10203 * fns.c (concat): Don't re-set string length to its current value.
77437343 10204
1ac9108a
SM
10205 * coding.h (decode_coding_string, encode_coding_string):
10206 Use SBYTES macro.
f0bed503 10207
1ac9108a 10208 * doprnt.c (doprnt_lisp): Delete unused function.
e267324c
KR
10209 (doprnt): Merge with doprnt1, discarding lispstrings code.
10210 * lisp.h (doprnt_lisp): Don't declare.
10211
416e006d
JL
102122009-08-07 Juri Linkov <juri@jurta.org>
10213
10214 * puresize.h (BASE_PURESIZE): Increase to 1270000.
10215
6f7d5780
DN
102162009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
10217
10218 * print.c (syms_of_print): Undo previous change.
10219
f19a0f5b
TZ
102202009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
10221
10222 * lread.c (read1, syms_of_lread): Read hashtables back from the
10223 readable format.
10224
10225 * print.c (print_preprocess, print_object): Print hashtables fully
10226 and readably.
10227 (syms_of_print): Provide 'hashtable-print-readable.
10228
b9173dc2
AR
102292009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
10230
10231 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
10232 no family set.
10233 (nsfont_open): Handle case when entity has no family.
10234
1586503c
AR
102352009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
10236
10237 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
10238 element, not a list, for match case.
10239
087048cd
KH
102402009-07-28 Kenichi Handa <handa@m17n.org>
10241
10242 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
10243 rigidly.
10244
10245 * xfont.c (xfont_list_pattern): Don't ignore the return value of
10246 font_parse_xlfd. Check font properties more rigidly.
10247
780c2506
DN
102482009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
10249
31fd7c5c
JB
10250 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
10251 bsd-common.h.
780c2506 10252
a8c0cc18
KH
102532009-07-27 Kenichi Handa <handa@m17n.org>
10254
10255 * xfaces.c (face_with_height): Call font_clear_prop.
10256
4fbe2306
CY
102572009-07-26 Chong Yidong <cyd@stupidchicken.com>
10258
111d9af3
CY
10259 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
10260
10261 * xterm.c (x_term_init): Use Qx.
10262
4fbe2306
CY
10263 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
10264
1ac9108a 10265 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
4fbe2306
CY
10266 (ns_get_color): Revert 2009-07-16 change.
10267
beb0b7f9
EZ
102682009-07-25 Eli Zaretskii <eliz@gnu.org>
10269
10270 * lread.c (syms_of_lread) <force_load_messages>: New variable.
1ac9108a 10271 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
beb0b7f9 10272
2baf5e76
KR
102732009-07-25 Ken Raeburn <raeburn@raeburn.org>
10274
1ac9108a
SM
10275 * coding.h (decode_coding_string, encode_coding_string):
10276 Use SCHARS macro.
8890e5f5 10277
2baf5e76 10278 * lread.c: Rewrite 2009-07-21 changes.
1ac9108a 10279 (load_depth): Delete.
2baf5e76
KR
10280 (Qload_in_progress): New variable.
10281 (load_unwind): Don't reference load_depth or load_in_progress.
10282 (Fload): Likewise; specbind Qload_in_progress instead.
10283 (init_lread): Don't initialize load_depth.
10284 (syms_of_lread): Initialize and protect Qload_in_progress.
10285
1395c6f5
AR
102862009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
10287
10288 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
10289
4e2f36cf
AR
102902009-07-23 Yavor Doganov <yavor@gnu.org>
10291
10292 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
10293
5dd9a6f7
AR
102942009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
10295
10296 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
7f6ad209
AR
10297 Bugs 3792, 3720, 2402.
10298 (ns_lookup_indexed_color): Check for bad index.
10299 (ns_index_color): Init unused slot to 0.
10300 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
10301 Bug 3714, possibly 3082.
5dd9a6f7 10302
c902b920
JR
103032009-07-22 Jason Rumney <jasonr@gnu.org>
10304
1ac9108a
SM
10305 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
10306 Position IME window at cursor (Bug#2570).
c902b920
JR
10307 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
10308 (globals_of_w32fns): Dynamically load functions required above.
10309
10310 * w32term.c (w32_draw_window_cursor): Send message to reposition
10311 any IME window.
10312
090101cf
CY
103132009-07-21 Chong Yidong <cyd@stupidchicken.com>
10314
10315 * fileio.c: Revert 2009-07-16 changes.
10316 (Vauto_save_include_big_deletions): New variable.
10317 (Fdo_auto_save): Disable auto-save only if
10318 auto-save-include-big-deletions is nil.
10319
e6583e3d
CY
103202009-07-21 Chong Yidong <cyd@stupidchicken.com>
10321
10322 * xdisp.c (move_it_to): For continued lines ending in a tab, take
10323 the overflowed pixels into account (Bug#3879).
10324
ece435a5
KR
103252009-07-21 Ken Raeburn <raeburn@raeburn.org>
10326
10327 * lread.c (load_depth): New variable.
10328 (Fload, load_unwind, init_lread): Set it to the load recursion
10329 depth; set load_in_progress as a simple boolean based on the
10330 current load_depth. (Bug#3892)
10331
40b2d973
AR
103322009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
10333
10334 * nsfont.m (ns_has_attribute): Remove.
10335 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
10336
10be7e0d
JL
103372009-07-18 Juri Linkov <juri@jurta.org>
10338
10339 * process.c (Fset_process_query_on_exit_flag): Mention killing
10340 a buffer in docstring.
10341
fa055055
KH
103422009-07-17 Kenichi Handa <handa@m17n.org>
10343
10344 * casetab.c (shuffle): Fix the logic of setting up the cycle.
10345
042f7b69
YM
103462009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10347
10348 * nsfns.m (Fns_set_alpha): Remove function.
10349 (syms_of_nsfns): Don't defsubr it.
10350
10351 * nsterm.m (ns_get_color): Remove incompatible color formats.
10352 (ns_color_to_lisp): Generate #rrggbb color format string.
10353
4be941e3
RS
103542009-07-16 Richard Stallman <rms@gnu.org>
10355
10356 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
10357 (Fset_buffer_auto_saved): Handle save_length = -2.
10358
4e6b227d
CY
103592009-07-16 Chong Yidong <cyd@stupidchicken.com>
10360
10361 * xterm.c (Qx_gtk_map_stock): New var.
10362
10363 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
10364 of calling intern each time.
10365
a1856973
YM
103662009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10367
10368 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
10369 does tiling.
10370
10371 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
10372
497e54d8
KH
103732009-07-14 Kenichi Handa <handa@m17n.org>
10374
72d36834
KH
10375 * font.c (font_vconcat_entity_vectors): New function.
10376 (struct font_sort_data): New member font_driver_preference.
10377 (font_compare): Check font_driver_preference.
10378 (font_sort_entities): The format of the first argument changed.
10379 (font_delete_unmatched): Likewise.
10380 (font_list_entities): The return type changed.
10381 (font_select_entity): The format of the second argument changed.
1ac9108a
SM
10382 (font_find_for_lface): Adjuste for the above changes.
10383 Don't suppress the checking of C even if the repertory supports it.
10384 (Flist_fonts): Adjust for the above changes.
72d36834 10385
1ac9108a
SM
10386 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
10387 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
497e54d8
KH
10388 Reject a font who has adstyle property that is different from a
10389 langname derived from registry property.
1ac9108a 10390 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
497e54d8 10391
b6046155
EZ
103922009-07-13 Eli Zaretskii <eliz@gnu.org>
10393
10394 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
10395 local copy of dirfilename.
10396
fb6b6049
KH
103972009-07-13 Kenichi Handa <handa@m17n.org>
10398
e2402a5e
KH
10399 * chartab.c (sub_char_table_ref_and_range): Fix the range check
10400 against max_char.
10401
fb6b6049
KH
10402 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
10403 calling XSYMBOL (sym).
10404
65156807
EZ
104052009-07-11 Eli Zaretskii <eliz@gnu.org>
10406
1ac9108a
SM
10407 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
10408 New function.
10409 (directory_files_internal) [WINDOWSNT]:
10410 Bind w32-get-true-file-attributes to either t or nil, depending whether
65156807
EZ
10411 the filesystem of the directory is fast or slow.
10412
10413 * w32.c (logon_network_drive): Don't assume PATH is an absolute
10414 file name.
10415 (is_slow_fs): New function.
10416 (stat): Use it to determine whether to issue more system calls to
10417 get accurate file attributes, when w32-get-true-file-attributes is
10418 `local'.
10419
e0ab5fcf
JD
104202009-07-10 Jan Djärv <jan.h.d@swipnet.se>
10421
10422 * xfns.c (Fx_select_font): Remember last font selected in
31fd7c5c 10423 x_last_font_name and use that the next time. Also try the frame
e0ab5fcf
JD
10424 parameter font-parameter as default to the font dialog.
10425
784ceded
KH
104262009-07-10 Kenichi Handa <handa@m17n.org>
10427
10428 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
10429
fb8edc0b
EZ
104302009-07-09 Eli Zaretskii <eliz@gnu.org>
10431
1ac9108a 10432 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
017dab84 10433
fb8edc0b
EZ
10434 * w32.c (stat): Treat UNC file names as residing on remote
10435 drives. (Bug#3542)
10436
635c75b1
KH
104372009-07-09 Kenichi Handa <handa@m17n.org>
10438
10439 * fontset.c (fontset_find_font): Fix previous change.
10440
c1d5ce94
MA
104412009-07-08 Michael Albinus <michael.albinus@gmx.de>
10442
10443 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
10444 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
10445 error flag.
10446
edb61b39
KH
104472009-07-08 Kenichi Handa <handa@m17n.org>
10448
374bf7e4
KH
10449 * fontset.c (fontset_find_font): Fix the logic of handling
10450 charset_matched.
10451 (font_for_char): Delete unused var.
10452 (generate_ascii_font_name): Delete it.
10453
edb61b39
KH
10454 * coding.h (JIS_TO_SJIS2): Fix the code range check.
10455
10456 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
10457 (encode_coding_sjis): Fix the code range check.
10458
0f3f018c
CY
104592009-07-07 Chong Yidong <cyd@stupidchicken.com>
10460
10461 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
10462 (Fexpand_file_name): Copy string data properly (Bug#3772).
10463
fcaf6f3a
JD
104642009-07-07 Jan Djärv <jan.h.d@swipnet.se>
10465
10466 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
10467 first MapNotify.
10468
6809ca75
KH
104692009-07-07 Kenichi Handa <handa@m17n.org>
10470
10471 * character.h (unibyte_has_multibyte_table): Delete extern.
10472 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
10473
10474 * charset.c (Fset_charset_priority): Update charset_unibyte.
10475 (syms_of_charset): Initialize charset_unibyte.
10476
10477 * character.c (unibyte_has_multibyte_table): Delete it.
10478 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
10479 charset_unibyte.
10480 (multibyte_char_to_unibyte_safe): Likewise.
10481 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
10482
1ac9108a 10483 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
6809ca75
KH
10484 (x_produce_glyphs): Likewise.
10485
10486 * .gdbinit (xcharset): Fix the treating $arg0.
10487
ad9e2d54
EZ
104882009-07-04 Eli Zaretskii <eliz@gnu.org>
10489
10490 Emulation of `getloadavg' on MS-Windows.
50426a04 10491 * w32.c: Include float.h.
ad9e2d54
EZ
10492 (g_b_init_get_native_system_info, g_b_init_get_system_times)
10493 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
10494 (get_native_system_info, get_system_times): New functions.
10495 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
10496 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
10497 (globals_of_w32): Initialize g_b_init_get_native_system_info,
10498 g_b_init_get_system_times, and num_of_processors.
10499
0a3472c7
JR
105002009-07-03 Jason Rumney <jasonr@gnu.org>
10501
10502 * w32term.c (w32_initialize): Use standard types.
10503
80904120
EZ
105042009-07-03 Eli Zaretskii <eliz@gnu.org>
10505
10506 * dired.c (Ffile_attributes): Decode user and group names by the
10507 locale's encoding. (Bug#3443)
10508
6978862d
DN
105092009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
10510
f8d23104
DN
10511 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
10512 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
10513
10514 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
10515
10516 * term.c (init_tty): Remove spurious #ifdef.
10517
6978862d
DN
10518 * m/mips.h: Mention this file is also used for netbsd.
10519 * m/pmax.h: Remove file.
10520
e044e4fc
JD
105212009-07-03 Jan Djärv <jan.h.d@swipnet.se>
10522
10523 * xterm.h (struct x_display_info): Add invisible_cursor.
10524 (struct x_output): Add current_cursor.
10525
10526 * xterm.c (XTtoggle_invisible_pointer): New function.
10527 (x_define_frame_cursor): Don't define cursor if invisible or the
10528 same as before. Set current_cursor.
10529 (x_create_terminal): Set toggle_invisible_pointer_hook.
10530
10531 * xfns.c (make_invisible_cursor): New function.
10532 (x_set_mouse_color): Call make_invisible_cursor.
10533 Set current_cursor.
10534 (x_window): Set current_cursor.
10535
10536 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
10537
10538 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
10539 inserting a character.
10540 (read_avail_input): Call frame_make_pointer_visible.
10541
10542 * frame.c (Vmake_pointer_invisible): New variable.
1ac9108a
SM
10543 (frame_make_pointer_invisible, frame_make_pointer_visible):
10544 New functions.
e044e4fc
JD
10545 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
10546
10547 * frame.h: Declare frame_make_pointer_invisible and
10548 frame_make_pointer_visible.
10549 (struct frame): Add pointer_invisible.
10550
574c8efa
JD
105512009-07-02 Jan Djärv <jan.h.d@swipnet.se>
10552
7b507248
JD
10553 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
10554 frame isn't visible.
10555 (xg_frame_resized): If width/height is -1, get size of window
10556 from X server.
10557
10558 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
10559 for MapNotify.
10560
835bdaa7 10561 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
31fd7c5c 10562 here or call change_frame_size. Just call flush_and_sync.
1ac9108a 10563 (flush_and_sync): Reintroduce.
574c8efa 10564
3f1c6666 105652009-07-01 Jan Djärv <jan.h.d@swipnet.se>
69b16610 10566
31fd7c5c 10567 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
acd51077
JD
10568
10569 * xterm.c (x_handle_net_wm_state): Also look for sticky.
10570 (x_term_init): Initialize Xatom_net_wm_state_sticky.
10571
10572 * frame.h: Declare Qsticky.
10573
cad9ef74
JD
10574 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
10575
10576 * nsfns.m (ns_frame_parm_handlers): Ditto.
10577
10578 * frame.c: Declare Qsticky.
10579 (frame_parms): Add sticky.
10580
10581 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
10582
10583 * xterm.h: Declare x_set_sticky.
10584
10585 * xterm.c (x_set_sticky): New function.
10586
69b16610
JD
10587 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
10588 (xg_tool_bar_menu_proxy): Attach enter/leave events to
10589 xg_tool_bar_proxy_help_callback.
3f1c6666
JD
10590
10591 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
10592
10593 * frame.c: Qmaximized is new.
10594 (x_set_frame_parameters): Do not handle fullscreen specially.
10595 Only set width and height if explicitly set.
10596 (x_set_fullscreen): Handle Qmaximized.
10597 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
10598 (syms_of_frame): Initialize Qmaximized.
10599
1ac9108a
SM
10600 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
10601 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
3f1c6666
JD
10602
10603 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
31fd7c5c
JB
10604 for Expose event. Add call to x_check_fullscreen for MapNotify event.
10605 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
3f1c6666
JD
10606 set gravity to NorthWestGravity when USE_GTK.
10607 (set_wm_state): New function.
31fd7c5c 10608 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
3f1c6666
JD
10609 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
10610 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
31fd7c5c 10611 or the case when no window manager is running. That means remove calls
3f1c6666
JD
10612 to x_real_positions and x_fullscreen_adjust.
10613
10614 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
10615 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
10616 flush_and_sync.
10617 (xg_height_changed): New function.
10618 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
1ac9108a
SM
10619 and gtk_window_set_policy. Set frame gravity after parsing the
10620 geometry string.
3f1c6666
JD
10621 (xg_update_frame_menubar, free_frame_menubar)
10622 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
10623 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
10624 Remove calls to xg_frame_set_char_size.
10625
fd503d99
KH
106262009-07-01 Kenichi Handa <handa@m17n.org>
10627
10628 * keyboard.c (decode_keyboard_code): New function.
10629 (tty_read_avail_input): Decode the input bytes if necessary.
10630
1ac9108a
SM
10631 * coding.c (setup_coding_system):
10632 Initialize coding->carryover_bytes to 0.
fd503d99
KH
10633 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
10634 use Qno_conversion.
10635
24ed93fb
YM
106362009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10637
10638 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
10639
99061dfc
CY
106402009-06-30 Chong Yidong <cyd@stupidchicken.com>
10641
1ac9108a 10642 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
99061dfc 10643
ff90fbde
JR
106442009-06-30 Jason Rumney <jasonr@gnu.org>
10645
10646 * w32term.c (w32_initialize): Use GetModuleHandle for library that
10647 is already loaded.
10648 Set user model ID if supported (bug#1849).
10649
5f445726
JM
106502009-06-29 Jim Meyering <meyering@redhat.com>
10651
10652 Remove useless if-before-xfree test.
10653 * nsfont.m (nsfont_close): Remove useless test.
10654 * term.c (delete_tty): Likewise.
10655 * w32.c (system_process_attributes): Likewise.
10656 * w32font.c (w32font_close): Likewise.
10657 * xfaces.c (x_free_gc): Likewise.
10658 * xselect.c (buffer): Likewise.
10659
b9607587
AS
106602009-06-28 Andreas Schwab <schwab@linux-m68k.org>
10661
10662 * process.c (send_process): Keep decoded string in a local
10663 variable and protect it from GC. (Bug#3521)
10664
89ba96f4
EZ
106652009-06-28 Eli Zaretskii <eliz@gnu.org>
10666
10667 * term.c (create_tty_output) [MSDOS]: #ifdef away.
10668 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
10669
098a1589
CY
106702009-06-28 Chong Yidong <cyd@stupidchicken.com>
10671
485422be
CY
10672 * xdisp.c (start_display, handle_face_prop)
10673 (move_it_vertically_backward, cursor_row_fully_visible_p)
1ac9108a
SM
10674 (redisplay_window, try_window_id, produce_image_glyph):
10675 Delete some #ifdef-ed out code chunks that are now obsolete.
485422be 10676
098a1589
CY
10677 * xterm.c (x_update_window_begin, x_new_focus_frame)
10678 (x_scroll_bar_handle_click, handle_one_xevent)
10679 (handle_one_xevent, XTread_socket, x_focus_on_frame)
10680 (x_make_frame_visible, x_make_frame_invisible)
10681 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
10682 code chunks that are now obsolete.
10683
78c38319
MA
106842009-06-28 Michael Albinus <michael.albinus@gmx.de>
10685
10686 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
10687 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
10688 for hours, when optimzation is enabled.
10689 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
10690 (xd_read_message): Make them static.
10691
4189ed40
CY
106922009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
10693
10694 * term.c (turn_on_face): Allow simultaneously bold and dim
10695 terminal faces (Bug#3530).
10696
cd9b5e16
CY
106972009-06-27 Chong Yidong <cyd@stupidchicken.com>
10698
4e23bedb
CY
10699 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
10700
cd9b5e16
CY
10701 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
10702 truncation glyphs (Bug#3686).
10703
07cc3c35
GM
107042009-06-27 Glenn Morris <rgm@gnu.org>
10705
10706 * m/pmax.h: Restore file, with only netbsd portions.
10707
31fd7c5c 107082009-06-26 David Reitter <david.reitter@gmail.com>
25c5550f 10709
cd9b5e16 10710 * nsterm.m (keydown): Avoid infinite loop.
25c5550f 10711
42d4a64f
KH
107122009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
10713
10714 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
10715 the arg FORCE_SYMBOL.
10716
930fe55b 107172009-06-25 Kenichi Handa <handa@m17n.org>
a71ccf3a
KH
10718
10719 * fontset.c (fontset_find_font): When a usable rfont_def is found
10720 in a fallback font-group, make it the first element of the group.
10721
57ebc3fd
CY
107222009-06-24 Chong Yidong <cyd@stupidchicken.com>
10723
10724 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
10725
f084f942
KH
107262009-06-24 Kenichi Handa <handa@m17n.org>
10727
10728 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
10729 set for C.
10730 (fontset_font): Record the availability of a font for C both in
10731 the realized fontsets of the current one and the default one.
10732
2f686c87
DN
107332009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
10734
10735 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
10736 conditional, it is always defined on AIX.
10737
666e158e
MB
107382009-06-23 Miles Bader <miles@gnu.org>
10739
10740 * window.c (Vrecenter_redisplay): New variable.
10741 (syms_of_window): Initialize it.
10742 (Qtty): New extern declaration.
10743 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
10744
c6da7cd2
JM
107452009-06-23 Jim Meyering <meyering@redhat.com>
10746
1ac9108a
SM
10747 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
10748 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
632c2030 10749 pointer dereferences are guaranteed to be valid.
c6da7cd2 10750
678dca3d
KH
107512009-06-23 Kenichi Handa <handa@m17n.org>
10752
74d75424
KH
10753 * emacs.c (main): Call init_font ().
10754
10755 * font.h (Vfont_log): Extern it.
10756 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
10757
10758 * font.c (font_sort_entities, font_list_entities)
10759 (font_matching_entity, font_open_entity)
10760 (font_close_object): Change font_add_log to FONT_ADD_LOG.
10761 (Vfont_log): Delete static.
10762 (font_log_env_checked): Delete this variable.
10763 (font_add_log): Don't check font_log_env_checked.
10764 (font_deferred_log): Check Vfont_log.
10765 (init_font): New function.
10766
678dca3d
KH
10767 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
10768
10769 * w32font.c: Change font_add_log to FONT_ADD_LOG.
10770
10771 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
10772
10773 * xfont.c: Change font_add_log to FONT_ADD_LOG.
10774
10775 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
10776 (face_for_char): Don't call font_deferred_log here.
10777 (font_for_char): Likewise.
10778
8a668709
CY
107792009-06-22 Chong Yidong <cyd@stupidchicken.com>
10780
9a01ee33
CY
10781 * w32term.c (x_draw_glyph_string): Use the glyph string's width
10782 rather than its background_width for drawing the overline and
10783 underline (Bug#489).
10784
10785 * xterm.c (x_draw_glyph_string): Use the glyph string's width
10786 rather than its background_width for drawing the overline and
10787 underline (Bug#489).
ec7c9926
CY
10788 (xg_default_icon_file): New variable.
10789 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
10790 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
9a01ee33 10791
8a668709
CY
10792 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
10793 (load_overlay_strings): Remove externs.
10794 (fast_find_position): Function deleted.
10795 (mouse_face_from_buffer_pos): New function, based on
10796 fast_find_position. Correctly handle before-strings,
10797 display-strings, and after-strings (Bug#1220).
10798 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
10799
4d4c02d8
CY
108002009-06-21 Chong Yidong <cyd@stupidchicken.com>
10801
1ac9108a 10802 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
4d4c02d8
CY
10803 (move_it_in_display_line_to, move_it_in_display_line_to)
10804 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
10805
70243478
CY
108062009-06-21 Chong Yidong <cyd@stupidchicken.com>
10807
10808 * Branch for 23.1.
10809
13087e59
JR
108102009-06-21 Jason Rumney <jasonr@gnu.org>
10811
10812 * w32term.c (keyboard_codepage): New static variable.
10813 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
10814 (w32_read_socket) [WM_CHAR]: Use it to decode character
10815 input (bug#3237).
10816 (w32_initialize): Initialize it.
10817 (codepage_for_locale): New function.
10818
4735b74e
KR
108192009-06-20 Ken Raeburn <raeburn@raeburn.org>
10820
10821 * process.c (status_message): Pass Faset index argument as a lisp
10822 object, so as to work with USE_LISP_UNION_TYPE.
10823
0e727afa
YM
108242009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10825
10826 * coding.c (Ffind_coding_systems_region_internal):
10827 Cache checked characters.
10828
cf299835
KH
108292009-06-18 Kenichi Handa <handa@m17n.org>
10830
1ac9108a 10831 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
cf299835 10832
90f20d94
AS
108332009-06-18 Andreas Schwab <aschwab@redhat.com>
10834
10835 * xdisp.c (redisplay_internal): Check that the frame is still
10836 live after redisplay of its windows.
10837 (redisplay_windows): Check that the window is still live.
10838
7f1faf1c
KH
108392009-06-17 Andreas Schwab <schwab@linux-m68k.org>
10840
10841 * coding.c (detect_coding_utf_16): Fix previous change.
10842
cc13543e
KH
108432009-06-16 Kenichi Handa <handa@m17n.org>
10844
10845 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
10846 UTF-16 by checking the dispersion of Eth and Oth bytes.
10847
977b85f4
AS
108482009-06-15 Andreas Schwab <schwab@linux-m68k.org>
10849
10850 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
10851
66bd43d1
KH
108522009-06-15 Kenichi Handa <handa@m17n.org>
10853
10854 * process.c (status_message): Fix previous change. Be sure to
10855 decode a localized string.
10856
cb5ca9c5
YM
108572009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10858
10859 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
10860 add comment explaining why.
10861
ec7709ba 108622009-06-14 Sidney Markowitz <sidney@sidney.com>
5ee6f629 10863
ec7709ba 10864 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
5ee6f629 10865
4b7f335c
AR
108662009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
10867
10868 * nsfont.m (ns_attribute_value): Remove.
10869 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
10870 (ns_has_attribute): Shrink the normal range.
10871 (ns_findfonts): Don't worry about requested spec in determining
10872 need for synthItal.
e41820ee 10873 (ns_get_covering_families): Retain scriptToFamilies.
4b7f335c 10874
73b26103
SZ
108752009-06-14 Seiji Zenitani <zenitani@mac.com>
10876
10877 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
10878
5753e4da
KH
108792009-06-11 Kenichi Handa <handa@m17n.org>
10880
10881 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
10882 overhang for the static composition case.
10883
3561b671
KH
108842009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10885
5753e4da
KH
10886 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
10887 overhang for the automatic composition case.
10888
3561b671
KH
10889 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
10890 composition case.
10891
852bbd41
CY
108922009-06-10 Chong Yidong <cyd@stupidchicken.com>
10893
10894 * xdisp.c (get_next_display_element): When handling wrap-prefix
10895 and line-prefix, treat \n as a control character (bug#3502).
10896
9903d1e6
KH
108972009-06-10 Kenichi Handa <handa@m17n.org>
10898
10899 * font.c (font_parse_family_registry): Fix for one-char foundry.
10900 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
10901
0bcbaaaa
CY
109022009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
10903
10904 * process.c (status_message): Fix handling of multibyte signal
10905 string (Bug#3499).
10906
40aa3f13
JM
109072009-06-09 Jim Meyering <meyering@redhat.com>
10908
1f80c7e2
CY
10909 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
10910 color name is missing.
40aa3f13 10911
72d51285
KH
109122009-06-09 Kenichi Handa <handa@m17n.org>
10913
10914 * charset.c (Fmap_charset_chars): In docstring, state clearly that
10915 FROM-CODE and TO-CODE are codepoints of CHARSET.
10916
c1d04d84
AR
109172009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
10918
10919 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
10920
109212009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
10922
10923 Changes to support :script/:lang/:otf in NS font driver.
10924 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
10925 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
10926 indicate not part of font driver interface, and change callers.
10927 (ns_get_family): Remove pointless null check.
10928 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
10929 ns_spec_to_descriptor, ns_descriptor_to_entity.
10930 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
10931 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
10932 (ns_spec_to_descriptor, ns_descriptor_to_entity)
10933 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
10934 (ns_get_req_script, ns_accumulate_script_ranges)
10935 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
10936 New functions.
10937 (nsfont_list, nsfont_match): Use ns_findfonts.
10938 (nsfont_open): Use font descriptor instead of traits.
10939 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
10940 (dump_glyphstring): Rename to ns_dump_glyphstring.
10941
c7eb9816
AR
10942 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
10943
c1d04d84
AR
10944 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
10945
10946 * fontset.c (fontset_from_font): Remove NS-specific code.
10947
ec7709ba 109482009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
c1d04d84
AR
10949
10950 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
10951 nonactive windows.
10952
31fd7c5c 109532009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
c1d04d84 10954
1ac9108a 10955 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
c1d04d84 10956
68852c13 109572009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
e7777236
AR
10958
10959 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
10960
6756cd1d
CY
109612009-06-07 Chong Yidong <cyd@stupidchicken.com>
10962
10963 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
10964 account for the overflowing of newlines into the last glyph on the
10965 display line (Bug#3482).
10966
28bf482a
DR
109672009-06-05 David Reitter <david.reitter@gmail.com>
10968
ec7709ba
JB
10969 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
10970 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
28bf482a
DR
10971 Fns_selection_exists_p, Fns_selection_owner_p.
10972
fdb55376
JR
109732009-06-03 Jason Rumney <jasonr@gnu.org>
10974
10975 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
10976 available. (Bug#3379)
10977
05129fbe
KH
109782009-05-29 Kenichi Handa <handa@m17n.org>
10979
1ac9108a
SM
10980 * coding.c (get_translation_table):
10981 Check Venable_character_translation.
05129fbe 10982
ec7709ba 109832009-05-26 David Reitter <david.reitter@gmail.com>
15891144 10984
ec7709ba
JB
10985 * nsterm.m (ns_raise_frame): Only raise frame if visible.
10986 (x_make_frame_visible): Move frame to front rather than calling
15891144 10987 ns_raise_frame().
ec7709ba 10988 (keyDown:): Do not swallow events that aren't re-sent if frame
15891144 10989 isn't key window.
ec7709ba 10990 (drawRect:): Do not set visibility/iconified flags because
15891144
DR
10991 drawRect may be called by NSView even if the frame is hidden.
10992
ec7709ba
JB
10993 * nsfns.m (Fx_create_frame): Follow other ports in
10994 determining visibility; default to t. Ensure async_visible is set.
15891144 10995
21f73755
EZ
109962009-05-23 Eli Zaretskii <eliz@gnu.org>
10997
10998 * dired.c (Ffile_attributes): Doc fix.
10999
34001e41
CY
110002009-05-22 Chong Yidong <cyd@stupidchicken.com>
11001
11002 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
11003
46306a17
SM
110042009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
11005
11006 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
11007 and xfont_scratch_props.
11008 (syms_of_xfont): Do it here instead.
11009 (xfont_find_ccl_program): Delete, unused.
11010 (xfont_open): Delete unused var `i'.
11011
ef6e0694
KH
110122009-05-21 Kenichi Handa <handa@m17n.org>
11013
11014 * fontset.c (Qlatin): Don't make it static.
11015
46306a17
SM
11016 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
11017 New functions.
ef6e0694
KH
11018 (xfont_scripts_cache, xfont_scratch_props): New variables.
11019 (Qlatin, Vscalable_fonts_allowed): Extern it.
46306a17
SM
11020 (xfont_list_pattern): Argument changed. Callers changed.
11021 Check Vscalable_fonts_allowed. Check the support of a script.
ef6e0694
KH
11022 (xfont_list): Don't reject a font spec with :script property.
11023 (xfont_has_char): Fix setting of encoding.
11024 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
11025 xfont_scratch_props.
11026
110272009-05-19 Kenichi Handa <handa@m17n.org>
11028
46306a17 11029 * font.c (font_sort_entities): Rename from font_sort_entites.
ef6e0694
KH
11030 Callers changed.
11031
110322009-05-18 Kenichi Handa <handa@m17n.org>
11033
11034 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
11035
ac71ced7
SM
110362009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11037
11038 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
11039 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
11040
1c6d1051
YM
110412009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11042
11043 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
11044 (x_delete_terminal): Dissociate resource database from display and
11045 then call XrmDestroyDatabase before closing display.
11046
9b9b779c
AR
110472009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
11048
11049 * nsterm.m (ns_read_socket): Remove unused variable.
1564e649
AR
11050 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
11051 whether selected frame is viable before raising it (based on patch
11052 by David Reitter), and improve commentary.
11053 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
9b9b779c 11054
cccd42d5
KH
110552009-05-15 Kenichi Handa <handa@m17n.org>
11056
11057 * font.c (Ffont_spec): Check arguments.
11058
337fbd17
CY
110592009-05-14 Chong Yidong <cyd@stupidchicken.com>
11060
11061 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
11062 weight when testing attributes (Bug#3282).
11063
47a6002f
JD
110642009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11065
11066 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
11067 what we expect to get in the next ConfigureNotify event.
11068
9cb363db
YM
11069 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
11070 before Xft one (Bug#1696).
11071
b9126609
CY
110722009-05-07 David Reitter <david.reitter@gmail.com>
11073
11074 * nsfns.m (Fx_display_planes): Compute bitplanes using
11075 NSBitsPerPixelFromDepth (Bug#3207).
11076
27a69fd9
CY
110772009-05-10 Chong Yidong <cyd@stupidchicken.com>
11078
11079 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
11080
00f37552
TTN
110812009-05-10 Ulrich Mueller <ulm@gentoo.org>
11082
11083 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
11084
2d82a920
DR
110852009-05-07 David Reitter <david.reitter@gmail.com>
11086
ec7709ba
JB
11087 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
11088 Respect mouse face background.
2d82a920 11089
46b0d52d
DR
110902009-05-07 David Reitter <david.reitter@gmail.com>
11091
ec7709ba
JB
11092 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
11093 Mouse movement/highlight: bracket drawing operations
46b0d52d
DR
11094 in ns_update_begin and ns_update_end.
11095
ce1b23bb
SM
110962009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11097
5996e1b7
SM
11098 * nsfns.m (ns_get_screen): Rewrite.
11099 Don't presume selected-frame is of type `ns'.
11100
ba98e3a0
SM
11101 * font.c (font_update_drivers): Sanity fallback to avoid disabling
11102 all drivers.
11103
ce1b23bb
SM
11104 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
11105
bcda200f
YM
111062009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11107
11108 * keyboard.h (add_user_signal): Fix typo in extern.
11109
11110 * lisp.h (add_user_signal): Remove extern.
11111
11112 * unexelf.c (unexec): Consider a section to precede the .bss section
11113 if its addresses overlap that of .bss.
11114 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
11115 instead of dumping process.
11116
864660a2
SM
111172009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11118
11119 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
11120
50da4e56
SM
111212009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11122
11123 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
11124
51520a1a
DN
111252009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
11126
11127 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
11128 any statements.
11129
409ea3a1
AS
111302009-05-02 Andreas Schwab <schwab@linux-m68k.org>
11131
59c4c60f
AS
11132 * process.c (read_process_output): Make sure the current buffer is
11133 always restored.
11134
409ea3a1
AS
11135 * coding.c (record_conversion_result): Don't modify
11136 Vlast_code_conversion_error for successful result.
11137 (alloc_destination): Don't clobber conversion result. (Bug#1650)
11138
56f00ed2
KH
111392009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
11140
11141 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
896b1cc9 11142 (load_charset_map): Remove unnecessary code.
56f00ed2 11143
4491c9d2
DR
111442009-04-30 David Reitter <david.reitter@gmail.com>
11145
35f5b128 11146 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
4491c9d2
DR
11147 through f24.
11148
6970f632
CY
111492009-04-30 Chong Yidong <cyd@stupidchicken.com>
11150
11151 * xfaces.c (face_at_buffer_position): New arg base_face_id.
11152
11153 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
11154 face_at_buffer_position.
11155 (face_before_or_after_it_pos, get_next_display_element)
11156 (note_mouse_highlight): Update face_at_buffer_position call.
11157
11158 * term.c (term_mouse_highlight):
11159 * msdos.c (IT_note_mouse_highlight):
11160 * fontset.c (Finternal_char_font):
35f5b128 11161 * font.c (font_at, font_range): Update face_at_buffer_position call.
6970f632
CY
11162
11163 * dispextern.h (face_at_buffer_position): Update prototype.
11164
0c616f63
KH
111652009-04-30 Kenichi Handa <handa@m17n.org>
11166
35f5b128 11167 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
0c616f63 11168
ad3aaf33
AS
111692009-04-29 Andreas Schwab <schwab@linux-m68k.org>
11170
11171 * callproc.c (Fcall_process): Fix GC protection. Make sure
11172 current buffer is always restored.
11173
c3c963a0
YM
111742009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11175
11176 * atimer.c (init_atimer): Also clear stopped_atimers.
11177
11178 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
11179
7e3386cb
YM
11180 * process.c (create_process): Clean up merger residues of
11181 2008-07-17 change.
11182
91f68422
CY
111832009-04-29 Ulrich Mueller <ulm@gentoo.org>
11184
11185 * lread.c (Vread_circle): New variable.
11186 (read1): Disable recursive read if Vread_circle is nil.
11187
24b34550
KH
111882009-04-29 Kenichi Handa <handa@m17n.org>
11189
11190 * fontset.h (set_default_ascii_font): Delete extern.
11191
11192 * fontset.c (set_default_ascii_font): Delete this unused function.
11193
11194 * frame.c (x_set_font): When ARG is a font-object, check if the
11195 font-object matches with the ASCII font-spec of the frame's
9c358bda 11196 fontset. If not, create a new fontset for the frame. (Bug #3075)
24b34550 11197
77bf07e1
AS
111982009-04-28 Andreas Schwab <schwab@linux-m68k.org>
11199
11200 * fns.c (Flocale_info): Protect vector from GC during decoding.
11201
11202 * process.c (Fstart_process): Protect argv strings from GC during
11203 encoding.
11204
2c55aacf
AS
112052009-04-27 Andreas Schwab <schwab@linux-m68k.org>
11206
11207 * sysdep.c: Include <ctype.h>.
11208
b892d3c9
DR
112092009-04-27 David Reitter <david.reitter@gmail.com>
11210
35f5b128 11211 * nsfont.m (nsfont_open): Remove unused variable shrink.
b892d3c9
DR
11212 Remove commented-out code.
11213
9d0644c4
JB
112142009-04-26 Johan Bockgård <bojohan@gnu.org>
11215
11216 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
11217
b7053016
JR
112182009-04-25 Jason Rumney <jasonr@gnu.org>
11219
11220 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
11221
4e8231f3
YM
112222009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11223
11224 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
11225 Swap bytes in short integer if fringe bitmap width > 8.
11226
493dcf2c
KH
112272009-04-23 Kenichi Handa <handa@m17n.org>
11228
11229 * xfaces.c (Fx_list_fonts): If a font size is specified in
11230 PATTERN, set it in returned scalable fonts.
11231
401e9e57
CY
112322009-04-22 Chong Yidong <cyd@stupidchicken.com>
11233
708e05dc
CY
11234 * keyboard.c (Fset_input_meta_mode): Doc fix.
11235
11236 * dispnew.c (Fsend_string_to_terminal): Doc fix.
11237
1ac9108a 11238 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
708e05dc
CY
11239
11240 * coding.c (Fterminal_coding_system): Doc fix.
11241
11242 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
11243 (Fx_display_pixel_height, Fx_display_planes)
11244 (Fx_display_color_cells, Fx_server_max_request_size)
11245 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
11246 (Fx_display_mm_height, Fx_display_mm_width)
11247 (Fx_display_backing_store, Fx_display_visual_class)
1ac9108a
SM
11248 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
11249 Doc fixes, replacing "terminal id" with "terminal object".
708e05dc
CY
11250 (check_x_display_info): Handle terminal objects instead of
11251 terminal ids.
11252
401e9e57
CY
11253 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
11254 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
1ac9108a
SM
11255 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
11256 Doc fixes, replacing "terminal id" with "terminal object".
401e9e57 11257
df80c7f0
KH
112582009-04-21 Kenichi Handa <handa@m17n.org>
11259
5a8f12af 11260 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
c0a6070d 11261 (font_score): Check AVGWIDTH too.
908567ef 11262
df80c7f0
KH
11263 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
11264 worst case.
1ac9108a
SM
11265 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
11266 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
df80c7f0 11267
705af33f
JR
112682009-04-19 Jason Rumney <jasonr@gnu.org>
11269
11270 The following changes fix Bug#3005 for wide glyphs on each platform,
b71ac3dd 11271 without reintroducing Bug#1258 for stretch glyphs.
705af33f
JR
11272
11273 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
11274 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
11275 get_phys_cursor_geometry.
11276
b71ac3dd 11277 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
705af33f
JR
11278 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
11279 using get_phys_cursor_geometry.
11280
11281 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
11282 correctly calculated.
11283
dc2933eb
JD
112842009-04-19 Jan Djärv <jan.h.d@swipnet.se>
11285
1ac9108a
SM
11286 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
11287 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
dc2933eb
JD
11288 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
11289 is deprecated.
11290
973e7849
AS
112912009-04-18 Andreas Schwab <schwab@linux-m68k.org>
11292
11293 * font.c (font_put_frame_data): Use xfree instead of free.
11294
314d66f4
JB
112952009-04-17 Juanma Barranquero <lekktu@gmail.com>
11296
11297 * w32font.c (Qja, Qko): Remove declarations.
11298 (syms_of_w32font): Don't DEFSYM them.
11299
cf702558
CY
113002009-04-17 Chong Yidong <cyd@stupidchicken.com>
11301
11302 * font.c (Qja, Qko): Move definitions here from ftfont.c.
11303
11304 * font.h (Qja, Qko): Extern them.
11305
11306 * ftfont.c (Qja, Qko): Remove declarations.
11307
11308 * xfont.c (Qja, Qko): Remove declarations.
11309
b50504f5
KH
113102009-04-17 Kenichi Handa <handa@m17n.org>
11311
bde25748
KH
11312 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
11313 string from a vector to handle Latin-1 characters correctly.
11314
b50504f5
KH
11315 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
11316 entity even if the cache hits.
11317
f4646fff
AS
113182009-04-16 Andreas Schwab <schwab@linux-m68k.org>
11319
11320 * search.c (boyer_moore): Use zero as marker value for a possible
6340c70e 11321 match instead of depending on overflow behavior. (Bug#2844)
f4646fff 11322
e7deaab0
AS
11323 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
11324 * lisp.h: Adjust prototypes.
11325
0a0e7d49
CY
113262009-04-16 Chong Yidong <cyd@stupidchicken.com>
11327
11328 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
11329 change (Bug#3003).
11330
3c908a57
KH
113312009-04-16 Kenichi Handa <handa@m17n.org>
11332
1ac9108a 11333 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
bd0af90d
KH
11334
11335 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
11336 adstyle.
11337
11338 * ftfont.c (Qja, Qko): Don't make them static.
11339 (enum ftfont_cache_for): New enum.
11340 (fc_charset_table): Undo the previous change.
11341 (ftfont_get_latin1_charset): Delete it.
1ac9108a
SM
11342 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
11343 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
bd0af90d
KH
11344 non-scarable font, try to get AVERAGE_WIDTH.
11345 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
11346 Change ft_face_cache from a list of a hash-table. Don't check
11347 `ja' and `ko' adstyle here.
11348 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
11349 FTFONT_CACHE_FOR_CHARET.
11350 (ftfont_get_charset): Undo the previous change.
1ac9108a 11351 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
bd0af90d
KH
11352 (ftfont_close): Likewise.
11353 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
11354
11355 * font.c (font_sort_entites): Change the meaning of the arg
11356 BEST-ONLY. Don't optimize for VEC of lenght 1.
11357 (font_select_entity): Just return the value of font_sort_entites.
11358
11359 * xfaces.c (merge_face_vectors): Reflect font properties in
11360 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
11361 font_clear_prop if a face attribute doesn't change.
11362
3c908a57
KH
11363 * charset.h (charset_ksc5601): Extern it.
11364
11365 * charset.c (charset_ksc5601): New variable.
11366 (Fdefine_charset_internal): Set charset_ksc5601.
11367 (init_charset_once): Initialize charset_ksc5601 to -1.
11368
d65859c3
DN
113692009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
11370
11371 * fileio.c (history_delete_duplicates): Remove unused declaration.
11372
11373 * callint.c (history_delete_duplicates): New declaration.
11374 (Fcall_interactively): Remove command history duplicates when
11375 history_delete_duplicates is true.
11376
3ba010e5
EZ
113772009-04-14 Eli Zaretskii <eliz@gnu.org>
11378
11379 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
11380
06f19b91
KH
113812009-04-14 Kenichi Handa <handa@m17n.org>
11382
11383 * font.c (Ffont_info): Fix docstring. Fix the second element of
11384 the returned value (bug#2949).
11385
2cce8bfc
CY
113862009-04-14 Chong Yidong <cyd@stupidchicken.com>
11387
11388 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
11389
d156542d
KH
113902009-04-14 Kenichi Handa <handa@m17n.org>
11391
11392 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
11393 encoding charset is ascii_compatible.
11394
11395 * charset.c (Fdefine_charset_internal): Make charset
11396 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
11397 code_offset is 0, and covers all ASCII characters.
11398
86fa089e
SM
113992009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
11400
11401 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
11402 (ns_string_to_pasteboard_internal):
11403 * nsmenu.m (process_dialog):
11404 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
11405 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
11406 * lisp.h (Fx_load_color_file): Declare.
11407
a8a3728b
KH
114082009-04-13 Kenichi Handa <handa@m17n.org>
11409
1ac9108a 11410 * font.c (font_delete_unmatched): Preserve the order of list elements.
a8a3728b
KH
11411 (font_select_entity): Suppress the code to optimize for the same
11412 kind of fonts.
11413 (font_load_for_lface): Get a font that supports at least ASCII
11414 characters.
11415
11416 * ftfont.c (Qja, Qko): New variables.
11417 (fc_charset_table): Delete uniquifier data for iso8859-1.
11418 (ftfont_get_latin1_charset): New function.
11419 (get_adstyle_property): New function.
11420 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
11421 bitmap fonts.
11422 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
11423 Delete iso-8859-1 range from the charset of fonts whose adstyle is
11424 `ko' or `ja'.
11425 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
1ac9108a 11426 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
a8a3728b
KH
11427 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
11428 property.
11429 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
11430 (syms_of_ftfont): DEFSYM Qja and Qko.
11431
483670b5
KH
114322009-04-09 Kenichi Handa <handa@m17n.org>
11433
12b55765
KH
11434 * charset.c (map_charset_chars): For a charset of `superset'
11435 method, fix calculation of code range.
11436
483670b5
KH
11437 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
11438 from the list of extra properties.
11439 (font_clear_prop): Be sure to delete `:name' font property.
11440
57d3b93b
KH
114412009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11442
b4b2c2ca
YM
11443 * dispnew.c (redraw_overlapping_rows): Fix detection of
11444 overlapping for topmost and bottommost rows.
11445
1ac9108a 11446 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
57d3b93b 11447
472c3609
JR
114482009-04-06 Jason Rumney <jasonr@gnu.org>
11449
11450 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
11451
ab193662
KH
114522009-04-06 Kenichi Handa <handa@m17n.org>
11453
11454 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
11455
11456 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
11457
0c26f026
KH
114582009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11459
11460 * ftfont.c (ftfont_open): Fix checking of the return value of
11461 FT_Load_Char. Fix setting font->underline_thickness.
11462
e173bbce
CY
114632009-04-04 Chong Yidong <cyd@stupidchicken.com>
11464
11465 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
11466 (Fterminal_parameters, Fterminal_parameter)
11467 (Fset_terminal_parameter): In doc string, refer to terminal
11468 objects rather than terminal ids.
11469
693a2698
EZ
114702009-04-04 Eli Zaretskii <eliz@gnu.org>
11471
11472 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
11473 ret_lim_data. (Bug#2867)
11474
d5221487
CY
114752009-04-03 Chong Yidong <cyd@stupidchicken.com>
11476
11477 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
11478 so they don't get wider than the window, matching 2006-01-23
11479 change to the partner function in xdisp.c (Bug#2800).
11480
223509a3
KH
114812009-04-03 Kenichi Handa <handa@m17n.org>
11482
11483 * print.c (print_object): Make each lowest sub_char_table start a
11484 new line (Bug#2866).
11485
74fcd0b1
KH
114862009-04-02 Kenichi Handa <handa@m17n.org>
11487
11488 * fontset.c (fontset_font): Record no-font when a fontset
11489 explicitly tells not to try another font-specs.
11490
c542407d
SM
114912009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
11492
11493 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
11494
e3869731
KH
114952009-03-30 Kenichi Handa <handa@m17n.org>
11496
d8d2f142
KH
11497 * fontset.c (fontset_from_font): Specify only registry in a
11498 font-spec for all characters supported by that registry.
11499
e3869731
KH
11500 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
11501 even if HAVE_M17N_FLT is not defined.
11502
5da5f805
CY
115032009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
11504
11505 * ftfont.c: Conditionalize prototyping and use of
11506 ftfont_variation_glyphs.
11507
ab226c50
SM
115082009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
11509
9628fed7
SM
11510 * frame.c (delete_frame): Work around compiler bug.
11511
11512 * editfns.c (general_insert_function): Adjust to insdel.c changes.
11513 * insdel.c (prepare_to_modify_buffer, signal_before_change):
11514 Some more EMACS_INT.
11515 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
11516
11517 * xdisp.c (dump_glyph): Fix typo.
11518
ae19ba7c
SM
11519 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
11520 (adjust_markers_gap_motion, adjust_markers_for_delete)
11521 (adjust_markers_for_insert, adjust_point)
11522 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
11523 (make_gap, copy_text, count_size_as_multibyte, insert)
11524 (insert_and_inherit, insert_before_markers)
11525 (insert_before_markers_and_inherit, insert_1)
11526 (count_combining_before, count_combining_after, insert_1_both)
11527 (insert_from_string, insert_from_string_before_markers)
11528 (insert_from_string_1, insert_from_gap, insert_from_buffer)
11529 (insert_from_buffer_1, adjust_after_replace)
11530 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
11531 (replace_range_2, del_range, del_range_1, del_range_byte)
11532 (del_range_both, del_range_2, modify_region)
11533 (prepare_to_modify_buffer, signal_before_change)
11534 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
11535 for buffer positions and sizes.
11536 * lisp.h: Adjust prototypes accordingly.
11537
11538 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
11539 (non_regular_inserted, non_regular_nbytes, read_non_regular)
11540 (Finsert_file_contents): Use EMACS_INT for buffer positions.
11541
ab226c50
SM
11542 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
11543
46dfb8fb
JD
115442009-03-27 Jan Djärv <jan.h.d@swipnet.se>
11545
11546 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
11547 lines and columns so we keep the same pixel height and width.
11548
11549 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
11550 the property _NET_WM_STATE has changed.
46dfb8fb
JD
11551 (x_handle_net_wm_state): New function to update frame parameter
11552 fullscreen.
11553 (x_term_init): Initialize atoms for _NET_WM_STATE.
11554
11555 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
11556
d347e494
SM
115572009-03-27 Kevin Ryde <user42@zip.com.au>
11558
11559 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
11560 Gpm_GetEvent as an error that justifies closing the filedescriptor.
11561 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
11562 (Fgpm_mouse_stop): Pass that new parameter.
11563 * termhooks.h (close_gpm): Adjust prototype.
11564
84db11d6
SM
115652009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11566
c95a5008
SM
11567 * lisp.h (Fx_focus_frame): Declare.
11568
84db11d6
SM
11569 * callint.c (Fcall_interactively): For '^' just delegate the work to
11570 handle-shift-selection.
11571 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
11572
0a1958d6
CY
115732009-03-24 Chong Yidong <cyd@stupidchicken.com>
11574
0bfdff23
CY
11575 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
11576
0a1958d6
CY
11577 * data.c (Qinteractive_form): New variable.
11578 (Finteractive_form): Use it.
11579
11580 * eval.c (Fcommandp): Use Qinteractive_form.
11581
58aec0d6
JR
115822009-03-24 Jason Rumney <jasonr@gnu.org>
11583
11584 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
11585 Calculate total size precisely. Decode environment variables
11586 before substituting. (Bug#38)
11587
553dd618
KH
115882009-03-24 Kenichi Handa <handa@m17n.org>
11589
11590 * font.c (find_font_encoding): Return Qnil for unsupported
639239cf 11591 encoding (Bug#2722).
553dd618 11592
c39ea606
JD
115932009-03-23 Jan Djärv <jan.h.d@swipnet.se>
11594
11595 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
11596 that gdpy is set.
11597
bc9b2b5e
AM
115982009-03-22 Alan Mackenzie <acm@muc.de>
11599
11600 * callint.c (Finteractive): Clarify the doc string - even
11601 promptless elements need \n separators.
11602
9f995a76
JR
116032009-03-22 Jason Rumney <jasonr@gnu.org>
11604
11605 * w32term.c (syms_of_w32term): Doc fix for
11606 x-use-underline-position-properties.
11607
22749e9a
EZ
116082009-03-21 Eli Zaretskii <eliz@gnu.org>
11609
11610 * w32.c (getpwuid): Change argument type to unsigned.
11611 (struct w32_id): Change type of `rid' member to unsigned.
11612 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
11613 argument ID to unsigned. All callers changed.
11614 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
11615
e00553bf
EZ
116162009-03-20 Eli Zaretskii <eliz@gnu.org>
11617
11618 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
11619 negative, produce a float value.
11620
11621 * dired.c (make_uid, make_gid): New functions.
11622 (Ffile_attributes): Use them to avoid negative UID and GID.
11623
f761d6b6
JB
116242009-03-20 Juanma Barranquero <lekktu@gmail.com>
11625
11626 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
11627 (syms_of_keyboard) <command-hook-internal, input-method-function>:
11628 Fix typos in docstrings.
11629
d507f8d7
KH
116302009-03-19 Kenichi Handa <handa@m17n.org>
11631
11632 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
f761d6b6
JB
11633 changed, use font_load_for_lface to get a new font object.
11634 Call free_realized_fontset after handling ASCII font change.
d507f8d7
KH
11635
11636 * frame.c (x_set_font): Handle the case that ARG is a cons.
11637
c68845e0
GM
116382009-03-19 Glenn Morris <rgm@gnu.org>
11639
11640 * fileio.c (Fsubstitute_in_file_name): Doc fix.
11641
bfa49dd1
CY
116422009-03-19 Chong Yidong <cyd@stupidchicken.com>
11643
11644 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
11645
8458d4c1
KH
116462009-03-19 Kenichi Handa <handa@m17n.org>
11647
11648 * charset.c (load_charset_map_from_file): When a mapfile can't be
11649 loaded, signal an error.
11650
78e7d1fe
EZ
116512009-03-18 Eli Zaretskii <eliz@gnu.org>
11652
11653 * dired.c (Ffile_attributes): Make sure UID and GID are always
11654 positive, even if the value is too large for a positive EMACS_INT.
11655 Doc fix.
11656
11657 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
11658
5da9fdfa
YM
116592009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11660
11661 * xmenu.c (xdialog_show): Move Fredisplay call ...
11662 (Fx_popup_dialog): ... here.
11663
7519c40d
SM
116642009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
11665
11666 * dired.c (file_name_completion): Disable the first optimization just
11667 installed, since it is not implemented correctly.
11668
2cd298e2
SM
116692009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
11670
11671 * dired.c (file_name_completion): Check completion-ignored-extensions
c95a5008 11672 only if the entry can affect bestmatch.
2cd298e2
SM
11673 Stop the search early, as Ftry_completion already does.
11674
48d37adf
CY
116752009-03-17 Chong Yidong <cyd@stupidchicken.com>
11676
e10c9c93 11677 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
48d37adf 11678
9286b16a
CY
116792009-03-15 Chong Yidong <cyd@stupidchicken.com>
11680
11681 * keyboard.c (parse_menu_item): Don't display remappings as menu
11682 equivalent bindings (Bug#788).
11683
f7b146dc
JR
116842009-03-15 Jason Rumney <jasonr@gnu.org>
11685
11686 * w32term.h (WM_EMACS_PAINT): New message.
11687 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
11688 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
11689 before passing to lisp thread. (Bug#950)
11690
f761d6b6 116912009-03-14 David Reitter <david.reitter@gmail.com>
c6c62e78 11692
d93f9575
CY
11693 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
11694 variable as it was never reset.
11695 (ns_term_init): Remove initialization of Lisp-settable defaults
11696 and ns_expand_space.
11697 (-setPanelFromDefaultValues): Remove ns_expand_space.
11698 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
11699 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
c6c62e78
DR
11700 i.e. no additional spacing, similar to Carbon port.
11701
d93f9575
CY
11702 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
11703 * nsfns.m (ns-popup-prefs-panel): Remove.
c6c62e78 11704
305018ec
JD
117052009-03-14 Jan Djärv <jan.h.d@swipnet.se>
11706
11707 * sound.c (alsa_configure): Remove call to deprecated
11708 snd_pcm_sw_params_set_xfer_align.
11709
f761d6b6 117102009-03-14 Stephen Berman <stephen.berman@gmx.net>
4a02423f
JD
11711
11712 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
11713 after clicking in a detached tool bar.
11714 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
11715
46e722a9
SM
117162009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
11717
348db3dd
SM
11718 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
11719 int/Lisp_Object mixup).
46e722a9 11720
a3d16f39
KH
117212009-03-13 Kenichi Handa <handa@m17n.org>
11722
11723 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
fe24f56a 11724 Handle NAME nil and t correctly. Callers changed.
a3d16f39
KH
11725 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
11726 (set_fontset_font): Change ARG to a vector. Handle range_list in
11727 ARG correctly.
11728 (Fset_fontset_font): Fix the case that TARGET is both a script
fe24f56a 11729 name and charset name. Adjust the arg to set_fontset_font for
a3d16f39
KH
11730 the above change.
11731 (fontset_from_font): Fix previous change.
fe24f56a 11732 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
a3d16f39
KH
11733 entry. If FONTSET is the default fontset, don't set the extra
11734 slot of the returning char-table.
11735
b066e6b6
JB
117362009-03-12 Juanma Barranquero <lekktu@gmail.com>
11737
11738 * nsfns.m (Fx_close_connection): Doc fix.
11739 (Fns_do_applescript): Reflow docstring.
11740 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
11741 (Fx_display_pixel_width, Fx_display_pixel_height)
11742 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
11743 Fix typos in docstrings.
11744 (Fns_set_alpha): Fix typos in error messages.
11745
d472514e 117462009-03-12 David Reitter <david.reitter@gmail.com>
d6220c13 11747
d472514e 11748 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
d6220c13
DR
11749 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
11750 were used for such events.
11751
d472514e
JB
11752 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
11753 (toggleToolbar, performDragOperation, runHelp): Use it.
d6220c13 11754
d472514e 11755 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
d6220c13
DR
11756 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
11757
fb930676
KH
117582009-03-11 Kenichi Handa <handa@m17n.org>
11759
ff85581a
KH
11760 * font.h (font_open_by_spec): Extern it.
11761
c50b7e98
KH
11762 * font.c (font_open_by_spec): New function.
11763 (font_open_by_name): Use font_open_by_spec.
11764
fb930676
KH
11765 * frame.c (x_set_font): When ARG is a font-object, don't alter the
11766 fontset of the frame.
11767
11768 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
11769 modify the default font of frames that use this fontset.
11770 (num_auto_fontsets): New variable.
11771 (fontset_from_font): Use num_auto_fontsets to decide a fontset
11772 name. Be sure to set FONTSET_ASCII to the correct font name.
11773 (update_auto_fontset_alist): New function.
11774
df4e8455
JB
117752009-03-11 Juanma Barranquero <lekktu@gmail.com>
11776
11777 * makefile.w32-in: Update dependencies.
11778
0a375797
AR
117792009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
11780
11781 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
11782
61313fa3
SM
117832009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
11784
11785 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
11786
b55103fb
CY
117872009-03-10 Chong Yidong <cyd@stupidchicken.com>
11788
11789 * lread.c (Feval_buffer): Doc fix.
11790
dde2559c
KH
117912009-03-09 Kenichi Handa <handa@m17n.org>
11792
11793 * charset.c (Qfile_name_handler_alist): Extern it.
11794 (load_charset_map_from_file): Temporarily bind
11795 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
11796
df4e8455 117972009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
340e08a4 11798
47f588bb
GM
11799 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
11800 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
340e08a4 11801
4ddf94bd
AR
118022009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
11803
4c9bdfc2
AR
11804 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
11805 (x_set_window_size): Change back to calculated method of setting
11806 toolbar height under Cocoa. (Bug#2546)
4ddf94bd
AR
11807 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
11808 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
11809
fe41ae9e
AR
11810 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
11811
4c9bdfc2
AR
11812 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
11813 accelerator in parens under GNUstep.
11814
825d0875
KH
118152009-03-06 Kenichi Handa <handa@m17n.org>
11816
11817 These changes are to detect incorrect composition sequence without
f3b3be74 11818 looking ahead the source. (Bug#2370)
825d0875
KH
11819
11820 * coding.h: Include "composite.h".
11821 (enum compisition_state): New enum.
11822 (struct compisition_status): New struct.
11823 (struct iso_2022_spec): New member cmp_status.
11824 (struct emacs_mule_spec): New struct.
11825 (struct coding_system): New members ctext_extended_segment_len and
11826 embedded_utf_8. Change the union member
11827 spec.emacs_mule_full_support to spec.emacs_mule.
11828
11829 * coding.c (CODING_ISO_CMP_STATUS): New macro.
11830 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
98a326f7 11831 (MAX_ANNOTATION_LENGTH): Define to 5.
825d0875
KH
11832 (ADD_COMPOSITION_DATA): New arg nbytes.
11833 (emacs_mule_char): New arg cmp_status.
11834 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
11835 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
11836 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
11837 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
11838 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
11839 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
11840 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
11841 (EMACS_MULE_COMPOSITION_END): New macro.
11842 (emacs_mule_finish_composition): New function.
11843 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
11844 (decode_coding_emacs_mule): Avoid long looking ahead while
11845 handling composition.
11846 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
11847 (ENCODE_COMPOSITION_RULE): New macro.
11848 (finish_composition): New function.
11849 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
11850 (DECODE_COMPOSITION_START): New implementation.
11851 (DECODE_COMPOSITION_END): Likewise.
11852 (STORE_COMPOSITION_RULE): New macro.
11853 (decode_coding_iso_2022): Avoid long looking ahead while handling
11854 composition, CTEXT extended segment, and embedded UTF-8.
11855 (setup_coding_system): For a coding of type iso-2022, reset
11856 CODING_ISO_EXTSEGMENT_LEN (coding) and
11857 CODING_ISO_EMBEDDED_UTF_8 (coding).
11858 (get_translation): Delete arguments last_block, from_nchars,
11859 to_nchars. Callers changed.
11860 (produce_chars): Don't modify charbuf. Adjusted for the change of
11861 get_translation.
98a326f7 11862 (produce_composition): Adjust for the new annotation sequence.
825d0875 11863 (handle_composition_annotation): Likewise.
98a326f7 11864 (consume_chars): Adjust for the change of get_translation.
825d0875 11865
ccbc4452
AR
118662009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
11867
4ddf94bd 11868 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
ccbc4452 11869
988a7ddb
KH
118702009-03-05 Kenichi Handa <handa@m17n.org>
11871
11872 * font.c (font_select_entity): New function.
11873 (font_find_for_lface): Use font_select_entity to select a font.
11874
11875 * fontset.c (fontset_find_font): If a font found without
a8a3728b 11876 restricting to the characters C doesn't support C, try to find a
988a7ddb
KH
11877 font with C restriction.
11878
98a326f7 118792009-03-04 Nikolaj Schumacher <me@nschum.de>
2f462d73 11880
be1bce46 11881 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
2f462d73 11882
10ea2b82
JR
118832009-03-04 Jason Rumney <jasonr@gnu.org>
11884
2c93b248 11885 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
4891ba1d 11886 characters that have already been read. (Bug#2569)
2c93b248 11887
10ea2b82
JR
11888 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
11889 Log an error message if check_image_size failed.
11890 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
4891ba1d 11891 (gs_load): Mention max-image-size in size error message. (Bug#2560)
10ea2b82 11892
71a0c011
EZ
118932009-03-02 Eli Zaretskii <eliz@gnu.org>
11894
11895 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
11896 when decoding process output.
11897
2f63bba8
RS
118982009-03-01 Richard M Stallman <rms@gnu.org>
11899
11900 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
11901
11902 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
11903
0a9564cb
EZ
119042009-02-28 Eli Zaretskii <eliz@gnu.org>
11905
11906 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
11907 (decode_coding_emacs_mule, decode_coding_iso_2022)
11908 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
11909 (decode_coding_raw_text, decode_coding_charset)
11910 (setup_coding_system, decode_eol, decode_coding, consume_chars):
11911 Honor inhibit-eol-conversion. (Bug #2186)
11912
449148b3
JR
119132009-02-28 Jason Rumney <jasonr@gnu.org>
11914
11915 * coding.c (detect_coding_charset): If not checking latin extra,
11916 fail on characters between 0x80 and 0xA0. (Bug#2354)
11917
a4aee864
EZ
119182009-02-28 Eli Zaretskii <eliz@gnu.org>
11919
11920 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
2a1573ff 11921 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
a4aee864 11922
d88bee5a
GM
119232009-02-27 Glenn Morris <rgm@gnu.org>
11924
11925 * callint.c (Finteractive): Doc fix.
11926
a808f22d
KH
119272009-02-27 Kenichi Handa <handa@m17n.org>
11928
11929 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
11930
caf8d60c
CY
119312009-02-27 Chong Yidong <cyd@stupidchicken.com>
11932
11933 * font.c (font_style_to_value): Set value for unknown symbols to
11934 100 instead of 255.
b61137ea
CY
11935 (weight_table, slant_table, width_table): Treat "unspecified" as
11936 the default value.
caf8d60c 11937
1a0de25c
JB
119382009-02-26 Juanma Barranquero <lekktu@gmail.com>
11939
11940 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
11941
8fc45744
JB
119422009-02-25 Juanma Barranquero <lekktu@gmail.com>
11943
107bd7d1
JB
11944 * lread.c (Fload): Stop checking Vloads_in_progress and signal
11945 error as soon as a recursive load is detected.
8fc45744 11946
f097e223
AR
119472009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
11948
11949 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
11950 before caching.
11951
8810a12f
KH
119522009-02-24 Kenichi Handa <handa@m17n.org>
11953
11954 * fontset.c (fontset_find_font): Fix the condition for checking
11955 unavailable font.
11956
2c7d1565
GM
119572009-02-24 Glenn Morris <rgm@gnu.org>
11958
11959 * xfaces.c (Finternal_set_font_selection_order): Remove leading
11960 whitespace that confuses documentation.
11961
a20878b6
MB
119622009-02-23 Miles Bader <miles@gnu.org>
11963
11964 * process.c (Flist_system_processes, Fprocess_attributes)
11965 (syms_of_process): Rename `system-process-attributes' to
11966 `process-attributes'.
11967
b3b58c01
AS
119682009-02-22 Andreas Schwab <schwab@linux-m68k.org>
11969
1b3b981b
AS
11970 * coding.h (struct coding_system): Make safe_charsets a pointer to
11971 unsigned char.
11972 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
11973 being 255.
11974 (SAFE_CHARSET_P): Likewise.
11975 (setup_iso_safe_charsets): Properly setup safe_charsets.
11976 (Fdefine_coding_system_internal): Likewise.
11977 (setup_coding_system): Likewise. Remove unneeded casts.
11978 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
bba3e508
SM
11979 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS.
11980 Remove unneeded casts.
1b3b981b 11981
b3b58c01
AS
11982 * insdel.c (del_range_2): Don't modify gap contents when called
11983 from decode_coding_object. (Bug#1809)
11984
0b6f228c
CY
119852009-02-21 Chong Yidong <cyd@stupidchicken.com>
11986
11987 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
11988 Qfont_object.
11989 (Ftype_of): Recognize font objects.
11990
11991 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
11992
bba3e508
SM
11993 * font.c (Qfont_spec, Qfont_entity, Qfont_object):
11994 Definitions moved to data.c.
0b6f228c 11995
52f8870b
AR
119962009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
11997
11998 * nsterm.m (x_make_frame_invisible): Unset async_visible,
11999 async_iconified. Based on a patch by Christian Lynbech
12000 <christian.lynbech@tieto.com>.
12001 (EmacsView-windowDidMiniaturize:): Unset async_visible.
12002
7087d5e9
GM
120032009-02-20 Glenn Morris <rgm@gnu.org>
12004
12005 * syntax.c (Fskip_chars_forward): Fix doc typo.
12006
41d2ceef
CY
120072009-02-20 Chong Yidong <cyd@stupidchicken.com>
12008
12009 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
12010
1a3b7ca6
CY
120112009-02-19 Chong Yidong <cyd@stupidchicken.com>
12012
12013 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
12014
73cce38d
KH
120152009-02-19 Kenichi Handa <handa@m17n.org>
12016
12017 * coding.c (detect_coding): Preserve coding->mode.
2bc550cb 12018 Don't overflow coding->carryover. (Bug#2370)
73cce38d 12019
a51092ee
DN
120202009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
12021
12022 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
12023
c423ecca
KH
120242009-02-18 Kenichi Handa <handa@m17n.org>
12025
12026 * font.c (font_check_otf_features): Fix handling of `nil' element.
12027 (Ffont_spec): Describe :lang and :otf in the docstring.
12028
4c1958f4
AS
120292009-02-16 Andreas Schwab <schwab@suse.de>
12030
12031 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
12032 string.
12033
5704f39a
KH
120342009-02-16 Kenichi Handa <handa@m17n.org>
12035
12036 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
a057d86a 12037 (Bug#1723)
5704f39a 12038
8f0085aa
CY
120392009-02-14 Chong Yidong <cyd@stupidchicken.com>
12040
a057d86a 12041 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
8f0085aa
CY
12042
12043 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
12044 (handle_line_prefix): Suppress wrapping of wrap prefixes.
12045
aff01dd9
EZ
120462009-02-14 Eli Zaretskii <eliz@gnu.org>
12047
12048 * msdos.c (MAX_SCREEN_BUF): New macro.
12049 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
12050 Encode the entire run of glyphs sharing the same face, instead of
12051 doing that one glyph at a time (fixes a bug with displaying
12052 double-size characters).
12053
ba301db3
AR
120542009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
12055
12056 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
12057
12058 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
12059 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
a057d86a 12060 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
ba301db3
AR
12061
12062 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
a057d86a 12063 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
ba301db3 12064
51d861de
SM
120652009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
12066
ac146f82 12067 * keyboard.c (adjust_point_for_property): Allow stopping between two
51d861de
SM
12068 invisible areas.
12069
7fed8996
JR
120702009-02-12 Jason Rumney <jasonr@gnu.org>
12071
631ea4fb
JR
12072 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
12073 (add_font_entity_to_list): Call check_face_name even when family
12074 is unspecified.
12075
cb4a3e42
JR
12076 * w32term.c (x_display_pixel_height, x_display_pixel_width):
12077 Release DC when finished. Use NULL window to refer to desktop.
631ea4fb 12078 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
cb4a3e42 12079
7fed8996 12080 * w32font.c (add_font_entity_to_list): Fix check for substituted
631ea4fb 12081 raster fonts. (Bug#2219)
7fed8996 12082
895416e3
KH
120832009-02-12 Kenichi Handa <handa@m17n.org>
12084
12085 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
12086 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
12087 (autocmp_chars): Use fast_looking_at. Don't compose more
1dacf998 12088 characters than MAX_COMPOSITION_COMPONENTS.
895416e3
KH
12089 (find_automatic_composition): While looking forward and backward,
12090 check static composition. Fix where to stop looking forward.
12091 (composition_adjust_point): Fix checking of static composition.
12092 (Fcomposition_get_gstring): Pay attention to
1dacf998 12093 MAX_COMPOSITION_COMPONENTS.
895416e3
KH
12094
12095 * lisp.h (fast_looking_at): Extern it.
12096
12097 * search.c (fast_looking_at): New function.
12098
51d861de 12099 * term.c (encode_terminal_code): Adjust for the change of
895416e3
KH
12100 <struct glyph>.u.cmp.to.
12101 (append_composite_glyph): Likewise.
12102
51d861de 12103 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
895416e3
KH
12104 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
12105 composition.
51d861de 12106 (append_composite_glyph): Adjust for the change of
895416e3
KH
12107 <strcut glyph>.u.cmp.to.
12108
8510724d
JB
121092009-02-11 Juanma Barranquero <lekktu@gmail.com>
12110
12111 * casetab.c (init_casetab_once):
12112 * coding.c (ALLOC_CONVERSION_WORK_AREA):
12113 * font.c (font_update_lface):
12114 * fontset.c (Fnew_fontset):
12115 * ftfont.c (ftfont_drive_otf):
12116 * xfont.c (xfont_open):
12117 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
12118
294fa707
SM
121192009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
12120
12121 * fileio.c (Fwrite_region): !NILP -> CONSP.
12122
b5bfebec
AS
121232009-02-10 Andreas Schwab <schwab@suse.de>
12124
12125 * process.c (send_process): Properly relocate pointer into data
adab88bd 12126 when using encoded data. (Bug#2272)
b5bfebec 12127
cb84a2be
KH
121282009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
12129
12130 * coding.c (detect_coding_charset): Fix previous change.
12131
89e09428
JR
121322009-02-08 Jason Rumney <jasonr@gnu.org>
12133
12134 * w32fns.c (w32_hide_hourglass): Handle case where frame
adab88bd 12135 disappeared while hourglass was displayed. (Bug #2193)
89e09428 12136
4470a277
AS
121372009-02-07 Andreas Schwab <schwab@suse.de>
12138
12139 * unexelf.c (unexec): Fix error message.
12140
3175b12a
AR
121412009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
12142
12143 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
adab88bd 12144 when modal window is active. (Bug #2152)
3175b12a
AR
12145 (applicationShouldTerminate:): Remove now-unneeded while loop
12146 around NSRunAlertPanel.
12147
12148 * nsmenu.m (popupSession): New file-global variable.
12149 (pop_down_menu): End the popupSession before closing dialog.
12150 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
12151 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
12152 don't query NSApp for events (just sleep instead).
12153
8434d0b8
EZ
121542009-02-07 Eli Zaretskii <eliz@gnu.org>
12155
51d861de
SM
12156 * coding.c (syms_of_coding) <translation-table-for-input>:
12157 Modify doc string to discourage use for character code unification.
8434d0b8 12158
aa82edfd
CY
121592009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12160
12161 * atimer.c (run_timers): Update pending_atimers.
12162
2d283c7c
CY
121632009-02-06 Chong Yidong <cyd@stupidchicken.com>
12164
eb306cab
CY
12165 * image.c (svg_load_image): Fix last change.
12166
2d283c7c
CY
12167 * xfns.c (Fx_create_frame): Signal an error if no font is
12168 found (Bug#2147).
12169
4d8e170e
JB
121702009-02-05 Juanma Barranquero <lekktu@gmail.com>
12171
12172 * character.c (syms_of_character) <script-representative-chars>:
12173 Fix typo in docstring.
12174
c96169a0
AR
121752009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
12176
12177 * nsmenu.m (pop_down_menu): New function.
12178 (ns_popup_dialog): Call it on unwind.
12179 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
12180 call timer_check() (Bug#2154).
12181 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
12182 handling_signal is set.
12183 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
12184
31fd7c5c 12185 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
c96169a0
AR
12186
12187 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
12188
12189 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
12190
51d861de
SM
12191 * keyboard.c (poll_for_input_1, handle_async_input):
12192 Set handling_signal under HAVE_NS.
c96169a0 12193
aacd8ba1
GM
121942009-02-04 Glenn Morris <rgm@gnu.org>
12195
12196 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
12197
4cb75c4b
KH
121982009-02-04 Kenichi Handa <handa@m17n.org>
12199
12200 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
12201
12202 * charset.c (Fchar_charset): New optional arg restriction.
12203
12204 * coding.h (coding_system_charset_list): Extern it.
12205
12206 * coding.c (coding_system_charset_list): New function.
12207
12208 * composite.c: Include coding.h and termhooks.h.
12209 (composition_gstring_p): Fix for the terminal case.
12210 (composition_gstring_width): Likewise.
12211 (fill_gstring_body): Likewise.
12212 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
12213 the frame.
12214 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
12215 is within a composition.
867d4bb3 12216 (Fcomposition_get_gstring): Fix the terminal case.
4cb75c4b
KH
12217
12218 * term.c (encode_terminal_code): Fix handling of composition.
12219 (produce_composite_glyph): For static composition, get pixel_width
12220 from struct composition.
12221
826ba17e
AS
122222009-02-02 Andreas Schwab <schwab@suse.de>
12223
12224 * unexelf.c (unexec): Handle unaligned bss offset.
12225
8ad093db
AR
122262009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
12227
12228 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
12229 XT,w32read_socket changes to ns_read_socket.
d0a76a6e 12230
8ad093db
AR
12231 * keyboard.c (handle_interrupt): Don't call
12232 quit_throw_to_read_char() under NS.
d0a76a6e 12233
8ad093db
AR
12234 * blockinput.h: Remove NS-specific code.
12235
4d18a7a2
DN
122362009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
12237
db878925
DN
12238 * dispnew.c (window_change_signal): Don't try to get the size of a
12239 suspended tty frame.
12240 * term.c (Fresume_tty): Resize if the size has changed while the
12241 tty was suspended.
12242
4d18a7a2
DN
12243 * alloc.c (mark_stack): Properly conditionalize previous change.
12244
8984df7c
JB
122452009-01-30 Juanma Barranquero <lekktu@gmail.com>
12246
12247 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
12248 * w32term.c (w32_read_socket) [SYNC_INPUT]:
12249 Remove; this code is not used on Windows.
12250
75f4f1ac
EZ
122512009-01-30 Eli Zaretskii <eliz@gnu.org>
12252
12253 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
12254 EOLs that also has stray ^M characters.
12255
07a1e794
JB
122562009-01-30 Juanma Barranquero <lekktu@gmail.com>
12257
12258 * atimer.c (run_timers, alarm_signal_handler):
12259 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
12260 * w32inevt.c (w32_console_read_socket):
12261 * w32term.c (w32_read_socket):
12262 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
12263
a8b11cc9
CY
122642009-01-30 Chong Yidong <cyd@stupidchicken.com>
12265
12266 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
12267 Initialize it as a relative filename pattern.
12268 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
12269 (Fcall_process_region): Simplify temp file creation using
12270 temporary-file-directory.
12271
c279587b
EZ
122722009-01-29 Eli Zaretskii <eliz@gnu.org>
12273
12274 * msdos.c: Rename pending_signals to msdos_pending_signals.
12275 (sig_suspender, sigprocmask): Adjust.
12276
a8fe3242
CY
122772009-01-29 Chong Yidong <cyd@stupidchicken.com>
12278
12279 * keyboard.c (pending_signals): New var.
12280 (poll_for_input, input_available_signal, init_keyboard): Set it.
12281 (process_pending_signals): New function.
12282
12283 * lisp.h (QUIT): Check pending_signals instead of
12284 interrupt_input_pending. Use process_pending_signals.
12285
51d861de 12286 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
a8fe3242 12287
51d861de 12288 * process.c (wait_reading_process_output): Use process_pending_signals.
a8fe3242
CY
12289
12290 * sysdep.c (emacs_write): Use process_pending_signals.
12291
12292 * xterm.c (XTread_socket): Update pending_signals.
12293
12294 * w32term.c (w32_read_socket): Update pending_signals.
12295
12296 * w32inevt.c (w32_console_read_socket): Update pending_signals.
12297
6570a1c4
KH
122982009-01-29 Kenichi Handa <handa@m17n.org>
12299
12300 * xftfont.c (xftfont_has_char): New function.
12301 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
12302
d72a4afa
AR
123032009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
12304
12305 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
12306 under GNUstep.
12307 (ns_query_color): New declaration.
12308
12309 * nsterm.m (ns_confirm_quit): New variable.
12310 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
12311 (EmacsApp-applicationShouldTerminate:): Use it.
12312 (EmacsPrefsController): Let user set it.
12313 (ns_query_color): New function.
12314 (ns_defined_color): Use it.
12315 (ns_initialize): Drop.
12316 (ns_term_init): Add two lines from ns_initialize(), and set
12317 input_interrupt_mode to nil.
12318
12319 * image.c (svg_load_image): Don't right-shift background RGB when
6af84d77 12320 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
d72a4afa 12321
9fe78804
KH
123222009-01-28 Kenichi Handa <handa@m17n.org>
12323
12324 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
f088b054
KH
12325 (fontset_get_font_group): Remember that no font-group is specified
12326 for C.
9fe78804 12327
fa57de36
CY
123282009-01-27 Chong Yidong <cyd@stupidchicken.com>
12329
930600e9
CY
12330 * fns.c (concat): Check for string overflow (bug#1787).
12331
fa57de36
CY
12332 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
12333 Quadruple undo limits (bug#1501).
12334
7179ce7b
KH
123352009-01-27 Kenichi Handa <handa@m17n.org>
12336
12337 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
12338 directly use GT_Get_Char_index.
12339
12340 * xftfont.c (struct xftfont_info): New member `index'.
12341
12342 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
51d861de 12343 (Ffontset_font): Adjust for the change of fontset entry.
7179ce7b 12344
5be8fcc0
CY
123452009-01-26 Kenichi Handa <handa@m17n.org>
12346
12347 * fontset.c (fontset_find_font): Fix handling of non-cons return
12348 value of fontset_get_font_group.
12349 (fontset_font): Revert last change.
12350
19ae3e61
JR
123512009-01-26 Jason Rumney <jasonr@gnu.org>
12352
12353 * w32font.c (w32font_list_internal): Return quickly if registry is
12354 unknown. Simplify final return.
12355 (add_font_entity_to_list): Break complex logic down into more
12356 manageable chunks. Move unknown registry check to
12357 w32font_list_internal.
12358
8612b71a
AR
123592009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
12360
12361 Changes to remove Feval calls from GUI under NS.
12362
d8038940
JB
12363 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
12364 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
8612b71a
AR
12365 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
12366
12367 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
12368 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
12369 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
12370 instead of NON_ASCII_KEYSTROKE_EVENT.
12371 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
12372 (EmacsApp-applicationShouldTerminate:): Query user.
12373 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
12374 instead of Feval.
12375
12376 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
12377
12378 * keyboard.c (kbd_buffer_get_event): Check for it.
12379 (keys_of_keyboard): Define lispy keys for
12380 ns-put/unput-working-text.
12381
12382 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
12383 versions.
12384 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
12385
6288ae55
CY
123862009-01-25 Chong Yidong <cyd@stupidchicken.com>
12387
12388 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
64cc3cf6 12389 setting current_buffer directly. (Bug#2044)
6288ae55 12390
289e7f8f
CY
123912009-01-24 Chong Yidong <cyd@stupidchicken.com>
12392
5ce87308 12393 * fontset.c (fontset_font): If we know there is no font, don't do
d8038940 12394 any work. (Bug#1952, bug#1990).
5ce87308 12395
64cc3cf6 12396 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
289e7f8f 12397
b3243e6f
AR
123982009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12399
12400 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
d900b2af
AR
12401 (ns_no_defaults): New declaration.
12402 (main): Use it.
e0d2e69a 12403
d900b2af 12404 * nsterm.h (ns_no_defaults): New declaration.
e0d2e69a 12405
d900b2af 12406 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
e0d2e69a 12407
d900b2af
AR
12408 * nsterm.m (ns_no_defaults): New variable.
12409 (ns_initialize): Don't read defaults when ns_no_defaults.
12410 (EmacsView-readSelectionFromPasteboard:)
12411 (writeSelectionToPasteboard:types:): New stubbed-out methods for
d8038940 12412 NSServicesRequests protocol. (Bug#1435)
27521ca6
AR
12413 (ns_dumpglyphs_stretch): New function.
12414 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
d8038940 12415 of 2008-11-15 to other terms. (Bug#615)
b3243e6f 12416
e0d2e69a
AR
12417 * nsimage.m (setPixmapData:): Set to ignore image DPI.
12418
3ac71f5d
CY
124192009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
12420
12421 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
12422 call for Sparc64.
12423
3fe53a83
AR
124242009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
12425
12426 * nsfns.m:
12427 * nsgui.h:
12428 * nsmenu.m:
12429 * nsselect.m:
12430 * nsterm.h:
12431 * nsterm.m: Remove '23' comments that indicated code added during
12432 update from emacs-20 -> emacs-23.
12433
10f87c6f 124342009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
a3b53a85
AR
12435
12436 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
3a88a825 12437 ns_alternate_modifier. (Bug#1217)
a3b53a85 12438
c7cef62d
AR
12439 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
12440 Display all shortcuts, including those w/o super modifier.
12441
575fb8bd
AR
12442 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
12443
918b848b
CY
124442009-01-22 Chong Yidong <cyd@stupidchicken.com>
12445
12446 * fileio.c (Vwrite_region_post_annotation_function)
12447 (Vwrite_region_annotation_buffers): New vars.
12448 (build_annotations_unwind): Just reset
12449 Vwrite_region_annotation_buffers.
12450 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
12451 Call write-region-post-annotation-function.
12452 (build_annotations): Add to Vwrite_region_annotation_buffers if
12453 buffer changes.
12454
a39e2539
AR
124552009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
12456
12457 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
12458 Tiger.
51d861de
SM
12459 * nsfns.m (ns_do_applescript):
12460 Conditionalize typeUTF16ExternalRepresentation on Tiger.
a39e2539 12461
35ed44db
AR
124622009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
12463
12464 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
12465
cbe0b5bf
AR
124662009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
12467
12468 * nsmenu.m (NSMENUPROFILE): Change #if style.
4c7077c3 12469
6049d3a0
AR
12470 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
12471
12472 * nsterm.m (x_set_frame_alpha): Add prototype.
a9b4df69
AR
12473 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
12474 handle Ctrl-tab. (Bug#1841)
12475 (ns_get_color): Use unsigned long long for scanned hex string value.
12476 (ns_term_shutdown): Abort on non SIGTERM signals.
e889fa06 12477 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
b71ac3dd 12478 (EmacsPrefsController-setPanelFromDefaultValues): New function.
3a88a825 12479 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
35ed44db 12480 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
d3810c21 12481 (ns_defined_color): Fix settings of the XColor variable fields:
3a88a825 12482 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
cbe0b5bf 12483
d3810c21 12484 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
3a88a825 12485 DPI. (Bug#1316)
d3810c21
AR
12486 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
12487 values in onTiger section.
4c7077c3 12488
e301e634
CY
124892009-01-19 Chong Yidong <cyd@stupidchicken.com>
12490
7f82490b
CY
12491 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
12492 Check return value of font_spec_from_name.
64cc3cf6 12493 (Fx_list_fonts): Doc fix. (Bug#1951)
7f82490b
CY
12494
12495 * font.c (font_spec_from_name): Return Qnil if font name could not
12496 be parsed.
12497 (font_parse_name): Treat a `?' character as part of an XLFD.
12498
e301e634
CY
12499 * fns.c (Fsubstring): Doc fix.
12500
1c0db158
KH
125012009-01-19 Kenichi Handa <handa@m17n.org>
12502
51d861de 12503 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
1c0db158
KH
12504 (ftfont_list): Likewise.
12505
acf20901
JB
125062009-01-18 Juanma Barranquero <lekktu@gmail.com>
12507
fff4e459
JB
12508 * dbusbind.c (Fdbus_register_signal):
12509 * process.c (conv_sockaddr_to_lisp):
12510 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
12511
acf20901
JB
12512 * callproc.c (Fgetenv_internal): Doc fix.
12513
e7abcdfb
CY
125142009-01-16 Chong Yidong <cyd@stupidchicken.com>
12515
12516 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
12517 it is not even used.
12518
b60861e6
GM
125192009-01-16 Glenn Morris <rgm@gnu.org>
12520
12521 * font.c (Ffont_variation_glyphs): Silence compiler.
12522
8db52afe
JB
125232009-01-15 Juanma Barranquero <lekktu@gmail.com>
12524
12525 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
12526 Reported by David Robinow <drobinow@gmail.com>.
12527
4cddb209
KH
125282009-01-15 Kenichi Handa <handa@m17n.org>
12529
51d861de 12530 * coding.c (detect_coding_system): Fix handling of null_byte_found.
4cddb209 12531
f247f67b
JR
125322009-01-14 Jason Rumney <jasonr@gnu.org>
12533
12534 * frame.c (x_set_font): Always store a font to the font parameter,
fff4e459 12535 never a fontset. (Bug#1562)
f247f67b 12536
f56a4450
KH
125372009-01-14 Kenichi Handa <handa@m17n.org>
12538
12539 * coding.c (TWO_MORE_BYTES): New macro.
fff4e459 12540 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
f56a4450 12541
4e99855e
CY
125422009-01-13 Chong Yidong <cyd@stupidchicken.com>
12543
12544 * font.c (font_clear_prop): If clearing the family, clear the font
12545 width index too.
12546
fff4e459 12547 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
4e99855e 12548
24f01470
JB
125492009-01-12 Juanma Barranquero <lekktu@gmail.com>
12550
12551 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
12552 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
12553 functions, use sizeof.
12554
a41240a3
MR
125552009-01-12 Martin Rudalics <rudalics@gmx.at>
12556
12557 * keyboard.c (read_char): Fix case where last_nonmenu_event
12558 returned a bad value with submenus. (Bug#447)
12559
944636b8
CY
125602009-01-12 Chong Yidong <cyd@stupidchicken.com>
12561
12562 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
12563 family, clear the font width index too.
12564
0dad7c6f
JR
125652009-01-11 Jason Rumney <jasonr@gnu.org>
12566
12567 * keyboard.c (cmd_error_internal): Exit when errors occur before
12568 frame creation and not in daemon mode. (Bug#1836)
12569
7c2363af
CY
125702009-01-10 Chong Yidong <cyd@stupidchicken.com>
12571
12572 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
12573 of a display vector, backtrack.
12574 (try_window_reusing_current_matrix): Check glyph type before
12575 referencing charpos member.
12576
97b1b294
EZ
125772009-01-10 Eli Zaretskii <eliz@gnu.org>
12578
12579 Fix Bug #876:
12580
12581 * coding.c (inhibit_null_byte_detection): New variable.
12582 (detect_coding, detect_coding_system): Don't pay attention to null
12583 bytes if inhibit_null_byte_detection is non-zero.
51d861de 12584 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
97b1b294
EZ
12585 <inhibit-iso-escape-detection>: Doc fix.
12586
4624b6e3
JR
125872009-01-09 Jason Rumney <jasonr@gnu.org>
12588
12589 * w32font.c (add_font_entity_to_list): Don't report unknown
fff4e459 12590 Windows charset as any unrecognized registry. (Bug#1548)
4624b6e3
JR
12591 Only report Unicode Plane 2 fonts as unicode-sip.
12592
323b840c
CY
125932009-01-09 Chong Yidong <cyd@stupidchicken.com>
12594
51d861de
SM
12595 * xfaces.c (Fx_font_family_list): Delete function.
12596 Move compatibility version to faces.el.
323b840c 12597
51d861de 12598 * font.c (Ffont_family_list): Return a list of strings, not symbols.
323b840c 12599
eba7400d
MR
126002009-01-09 Martin Rudalics <rudalics@gmx.at>
12601
12602 * frame.c (x_set_frame_parameters): Remember requested value for
12603 fullscreen before it's reset by the parameter handler.
12604
4b09796d
GM
126052009-01-09 Glenn Morris <rgm@gnu.org>
12606
12607 * keyboard.c (last_command_char): For clarity, rename to...
46e722a9 12608 (last_command_event): ... and update all users.
4b09796d
GM
12609 (last_input_char): For clarity, rename to...
12610 (last_input_event): ... and update all users.
12611 (last-command-char, last-input-char): Move to subr.el as aliases.
12612 * cmds.c, commands.h: Update for last_command_char rename.
12613
14ccea62
CY
126142009-01-08 Chong Yidong <cyd@stupidchicken.com>
12615
51d861de 12616 * font.c (font_open_for_lface): Handle unspecified height attribute.
14ccea62 12617
5f004711
JR
126182009-01-08 Jason Rumney <jasonr@gnu.org>
12619
12620 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
12621 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
12622 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
12623 Don't declare.
fff4e459 12624 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
5f004711
JR
12625 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
12626
b71f6f73
KH
126272009-01-07 Kenichi Handa <handa@m17n.org>
12628
50b06221 12629 * fileio.c (Finsert_file_contents): In the case of replace,
f56a4450 12630 remember the coding system used for decoding in
50b06221
KH
12631 coding_system (Bug#1039).
12632
b71f6f73 12633 * coding.c (decode_coding_utf_8): Check byte_after_cr before
79a97217 12634 breaking the loop. (Bug#870)
b71f6f73
KH
12635 (decode_coding_utf_16, decode_coding_emacs_mule)
12636 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
12637 (decode_coding_charset): Likewise.
12638
56f668f7
MR
126392009-01-05 Martin Rudalics <rudalics@gmx.at>
12640
12641 * frame.c (x_set_frame_parameters): Make sure height (width) get
12642 applied when fullwidth (fullheight) is set. (Bug#1522)
12643
5da9424d
JB
126442009-01-04 Juanma Barranquero <lekktu@gmail.com>
12645
12646 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
12647 (utc_base): Declare as ULONGLONG, not long double.
12648 (convert_time_raw): Delete.
12649 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
12650 (initialize_utc_base): New function.
12651 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
12652 (convert_from_time_t): Use initialize_utc_base; compute result with
12653 64-bit arithmetic.
12654 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
12655
c4605e09
EZ
126562009-01-03 Eli Zaretskii <eliz@gnu.org>
12657
9acef61c 12658 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
c4605e09
EZ
12659 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
12660 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
12661 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
12662 [!subprocesses]: Define.
12663 (syms_of_process) [!subprocesses]: Intern and staticpro them.
12664 (Flist_system_processes, Fsystem_process_attributes)
12665 [!subprocesses]: Call list_system_processes and
12666 system_process_attributes instead of returning Qnil.
12667
9acef61c
JB
12668 * dosfns.c (system_process_attributes, list_system_processes):
12669 New functions.
c4605e09
EZ
12670
12671 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
12672
12673 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
12674 Don't use the default (no-op) implementation.
12675
8b7d0a16
JR
126762009-01-03 Jason Rumney <jasonr@gnu.org>
12677
a6d46bc1
JR
12678 * keyboard.c (parse_modifiers_uncached): Wheel events are
12679 clicks (bug#687).
12680
8b7d0a16
JR
12681 * w32term.c (x_query_colors, x_query_color): New functions.
12682
12683 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
12684 (svg_load_image): Cast returned pointers from dynamically loaded
12685 functions. Eliminate W32 specific code.
12686
bfe11752
DN
126872009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
12688
89e2438a
DN
12689 * nsfns.m (x_set_foreground_color, x_set_background_color)
12690 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
12691 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
12692 x_ prefix instead of ns_. Update references.
12693 (syms_of_nsfns): Add a FIXME comment.
12694
12695 * nsterm.m (x_set_cursor_type): New prototype.
12696 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
12697
bfe11752
DN
12698 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
12699 for Solaris instead of incorrectly providing Qutime and Qcutime.
12700
031da700
EZ
127012009-01-02 Eli Zaretskii <eliz@gnu.org>
12702
12703 * w32.c (process_times): Compute sum of utime and stime.
12704 (system_process_attributes): Add Qtime to the alist.
12705
12706 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
12707 and add them to the alist.
12708
12709 * process.c (top level) <Qtime, Qctime>: New variables.
12710 (syms_of_process): staticpro them.
12711 (Fsystem_process_attributes): Add their documentation to the doc
12712 string.
12713
12714 * process.h: Declare Qtime and Qctime.
12715
df23bf08
JR
127162009-01-02 Jason Rumney <jasonr@gnu.org>
12717
9acef61c 12718 * image.c (Qgobject): New symbol.
df23bf08
JR
12719 (syms_of_image): Initialize it.
12720 (init_svg_functions): Load some functions from gobject library.
12721
5bbdf7aa
DN
127222009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
12723
12724 * frame.c (make_terminal_frame): Remove redundant code and useless
12725 block.
12726
63136da6
AS
127272009-01-01 Andreas Schwab <schwab@suse.de>
12728
12729 * process.c (conv_sockaddr_to_lisp): Add workaround for
12730 getsockname bug on BSD.
12731
9ef69046
CY
127322009-01-01 Chong Yidong <cyd@stupidchicken.com>
12733
d6fafbe0
CY
12734 * xfns.c (x_create_tip_frame): Set border width of the X window.
12735
51d861de 12736 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
9ef69046 12737
f9c34147
JR
127382009-01-01 Jason Rumney <jasonr@gnu.org>
12739
9acef61c 12740 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
f9c34147
JR
12741 Don't block input, as per earlier xterm.c changes.
12742
f5497e45
AR
127432008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
12744
12745 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
12746 (ns_appkit_version_int): New function.
12747 (x-server-version): Use ns_appkit_version_int and follow 21+
12748 convention of returning 3 integers.
12749
c19cab20
KH
127502008-12-30 Kenichi Handa <handa@m17n.org>
12751
12752 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
12753 (CHAR_SURROGATE_PAIR_P): New macro.
12754
12755 * font.h (struct font_driver): New member get_variation_glyphs.
12756
9acef61c 12757 * font.c (font_range): Don't require a font for a variation selector.
c19cab20
KH
12758 (Ffont_variation_glyphs): New function.
12759 (syms_of_font): Defsubr it.
12760
12761 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
12762 ftfont_variation_glyphs.
12763 (setup_otf_gstring): New function.
12764 (ftfont_drive_otf): Use it.
12765 (ftfont_shape_by_flt): Handle variation selector.
12766 (ftfont_variation_glyphs): New function.
12767
28cd591f
MR
127682008-12-30 Martin Rudalics <rudalics@gmx.at>
12769
12770 * frame.c (Vemacs_iconified): Remove.
12771
7f714baf
JR
127722008-12-30 Jason Rumney <jasonr@gnu.org>
12773
12774 * frame.c (store_frame_param, x_get_arg): Enable newer code on
9acef61c 12775 WINDOWSNT too, as related changes have already been synced. (Bug#117)
7f714baf 12776
9d2d22ab
CY
127772008-12-30 Chong Yidong <cyd@stupidchicken.com>
12778
12779 * indent.c (Fvertical_motion): Don't advance iterator if we have
12780 reseated to the desired position.
12781
12782 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
12783 checking for pos match.
12784
545312c2
KH
127852008-12-30 Kenichi Handa <handa@m17n.org>
12786
1ede3eb6
KH
12787 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
12788 just get the low 8-bit of the code.
12789
545312c2
KH
12790 * font.c (font_intern_prop): Validate str as multibyte.
12791
bd7bbf29
DN
127922008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
12793
31e0750e
DN
12794 * dispextern.h (struct face): Move lface and hash from the middle
12795 of bitfields.
12796
bd7bbf29
DN
12797 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
12798
b5672e7c
DN
127992008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
12800
12801 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
12802 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
12803 instead of intervals.h.
12804
d704470f
AS
128052008-12-26 Andreas Schwab <schwab@suse.de>
12806
12807 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
12808 cons.
12809
54b33868
MR
128102008-12-26 Martin Rudalics <rudalics@gmx.at>
12811
12812 * textprop.c (Qminibuffer_prompt): New variable.
12813 (syms_of_textprop): Initialize it.
12814 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
12815 in minibuffer-prompt face. (Bug#1662)
12816
40b615d6
JR
128172008-12-25 Jason Rumney <jasonr@gnu.org>
12818
12819 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
12820
baae5c2d
JR
128212008-12-24 Jason Rumney <jasonr@gnu.org>
12822
12823 * ralloc.c (r_alloc_reset_variable): New function.
12824
12825 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
9acef61c 12826 record of what points where. (Bug#716)
baae5c2d 12827
a9051c88
DN
128282008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
12829
12830 * minibuf.c (read_minibuf): Follow the non-interactive case when
12831 running as a daemon, before detaching.
12832
8b146312
AS
128332008-12-22 Andreas Schwab <schwab@suse.de>
12834
12835 * buffer.c (init_buffer): Use realloc instead of xrealloc.
12836 * gtkutil.c (free_widget_value): Use xfree instead of free.
12837
56f2de10
MR
128382008-12-22 Martin Rudalics <rudalics@gmx.at>
12839
12840 * frame.c (delete_frame): New function derived from
12841 Fdelete_frame to handle Qnoelisp value for FORCE argument.
12842 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
12843 (Fdelete_frame): Call delete_frame. Remove line from doc-string
12844 saying that FORCE non-nil doesn't run `delete-frame-functions'.
12845 * frame.h: Extern delete_frame.
12846 * window.c (window_loop):
12847 * terminal.c (delete_terminal):
12848 * xterm.c (x_connection_closed):
12849 * xfns.c (Fx_hide_tip):
9acef61c 12850 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
56f2de10 12851
1fc200d6
JR
128522008-12-21 Jason Rumney <jasonr@gnu.org>
12853
12854 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
12855 when character maps to .notdef character.
12856
5e252df2
SM
128572008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
12858
12859 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
12860
99b72cc4
JR
128612008-12-20 Jason Rumney <jasonr@gnu.org>
12862
12863 * frame.c (Fmake_terminal_frame): Raise an error when called from
9acef61c 12864 a graphical frame on Windows. (Bug#1325)
99b72cc4 12865
acc49a52
JD
128662008-12-20 Jan Djärv <jan.h.d@swipnet.se>
12867
12868 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
12869
6ea15123
CY
128702008-12-20 Chong Yidong <cyd@stupidchicken.com>
12871
12872 * minibuf.c (Fread_buffer): Doc fix.
12873
b2dab6c8
JR
128742008-12-20 Jason Rumney <jasonr@gnu.org>
12875
54ea0c87 12876 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
9acef61c 12877 server name in UNC paths. (Bug#719)
54ea0c87 12878
b2dab6c8 12879 * coding.c (decode_coding): Clear chars_at_source flag when using
9acef61c 12880 charbuf. (Bug#1035)
b2dab6c8 12881
6d1921be
DN
128822008-12-19 Daniel Engeler <engeler@gmail.com>
12883
12884 * sysdep.c (serial_configure): Fix typo.
12885
53934c98
DN
128862008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
12887
12888 * sysdep.c: Include alloca.h.
f4f634e8
DN
12889 (system_process_attributes): Add implementation for Solaris.
12890
12891 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
53934c98 12892
06e111a6
DN
128932008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
12894
12895 Reorganize implementation of Flist_system_processes and
12896 Fsystem_process_attributes. No functional changes.
12897 * process.c: Don't #include pwd.h, grp.h and limits.h.
12898 (Flist_system_processes): Just call list_system_processes.
12899 (Fsystem_process_attributes): Just call system_process_attributes.
12900 (procfs_list_system_processes, time_from_jiffies)
12901 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
12902 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
12903
12904 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
12905 (list_system_processes): Rename from
12906 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
12907 Provide a do nothing implementation.
12908 (system_process_attributes): Rename from
12909 procfs_list_system_processes.
12910 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
9acef61c 12911 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
06e111a6
DN
12912
12913 * w32.c (list_system_processes): Rename from
12914 w32_list_system_processes.
12915 (system_process_attributes): Rename from
12916 w32_system_process_attributes.
12917
12918 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
12919
12920 * process.h (w32_list_system_processes)
12921 (w32_system_process_attributes): Remove.
362654a6
JB
12922 (list_system_processes, system_process_attributes):
12923 New prototypes.
06e111a6 12924
6a705b23
KH
129252008-12-19 Kenichi Handa <handa@m17n.org>
12926
12927 * xfont.c (xfont_decode_coding_xlfd): New function.
12928 (xfont_encode_coding_xlfd): New function.
12929 (xfont_list_pattern): Decode XLFD by iso-8859-1.
12930 (xfont_list): Decode and encode XLFD by iso-8859-1.
12931 (xfont_match): Likewise.
12932 (xfont_list_family): Likewise.
12933 (xfont_open): Likewise.
12934
d66c0241 12935 * ftfont.c (ftfont_open): Generate a multibyte string if given
6a705b23
KH
12936 names are utf-8.
12937
d66c0241 12938 * xftfont.c (xftfont_open): Generate a multibyte string if given
6a705b23
KH
12939 names are utf-8.
12940
5a130941
JD
129412008-12-18 Jan Djärv <jan.h.d@swipnet.se>
12942
12943 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
12944 changed.
bfd20325
JD
12945 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
12946 clicked on a detached tool bar button.
5a130941 12947
fd95644b
DN
129482008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
12949
12950 * emacs.c (main): Print and error and exit when no data is read
12951 from the pipe.
12952
e6eee6ae
JR
129532008-12-17 Jason Rumney <jasonr@gnu.org>
12954
12955 * w32font.c (w32font_has_char): Always return -1.
12956
a35dd56b
KH
129572008-12-16 Kenichi Handa <handa@m17n.org>
12958
12959 * font.c (font_open_entity): Fix previous change.
12960
0e3635c2
DN
129612008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
12962
12963 * process.c: Include <limits.h>.
12964
d4835507 129652008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
b5356c39
CY
12966
12967 * font.c (font_update_drivers): Fix mistake in reconstructing the
12968 driver list.
12969
129702008-12-16 Chong Yidong <cyd@stupidchicken.com>
12971
12972 * font.c (font_clear_cache): Fix format of font cache data.
12973
e2cbc401
CY
129742008-12-15 Chong Yidong <cyd@stupidchicken.com>
12975
12976 * xftfont.c (xftfont_open): Free Xft font pattern if
12977 XftFontOpenPattern fails.
12978
12979 * xterm.c (x_free_frame_resources): Remove extraneous call to
12980 free_frame_faces.
12981
b131d535
CY
129822008-12-13 Chong Yidong <cyd@stupidchicken.com>
12983
12984 * xterm.c (x_delete_display): Move xim_close_dpy call to
12985 x_delete_terminal.
12986 (x_delete_terminal): Call xim_close_dpy.
12987
e6df5336
JR
129882008-12-13 Jason Rumney <jasonr@gnu.org>
12989
12990 * w32font.c (intern_font_name): New function.
12991 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
12992 (w32font_open_internal, Fx_select_font): Decode font name.
12993 (fill_in_logfont, list_all_matching_fonts): Encode font name.
12994
12995 * w32font.h (intern_font_name): Declare new function.
12996
12997 * w32uniscribe.c (add_opentype_font_name_to_list):
12998 Use intern_font_name.
12999
20d68145
CY
130002008-12-13 Chong Yidong <cyd@stupidchicken.com>
13001
9f2554de
CY
13002 * frame.c (Fdelete_frame): Call free_font_driver_list.
13003
3d9bec9a
CY
13004 * font.c (free_font_driver_list): Implement missing function.
13005
20d68145
CY
13006 * w32term.c (w32_term_init): Don't initialize the image cache
13007 here; it will be done in init_frame_faces.
13008
13009 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
bba3e508
SM
13010 (struct x_display_info): Remove unused member null_pixel.
13011 New member xim_callback_data.
20d68145
CY
13012
13013 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
13014 (xim_initialize): Save pointer to callback function data.
13015 (xim_close_dpy): Free callback function data. Call XCloseIM,
13016 reverting 2008-11-04 change by David Smith.
13017 (x_term_init): Don't initialize the image cache here; it will be
13018 done in init_frame_faces. Remove ancient "null_pixel" cruft.
13019 (x_delete_display): Free x_dnd_atoms member.
13020
96f9306b
KH
130212008-12-13 Kenichi Handa <handa@m17n.org>
13022
ef1b0ba7 13023 * font.c (font_rescale_ratio): Move from xfaces.c.
6dec9044 13024 Argument type changed. Handle a font-spec too.
96f9306b 13025 (font_score): Check Vface_font_rescale_alist.
6dec9044 13026 (font_open_entity): Likewise. (Bug#1547)
96f9306b 13027
ef1b0ba7 13028 * xfaces.c (font_rescale_ratio): Move to font.c.
96f9306b 13029
8d5b4964
CY
130302008-12-13 Chong Yidong <cyd@stupidchicken.com>
13031
13032 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
13033
e6df5336
JR
130342008-12-12 Jason Rumney <jasonr@gnu.org>
13035
bba3e508
SM
13036 * w32fns.c (x_display_info_for_name, Fx_open_connection):
13037 Set Vwindow_system_version to the real w32 major version.
e6df5336 13038
97c6058a
DN
130392008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
13040
13041 * term.c (init_tty): Move setting the terminal name before the
13042 potential user: maybe_fatal.
13043
ec4e88d7
CY
130442008-12-11 Chong Yidong <cyd@stupidchicken.com>
13045
ef1b0ba7 13046 * term.c (tty_free_frame_resources): Rename from delete_tty_output;
d4835507 13047 all callers changed. Call free_frame_faces to free the face cache.
ec4e88d7 13048
b4233ec9
JR
130492008-12-11 Jason Rumney <jasonr@gnu.org>
13050
8ec71e23 13051 * w32font.c (fill_in_logfont): Don't assume symbol script means
9acef61c 13052 SYMBOL_CHARSET. (Bug#547)
8ec71e23 13053
b4233ec9 13054 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
9acef61c 13055 size for surrogates. (Bug#1096, bug#872)
b4233ec9 13056
011a0143
JB
130572008-12-11 Juanma Barranquero <lekktu@gmail.com>
13058
13059 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
13060
3c309f34
JB
130612008-12-11 Juanma Barranquero <lekktu@gmail.com>
13062
13063 * process.c (Fsystem_process_attributes, syms_of_process):
13064 Fix typo in name of Ssystem_process_attributes.
13065 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
13066
fedc6ab5
JB
130672008-12-11 Juanma Barranquero <lekktu@gmail.com>
13068
13069 * syntax.c (Fmodify_syntax_entry): Doc fix.
13070
ba3de0e8
JB
130712008-12-10 Juanma Barranquero <lekktu@gmail.com>
13072
13073 * font.c (Ffont_spec): Move usage to end of docstring.
13074
174f1c74
JR
130752008-12-10 Jason Rumney <jasonr@gnu.org>
13076
13077 * w32font.c (Qcham): New symbol.
13078 (font_supported_scripts): Add cham, and comments for other new
13079 scripts in bitfield from OpenType spec.
9d32f818
JR
13080 (add_font_entity_to_list): Limit unicode-sip fonts to those that
13081 contain characters beyond the bmp.
174f1c74 13082
7b649478
KH
130832008-12-10 Kenichi Handa <handa@m17n.org>
13084
13085 * ftfont.c (fc_charset_table): Add "unicode-sip".
2ae37cf0 13086 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
7b649478
KH
13087 Qunicode_sip.
13088
2133e2d1
JB
130892008-12-10 Juanma Barranquero <lekktu@gmail.com>
13090
13091 * coding.c (QCdefault_char): Rename from QCdefalut_char.
13092 (Fcoding_system_put): Use QCdefault_char.
13093 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
13094
9af886ee
CY
130952008-12-09 Chong Yidong <cyd@stupidchicken.com>
13096
74d819eb
CY
13097 * xftfont.c (syms_of_xftfont): Fix typo.
13098
4ccfa1c0 13099 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
9af886ee 13100
7c19d3ae
DN
131012008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
13102
13103 * emacs.c (main): Close daemon_pipe on exec.
13104
567826bb
CY
131052008-12-08 Chong Yidong <cyd@stupidchicken.com>
13106
13107 * termchar.h (struct tty): New members termcap_term_buffer and
13108 termcap_strings_buffer.
13109
13110 * term.c (encode_terminal_code): Free any previous memory blocks
4ccfa1c0 13111 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
567826bb
CY
13112 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
13113 All callers changed.
13114 (init_tty): Store termcap data and string buffers in new struct
13115 tty members termcap_term_buffer and termcap_strings_buffer.
13116 (delete_tty): Free them.
4ccfa1c0 13117 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
567826bb 13118
aa96c42b
SZ
131192008-12-07 Seiji Zenitani <zenitani@mac.com>
13120
13121 * nsfns.m (ns_set_background_color): Remove code duplication.
4ccfa1c0 13122 It was a substitute for face-transparency on OS X 10.3.
aa96c42b 13123
b7e1d896
CY
131242008-12-06 Chong Yidong <cyd@stupidchicken.com>
13125
13126 * coding.c (make_conversion_work_buffer): Disable buffer
13127 modification hooks in the work buffer.
13128
b5ec91a5
EZ
131292008-12-05 Eli Zaretskii <eliz@gnu.org>
13130
13131 * process.c (procfs_system_process_attributes): If `nread' has a
13132 negative value, assign zero to it.
13133
a5d2a52b
CY
131342008-12-05 Chong Yidong <cyd@stupidchicken.com>
13135
68c5540b 13136 * eval.c (Vdebug_on_error): Doc fix.
a5d2a52b 13137
7bf1bb21
KH
131382008-12-05 Kenichi Handa <handa@m17n.org>
13139
13140 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
13141 second character is a combining character.
13142
2fdc7d00
EZ
131432008-12-05 Eli Zaretskii <eliz@gnu.org>
13144
13145 * process.c (procfs_system_process_attributes): Don't use cmd,
13146 cmdsize, and q without initializing them first.
13147
bf6bfba8
JR
131482008-12-04 Jason Rumney <jasonr@gnu.org>
13149
13150 * w32font.c (w32font_draw): Initialize orig_clip before getting
13151 it, and delete it when finished.
13152
a3b1a468
DN
131532008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
13154
13155 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
13156 case when running as a daemon before detaching.
13157
8b8be8eb
JB
131582008-12-03 Juanma Barranquero <lekktu@gmail.com>
13159
805f2638 13160 * w32.c (init_environment): Don't unload library shell32.dll.
8b8be8eb 13161
b1bde622
KH
131622008-12-03 Kenichi Handa <handa@m17n.org>
13163
e500c47d
KH
13164 * font.c (font_at): Set `multibyte' at first.
13165
ca516334
KH
13166 * coding.c (decode_coding_charset): Check type of an element of
13167 vector VALIDS.
7bf1bb21 13168 (encode_coding_emacs_mule): Be sure to set `code'.
ca516334 13169
4ccfa1c0 13170 * fontset.c (face_for_char): Handle invalid charset property correctly.
b1bde622
KH
13171 (font_for_char): Likewise.
13172
1e5ecd37
CY
131732008-12-03 Chong Yidong <cyd@stupidchicken.com>
13174
d5b01609 13175 * font.c (Fopen_font): Compute pixel size correctly.
ba207571
CY
13176 (font_update_lface): Handle fonts with corrupted size specs,
13177 i.e. non-int and non-float.
d5b01609 13178
11e3a6e4 13179 * ftfont.c (ftfont_match): Initialize entity variable.
9a48c8cb 13180 (ftfont_resolve_generic_family): Avoid using uninitialized var.
8adb3a3b 13181 (ftfont_list_family): Initialize list var earlier.
11e3a6e4 13182
ab06788b
CY
13183 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
13184
1e5ecd37 13185 * xterm.c (x_draw_glyph_string): Fall back on
0cff82ab 13186 underline_minimum_offset for underline position.
1e5ecd37 13187
63c125ab
DN
131882008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
13189
13190 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
13191
13192 * character.c (c_string_width): Specify the type for LEN.
13193
3a8406e1
KH
131942008-12-03 Kenichi Handa <handa@m17n.org>
13195
4ccfa1c0 13196 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
453b38f0 13197 (decode_coding_utf_8): Likewise.
4ccfa1c0 13198 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
4533845d 13199 (produce_chars): Initialize consumed_chars to 0.
3a8406e1 13200
651df7d9
CY
132012008-12-02 Chong Yidong <cyd@stupidchicken.com>
13202
13203 * keyboard.c (make_lispy_position): Only use PT if the selected
13204 window is current.
13205
1f625c6c
AS
132062008-12-02 Andreas Schwab <schwab@suse.de>
13207
f7741ce9
AS
13208 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
13209
1f625c6c
AS
13210 * doprnt.c (doprnt1): Fix size of charbuf.
13211
92bc2678
CY
132122008-12-02 Chong Yidong <cyd@stupidchicken.com>
13213
13214 * keyboard.c (timer_check): Revert last change.
13215
93b9e8cc
JB
132162008-12-02 Juanma Barranquero <lekktu@gmail.com>
13217
13218 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
13219
fd7a37d5
JB
132202008-12-01 Juanma Barranquero <lekktu@gmail.com>
13221
13222 * makefile.w32-in: Update dependencies.
13223 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
13224
c115043b
AS
132252008-12-01 Andreas Schwab <schwab@suse.de>
13226
13227 * font.c (register_font_driver): Use xmalloc.
13228 (font_put_frame_data): Likewise.
13229
f5668d2a
CY
132302008-12-01 Chong Yidong <cyd@stupidchicken.com>
13231
860d96be
CY
13232 * xfaces.c (realize_x_face): Make abort condition clearer.
13233
f5668d2a
CY
13234 * gtkutil.c (update_frame_tool_bar): Initialize variable.
13235
379c17e7
CY
132362008-11-30 Chong Yidong <cyd@stupidchicken.com>
13237
13238 * keyboard.c (timer_check): After a timer runs, ensure that the
13239 selected window's buffer is current.
13240
35f36d65
JB
132412008-11-30 Juanma Barranquero <lekktu@gmail.com>
13242
f952c61c
JB
13243 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
13244 It was accidentally restored by the Unicode merge.
13245
35f36d65
JB
13246 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
13247
b23077df
JB
132482008-11-29 Juanma Barranquero <lekktu@gmail.com>
13249
13250 * w32proc.c: Include "coding.h".
13251 (Fw32_short_file_name): Encode filename passed to Windows API.
13252 (Fw32_long_file_name): Encode filename passed to Windows API and
13253 decode back the result. (Bug#1433)
13254
b8ebe9dd
KH
132552008-11-29 Kenichi Handa <handa@m17n.org>
13256
8cc53f96
KH
13257 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
13258 not before accessing it.
13259
b8ebe9dd
KH
13260 * charset.c (Fdefine_charset_internal): After calculating
13261 min_char, max_char, and fastmap, copy the charset structure again.
13262 (encode_char): Fix the previous change.
13263
59bc82c0
SZ
132642008-11-28 Seiji Zenitani <zenitani@mac.com>
13265
13266 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
13267
13268 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
13269
13270 * nsterm.m (x_set_frame_alpha): New function.
13271
32247e3d
EZ
132722008-11-27 Eli Zaretskii <eliz@gnu.org>
13273
13274 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
13275
b003e5ff
JB
132762008-11-27 Juanma Barranquero <lekktu@gmail.com>
13277
13278 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
13279 pointer to check_face_name.
13280
708550f5
KH
132812008-11-27 Kenichi Handa <handa@m17n.org>
13282
13283 * category.h (SET_CATEGORY_SET): Call set_category_set.
13284 (set_category_set): Extern it.
13285
13286 * category.c (hash_get_category_set): New function.
bba3e508 13287 (Fmodify_category_entry): Adjust for the change of
708550f5
KH
13288 char_table_ref_and_range. Call hash_get_category_set to get a
13289 category set to store in the table.
13290
13291 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
13292 Funify_charset.
13293
2ae37cf0 13294 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
708550f5
KH
13295 (DECODE_CHAR): Check if the decoder vector is ready.
13296 (ENCODE_CHAR): Check if the encoder char-table is ready.
13297 (maybe_unify_char): Extern it.
13298
13299 * charset.c (Vchar_unified_charset_table): Delete it.
13300 (inhibit_load_charset_map): New variable.
13301 (temp_charset_work): New variable.
13302 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
13303 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
13304 New macros.
bba3e508
SM
13305 (load_charset_map): Meaning of control_flag changed.
13306 If inhibit_load_charset_map is nonzero, setup a table in
708550f5
KH
13307 temp_charset_work.
13308 (load_charset): New argument control_flag.
13309 (map_charset_for_dump): New function.
13310 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
13311 map_charset_for_dump.
13312 (Fdefine_charset_internal): If the charset method is MAP, load
13313 mapping tables by calling load_charset.
13314 (Funify_charset): Don't load a mapping table but directly set
13315 Vchar_unify_table.
13316 (maybe_unify_char): New function.
13317 (decode_char): Don't handle the deleted method MAP_DEFERRED.
13318 Handle the case of inhibit_load_charset_map being nonzero.
13319 (encode_char): Don't handle the deleted method MAP_DEFERRED.
13320 Handle the case of inhibit_load_charset_map being nonzero.
13321 (Fclear_charset_maps): Just free temp_charset_work.
13322 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
13323 variable.
13324
bba3e508 13325 * chartab.c (sub_char_table_ref_and_range): Adjust for the
708550f5
KH
13326 change of char_table_ref_and_range.
13327 (char_table_ref_and_range): Change the meaning of argument FROM
13328 and TO. Now the caller must provide initial values for *FROM
13329 and *TO.
13330
bba3e508 13331 * fontset.c (fontset_add): Adjust for the change of
708550f5
KH
13332 char_table_ref_and_range.
13333 (fontset_get_font_group): Likewise.
13334 (Ffontset_info): Likewise.
13335
bba3e508 13336 * keymap.c (describe_vector): Adjust for the change of
708550f5
KH
13337 char_table_ref_and_range. For char-table, put boundary between
13338 non-ASCII and 8-bit characters.
13339
13340 * print.c (print_object): For bool-vector, delete unnecessary
13341 check of ASCII_BYTE_P.
13342
9196133b
JR
133432008-11-26 Jason Rumney <jasonr@gnu.org>
13344
13345 * w32font.c (w32font_open_internal): Don't include external
9acef61c 13346 leading in font height. (Bug#879)
9196133b 13347
9f688acf
GM
133482008-11-26 Glenn Morris <rgm@gnu.org>
13349
13350 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
13351 redefinition with ifdef. (Bug#1383)
13352
90d19aff
AR
133532008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
13354
13355 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
13356
4ccfa1c0 133572008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
90d19aff
AR
13358
13359 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
13360 New EmacsView methods.
13361 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
13362 Fixes bug #1048,1357,1414.
13363
133642008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
13365
13366 Fix bug #1362.
13367 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
13368 is not an indexed color.
13369 * nsterm.m (free_indexed_color): Add argument checking.
13370 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
13371
e7d5ecb3
CY
133722008-11-24 Chong Yidong <cyd@stupidchicken.com>
13373
13374 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
13375 Document confirm-after-completion value for
13376 minibuffer-completion-confirm.
13377
c285743c
JR
133782008-11-24 Jason Rumney <jasonr@gnu.org>
13379
13380 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
13381 warning.
13382
b0857706
JR
133832008-11-23 Jason Rumney <jasonr@gnu.org>
13384
13385 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
13386 restored before returning.
13387
13388 * w32font.c (check_face_name): New function.
13389 (add_font_entity_to_list): Use it to filter out common substituted
9acef61c 13390 fonts. (Bug#642)
b0857706 13391
ee50ff07
MR
133922008-11-22 Martin Rudalics <rudalics@gmx.at>
13393
13394 * buffer.c (Fswitch_to_buffer): Reword and mention new option
13395 confirm-nonexistent-file-or-buffer in doc-string.
13396
b8ff72fa
SM
133972008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
13398
13399 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
13400 Fix copy/paste typo. Add checks.
13401
cee53ed4
KH
134022008-11-21 Kenichi Handa <handa@m17n.org>
13403
13404 * coding.c (detect_coding_iso_2022): Reject invalid composition
13405 sequence.
13406 (DECODE_COMPOSITION_START): If the current source is the last
13407 block, and the current composition doesn't end, regard this
13408 sequence as invalid.
13409 (decode_coding_iso_2022): Handle invalid composition sequence.
13410
f6ef1e65
MR
134112008-11-20 Martin Rudalics <rudalics@gmx.at>
13412
13413 * window.c (coordinates_in_window): Don't return
13414 ON_VERTICAL_BORDER for the rightmost position of a mode/header
13415 line when the window is not the rightmost one. (Bug#1372)
13416
e08b1705
MR
134172008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
13418
13419 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
13420
ad98e89f
EZ
134212008-11-15 Eli Zaretskii <eliz@gnu.org>
13422
13423 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
13424 and bright_bg if noninteractive is non-zero.
13425
fb098a4b
CY
134262008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13427
13428 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
13429 x_draw_glyph_string_background.
13430
13431 * w32term.c (x_draw_glyph_string): Likewise.
13432
ce952b6e
CY
134332008-11-15 Chong Yidong <cyd@stupidchicken.com>
13434
13435 * xterm.c (x_draw_glyph_string): Stop drawing the background of
13436 the next glyph string once past the overhang width.
13437
13438 * nsterm.m (ns_draw_glyph_string): Likewise.
13439
13440 * w32term.c (x_draw_glyph_string): Likewise.
13441
26ea7079
CY
134422008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
13443
13444 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
13445 double file close.
13446
1c33c906
MR
134472008-11-14 Martin Rudalics <rudalics@gmx.at>
13448
13449 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
13450 dedicated status of window before attempting to display another
13451 buffer in it.
13452
8fc29035
JB
134532008-11-14 Juanma Barranquero <lekktu@gmail.com>
13454
13455 * msdos.c (Fmsdos_long_file_names):
13456 (syms_of_msdos) <dos-unsupported-char-glyph>:
13457 * dosfns.c (Fint86): Fix typos in docstrings.
13458
55fb4286
EZ
134592008-11-14 Eli Zaretskii <eliz@gnu.org>
13460
13461 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
13462
3fda0315
KY
134632008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
13464
13465 * puresize.h (BASE_PURESIZE): Increase to 1260000.
13466
7e849c17
CY
134672008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
13468
13469 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
13470
13471 * frame.h: Negative alpha means "don't touch".
13472
13473 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
13474
13475 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
13476
b9fd67bd
DN
134772008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
13478
13479 * hftctl.c:
13480 * chpdef.h:
13481 * acldef.h: Remove files used only for systems no longer supported.
13482
13483 * Makefile.in: Fix .o alphabetical ordering.
13484 (hftctl.o): Remove dependency, file removed.
13485 (keymap.o, print.o): Depend on charset.h.
13486
d5998e03
KH
134872008-11-10 Kenichi Handa <handa@m17n.org>
13488
2ae37cf0 13489 * character.c (Fget_byte): Fix and make it faster for unibyte target.
d5998e03 13490
be70e183
CY
134912008-11-08 Chong Yidong <cyd@stupidchicken.com>
13492
13493 * dired.c (file_name_completion): If completion_ignore_case is
13494 enabled, ignore case when checking completion-regexp-list.
13495
7cf94eac
EZ
134962008-11-08 Eli Zaretskii <eliz@gnu.org>
13497
13498 * vm-limit.c (get_lim_data): Fix last change.
13499
ee107a89
KH
135002008-11-08 Kenichi Handa <handa@m17n.org>
13501
13502 * character.c (Fget_byte): New function.
13503 (syms_of_character): Defsubr Fget_byte.
13504
5fd15622
CY
135052008-11-07 Chong Yidong <cyd@stupidchicken.com>
13506
13507 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
13508 cursor position is valid after scrolling.
13509
13d62fad
JB
135102008-11-06 Juanma Barranquero <lekktu@gmail.com>
13511
13512 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
13513
a1dd2936
GM
135142008-11-06 Glenn Morris <rgm@gnu.org>
13515
13516 * xterm.c (handle_one_xevent): Don't let popup menus cause
13517 mouse-autoselect-window related window switching. (Bug#1261)
13518
860cd236
CY
135192008-11-04 David Smith <davidsmith@acm.org> (tiny change)
13520
13521 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
13522
653a3150
AS
135232008-11-04 Andreas Schwab <schwab@suse.de>
13524
13525 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
13526
870f5cac
CY
135272008-11-03 Chong Yidong <cyd@stupidchicken.com>
13528
13529 * xfns.c (Fx_wm_set_size_hint): New function.
13530
1e02f3cb
MR
135312008-11-03 Martin Rudalics <rudalics@gmx.at>
13532
13533 * textprop.c (Fprevious_single_char_property_change): Return 0
13534 when there's no change in a string. (Bug#1301)
13535
e630dfc6
MR
135362008-11-02 Martin Rudalics <rudalics@gmx.at>
13537
13538 * frame.c (do_switch_frame): New argument NORECORD passed to
13539 Fselect_window.
13540 (Fselect_frame): New argument NORECORD passed to
13541 do_switch_frame.
13542 (Fset_frame_selected_window): New argument NORECORD passed to
13543 Fselect_frame.
13544 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
13545 in call of do_switch_frame.
13546 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
13547 Handle NORECORD argument in call of Fselect_frame.
13548 * lisp.h (do_switch_frame, Fselect_frame)
13549 (Fset_frame_selected_window): Adjust declarations.
13550 * window.c (select_frame_norecord): New function.
13551 (run_window_configuration_change_hook): Use it and call
13552 Fselect_frame with NORECORD set.
13553 (Fselect_window): Pass NORECORD to Fselect_frame.
13554 (Fset_window_configuration): Handle NORECORD argument in call of
13555 do_switch_frame.
13556 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
13557 Fset_frame_selected_window.
13558 * keyboard.c (command_loop_1): Handle NORECORD in call of
13559 Fselect_frame (currently ifdefd).
13560
9020b223
GM
135612008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
13562
13563 * emacs.c (USAGE2): Untabify.
13564
793ffee8
SM
135652008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
13566
13567 * composite.c (fill_gstring_header): Fix copy/paste typo.
13568
ab6d1131
MR
135692008-10-31 Martin Rudalics <rudalics@gmx.at>
13570
13571 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
13572 (Fother_window): Rename argument and rewrite doc-string.
13573 (select_window_norecord): Fix return value. (Bug#1276)
13574
601a9cf1
JB
135752008-10-30 Juanma Barranquero <lekktu@gmail.com>
13576
13577 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
13578 new frames overriding foreground for tooltips. Based on similar patch
13579 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
13580
813b0652
CY
135812008-10-29 Chong Yidong <cyd@stupidchicken.com>
13582
13583 * emacs.c (Fdaemon_initialized): Initialize nfd.
13584
4414f58f
MR
135852008-10-29 Martin Rudalics <rudalics@gmx.at>
13586
13587 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
13588 (Fwindow_text_height): Clarify doc-strings.
13589 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
13590 doc-string of window-scroll-functions.
13591
ecdcaa09
RS
135922008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
13593
13594 * category.c (syms_of_category): Fix typo in docstring.
13595
23fe745a
JB
135962008-10-28 Juanma Barranquero <lekktu@gmail.com>
13597
13598 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
13599 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
13600 Fix typos in docstrings.
13601
ff808935
DN
136022008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
13603
13604 * emacs.c (daemon_pipe): Make non-static.
13605 (IS_DAEMON): Move definition ...
13606 * lisp.h (IS_DAEMON): ... here.
13607 (daemon_pipe): Declare.
13608 (is_daemon): Remove.
13609 * dispnew.c (init_display): Use IS_DAEMON.
13610
fc012771
SM
136112008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13612
13613 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
13614 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
13615
13616 * emacs.c (is_daemon): Remove.
13617 (main): Don't set is_daemon.
13618 (IS_DAEMON): New macro.
13619 (Fdaemonp, Fdaemon_initialized): Use it.
601a9cf1 13620 (Fdaemon_initialized): Write a char into the pipe to make sure the
fc012771
SM
13621 parent exits.
13622 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
13623
d8bdbe6f
CY
136242008-10-27 Chong Yidong <cyd@stupidchicken.com>
13625
d1a072bf
CY
13626 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
13627 over-sized glyph, draw it with the default glyph width.
13628
e2e325aa
CY
13629 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
13630 glyph, draw it with the default glyph width.
13631
13632 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
13633 glyph, draw it with the default glyph width.
13634
d8bdbe6f
CY
13635 * xdisp.c (try_scrolling): When computing the distance from the
13636 scroll margin to PT, try moving some distance past the window
13637 bottom before giving up.
13638
7bfac547
MR
136392008-10-27 Martin Rudalics <rudalics@gmx.at>
13640
13641 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
13642 (Fset_window_buffer): Explain in doc-string that a window can be
13643 "strongly" dedicated to its buffer.
13644
4ff029f6
DN
136452008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
13646
13647 * emacs.c (daemon_name): New variable.
13648 (main): Deal with --daemon=SERVER_NAME.
13649 (Fdaemonp): Return a name if one was passed to --daemon.
13650
5790ef40
DN
136512008-10-26 Romain Francoise <romain@orebokech.com>
13652
f9bd0df9 13653 * emacs.c (daemon_pipe): New variable.
5790ef40
DN
13654 (main): Create a pipe before forking, make the parent exit only after
13655 the child has closed its end of the pipe. Move closing the
13656 descriptors ...
13657 (Fdaemon_initialized): ... here. New function.
13658
f5385255
SM
136592008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
13660
4d632321
SM
13661 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
13662 the previous unoptimized table.
13663
f5385255
SM
13664 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
13665 the distinction between non-nil and non-t value of `dedicated'.
13666
6c56a0f3
CY
136672008-10-25 Chong Yidong <cyd@stupidchicken.com>
13668
13669 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
f5385255 13670 read_char_minibuf_menu_text is large enough to hold the menu string.
6c56a0f3 13671
fec89261
MR
136722008-10-25 Martin Rudalics <rudalics@gmx.at>
13673
13674 * window.c (Fget_buffer_window, Fdelete_windows_on)
13675 (Freplace_buffer_in_windows): Make buffer argument optional and
13676 rename to buffer_or_name.
13677
34fcddd0
CY
136782008-10-24 Chong Yidong <cyd@stupidchicken.com>
13679
f5385255
SM
13680 * xdisp.c (handle_single_display_spec, handle_display_prop):
13681 Undo 2005-05-16 change.
34fcddd0
CY
13682 (handle_stop): Pop iterator if it's loaded with an empty string.
13683 (get_overlay_strings_1): Don't save iterator if it's loaded with
13684 an empty string (bug#1201).
13685
064766f2
KH
136862008-10-24 Kenichi Handa <handa@m17n.org>
13687
13688 * ftfont.c (ftfont_otf_features): Fix previous change.
13689 (ftfont_otf_capability): Check FeatureList.FeatureCount before
13690 calling ftfont_otf_features.
13691
f9bd0df9 136922008-10-24 Kenichi Handa <handa@m17n.org>
064766f2
KH
13693
13694 * font.c (font_match_p): Fix for the case that a vector of
13695 characters is in script-representative-chars.
13696
1dae9197
MA
136972008-10-24 Michael Albinus <michael.albinus@gmx.de>
13698
13699 * dbusbind.c (xd_in_read_queued_messages): New variable.
f5385255 13700 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
1dae9197
MA
13701 (xd_read_queued_messages): Catch Qdbus_error from the macros.
13702 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
777013f2 13703 macro. (Bug#1186)
1dae9197 13704
f9bd0df9 137052008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
9b3362b8
DN
13706
13707 * s/sol2-10.h: New file.
13708
878a4584
JB
137092008-10-23 Juanma Barranquero <lekktu@gmail.com>
13710
13711 * xdisp.c (fill_glyph_string): Fix typo in source (though the
13712 poor beast has survived 9+ years and the jump from xterm.c!).
13713
cd265ca6
MR
137142008-10-23 Martin Rudalics <rudalics@gmx.at>
13715
13716 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
13717 Reword doc-string.
f5385255 13718 (Fbury_buffer): In doc-string say what happens to the buffer's window.
cd265ca6 13719
472a4dc9
JB
137202008-10-23 Juanma Barranquero <lekktu@gmail.com>
13721
13722 * character.c (syms_of_character) <script-representative-chars>:
13723 <unicode-category-table>: Doc fixes.
13724
159bd5a2
NF
137252008-10-23 Noah Friedman <friedman@splode.com>
13726
13727 * coding.c (make_conversion_work_buffer): Check that
13728 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
13729 Fget_buffer_create.
13730
49f9c344
KH
137312008-10-23 Kenichi Handa <handa@m17n.org>
13732
13733 * font.c (font_add_log): Check the values of extra properties.
13734
12bb3111
MR
137352008-10-22 Martin Rudalics <rudalics@gmx.at>
13736
13737 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
13738 Reword doc-string.
13739 (Fset_window_parameter): Use NILP.
13740 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
f5385255 13741 (Frecenter): Use "selected" instead of "current" window in doc-strings.
12bb3111 13742
bbeb4e99
JB
137432008-10-22 Juanma Barranquero <lekktu@gmail.com>
13744
13745 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
13746
137472008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
cb83c00b
AR
13748
13749 * nsfns.m (ns_appkit_version): New function.
13750 (x-server-version): Use it.
13751 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
13752 (x-server-vendor): Don't check_ns().
13753
13754 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
13755
a9b555d3
JB
137562008-10-22 Juanma Barranquero <lekktu@gmail.com>
13757
13758 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
13759 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
13760
4626499f
KH
137612008-10-22 Kenichi Handa <handa@m17n.org>
13762
e3681952
KH
13763 * syntax.c (scan_words): Call word_boundary_p instead of comparing
13764 scripts.
13765
4626499f
KH
13766 * category.c (word_boundary_p): Check scripts instead of charset.
13767 Handle nil value in word-separating-categories and
13768 word-combining-categories.
13769 (syms_of_category): Fix docstrings of word-separating-categories
13770 and word-combining-categories.
13771
1560f91a
EZ
137722008-10-21 Eli Zaretskii <eliz@gnu.org>
13773
13774 * coding.c (Fencode_coding_region, Fdecode_coding_region)
13775 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
13776
f4668441
MR
137772008-10-21 Martin Rudalics <rudalics@gmx.at>
13778
13779 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
13780 Rename arg "buffer" to "buffer_or_name".
13781 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
13782 it optional.
13783 (no_switch_window): Remove since the return value is not used.
a9b555d3 13784 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
f4668441
MR
13785 Consider window as dedicated when Fwindow_dedicated_p returns a
13786 non-nil value.
13787 * lisp.h: Remove prototype for no_switch_window.
13788
fd75ddb2
JD
137892008-10-21 Jan Djärv <jan.h.d@swipnet.se>
13790
13791 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
2ae37cf0 13792 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
fd75ddb2 13793
07295713
KH
137942008-10-21 Kenichi Handa <handa@m17n.org>
13795
13796 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
13797 check Vlatin_extra_code_table.
13798
712adc82
EZ
137992008-10-20 Eli Zaretskii <eliz@gnu.org>
13800
13801 * fileio.c (Fset_file_modes): Doc fix.
13802
f549eb0b
MA
138032008-10-19 Michael Albinus <michael.albinus@gmx.de>
13804
13805 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
13806 in arrays.
13807
aac0c6e3
MR
138082008-10-19 Martin Rudalics <rudalics@gmx.at>
13809
13810 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
13811 Mention kill-buffer in doc-string.
13812 (Fset_window_buffer): Reinsert tem check removed in last commit.
13813 (Fenlarge_window, Fshrink_window): Have argument names and
13814 doc-string follow Elisp manual more closely.
13815
138162008-10-18 Eli Zaretskii <eliz@gnu.org>
13817
13818 * fileio.c (Fset_file_modes): Doc fix.
13819
138202008-10-18 Martin Rudalics <rudalics@gmx.at>
13821
13822 * window.c (Fwindow_width, Fset_window_start)
13823 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
f5385255
SM
13824 (Fdelete_windows_on, Freplace_buffer_in_windows):
13825 Make doc-strings follow code and Elisp manual more closely.
aac0c6e3
MR
13826 (Fwindow_dedicated_p): Make window argument optional.
13827 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
13828 (Fset_window_buffer): Respect any non-nil dedicated value for
13829 window. Rename "buffer" argument to "buffer_or_name".
13830
138312008-10-18 Ulrich Mueller <ulm@gentoo.org>
13832
13833 * m/sh3.h: New file, machine description for SuperH.
13834
138352008-10-17 Martin Rudalics <rudalics@gmx.at>
13836
13837 * window.c (Fsplit_window): Rename arg horflag to horizontal.
13838
138392008-10-17 Kenichi Handa <handa@m17n.org>
13840
13841 * ftfont.c (ftfont_otf_features): Fix indexing
13842 gsub_gpos->FeatureList.Feature. Check the validity of indices.
13843
138442008-10-16 Magnus Henoch <mange@freemail.hu>
13845
13846 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
13847 (Fdbus_call_method_asynchronously): Ditto.
13848 This change makes C-h f display the argument list.
13849
138502008-10-16 Chong Yidong <cyd@stupidchicken.com>
13851
13852 * fileio.c (Fexpand_file_name): Doc fix.
13853
13854 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
13855 of :foreground and :background equivalent to unspecified (20.x
13856 compatibility).
13857
138582008-10-15 Eli Zaretskii <eliz@gnu.org>
13859
13860 * buffer.c (syms_of_buffer): Doc fix.
13861
138622008-10-14 Kenichi Handa <handa@m17n.org>
13863
13864 * font.c (font_clear_prop): When clearing font width, clear the
13865 average width field too.
13866
138672008-10-12 Andreas Schwab <schwab@suse.de>
13868
13869 * ftfont.c (ftfont_shape_by_flt): Make static.
13870 * ftfont.h (ftfont_shape_by_flt): Don't declare.
13871
13872 * font.c: Don't include <m17n-flt.h>.
13873
138742008-10-10 Eli Zaretskii <eliz@gnu.org>
13875
13876 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
13877
138782008-10-09 Eli Zaretskii <eliz@gnu.org>
13879
13880 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
13881 away code.
13882
138832008-10-09 Chong Yidong <cyd@stupidchicken.com>
13884
13885 * dispnew.c (update_text_area): Avoid looping due to large glyph
13886 overhangs (bug#1070).
13887
138882008-10-09 Kenichi Handa <handa@m17n.org>
13889
13890 * fontset.c (face_for_char): If face->fontset is negative, just
13891 return ascii_face.
13892
f5385255
SM
13893 * font.c (font_delete_unmatched): Fix previous change.
13894 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
aac0c6e3
MR
13895
138962008-10-09 Martin Rudalics <rudalics@gmx.at>
13897
13898 * frame.c (Fraise_frame): On text-only terminals select frame in
13899 order to make it visible. (Bug#1061)
13900
139012008-10-08 Chong Yidong <cyd@stupidchicken.com>
13902
13903 * fontset.c (fontset_find_font): Check frame validity.
13904
139052008-10-07 Chong Yidong <cyd@stupidchicken.com>
13906
a9b555d3 13907 * gtkutil.c (xg_display_open): Reset default display if none exists.
aac0c6e3
MR
13908 (xg_display_close): Allow Emacs to close all displays (bug#985).
13909
139102008-10-06 Andreas Schwab <schwab@suse.de>
13911
f5385255 13912 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
aac0c6e3
MR
13913
139142008-10-06 Chong Yidong <cyd@stupidchicken.com>
13915
f5385255 13916 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
aac0c6e3 13917
a9b555d3 13918 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
aac0c6e3
MR
13919
13920 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
13921 during initialization.
13922
139232008-10-04 Eli Zaretskii <eliz@gnu.org>
13924
13925 * xdisp.c (redisplay_internal): If frame switched, redisplay the
13926 whole thing on MSDOS frames as well as on a TTY.
13927
13928 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
13929 well as for TTY.
13930 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
13931 well as on a TTY.
13932
13933 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
13934 as well as for TTY.
13935
13936 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
13937
13938 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
13939 MSDOS frames as well.
13940
139412008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
13942
13943 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
13944 correct arguments.
b71ac3dd 13945 * menu.c (find_and_return_menu_selection): Add cast.
aac0c6e3
MR
13946
139472008-10-03 Glenn Morris <rgm@gnu.org>
13948
13949 * emacs.c (USAGE1): Add --daemon.
13950
139512008-10-02 Eli Zaretskii <eliz@gnu.org>
13952
13953 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
13954 100, so it's in percents as advertised.
13955
139562008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
13957
13958 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
13959 (ns_output.current_cursor, ns_output.desired_cursor)
13960 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
13961 (FRAME_NEW_CURSOR_COLOR): Remove.
13962
13963 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
a9b555d3 13964 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
aac0c6e3
MR
13965 enumeration (HOLLOW_BOX_CURSOR, etc.).
13966
13967 * nsterm.m (ns_frame_rehighlight): Remove commented code.
13968 (draw_window_cursor): Simplify code.
f5385255
SM
13969 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
13970 Don't change cursor type. In latter, call rehighlight instead of doing
aac0c6e3 13971 updates manually.
a9b555d3
JB
13972 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
13973 Use core Emacs cursor types.
aac0c6e3 13974
b8ff72fa 13975 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
aac0c6e3
MR
13976
139772008-10-02 Martin Rudalics <rudalics@gmx.at>
13978
13979 * process.c (Faccept_process_output): Fix doc-string.
13980
139812008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
13982
13983 * gmalloc.c (__sbrk): Also define for uClibc.
13984
13985 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
13986 for uClibc.
13987
139882008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
13989
13990 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
13991 styles.
13992 (nsfont_open): Reenable the cache.
13993
139942008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
13995
13996 * font.c (font_matching_entity): Reflect ATTRS in font selection.
13997 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
13998
139992008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
14000
14001 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
14002 a suspended terminal.
14003
140042008-09-30 Michael Albinus <michael.albinus@gmx.de>
14005
14006 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
14007
140082008-09-30 Eli Zaretskii <eliz@gnu.org>
14009
14010 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
14011
140122008-09-30 Chong Yidong <cyd@stupidchicken.com>
14013
14014 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
14015 in a continued line coincides with a line beginning.
14016
140172008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
14018
14019 * nsfont.m (nsfont_trait_distance): Fix bug.
14020 (nsfont_list): Return a list rather than a vector (syncs with Handa
14021 changes of 2008-05-14).
14022 (nsfont_open): Improve logging.
14023
140242008-09-29 Andreas Schwab <schwab@suse.de>
14025
14026 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
14027
140282008-09-28 Martin Rudalics <rudalics@gmx.at>
14029
14030 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
14031 name as char-resolve-modifiers.
14032 Reported by: Markus Triska <markus.triska@gmx.at>
14033
140342008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
14035
14036 * dispnew.c (init_display): Return earlier when running as a daemon.
14037
140382008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
14039
14040 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
14041
140422008-09-27 Eli Zaretskii <eliz@gnu.org>
14043
14044 * composite.c (Fcomposition_get_gstring)
14045 (Fcompose_region_internal, Fcompose_string_internal)
14046 (Ffind_composition_internal): Doc fix.
14047 (syms_of_composite) <compose-chars-after-function>: Doc fix.
14048 (syms_of_composite) <auto-composition-function>: Doc fix.
14049 (syms_of_composite) <composition-function-table>: Doc fix.
14050
140512008-09-25 Chong Yidong <cyd@stupidchicken.com>
14052
14053 * search.c (wordify): New argument for lax word-ends.
14054 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
14055
140562008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
14057
14058 * lisp.h (is_daemon): Declare.
14059 * dispnew.c (init_display): Do not try to initialize the terminal
14060 when running as a daemon.
14061
140622008-09-22 Chong Yidong <cyd@stupidchicken.com>
14063
14064 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
14065 x_display_pixel_height.
14066
140672008-09-22 Martin Rudalics <rudalics@gmx.at>
14068
14069 * undo.c (record_point): Don't call Fundo_boundary for first
14070 change. (Bug#731)
14071
140722008-09-22 Juanma Barranquero <lekktu@gmail.com>
14073
14074 * emacs.c (Fdaemonp): Doc fix.
14075
140762008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
14077
14078 * emacs.c (main): Place #ifdef in the proper place.
14079
140802008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
14081
14082 * emacs.c (standard_args): Add --daemon.
14083 (main): Disconnect from the terminal when --daemon is passed.
14084 (is_daemon): New variable.
14085 (Fdaemonp): New function.
14086 (syms_of_emacs): Defsubr it.
14087
140882008-09-20 Chong Yidong <cyd@stupidchicken.com>
14089
14090 * xdisp.c (get_next_display_element): Handle string display
14091 correctly when checking for the end of a box run.
14092
140932008-09-20 Glenn Morris <rgm@gnu.org>
14094
14095 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
14096 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
14097 (Frename_file): Avoid copying to trash if a rename involves
14098 a delete. (Bug#964).
14099
141002008-09-20 Eli Zaretskii <eliz@gnu.org>
14101
14102 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
14103 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
14104 frames as well as termcap frames.
14105 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
14106 get_named_tty.
14107
141082008-09-19 Eli Zaretskii <eliz@gnu.org>
14109
14110 * process.c (procfs_system_process_attributes): Fix cmdline in
14111 case /proc/PID/cmdline is empty.
14112
14113 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
14114 x_display_pixel_height.
14115
141162008-09-19 Juanma Barranquero <lekktu@gmail.com>
14117
14118 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
14119
14120 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
14121 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
14122
141232008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
14124
14125 * dispextern.h (struct it): Move line_wrap away from the middle of
14126 bitfields. Move voffset in struct iterator_stack_entry after the
14127 bitfields. Move tab_width near after another short.
14128
141292008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
14130
14131 * frame.h (struct frame): Move alpha from the middle of bitfields.
14132
14133 * window.h (struct window): Move frozen_window_start_p after the
14134 rest of the bitfields to reduce padding.
14135
141362008-09-18 Chong Yidong <cyd@stupidchicken.com>
14137
14138 * xterm.h (x_display_info): Remove `height' and `width' members.
14139
14140 * nsterm.h (ns_display_info): Remove `height' and `width' members.
14141
14142 * w32term.h (w32_display_info): Remove `height', `width',
14143 `height_in', and `width_in' members.
14144
b8ff72fa
SM
14145 * xterm.c (x_display_pixel_height, x_display_pixel_width):
14146 New functions.
aac0c6e3
MR
14147 (x_calc_absolute_position): Use them.
14148 (x_term_init): Omit removed `height' and `width' members.
14149
b8ff72fa
SM
14150 * w32term.c (x_display_pixel_height, x_display_pixel_width):
14151 New functions.
aac0c6e3
MR
14152 (w32_read_socket, x_calc_absolute_position): Use them.
14153 (w32_initialize_display_info, w32_term_init): Omit removed members
14154 of w32_display_info.
14155
b8ff72fa
SM
14156 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
14157 New functions.
14158 (ns_initialize_display_info): Omit removed members of ns_display_info.
aac0c6e3 14159
b8ff72fa
SM
14160 * xterm.c (x_display_pixel_height, x_display_pixel_width):
14161 New functions.
aac0c6e3
MR
14162 (x_calc_absolute_position): Use them.
14163 (x_term_init): Omit removed `height' and `width' members.
14164
14165 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
b8ff72fa
SM
14166 (compute_tip_xy):
14167 * frame.c (x_fullscreen_adjust):
aac0c6e3
MR
14168 * xmenu.c (menu_position_func): Use x_display_pixel_height and
14169 x_display_pixel_width.
14170
141712008-09-18 Kenichi Handa <handa@m17n.org>
14172
14173 * composite.c (fill_gstring_header): Don't check FROM and TO here.
14174 (composition_compute_stop_pos): Fix handling of static composition.
14175 (Fcomposition_get_gstring): Check FROM and TO at first.
14176
141772008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
14178
46e722a9 14179 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
aac0c6e3
MR
14180 mixup (YAILOM).
14181
141822008-09-17 Chong Yidong <cyd@stupidchicken.com>
14183
14184 * indent.c (Fvertical_motion): Use position reported by iterator
14185 instead of PT for determining screen motion (bug#943).
14186
141872008-09-17 Romain Francoise <romain@orebokech.com>
14188
14189 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
14190
141912008-09-17 Kenichi Handa <handa@m17n.org>
14192
14193 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
14194
14195 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
14196 if necessary.
14197
141982008-09-16 Kenichi Handa <handa@m17n.org>
14199
14200 * coding.c (make_conversion_work_buffer): Avoid calling
14201 Fget_buffer_create if it is not necessary.
14202
142032008-09-15 Martin Rudalics <rudalics@gmx.at>
14204
14205 * window.c (Fselect_window): Don't update window_select_count and
14206 use_time when norecord is not nil.
14207
142082008-09-14 Kenichi Handa <handa@m17n.org>
14209
14210 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
14211 specpdl_ptr.
14212
142132008-09-12 Kenichi Handa <handa@m17n.org>
14214
14215 * indent.c (scan_for_column): Don't handle automatic composition
14216 if the current buffer is not associated with a window.
14217
14218 * composite.c (composition_reseat_it): If the current buffer is
14219 not associated with a window, ignore the automatic composition.
14220 (find_automatic_composition): Likewise.
14221
142222008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14223
14224 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
14225 (Fgpm_mouse_stop): Use it.
14226 * termhooks.h (close_gpm): Declare.
14227 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
14228 connection if Gpm_GetEvent fails.
14229
14230 * window.c (set_window_buffer): Always preserve current-buffer.
14231
142322008-09-12 Glenn Morris <rgm@gnu.org>
14233
14234 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
14235
142362008-09-11 Glenn Morris <rgm@gnu.org>
14237
14238 * charset.c (charset-map-path): Doc fix.
14239
142402008-09-10 Kenichi Handa <handa@m17n.org>
14241
14242 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
14243
14244 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
14245 compose a grapheme cluster with the preceding base glyph.
14246
14247 * composite.c (composition_compute_stop_pos): Fix previous change.
14248 Reset cmp_it->id to -1 at first.
14249
142502008-09-10 Glenn Morris <rgm@gnu.org>
14251
14252 * Makefile.in (character.o, chartab.o): Fix config.h typo.
14253
142542008-09-09 Chong Yidong <cyd@stupidchicken.com>
14255
14256 * keyboard.c (read_key_sequence): Reapply translation maps when
14257 switching keyboards.
14258
142592008-09-09 Kenichi Handa <handa@m17n.org>
14260
14261 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
14262 characters.
14263
14264 * composite.c (FORWARD_CHAR): Fix calculation
14265 of (POSITION).pos_byte.
14266 (composition_compute_stop_pos): Limit the search of composition to
14267 at most 500 characters ahead. If we reach the limit or find a
14268 newline, set cmp_it->ch to -2 and return 0.
14269 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
14270
142712008-09-08 Kenichi Handa <handa@m17n.org>
14272
14273 * indent.c (Fvertical_motion): Be sure to set
14274 it_overshoot_expected if it.cmp_it.id is non-negative.
14275
142762008-09-07 Andreas Schwab <schwab@suse.de>
14277
14278 * callproc.c (Fcall_process): Don't hold references to string data
14279 across garbage collection. Move initialisation of new_argv down
14280 to avoid compiler bug.
14281
142822008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14283
14284 * process.c (Fsystem_process_attributes): Doc fix.
14285
142862008-09-07 Chong Yidong <cyd@stupidchicken.com>
14287
14288 * callproc.c (Fcall_process): Canonicalize current directory name.
14289
14290 * xdisp.c (move_it_to): When moving by vpos, ensure that the
14291 iterator advances to the next line if the current line ends in a
14292 continued tab.
14293
142942008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
14295
14296 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
14297 member to point to cmp_from.
14298
14299 * xdisp.c: Doc fix for references to gidx data member.
14300
143012008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14302
14303 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
14304
143052008-09-07 Kenichi Handa <handa@m17n.org>
14306
14307 * composite.c (FORWARD_CHAR): Check STOP after
14308 incrementing (POSITION).pos.
14309
143102008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14311
14312 * process.c (Fsystem_process_attributes): Doc fix.
14313
143142008-09-06 Chong Yidong <cyd@stupidchicken.com>
14315
14316 * keyboard.c (Ftop_level): Doc fix.
14317
143182008-09-06 Eli Zaretskii <eliz@gnu.org>
14319
14320 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
14321 minibuffer, don't let lower part of menu invade the echo area.
14322
14323 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
14324 "char *q" to access menu text and advance through it. Revert the
14325 change that displayed ">" instead of ASCII character 0x10.
14326
143272008-09-05 Eli Zaretskii <eliz@gnu.org>
14328
14329 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
14330 toggle boxes and radio buttons on MS-DOS as well.
14331
143322008-09-05 Kenichi Handa <handa@m17n.org>
14333
14334 * composite.c (autocmp_chars): Check lookback count.
14335 (composition_compute_stop_pos): Set cmp_it->lookback.
14336 (composition_reseat_it): Check lookback count.
14337 (struct position_record): New struct.
14338 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
14339 (find_automatic_composition): New function.
14340 (composition_adjust_point): Use find_automatic_composition.
14341
14342 * dispextern.h (struct composition_it): New member lookback.
14343
143442008-09-02 Chong Yidong <cyd@stupidchicken.com>
14345
14346 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
14347 if moving by a single line.
14348
143492008-09-02 Andreas Schwab <schwab@suse.de>
14350
14351 * xterm.c (x_delete_display): Fix merge error.
14352
14353 * fileio.c (Fexpand_file_name): Remove unused variables.
14354
143552008-09-02 Eli Zaretskii <eliz@gnu.org>
14356
14357 * fileio.c (Fexpand_file_name): Copy argument `name' into local
14358 storage on all platforms, not just on DOS_NT.
14359
143602008-09-02 Jason Rumney <jasonr@gnu.org>
14361
b8ff72fa
SM
14362 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
14363 Ensure mouse is not grabbed after menu is finished.
aac0c6e3
MR
14364
143652008-09-01 Chong Yidong <cyd@stupidchicken.com>
14366
14367 * xfaces.c (Finternal_set_alternative_font_family_alist)
14368 (Finternal_set_alternative_font_registry_alist): Properly copy
14369 entire alist structure.
14370
143712008-09-01 Kenichi Handa <handa@m17n.org>
14372
d66c0241 14373 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
aac0c6e3 14374 representative chars of the script is a vector.
d66c0241
JB
14375 (ftfont_list): Handle the case where the representative chars of
14376 the script is a vector.
aac0c6e3
MR
14377
14378 * character.c (syms_of_character): Docstring of
14379 script-representative-chars fixed.
14380
143812008-08-31 Eli Zaretskii <eliz@gnu.org>
14382
14383 * msdos.c (BUILD_CHAR_GLYPH): New macro.
14384 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
14385 the menu. Allocate larger buffer for `text', to account for
14386 possible ^C characters.
14387
143882008-08-31 Martin Rudalics <rudalics@gmx.at>
14389
14390 * xdisp.c (prepare_menu_bars): Don't call
14391 Vwindow_size_change_functions with arg Qt.
14392
143932008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
14394
14395 * font.h (font_range):
14396 * fileio.c (report_file_error):
46e722a9
SM
14397 * composite.c (composition_update_it): Yet another int/Lisp_Object
14398 mixup (YAILOM).
aac0c6e3
MR
14399
144002008-08-30 Glenn Morris <rgm@gnu.org>
14401
14402 * data.c (Fmake_variable_frame_local): Doc fix.
14403
14404 * frame.c (Fmodify_frame_parameters): Doc fix.
14405
144062008-08-30 Eli Zaretskii <eliz@gnu.org>
14407
14408 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
14409 needed by GetTokenInformation.
14410 (w32_system_process_attributes): Check return values of all system
14411 APIs.
14412
14413 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
14414 only when the state changes.
14415 (IT_update_begin, IT_update_end): Add termscript trace.
14416
14417 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
14418 clipboard is unavailable. Set dst to NULL if it doesn't point to
14419 malloc'ed data.
14420 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
14421 passing random values to xfree.
14422
14423 * dispnew.c (init_display): Set `tty's association in frame's
b8ff72fa 14424 parameters alist to the name of the terminal device, if that is known.
aac0c6e3
MR
14425
144262008-08-29 Jason Rumney <jasonr@gnu.org>
14427
14428 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
14429
144302008-08-29 Eli Zaretskii <eliz@gnu.org>
14431
14432 * composite.c (fill_gstring_body): Avoid compiler warnings.
14433
14434 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
14435 LGLYPH_SET_CODE to avoid compiler warnings.
14436
2ae37cf0 14437 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
aac0c6e3
MR
14438
14439 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
14440
14441 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
14442 LGLYPH_SET_CODE.
14443
144442008-08-29 Kenichi Handa <handa@m17n.org>
14445
14446 * fileio.c (report_file_error): Don't downcase the first character
14447 of errstring if it is still unibyte.
14448
144492008-08-29 Kenichi Handa <handa@m17n.org>
14450
14451 These changes are to re-implement the automatic composition so
14452 that it doesn't use text properties.
14453
14454 * Makefile.in (ftfont.o): Depend on composite.h.
14455 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
14456
14457 * character.h (Vunicode_category_table): Extern it.
14458
14459 * character.c (Vunicode_category_table): New variable.
14460 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
14461
14462 * chartab.c (optimize_sub_char_table): Perform more greedy
14463 optimization.
14464
b8ff72fa
SM
14465 * composite.h (enum composition_method):
14466 Delete COMPOSITION_WITH_GLYPH_STRING.
aac0c6e3
MR
14467 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
14468 (Vcomposition_function_table): Extern it.
14469 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
14470 (composition_gstring_put_cache, composition_gstring_from_id)
14471 (composition_gstring_p, composition_gstring_width)
14472 (composition_compute_stop_pos, composition_reseat_it)
14473 (composition_update_it, composition_adjust_point): Extern them.
14474 (Fcomposition_get_gstring): EXFUN it.
14475
d66c0241 14476 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
aac0c6e3
MR
14477 (Vcomposition_function_table)
14478 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
b8ff72fa
SM
14479 (gstring_hash_table, gstring_work, gstring_work_headers):
14480 New variables.
aac0c6e3
MR
14481 (gstring_lookup_cache, composition_gstring_put_cache)
14482 (composition_gstring_from_id, composition_gstring_p)
14483 (composition_gstring_width, fill_gstring_header)
14484 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
14485 (composition_reseat_it, composition_update_it)
b8ff72fa 14486 (composition_adjust_point, Fcomposition_get_gstring): New functions.
aac0c6e3
MR
14487 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
14488 and gstring_work_headers. DEFVAR_LISP composition-function-table.
a73f9c9d 14489 Defsubr composition_get_gstring.
aac0c6e3
MR
14490
14491 * dispextern.h (struct glyph): New union u.cmp. Delete the member
14492 cmp_id.
14493 (struct glyph_string): Delete the member gidx. New members
14494 cmp_id, cmp_from, and cmp_to.
14495 (enum it_method): Delete GET_FROM_COMPOSITION.
14496 (struct composition_it): New struct.
14497 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
14498 Delete c, len, cmp_id, cmp_len in u.comp.
14499
14500 * font.h (enum lgstring_indices): Delete it.
b8ff72fa 14501 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
aac0c6e3 14502 (enum lglyph_indices): Likewise.
b8ff72fa 14503 (font_range): Adjust extern.
aac0c6e3
MR
14504 (font_fill_lglyph_metrics): Extern it.
14505
14506 * font.c (QCf): New variable.
14507 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
14508 (font_prepare_composition): Delete this function.
14509 (font_range): Type and arguments changed.
14510 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
14511 (font_fill_lglyph_metrics): New function.
b8ff72fa 14512 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
aac0c6e3 14513 (syms_of_font): DEFSYM QCf. Delete defsubr for
b8ff72fa
SM
14514 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
14515 Defsubr Sfont_shape_gstring.
aac0c6e3
MR
14516
14517 * fontset.h (font_for_char): Extern it.
14518
14519 * fontset.c (font_for_char): New function.
14520
14521 * ftfont.c: Include composite.h.
14522 (ftfont_resolve_generic_family): Add langset "en" to pattern.
b8ff72fa 14523 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
aac0c6e3
MR
14524
14525 * indent.c: Include composite.h and dispextern.h.
14526 (check_composition): Delete this function.
14527 (scan_for_column): Handle composition by
14528 composition_compute_stop_pos, composition_reseat_it, and
14529 composition_update_it.
14530 (compute_motion): Likewise.
14531 (Fvertical_motion): Fix checking of composition.
14532
14533 * keyboard.c (adjust_point_for_property): Check composition by
14534 composition_adjust_point.
14535
b8ff72fa 14536 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
aac0c6e3
MR
14537 struct glyph_string.
14538
b8ff72fa
SM
14539 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
14540 (append_composite_glyph): Adjust for the change of struct it and
aac0c6e3
MR
14541 struct glyph.
14542 (produce_composite_glyph): Likewise.
14543
b8ff72fa
SM
14544 * w32term.c (x_draw_composite_glyph_string_foreground):
14545 Adjust for the change of struct glyph_string.
aac0c6e3
MR
14546 (x_draw_glyph_string): Likewise.
14547
14548 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
14549 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
14550
14551 * xdisp.c: Include font.h.
14552 (it_props): Delete the entry for Qauto_composed.
14553 (init_iterator): Initialize it->cmp_it.id to -1.
14554 (compute_stop_pos): Call composition_compute_stop_pos.
b8ff72fa 14555 (face_before_or_after_it_pos): Adjust for the change of struct it.
aac0c6e3
MR
14556 (handle_auto_composed_prop): Delete it.
14557 (handle_composition_prop): Handle only static composition.
14558 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
14559 from xassert. Initialize it->cmp_it.stop_pos.
b8ff72fa 14560 (push_it): Adjust for the change of struct it.
aac0c6e3
MR
14561 (pop_it): Likewise.
14562 (get_next_element): Delete next_element_from_composition.
14563 (CHAR_COMPOSED_P): New macro.
14564 (get_next_display_element): For automatic composition, get a face
14565 from the font in the glyph-string.
14566 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
b8ff72fa 14567 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
aac0c6e3
MR
14568 (next_element_from_string): Check if the character at the current
14569 position is composed by CHAR_COMPOSED_P.
14570 (next_element_from_buffer): Likewise.
d66c0241
JB
14571 (next_element_from_composition): Adjust for the change of struct it.
14572 Update it->cmp_it.
b8ff72fa
SM
14573 (dump_glyph): Adjust for the change of struct glyph.
14574 (fill_composite_glyph_string): Adjust for the change of struct
aac0c6e3
MR
14575 it and struct glyph. Don't handle automatic composition here.
14576 (fill_gstring_glyph_string): New function.
14577 (x_get_glyph_overhangs): Handle automatic composition.
b8ff72fa 14578 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
aac0c6e3
MR
14579 (BUILD_GSTRING_GLYPH_STRING): New macro.
14580 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
14581 automatic composition.
b8ff72fa 14582 (append_composite_glyph): Adjust for the change of struct it and
aac0c6e3 14583 struct glyph.
b8ff72fa 14584 (x_produce_glyphs): Adjust for the change of struct it.
aac0c6e3 14585
b8ff72fa 14586 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
aac0c6e3
MR
14587 the change of struct glyph_string.
14588 (x_draw_glyph_string): Likewise.
14589
145902008-08-29 Glenn Morris <rgm@gnu.org>
14591
14592 * buffer.c (word-wrap): Doc fix.
14593 * xdisp.c (truncate-partial-width-windows): Doc fix.
14594 Increase default to 50.
14595
145962008-08-29 Chong Yidong <cyd@stupidchicken.com>
14597
14598 * xdisp.c (update_tool_bar_unwind): New function.
14599 (update_tool_bar): Temporarily set selected frame before building
14600 tool-bar items.
14601
146022008-08-28 Michael Albinus <michael.albinus@gmx.de>
14603
14604 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
14605 snprintf, respectively.
14606 (xd_append_arg): Convert strings with Fstring_make_unibyte.
14607
146082008-08-28 Chong Yidong <cyd@stupidchicken.com>
14609
14610 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
14611 LDFLAGS to GNUstep CC invocation.
14612
146132008-08-27 Chong Yidong <cyd@stupidchicken.com>
14614
14615 * indent.c (Fvertical_motion): Revert last change. Handle the
14616 general case where we are moving forward, and PT spans multiple
14617 screen lines.
14618
14619 * eval.c (find_handler_clause): Temporarily increase
14620 max-lisp-eval-depth while printing the backtrace buffer, to
14621 guarantee that help-mode code can run.
14622
146232008-08-27 Eli Zaretskii <eliz@gnu.org>
14624
14625 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
14626 colors under -rv.
14627 (IT_set_frame_parameters): Don't swap foreground and background
14628 colors if `(reverse . t)' is present in the frame properties.
14629 (internal_terminal_init): Call init_frame_faces only for the
14630 initial frame.
14631
146322008-08-27 Andreas Schwab <schwab@suse.de>
14633
14634 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
14635
146362008-08-27 Andreas Schwab <schwab@suse.de>
14637
14638 * search.c (search_buffer): Set char_base to zero only at the end.
14639
146402008-08-27 Kenichi Handa <handa@m17n.org>
14641
b8ff72fa 14642 * fileio.c (report_file_error): Fix handling of multibyte error string.
aac0c6e3
MR
14643
146442008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
14645
14646 * xterm.c (x_term_init): Temporarily hide the partially
14647 initialized terminal while calling vendor-specific-keysyms.
14648
146492008-08-26 Eli Zaretskii <eliz@gnu.org>
14650
14651 * msdos.c (internal_terminal_init): Most initializations done only
14652 once, especially initial_screen_colors[] and termscript open.
14653
146542008-08-26 Chong Yidong <cyd@stupidchicken.com>
14655
14656 * eval.c (Fcondition_case): Doc fix.
14657
14658 * widgetprv.h (EmacsFramePart): Change font member to the new font
14659 struct.
14660
14661 * widget.c: Include character.h and font.h for XSETFONT.
14662 (setup_frame_gcs): Compute X font id from font struct, just once.
14663
146642008-08-26 Eli Zaretskii <eliz@gnu.org>
14665
14666 * term.c (get_named_tty): Fix last change.
14667
146682008-08-26 Chong Yidong <cyd@stupidchicken.com>
14669
14670 * indent.c (Fvertical_motion): If moving forward starting from a
b8ff72fa 14671 multi-line string, move the iterator to the last line of that string.
aac0c6e3
MR
14672
146732008-08-25 Eli Zaretskii <eliz@gnu.org>
14674
14675 * frame.c (do_switch_frame): Mark previously displayed frame as
14676 obscured for FRAME_MSDOS_P frames as well.
14677
146782008-08-24 Eli Zaretskii <eliz@gnu.org>
14679
14680 * frame.c (make_terminal_frame): Initialize f->terminal,
14681 f->terminal->reference_count, and scroll bars on MS-DOS as well.
14682 Set the top frame to newly created frame.
14683 (Fmake_terminal_frame): Reuse the_only_display_info.
14684
14685 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
14686 estimating available memory.
14687
b97439ce 146882008-08-23 David Reitter <david.reitter@gmail.com>
aac0c6e3
MR
14689
14690 * nsterm.m (ns_draw_window_cursor): Don't call
14691 NSDisableScreenUpdates and NSEnableScreenUpdates on
14692 non-NS_IMPL_COCOA systems.
14693
146942008-08-23 Andreas Schwab <schwab@suse.de>
14695
14696 * process.c (procfs_system_process_attributes): Fix use of
14697 uninitialized variables.
14698
146992008-08-23 Eli Zaretskii <eliz@gnu.org>
14700
14701 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
14702
14703 * dispnew.c (init_display): Remove MS-DOS specific conditions for
14704 calling tty-set-up-initial-frame-faces.
14705
b8ff72fa
SM
14706 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
14707 Allow MSDOS frames along with X frames.
aac0c6e3
MR
14708
14709 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
14710 addition to output_termcap.
14711
14712 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
14713
14714 * termchar.h (FRAME_TTY): Support output_msdos_raw.
14715 (struct tty_display_info) [MSDOS]: Add fields related to mouse
14716 highlight.
14717
14718 * process.c [!subprocesses]: Define QCname.
14719 (syms_of_process): Intern and staticpro it.
14720
14721 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
b8ff72fa
SM
14722 Adjust for changes in encoding/decoding routines.
14723 Use encode_coding_object and decode_coding_object instead of
aac0c6e3
MR
14724 encode_coding and decode_coding.
14725
b8ff72fa 14726 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
aac0c6e3
MR
14727
14728 * dosfns.c: Include frame.h before termhooks.h.
14729 (dos_cleanup): Use CURTTY ()->termscript instead of a global
14730 variable termscript.
14731
14732 * s/msdos.h (USER_FULL_NAME): Define.
14733 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
14734
14735 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
14736 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
14737 pw->pw_gecos.
14738
14739 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
14740 SELECTED_FRAME as additional (1st) argument.
14741 (tty_read_avail_input): Handle output_msdos_raw in
14742 addition to output_termcap.
14743
14744 * msdos.c: Include frame.h before termhooks.h.
14745 (mouse_on, mouse_off, mouse_moveto, mouse_init)
14746 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
14747 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
14748 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
14749 (IT_set_terminal_modes, IT_reset_terminal_modes)
14750 (IT_set_frame_parameters): Use tty->termscript instead of a global
14751 variable termscript.
14752 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
14753 global variable terminal_coding. Don't refer to
14754 Vnonascii_translation_table.
14755 (internal_terminal_init): Set Vwindow_system in current_kboard.
14756 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
14757 Announce date and time of session start, if termscript is open.
14758 Don't zero out the_only_display_info (it is done in
b8ff72fa
SM
14759 term.c:init_tty). Open termscript only of not already open.
14760 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
aac0c6e3
MR
14761 here instead of dos_ttraw. Don't initialize display if this is an
14762 initial tty. Don't set FRAME_FONT.
14763 (Vwindow_system_version): Bump to 23.
14764 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
14765 is available, set up mouse_position_hook.
14766 (dos_ttraw, IT_set_terminal_modes): If called with initial
14767 terminal, do nothing.
14768 (IT_set_frame_parameters): Handle the Qtty_type frame
14769 parameter by calling internal_terminal_init.
14770 (dos_set_window_size, show_mouse_face)
14771 (clear_mouse_face, IT_note_mode_line_highlight)
14772 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
14773 (dos_rawgetc): Use tty_display_info instead of x_display_info.
14774 (initialize_msdos_display): New function.
14775 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
14776 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
14777 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
14778 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
b8ff72fa 14779 Accept additional argument: a pointer to a frame. Update all callers.
aac0c6e3
MR
14780 (request_sigio, unrequest_sigio): Don't define, now defined on
14781 sysdep.c.
14782 (IT_write_glyphs): Rewrite to use encode_terminal_code.
14783
14784 * term.c [MSDOS]: Include msdos.h.
14785 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
14786 conditional to DOS_NT. Allow only one call to this function in a
14787 session. Don't allocate a new struct tty_display_info; instead,
14788 reuse the_only_display_info. Call get_tty_size to get screen
14789 dimensions. Call init_baud_rate to set bad_rate.
14790 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
14791 (Fsuspend_tty) [MSDOS]: Don't close input and output.
b8ff72fa 14792 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
aac0c6e3
MR
14793 (get_tty_terminal, get_named_tty, Ftty_type)
14794 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
14795 output_termcap.
b8ff72fa
SM
14796 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
14797 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
2ae37cf0 14798 only when subprocesses are supported.
aac0c6e3
MR
14799
14800 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
14801 f->output_data.x.
14802 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
14803 terminal devices.
14804
5582fbc7 14805 * msdos.h: Remove definition of struct x_display_info and struct
aac0c6e3
MR
14806 x_output.
14807 (FRAME_FONT): Use output_data.tty.
14808 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
b8ff72fa
SM
14809 (struct x_display_info): Rename from display_info. Update all users in
14810 msdos.c.
aac0c6e3 14811 (struct x_output): Remove background_pixel and foreground_pixel.
b8ff72fa 14812 (the_only_display_info): Rename from the_only_x_display.
aac0c6e3
MR
14813 (dos_ttraw): Update prototype.
14814
14815 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
14816 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
14817
148182008-08-23 Jason Rumney <jasonr@gnu.org>
14819
14820 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
14821 (fn_TIFFSetDirectory): New library function used.
14822 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
14823 (tiff_load): Use :index to select among multiple images. Set count
14824 property when multiple images exist.
14825 (gif_format): Use :index, not :image.
14826
148272008-08-23 Chong Yidong <cyd@stupidchicken.com>
14828
14829 * xdisp.c (try_scrolling): Check INT_MAX instead of
14830 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
14831 to obtain INT_MAX.
14832
148332008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
14834
14835 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
14836
148372008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
14838
14839 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
14840 GNUstep library location.
14841
148422008-08-21 Chong Yidong <cyd@stupidchicken.com>
14843
14844 * xfaces.c (x_update_menu_appearance): Check validity of menu font
14845 before using it.
14846
14847 * puresize.h (BASE_PURESIZE): Increase to 1250000.
14848
148492008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
14850
14851 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
14852 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
14853 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
14854 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
14855 (EmacsApp-cursor_blink_handler): Remove declaration.
14856 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
14857 match 01 Feb 2008 changes in xterm.c.
14858 (ns_read_socket): Add cast to avoid warning.
14859 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
14860 GNUstep.
14861
148622008-08-20 Chong Yidong <cyd@stupidchicken.com>
14863
14864 * xselect.c (x_get_foreign_selection): Return nil if desired
14865 selection could not be obtained, instead of signalling an error.
14866
148672008-08-20 David Reitter <david.reitter@gmail.com>
14868
14869 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
14870 * nsterm.m: Remove ns-specific code for cursor blinking.
14871 (ns_draw_window_cursor): Clear cursor properly rather than
14872 redrawing the area. Respect width of bar cursors.
14873 These changes enable the use of generic blink-cursor-mode and
14874 generic cursor types in NS and support smooth cursor movements (do
14875 not blink off after command).
14876 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
14877 Nextstep, too.
14878
148792008-08-19 Kenichi Handa <handa@m17n.org>
14880
14881 * font.c (Vfont_log_deferred): New variable.
14882 (font_add_log): Check Vfont_log_deferred.
14883 (font_deferred_log): New function.
14884
14885 * font.h (font_deferred_log): Extern it.
14886
14887 * fontset.c (reorder_font_vector): Use encoding charset of fonts
14888 for sorting.
14889 (face_for_char): Use deferred log.
14890
148912008-08-18 Kenichi Handa <handa@m17n.org>
14892
14893 * fontset.c (face_for_char): Add font log.
14894
14895 * font.c (font_add_log): Add the font properties :script, :lang,
14896 and :otf in the log.
14897
148982008-08-17 Chong Yidong <cyd@stupidchicken.com>
14899
14900 * xdisp.c: Remove dead code.
14901 (handle_invisible_prop, next_overlay_string): Defer call to
14902 setup_for_ellipsis.
14903 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
14904
149052008-08-15 Chong Yidong <cyd@stupidchicken.com>
14906
14907 * xfaces.c (lookup_derived_face): Properly handle possible zero
14908 return value of get_lface_attributes.
14909 (merge_faces): Don't tell lookup_derived_face to signal an error
14910 if face is not found.
14911
14912 * dired.c (Fdirectory_files): Doc fix.
14913
14914 * process.c (make_process): Initialize kill_without_query struct
14915 member.
14916
149172008-08-15 Eli Zaretskii <eliz@gnu.org>
14918
14919 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
14920 Alternative calculation of totphys for Visual Studio 6.
14921
14922 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
14923
14924 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
14925 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
14926 All users changed.
14927 (stat): Only root directory passed to GetDriveType. Allow RAM
14928 disk as well as local fixed disk when w32-get-true-file-attributes
14929 is set to `local'.
14930 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
14931 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
14932 (w32_cached_id, w32_add_to_cache): New functions.
14933 (get_name_and_id): Look account names in the cache before calling
14934 lookup_account_sid.
14935 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
14936 New initialization flags.
14937 (globals_of_w32): Initialize them to zero.
14938 (w32_system_process_attributes): Use w32_cached_id and
14939 w32_add_to_cache.
14940
149412008-08-14 Lawrence Mitchell <wence@gmx.li>
14942
14943 * lread.c (Fread_char, Fread_char_exclusive): If no character
14944 event is read before timeout is reached, return nil, rather than
14945 converting to a number.
14946
149472008-08-14 Chong Yidong <cyd@stupidchicken.com>
14948
14949 * fns.c (use_dialog_box): Doc fix.
14950
14951 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
14952 on OS X.
14953
149542008-08-13 Chong Yidong <cyd@stupidchicken.com>
14955
14956 * frame.c (Qns_parse_geometry): New var.
14957 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
14958
149592008-08-11 Chong Yidong <cyd@stupidchicken.com>
14960
14961 * xdisp.c (x_produce_glyphs): Handle the case when font has no
14962 space character in calculating tabs.
14963
149642008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
14965
14966 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
14967
149682008-08-10 Glenn Morris <rgm@gnu.org>
14969
14970 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
14971 silence gcc "limited range of data type" warnings in some
14972 make_fixnum_or_float calls.
14973
149742008-08-09 Eli Zaretskii <eliz@gnu.org>
14975
14976 * w32.c (w32_system_process_attributes): If the process does not
14977 exist, return nil.
14978
14979 * w32.c: Include thelp32.h, psapi.h and coding.h.
14980 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
14981 declarations.
14982 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
14983 (Process32Next_Proc): New typedefs.
14984 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
14985 (g_b_init_process32_next, g_b_init_open_thread_token)
14986 (g_b_init_impersonate_self, g_b_init_revert_to_self)
14987 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
14988 (g_b_init_get_process_working_set_size)
14989 (g_b_init_global_memory_status_ex): New static variables.
14990 (globals_of_w32): Initialize them.
14991 (create_toolhelp32_snapshot, process32_first, process32_next)
14992 (open_thread_token, impersonate_self, revert_to_self)
14993 (get_process_memory_info, get_process_working_set_size)
14994 (global_memory_status, global_memory_status_ex): New wrapper
14995 functions.
14996 (w32_list_system_processes, w32_system_process_attributes)
14997 (enable_privilege, restore_privilege, ltime, process_times):
14998 New functions.
14999 (convert_time_raw): New function.
15000 (convert_time): Remove conversion of FILETIME into time in 100
15001 nsec units, call convert_time_raw instead.
15002
15003 * process.h (w32_list_system_processes, w32_system_process_attributes):
15004 Add prototypes.
15005 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
15006 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
15007 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
15008 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
15009
15010 * process.c (Fsystem_process_attributes): Doc fix.
15011
150122008-08-08 Chong Yidong <cyd@stupidchicken.com>
15013
15014 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
15015 a continued multi-char glyph; if so, advance to the actual glyph.
15016
150172008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
15018
15019 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
15020
15021 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
15022 (.m.o): Use it.
15023 * config.in: Regenerate.
15024
150252008-08-07 Chong Yidong <cyd@stupidchicken.com>
15026
15027 * xdisp.c (redisplay_window): Revert last change.
15028 (try_window): Check bottom scroll margin too.
15029
150302008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
15031
15032 * config.in: Regenerate.
15033
15034 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
15035 -list-load-path-shadows'.
15036 (nsgui.h): Reduce number of things depending on it.
15037
150382008-08-06 Chong Yidong <cyd@stupidchicken.com>
15039
15040 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
15041 instead of window-end which does the wrong thing at eob.
15042 (try_cursor_movement): Minor optimization.
15043 (redisplay_window): If scroll margin is defined, don't assume
15044 window doesn't need scrolling.
15045
150462008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
15047
15048 * config.in: Regenerate.
15049
15050 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
15051 (mostlyclean): Don't delete *.d under NS.
15052
15053 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
15054
150552008-08-06 Kenichi Handa <handa@m17n.org>
15056
15057 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
15058
150592008-08-06 Andreas Schwab <schwab@suse.de>
15060
15061 * config.in: Regenerate.
15062
150632008-08-05 Chong Yidong <cyd@stupidchicken.com>
15064
15065 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
15066 forcing a window start.
15067
15068 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
15069 (auto_save_1): Update modtime when auto-save-list-file-name is on.
15070
150712008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
15072
15073 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
15074 argument.
15075
150762008-08-05 Juanma Barranquero <lekktu@gmail.com>
15077
15078 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
15079 <scroll-down-aggressively, before-change-functions>:
15080 <after-change-functions>: Reflow docstrings.
15081
150822008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
acd0102a 15083 Ken Raeburn <raeburn@gnu.org>
aac0c6e3
MR
15084
15085 Dock menu customization, based on a patch by Ken Raeburn, plus some
15086 other fixes.
15087 * nsmenu.m (dockMenu): New variable.
15088 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
15089
15090 * nsterm.h (dockMenu): Declare.
15091
15092 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
15093 (ns_term_init): Initialize dockMenu.
15094 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
15095 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
15096 left.
15097
15098 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
15099
151002008-08-04 Chong Yidong <cyd@stupidchicken.com>
15101
15102 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
15103
15104 * config.in: Regenerate.
15105
151062008-08-04 Seiji Zenitani <zenitani@mac.com>
15107
15108 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
15109
151102008-08-04 Chong Yidong <cyd@stupidchicken.com>
15111
15112 * nsterm.h (find_and_call_menu_selection): Fix prototype.
15113
151142008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
15115
15116 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
15117
15118 * keyboard.h: Comment an #endif.
15119
15120 * lisp.h (have_menus_p): Adjust comment.
15121
15122 * menu.c (find_and_return_menu_selection): Fix comparison with
15123 client_data.
15124
15125 * nsmenu.m (popup_activated_flag): New variable.
15126 (popup_activated): New function.
15127 (menu-or-popup-active-p): New exported lisp definition.
15128 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
15129 when popup done.
15130 (ns_popup_dialog): Set popup_activated_flag.
15131
15132 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
15133 version for GNUstep (handled by conditional typedef in nsterm.m).
15134 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
15135 in rgb.txt).
15136
15137 * process.c (init_process): Use DARWIN_OS, not DARWIN.
15138
15139 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
15140
15141 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
15142
15143 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
15144 shortcircuit if popup_activated like GTK and X toolkit.
15145
15146 * m/inter386.h: Change DARWIN to DARWIN_OS.
15147
15148 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
15149 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
bba3e508
SM
15150 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood.
15151 Expand comment on NO_SOCK_SIGIO.
aac0c6e3
MR
15152
151532008-08-03 Chong Yidong <cyd@stupidchicken.com>
15154
15155 * nsterm.m (windowDidResize): Remove stopModal call.
15156
151572008-08-03 Andreas Schwab <schwab@suse.de>
15158
15159 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
15160 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
15161
151622008-08-02 Chong Yidong <cyd@stupidchicken.com>
15163
15164 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
15165 Don't use uninitialized pointer variable when using getrlimit.
15166
151672008-08-02 Jason Rumney <jasonr@gnu.org>
15168
15169 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
15170
151712008-08-02 Eli Zaretskii <eliz@gnu.org>
15172
15173 * alloc.c (NSTATICS): Bump to 0x640.
15174
15175 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
15176
15177 * lisp.h: Add prototype for directory_files_internal.
15178
15179 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
15180 New functions.
15181 (syms_of_process): Defsubr them. Add initializations for various
15182 Q* symbols used in procfs_system_process_attributes.
15183 (procfs_list_system_processes, procfs_system_process_attributes)
15184 [HAVE_PROCFS]: New functions.
15185 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
15186 (procfs_get_total_memory): New functions.
15187
151882008-08-01 Juanma Barranquero <lekktu@gmail.com>
15189
15190 * xfaces.c (Fx_load_color_file): Fix previous change;
15191 it is #ifdef WINDOWSNT, not WINDOWS_NT.
15192
151932008-08-01 Michael Albinus <michael.albinus@gmx.de>
15194
15195 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
15196
151972008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
15198
15199 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
15200
152012008-08-01 Chong Yidong <cyd@stupidchicken.com>
15202
15203 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
15204
15205 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
15206 define NSApplicationDelegateReplySuccess.
15207 (EmacsView -converstationIdentifier): Use long instead of
15208 NSInteger for GNUstep, since it doesn't have NSInteger.
15209
15210 * xmenu.c: Revert last change.
15211
15212 * keyboard.h: Fix last change.
15213
152142008-08-01 Juanma Barranquero <lekktu@gmail.com>
15215
15216 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
15217 on Windows.
15218
152192008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
15220
15221 Warning clearing and clean-up in NS port.
15222 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
15223 Add prototypes.
15224 * nsgui.h (FACE_DEFAULT): Remove, unused.
15225 (XGCValues): Change colors to unsigned long.
15226 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
15227 nsterm.m.
15228 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
15229 (ns_list_fonts): Remove, unused.
15230 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
15231 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
15232 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
15233 (nsfont_draw): Compare face colors to 0, not nil.
15234 * nsmenu.m (struct widget_value): Drop unneeded declaration.
15235 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
15236 (-addSubmenuWithTitle:): Use NSMenuItem class.
15237 (ns_popup_menu): Use NO, not NULL, for enabled setting.
15238 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
15239 (ns_clip_to_row): Make gc arg a BOOL.
15240 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
15241 ns_clip_to_row() call.
15242 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
15243 used). Cast FRAME_FONT assignments.
15244 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
15245 (ns_string_to_lispmod): Change arg to const char.
15246 (ns_term_init): Use NSMenuItem class.
15247 (EmacsApp -openFile:): Move to different section of file.
15248 (EmacsApp -application:openFiles:): Don't return a value, call
15249 -replyToOpenOrPrint:.
15250 (EmacsView -keyDown:): Fix up cast.
15251 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
15252 (EmacsView -menuDown:): Cast tag in call to
15253 find_and_call_menu_selection().
15254 (ns_list_fonts): Remove, unused.
15255 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
15256 (ns_fontname_to_xlfd): Make static.
15257 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
15258 Remove prototypes (now in keyboard.h).
15259 (next_menubar_widget_id): Remove, unused.
15260 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
15261 Remove prototypes (now in keyboard.h).
15262 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
15263
152642008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
15265
15266 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
15267 (floatfns.o): Depend on syssignal.h.
15268 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
15269
15270 * systty.h: Fix previous change that removed BSD_TERMIOS.
15271 Add comments to #ifdefs.
15272
152732008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
15274
15275 * w32fns.c (w32-load-color-file): Remove.
15276 (x-open-connection): Use renamed Fx_load_color_file.
15277 * xfaces.c (x-load-color-file): Add.
15278 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
15279 Emacs.clr.
15280 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
15281
152822008-07-31 Michael Albinus <michael.albinus@gmx.de>
15283
15284 * dbusbind.c (Fdbus_call_method_asynchronously)
15285 (Fdbus_method_error_internal): New defuns.
15286 (xd_read_message): Handle also reply messages.
15287 (Vdbus_registered_functions_table): Extend docstring.
15288
152892008-07-31 Juanma Barranquero <lekktu@gmail.com>
15290
15291 * keyboard.c (gobble_input): Fix previous change.
15292
152932008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
15294
15295 * bitmaps/README:
15296 * xfns.c:
15297 * termcap.c:
15298 * term.c:
15299 * syswait.h:
15300 * systty.h:
15301 * systime.h:
15302 * syssignal.h:
15303 * sysdep.c:
15304 * process.h:
15305 * process.c:
15306 * print.c:
15307 * ndir.h:
15308 * lread.c:
15309 * keyboard.c:
15310 * getpagesize.h:
15311 * floatfns.c:
15312 * fileio.c:
15313 * emacs.c:
15314 * doc.c:
15315 * dispnew.c:
15316 * dired.c:
15317 * data.c:
15318 * callproc.c:
15319 * buffer.c:
15320 * README:
15321 * Makefile.in:
15322 * s/template.h:
15323 * s/msdos.h:
15324 * m/vax.h: Remove VMS support.
15325 * s/vms.h:
15326 * vlimit.h:
15327 * uaf.h:
15328 * temacs.opt:
15329 * param.h:
15330 * ioctl.h: Remove file.
15331
153322008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
15333
15334 * s/ms-w32.h (MULTI_KBOARD): Remove.
15335 * xterm.c:
15336 * xselect.c:
15337 * xfns.c:
15338 * window.c:
15339 * w32term.c:
15340 * w32fns.c:
15341 * terminal.c:
15342 * termhooks.h:
15343 * term.c:
15344 * sysdep.c:
15345 * keyboard.h:
15346 * keyboard.c:
15347 * frame.h:
15348 * frame.c:
15349 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
15350 * config.in: Regenerate.
15351
153522008-07-30 Jason Rumney <jasonr@gnu.org>
15353
15354 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
15355
15356 * w32font.c (w32font_encode_char): Leave as unicode if in range.
15357 (w32font_open_internal): Get unicode version of textmetrics.
15358 Don't enable or disable glyph indices here.
15359 (w32font_open): Disable use of glyph indices.
15360
15361 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
15362
153632008-07-30 Chong Yidong <cyd@stupidchicken.com>
15364
15365 * minibuf.c (Vread_buffer_function): Doc fix.
15366
153672008-07-30 John Paul Wallington <jpw@pobox.com>
15368
15369 * minibuf.c (read_buffer_completion_ignore_case): New var.
15370 (Fread_buffer): Use it.
15371
153722008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
15373
15374 * systty.h (sensemode): Remove empty #if. Remove reference to
15375 BSD_TERMIOS, unused.
15376
15377 * sysdep.c: Remove reference to DGUX.
15378 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
15379
15380 * config.in: Regenerate.
15381
153822008-07-30 Jason Rumney <jasonr@gnu.org>
15383
15384 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
15385
153862008-07-29 Jason Rumney <jasonr@gnu.org>
15387
15388 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
15389 is populated.
15390 (uniscribe_encode_char): Always use uniscribe.
15391 Avoid using context if cache is populated.
15392
153932008-07-29 Jan Djärv <jan.h.d@swipnet.se>
15394
15395 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
15396 open menu.
15397
15398 * gtkutil.c (menu_nav_ended): Remove.
15399 (create_menus): Remove signal connect for menu_nav_ended.
15400
154012008-07-28 Chong Yidong <cyd@stupidchicken.com>
15402
15403 * xdisp.c (redisplay_window): Check return value of
15404 compute_window_start_on_continuation_line before forcing a window
15405 start.
15406
154072008-07-28 Jason Rumney <jasonr@gnu.org>
15408
15409 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
15410
15411 * w32term.c (w32_enable_unicode_output, cleartype_active):
15412 Remove obsolete display options.
15413 (x_draw_glyph_string_background): Don't use old cleartype_active
15414 workaround.
15415 (w32_initialize): Remove cleartype_active initialization.
15416 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
15417
154182008-07-28 Andreas Schwab <schwab@suse.de>
15419
15420 * lisp.h (init_weak_hash_tables, syms_of_font)
15421 (xd_read_queued_messages, syms_of_dbusbind): Declare.
15422 (remove_hash_entry): Don't declare.
15423 * eval.c (maybe_call_debugger): Make static and move before use.
15424 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
15425 * xdisp.c: Include "gtkutil.h" if USE_GTK.
15426 * xterm.h (x_set_frame_alpha): Declare.
15427
154282008-07-28 Jan Djärv <jan.h.d@swipnet.se>
15429
15430 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
15431 (create_menus): Connect selection-done to menu_nav_ended.
15432
154332008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
15434
15435 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
15436 Set Vx_resource_name to a fallback. Replace read of 'buffered'
15437 parameter with read of 'alpha' one.
15438 (Qns_frame_parameter): Remove.
5582fbc7 15439 * nsselect.m (selection-coding-system)
aac0c6e3
MR
15440 (next-selection-coding-system, Vselection_coding_system)
15441 (Vnext_selection_coding_system): Drop.
15442
154432008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
15444
15445 * nsfns.m (do-applescript, do_applescript): Rename to
15446 ns-do-applescript, ns_do_applescript, and move within file.
15447
154482008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
15449
15450 Remove support for Mac Carbon.
15451 * mactoolbox.c:
15452 * macterm.h:
15453 * macterm.c:
15454 * macselect.c:
15455 * macmenu.c:
15456 * macgui.h:
15457 * macfns.c:
15458 * mac.c: Remove file.
15459 * s/darwin.h:
15460 * m/intel386.h:
15461 * xfaces.c:
15462 * xdisp.c:
15463 * window.c:
15464 * tparam.c:
15465 * termhooks.h:
15466 * termcap.c:
15467 * term.c:
15468 * syssignal.h:
15469 * sysselect.h:
15470 * sysdep.c:
15471 * process.c:
15472 * lread.c:
15473 * lisp.h:
15474 * keyboard.c:
15475 * image.c:
15476 * fringe.c:
15477 * frame.h:
15478 * frame.c:
15479 * fontset.c:
15480 * font.h:
15481 * font.c:
15482 * fns.c:
15483 * fileio.c:
15484 * emacs.c:
15485 * dispnew.c:
15486 * dispextern.h:
15487 * config.in:
15488 * atimer.c:
2ae37cf0 15489 * Makefile.in: Remove code for Carbon.
aac0c6e3 15490
f0131492 154912008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3
MR
15492
15493 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
15494
154952008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15496
15497 * macterm.h (kCGBitmapByteOrder32Host): New define for
15498 non-universal SDKs.
15499
15500 * image.c (mac_create_cg_image_from_image, image_load_image_io)
15501 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
15502
15503 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
15504 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
15505
155062008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
15507
15508 * w32inevt.c: Include dispextern.h.
15509
155102008-07-26 Andreas Schwab <schwab@suse.de>
15511
15512 * print.c (print_object): Fix off-by-one in last change.
15513
155142008-07-25 Juanma Barranquero <lekktu@gmail.com>
15515
15516 * term.c (syms_of_term): Don't initialize default_orig_pair,
15517 default_set_foreground and default_set_background on Windows.
15518
155192008-07-25 Jason Rumney <jasonr@gnu.org>
15520
15521 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
15522 ScriptItemize. Clean up return value checking. Remove unused
15523 variables.
15524 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
15525 shaping engine.
15526
15527 * w32font.c (w32font_has_char): Handle the case where we can't
15528 determine the script for a character.
15529
155302008-07-25 Chong Yidong <cyd@stupidchicken.com>
15531
15532 * term.c (syms_of_term): Initialize default_orig_pair,
15533 default_set_foreground, and default_set_background.
15534
15535 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
15536 clash (bug#86).
15537 (getloadavg): Callers changed.
15538
15539 * image.c (svg_load_image): Fix last change.
15540 (svg_load_image): Use rsvg_handle_get_dimensions to check that
15541 image size is valid. Use g_object_unref instead of deprecated
15542 rsvg_handle_free to free rsvg handle.
15543 (x_from_xcolors): Don't initialize pixmap (silence compiler).
15544
155452008-07-25 Jason Rumney <jasonr@gnu.org>
15546
15547 * w32font.c (w32font_encode_char): Encode characters outside BMP as
15548 surrogates before looking up glyph index.
15549 (w32font_text_extents): Encode as surrogates if falling back to
15550 functions that need UTF-16 wide chars.
15551
15552 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
15553 BMP as surrogates before looking up glyph index.
15554
155552008-07-25 Chong Yidong <cyd@stupidchicken.com>
15556
15557 * image.c (svg_load_image): Check for failure in return value of
15558 rsvg_handle_get_pixbuf. Free rsvg handle when done.
15559
155602008-07-25 Jason Rumney <jasonr@gnu.org>
15561
15562 * w32font.c (Fx_select_font): Reverse sense of second arg.
15563
155642008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
15565
15566 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
15567 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
15568
15569 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
15570 (PURESIZE): Use it.
15571
155722008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
15573
15574 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
15575 * m/alpha.h (TEXT_END):
15576 * m/ibmrs6000.h (TEXT_END):
15577 * m/macppc.h (TEXT_END):
15578 * s/darwin.h (TEXT_END):
15579 * s/msdos.h (TEXT_END): Remove, unused.
15580 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
15581 * s/cygwin.h: Remove comment.
15582
15583 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
15584 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
15585 * m/intel386.h (DOT_GLOBAL_START):
15586 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
15587 (USG): Remove, file not used on USG platforms.
15588
15589 * Makefile.in (HAVE_X11): Remove empty #else.
15590
155912008-07-24 Andreas Schwab <schwab@suse.de>
15592
15593 * fileio.c (Finsert_file_contents): Properly adjust undo list
15594 after format conversion.
15595
155962008-07-24 Jan Djärv <jan.h.d@swipnet.se>
15597
15598 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
15599 (menu_nav_ended): Remove.
15600 (create_menus): Remove signal connect for menu_nav_ended.
15601 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
15602 create_menus.
15603 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
15604
156052008-07-23 Jason Rumney <jasonr@gnu.org>
15606
15607 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
15608 with opened font.
15609 (w32font_open): Set font type to gdi.
15610
15611 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
15612
156132008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
15614
15615 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
15616 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
15617 defines it.
15618 * unexec.c (ADDR_CORRECT): Define unconditionally.
15619
15620 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
15621
15622 * unexec.c: Remove code depending on !COFF and USG, the file is
15623 not used for such systems.
15624
15625 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
15626 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
15627 (LD_SWITCH_SYSTEM_1): Remove, update users.
15628
15629 * s/darwin.h (DATA_END):
15630 * m/intel386.h (DATA_END):
15631 * m/ibmrs6000.h (DATA_END):
15632 * m/alpha.h (DATA_END): Remove, unused.
15633
15634 * config.in: Regenerate.
15635 * s/ms-w32.h (subprocesses): Define unconditionally.
15636 * s/template.h (subprocesses): Update comment.
15637 * s/vms.h (subprocesses):
15638 * s/usg5-4.h (subprocesses):
15639 * s/hpux10-20.h (subprocesses):
15640 * s/gnu-linux.h (subprocesses):
15641 * s/cygwin.h (subprocesses):
15642 * s/bsd-common.h (subprocesses):
15643 * s/aix4-2.h (subprocesses):
15644 * s/darwin.h (subprocesses): Do not define, defined by default now.
15645
15646 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
15647 Remove all references.
15648 (temacs): Add GNUstep specific ld flags.
15649
15650 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
15651 similarly to what X does.
15652
156532008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
15654
15655 * nsfns.m (x-list-fonts): Remove.
15656 (syms_of_nsfns): Drop the x-list-fonts declaration.
15657 * nsterm.m: Get rid of remaining "//" comments.
15658
156592008-07-22 Chong Yidong <cyd@stupidchicken.com>
15660
15661 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
15662
15663 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
15664 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
15665 (Fns_own_selection_internal, Fx_disown_selection_internal)
15666 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
15667
15668 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
15669 ... */' style of docstrings. Doc fixes.
15670
156712008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
15672
15673 * terminfo.c (UP, BC, PC): Undo previous change.
15674
15675 * nsfns.m: Rename ns prefixed functions/variables to the
15676 corresponding x versions. Update references.
15677
156782008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
15679
15680 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
15681
156822008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
15683
15684 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
15685 Remove forwarding functions.
15686 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
15687 non-static.
15688 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
15689 non-static.
15690 (ns_frame_parm_handlers): Use the new names.
15691 (syms_of_nsfns): Move to the end of file.
15692
15693 * nsterm.m (syms_of_nsterm): Move to the end of file.
15694
15695 * dispnew.c (init_display): Remove code for X10.
15696
156972008-07-22 Jason Rumney <jasonr@gnu.org>
15698
15699 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
15700 bare drive.
15701
157022008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
15703
15704 * nsterm.m (syms_of_nsterm): Remove debugging println.
15705
157062008-07-22 David Reitter <david.reitter@gmail.com>
15707
15708 * nsfns.m (do_applescript, F_do_applescript): NS version of the
15709 Carbon implementation of the same functionality: execute arbitrary
15710 AppleScript code.
15711
157122008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
15713
15714 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
15715 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
15716 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
15717 (Fx_display_mm_height, Fx_display_mm_width)
15718 (Fx_display_backing_store, Fx_display_visual_class)
15719 (Fx_display_save_under, Fx_open_connection)
15720 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
15721 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
15722 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
15723 (Fx_display_pixel_width, Fx_display_pixel_height)
15724 (Fx_display_usable_bounds, Fx_display_planes)
15725 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
15726 ... */' style of docstrings.
15727
157282008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
15729
15730 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
15731 on this platform.
15732 (mips):
15733 * m/iris4d.h (mips): Do not define.
15734 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
15735
15736 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
15737
15738 * image.c:
15739 * nsfns.m:
15740 * nsselect.m:
15741 * nsterm.h:
15742 * nsterm.m: Rename ns prefixed functions/variables to the
15743 corresponding x versions. Update references.
15744
15745 * m/ibms390x.h (NO_REMAP): Do not undefine.
15746
15747 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
15748
157492008-07-21 Chong Yidong <cyd@stupidchicken.com>
15750
15751 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
15752 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
15753 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
15754 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
15755 (Fns_display_mm_height, Fns_display_mm_width)
15756 (Fns_display_backing_store, Fns_display_visual_class)
15757 (Fns_display_save_under, Fns_open_connection)
15758 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
15759 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
15760 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
15761 (Fns_display_pixel_width, Fns_display_pixel_height)
15762 (Fns_display_usable_bounds, Fx_display_planes)
15763 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
15764
157652008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
15766
15767 * print.c (print_object): Check print_depth before searching for
15768 circularities.
15769
157702008-07-21 Michael Albinus <michael.albinus@gmx.de>
15771
15772 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
15773 only sprintf.
15774
157752008-07-21 Kenichi Handa <handa@m17n.org>
15776
15777 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
15778
157792008-07-20 Andreas Schwab <schwab@suse.de>
15780
15781 * syntax.c (find_start_pos, find_start_value)
15782 (find_start_value_byte, find_start_begv, find_defun_start)
15783 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
15784
157852008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
15786
15787 * s/sol2-3.h: Insert contents of s/sol2.h.
15788 (LD_SWITCH_SYSTEM): Remove redundant definition.
15789 * s/sol2.h: Remove, unused.
15790
157912008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
15792
15793 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
15794
157952008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
15796
15797 * Makefile.in (ns_appdir): Fix typo in find command.
15798
157992008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
15800
15801 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
15802
15803 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
15804 added not supported anymore.
15805
15806 * s/usg5-4-2.h (LIBS_SYSTEM):
15807 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
15808
15809 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
15810 * s/lynxos.h (GETPGRP_NO_ARG):
15811 * s/hpux10-20.h (NO_SIOCTL_H):
15812 * s/gnu.h (GETPGRP_NO_ARG):
15813 * s/gnu-linux.h (NO_SIOCTL_H):
15814 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
15815 * s/cygwin.h (GETPGRP_NO_ARG):
15816 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
15817 (C_DEBUG_SWITCH): Remove duplicate definition.
15818
15819 * m/ibms390.h: Remove boilerplate comments.
15820
15821 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
15822
15823 * process.c (HAVE_SERIAL): Consolidate ifdefs.
15824 (wait_reading_process_output): Remove code for SunOS, platform not
15825 supported anymore. Use SOLARIS2 instead of sun.
15826
158272008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
15828
15829 * font.c (font_open_by_name): Under NS, default lface height to zero.
15830 (font_open_for_lface): Under NS, set size based on frame fontsize.
15831 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
15832 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
15833
158342008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
15835
15836 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
15837 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
15838 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
15839 YES/NO.
15840 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
15841 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
15842 * Makefile.in (clean): Clear out build destination dir.
15843
158442008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
15845
15846 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
15847 xterm, xselect.
15848 * lisp.h: Remove declaration of hash_remove.
15849 * nsgui.h: Remove redefinitions of hash_remove.
15850 * fns.c (hash_remove): Rename to hash_remove_from_table.
15851
158522008-07-19 Seiji Zenitani <zenitani@mac.com>
15853
15854 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
15855 strdup() the family UTF8String before modifying it.
15856
158572008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
15858
15859 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
15860 NS_FACE_BACKGROUND with 0 instead of nil.
15861 * nsfont.m (nsfont_draw): Same.
15862
158632008-07-19 Chong Yidong <cyd@stupidchicken.com>
15864
15865 * nsfns.m (ns_set_background_color): Fix crash.
15866
158672008-07-18 Chong Yidong <cyd@stupidchicken.com>
15868
15869 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
15870
158712008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
15872
15873 * puresize.h (BASE_PURESIZE): Increase to 1240000.
15874
158752008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15876
15877 * gtkutil.c: Include <config.h> instead of "config.h".
15878
15879 * lisp.h (Foverlay_buffer): Add EXFUN.
15880
15881 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
15882 child process to complete child_setup. Undo 2005-09-21 change.
15883
15884 * s/darwin.h: Mention setsid after vfork.
15885
158862008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15887
15888 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
15889 Depend on macgui.h.
15890
15891 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
15892 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
15893
15894 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
15895 and f19.
15896 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
15897
15898 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
15899 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
15900 Remove enumerators.
15901
15902 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
15903 Check if FACE_FROM_ID returns NULL.
15904
159052008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
15906
15907 * w32inevt.c (change_frame_size): Remove extern declaration.
15908 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
15909 change_frame_size.
15910
159112008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
15912
15913 * getloadavg.c: Revert last change (2008-07-15).
15914
159152008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
15916
15917 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
362654a6 15918 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
aac0c6e3
MR
15919 from configure.
15920
159212008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
15922
15923 * s/sol2.h:
15924 * s/sol2-4.h: Reorganize conditionals.
15925
15926 * ecrt0.c: Remove code depending on m68000, not used anymore.
15927
15928 * fns.c (hash_remove): Make static.
15929 * lisp.h (hash_remove): Don't prototype.
15930
15931 * m/ibmrs6000.h:
15932 * m/ibms390x.h:
15933 * m/macppc.h: Remove boilerplate comments.
15934
15935 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
15936 Solaris, which does not need them.
15937
15938 * m/vax.h: Remove comments about unsupported systems.
15939
15940 * s/darwin.h: Reorganize ifdefs.
15941
159422008-07-17 Andreas Schwab <schwab@suse.de>
15943
15944 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
15945
159462008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
15947
15948 Use SDATA. Follow coding convention of placing operators at
15949 beginning of next line rather than end of previous line, and placing
15950 spaces around infix operators.
15951
15952 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
15953 in case it was defined already.
15954 USE @GNUSTEP_MAKEFILES@ rather than envvars.
15955 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
15956 ns_default.
15957 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
15958 Lisp_Objects.
15959 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
15960 (ns_defined_color, ns_color_to_lisp): Declare.
15961 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
15962 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
15963 it's accepted even with USE_LISP_UNION_TYPE.
15964 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
15965 (update_frame_tool_bar): Remove apparently obsolete tests for
15966 non-integerness of f->tool_bar_lines.
15967 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
15968 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
15969 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
15970 (nsfont_open): Don't confuse NULL for Qnil.
15971 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
15972 * menu.h (find_and_call_menu_selection):
15973 * menu.c (find_and_call_menu_selection): Use just int for vector size.
15974 (find_and_return_menu_selection): Always return something.
15975 * frame.h: Include dispextern.h for Display_Info.
15976 (display_x_get_resource): Declare.
15977
159782008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
15979
15980 * syntax.c: Remove stdio.h include accidentally introduced in
15981 Emacs.app commit.
15982 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
15983 NS_IMPL_COCOA.
15984 * keyboard.c (handle_async_input, input_available_signal): Remove
15985 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
15986
159872008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
15988
15989 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
15990 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
15991 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
15992 Use SDATA.
15993
15994 * keymap.c: Remove all NS-specific code.
15995 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
15996 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
15997 where_is_preferred_modifier, return a different value depending on how
15998 preferred is the binding.
15999 (where_is_internal): Adjust accordingly.
16000 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
16001 Adjust to new preferred_sequence_p.
16002 (syms_of_keymap): Declare `where-is-preferred-modifier'.
16003 * keyboard.c (parse_solitary_modifier): Not static any more.
16004 * keyboard.h (parse_solitary_modifier): Declare.
16005
160062008-07-16 Andreas Schwab <schwab@suse.de>
16007
16008 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
16009 of easymenu.
16010
160112008-07-16 Chong Yidong <cyd@stupidchicken.com>
16012
16013 * xdisp.c (move_it_in_display_line): Account for word wrap, so
16014 that we don't move off the line.
16015
160162008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
16017
16018 * keyboard.c (Qsuper): Remove.
16019 (parse_menu_item): Don't call where_is_internal specially for NS.
16020
160212008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
16022
16023 * s/gnu-linux.h: Remove boilerplate comments.
16024
16025 * m/alpha.h (__ELF__): Consolidate conditions.
16026
16027 * m/m68k.h (linux): Use GNU_LINUX instead.
16028 Remove boilerplate comments.
16029
16030 * m/intel386.h: Undo refactoring from previous change.
16031 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
16032 too, remove dead code.
16033 (linux): Use GNU_LINUX instead.
16034
160352008-07-16 Jason Rumney <jasonr@gnu.org>
16036
16037 * w32gui.h: Repeat 26 June changes lost by last change.
16038
160392008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
16040
16041 * systty.h: Remove code for Aix on 386, unsupported platform.
16042
16043 * s/ms-w32.h: Remove boilerplate comments.
16044 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
16045
16046 * s/gnu-linux.h (TERM): Remove support.
16047 (HAVE_SYSVIPC): Remove, unused.
16048 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
16049 for this system.
16050
16051 * process.c: Remove support for IRIS, unused.
16052 Remove support for TERM, not relevant anymore.
16053
16054 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
16055 used with the definition.
16056
16057 * s/aix4-2.h (static): Do not undef.
16058
16059 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
16060 only used on Aix.
16061 (HAVE_SYSVIPC): Remove, unused.
16062
16063 * m/hp800.h (CANNOT_DUMP): Do not undef.
16064
16065 * m/alpha.h: Fix comment.
16066
16067 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
16068 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
16069 used by this configuration.
16070 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
16071 * unexec.c: Remove code depending on HPUX and
16072 USG_SHARED_LIBRARIES, not used with this file. Remove code
16073 depending on IRIS, unused. Remove if 0-ed code.
16074
16075 * s/template.h: Remove comments about static.
16076
16077 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
16078 Remove if 0-ed code.
16079 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
16080 were the same as the default.
16081 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
16082 Remove boilerplate comments.
16083 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
16084 (HAVE_SYSVIPC): Remove, unused.
16085 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
16086
16087 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
16088 Remove boilerplate comments.
16089 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
16090 Remove boilerplate comments.
16091 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
16092 Remove boilerplate comments.
16093 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
16094
16095 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
16096 USG systems which do not use DATA_SEG_BITS.
16097 Refactor code. Remove boilerplate comments.
16098
16099 * m/ibms390.h:
16100 * m/m68k.h:
16101 * s/bsd-common.h:
16102 * s/cygwin.h:
16103 * s/darwin.h:
16104 * s/freebsd.h:
16105 * s/gnu.h:
16106 * s/msdos.h: Remove boilerplate comments.
16107
16108 * m/iris4d.h: Remove boilerplate comments and code for systems that
6873acca 16109 do not use this file.
aac0c6e3
MR
16110 (IRIS_4D): Remove, unused.
16111
16112 * m/mips.h: Remove boilerplate comments and code for systems that
6873acca 16113 do not use this file.
aac0c6e3
MR
16114 (SIGN_EXTEND_CHAR):
16115 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
16116 * unexmips.c: Remove file, unused.
16117
16118 * editfns.c (Fuser_full_name): Replace the only use of
16119 USER_FULL_NAME with its value.
16120 * config.in: Regenerate.
16121
161222008-07-16 David Reitter <david.reitter@gmail.com>
16123
16124 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
16125 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
16126
161272008-07-16 Glenn Morris <rgm@gnu.org>
16128
16129 * emacs.c (system-type): Doc fix.
16130
161312008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
16132
16133 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
16134 If the cache doesn't work, let's fix it, rather than work around it.
16135
161362008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
16137
16138 * Makefile.in: Correct additions for nsfont.o in last commit.
16139 * nsfont.m: New file (forgot last commit).
16140
161412008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
16142
bba3e508
SM
16143 * callproc.c (set_initial_environment):
16144 Initialize Vprocess_environment under CANNOT_DUMP (fixes crash when
aac0c6e3
MR
16145 batch-compiling for bootstrap).
16146
161472008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
acd0102a 16148 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3 16149
c4cc8b9a
JB
16150 * frame.c (make_initial_frame): Call init_frame_faces(f) in
16151 CANNOT_DUMP case -- fix crash due to different init order.
aac0c6e3
MR
16152
161532008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
16154
16155 Changes and additions for NeXTstep windowing system (Cocoa and
16156 GNUstep) support.
16157
16158 * Makefile.in:
16159 * config.in: Support defines and build commands for NS port.
16160 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
16161 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
16162 * dispextern.h: Include nsgui.h and add needed typedefs under NS
16163 windowing.
16164 (struct face): Add synth_ital field.
16165 * dispnew.c: Include nsterm.h when compiling under NS windowing.
16166 (init_display): Initialize Vinitial_window_system to "ns" when so
16167 compiled.
16168 * emacs.c: Include GSConfig.h when compiling under GNUstep.
16169 (display_arg): Use under NS.
16170 (main): Under NS, allocate autorelease pool and handle command line
16171 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
16172 (standard_args): Add NS-specific args.
16173 (shut_down_emacs): Shut down NS terminal if compiled under NS.
16174 * font.c (DEFAULT_ENCODING): New variable.
16175 (font_find_for_lface): Use it.
16176 (syms_of_font): Load syms_of_nsfont under NS.
16177 * font.h: Declare nsfont_driver when compiled under NS.
16178 * fontset.c: When compiling under NS, include nsterm.h.
16179 (fontset_from_font): Autoconstruct fontset under NS.
16180 * frame.c (various): Under NS, include nsterm.h, add Qns window system
16181 symbol, document and use it.
16182 (do_switch_frame): When for_deletion under Cocoa, add
16183 Fraise_frame(Qnil).
16184 (x_set_frame_parameters): Ensure font attribute changes are picked up.
16185 (x_get_arg): Allow "yes" and "no" as boolean values.
16186 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
16187 Qright under Cocoa.
16188 (focus-follows-mouse): Default to 0 under NS.
16189 * frame.h (enum output_method): Add output_ns.
16190 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
16191 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
16192 (FRAME_WINDOW_P): NS-specific definition.
16193 * fringe.c (max_used_fringe_bitmap): Make public.
16194 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
16195 (getloadavg): Use NeXT code under descendant OS's.
16196 * image.c (includes and header section, x_create_bitmap_from_data)
16197 (x_create_bitmap_from_file, free_bitmap_record, image_background)
16198 (image_background_transparent, x_clear_image_1)
16199 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
16200 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
16201 (x_to_xcolors, x_from_xcolors, x_disable_image)
16202 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
16203 other GUIs, including XPM support using code originally written for
16204 Carbon GUI.
16205 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
16206 using NS API.
16207 (image_ascent): Use font metrics macros instead of direct struct field
16208 access.
16209 * keyboard.c (includes): Add nsterm.h when compiling under NS.
16210 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
16211 Also, handle NS as GTK for menu bar purposes.
16212 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
16213 toolkit where they differ.
16214 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
16215 use cachelist, still needed under NS.
16216 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
16217 (struct widget_value): Define it here for menu.c.
16218 * keymap.c (includes): Include modifier internals.
16219 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
16220 NS.
16221 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
16222 support for preferring sequences using certain modifiers, specified by
16223 the FIRSTONLY argument.
16224 * lisp.h (hash_remove): Rename to avoid name clash when compiling
16225 under NS GNUstep implementation.
16226 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
16227 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
16228 * menu.c: Include nsterm.h under NS.
16229 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
16230 (free_menubar_widget_tree_value, update_submenu_strings)
16231 (find_and_call_menu_selection): Treat NS as X and NT.
16232 (find_and_return_menu_selection): New function, used for popup menus.
16233 * nsgui.h:
16234 * nsterm.h:
16235 * nsfns.m:
16236 * nsimage.m:
16237 * nsmenu.m:
16238 * nsselect.m:
16239 * nsterm.m: New files.
16240 * process.c (wait_reading_process_output): Under NS, call ns_select()
16241 instead of plain select().
16242 * syntax.c (char_quoted): Under NS, avoid a crash when called near
16243 beginning of buffer.
16244 * sysselect.h (init_process): Rename when compiling under Cocoa to
16245 avoid name conflict.
16246 * termhooks.h (display_info): Add ns_display_info to union.
16247 * terminal.c (Fterminal_live_p): Add ns to terminal types.
16248 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
16249 COCOA environment.
16250 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
16251 unexec() signature. (Note, this will dump, but the resulting file
16252 crashes; unexosx is used instead; keeping around for reference and
16253 possible aid in getting dump working under GNUstep.)
16254 * w32gui.h (button_type, widget_value): Remove definitions (now in
16255 keyboard.h).
16256 * window.c: Include nsterm.h when compiling under NS.
16257 * xdisp.c (includes): Include nsterm.h when compiling under NS.
16258 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
16259 other GUI windowing systems.
16260 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
16261 GTK.
16262 (x_consider_frame_title): Under NS, set icon type and frame
16263 modified-state indicator; use ns_set_name_as_filename() when using
16264 formatted title.
16265 (update_window_cursor): Make public when compiling under NS.
16266 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
16267 (hourglass_atimer, Vhourglass_delay
16268 * xfaces.c (header section, init_frame_faces, clear_font_table)
16269 (defined_color, unload_color, x_face_list_fonts)
16270 (prepare_face_for_display): Add NS support parallel to other GUIs.
16271 Emulate GCs like other non-X GUIs.
16272 (split_font_name): Don't lowercase font name under NS.
16273 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
16274 under NS.
16275 * s/darwin.h: Add support for compilation under NS.
16276
162772008-07-15 Jason Rumney <jasonr@gnu.org>
16278
16279 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
16280 (w32_show_hourglass): Rename from show_hourglass.
16281 (w32_hide_hourglass): Rename from hide_hourglass.
16282 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
16283 (Vhourglass_delay): Declare extern.
16284 (hourglass_started): Remove.
16285
16286 * xdisp.c (Vhourglass_delay): Remove static.
16287 (hourglass_started, start_hourglass, cancel_hourglass):
16288 Don't include these versions on WINDOWSNT.
16289
162902008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
16291
16292 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
16293 variables (formerly in xfns.c).
16294 (show_hourglass, hide_hourglass): New prototypes (same).
16295 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
16296 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
16297 in xfns.c).
16298 (syms_of_xdisp): Declare/initialize display-hourglass,
16299 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
16300 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
16301 formerly in xfns.c.
16302 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
16303 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
16304 (start_hourglass, cancel_hourglass): Remove.
16305 (show_hourglass, hide_hourglass): Remove prototypes and static
16306 modifiers.
16307 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
16308 hourglass_atimer, hourglass_shown_p declaration/initialization.
16309 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
16310 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
16311 (start_hourglass, cancel_hourglass): Remove.
16312 (show_hourglass, hide_hourglass): Remove prototypes and static
16313 modifiers.
16314 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
16315 hourglass_atimer, hourglass_shown_p declaration/initialization.
16316 * w32fns.c (display_hourglass_p, Vhourglass_delay)
16317 (DEFAULT_HOURGLASS_DELAY): Remove.
16318 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
16319 hourglass_shown_p declaration/initialization.
16320
163212008-07-14 Jason Rumney <jasonr@gnu.org>
16322
16323 * w32fns.c (w32_get_arg): Remove wrapper function.
16324 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
16325 directly.
16326 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
16327
163282008-07-14 Kenichi Handa <handa@m17n.org>
16329
16330 * xfont.c (xfont_open): Add workaround for X's bug.
16331
163322008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
16333
16334 * fontset.c: Include <stdio.h> unconditionally.
16335
163362008-07-13 Michael Albinus <michael.albinus@gmx.de>
16337
16338 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
16339 for filtering.
16340
163412008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
16342
16343 * s/vms.h: Use __GNUC__ instead of _GNUC_.
16344
16345 * m/macppc.h:
16346 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
16347
c4cc8b9a 16348 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
aac0c6e3
MR
16349 (SPECIAL_EMACS_INT):
16350 * m/ia64.h (SPECIAL_EMACS_INT):
16351 * m/amdx86-64.h (SPECIAL_EMACS_INT):
16352 * s/gnu.h (NLIST_STRUCT):
16353 * s/aix4-2.h (X11R5_INHIBIT_I18N):
16354 * s/gnu-linux.h (LINUX):
16355 * s/msdos.h (HAVE_FACES):
16356 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
16357
16358 * systty.h:
16359 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
16360 anymore.
16361
163622008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
16363
16364 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
16365 always defined as int.
16366
16367 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
16368 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
16369 * s/gnu-linux.h (HAVE_WAIT_HEADER):
16370 * s/freebsd.h (HAVE_WAIT_HEADER):
16371 * s/bsd-common.h (HAVE_UNION_WAIT):
16372 * s/aix4-2.h (HAVE_WAIT_HEADER):
16373 * m/mips.h (HAVE_UNION_WAIT):
16374 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
16375 (COFF, static): Do not define, they are undefined later in the file.
16376
16377 * process.c (update_status): Don't use a union.
16378 (status_convert):
16379 (sigchld_handler): Use int instead of WAITTYPE.
16380
163812008-07-12 Chong Yidong <cyd@stupidchicken.com>
16382
16383 * indent.c (Fvertical_motion): Restore hscroll before moving to
16384 goal column.
16385
163862008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
16387
16388 * lisp.h: Remove left over code.
16389
163902008-07-11 Andreas Schwab <schwab@suse.de>
16391
16392 * lisp.h: Fix logic in last change.
16393
16394 * menu.h: New file.
16395 * menu.c: Include it.
16396 * xmenu.c: Likewise.
16397 * Makefile.in: Update dependencies.
16398
163992008-07-11 Kenichi Handa <handa@m17n.org>
16400
16401 * fontset.c (fontset_from_font): Cancel the previous change.
16402
164032008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
16404
16405 * lisp.h:
16406 * w32heap.c:
16407 * emacs.c:
16408 * alloc.c: Replace all references of NO_UNION_TYPE with
16409 USE_LISP_UNION_TYPE.
16410
16411 * m/xtensa.h (NO_UNION_TYPE):
16412 * m/vax.h (NO_UNION_TYPE):
16413 * m/template.h (NO_UNION_TYPE):
16414 * m/sparc.h (NO_UNION_TYPE):
16415 * m/mips.h (NO_UNION_TYPE):
16416 * m/macppc.h (NO_UNION_TYPE):
16417 * m/m68k.h (NO_UNION_TYPE):
16418 * m/iris4d.h (NO_UNION_TYPE):
16419 * m/intel386.h (NO_UNION_TYPE):
16420 * m/ibms390x.h (NO_UNION_TYPE):
16421 * m/ibms390.h (NO_UNION_TYPE):
16422 * m/ibmrs6000.h (NO_UNION_TYPE):
16423 * m/ia64.h (NO_UNION_TYPE):
16424 * m/hp800.h (NO_UNION_TYPE):
16425 * m/arm.h (NO_UNION_TYPE):
16426 * m/amdx86-64.h (NO_UNION_TYPE):
16427 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
16428 defining it the same.
16429
164302008-07-10 Chong Yidong <cyd@stupidchicken.com>
16431
16432 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
16433
164342008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
16435
16436 * fileio.c:
50426a04 16437 * sysdep.c:
aac0c6e3
MR
16438 * systty.h:
16439 * m/ibmrs6000.h:
16440 * m/iris4d.h:
16441 * s/aix4-2.h:
16442 * s/freebsd.h:
16443 * s/gnu-linux.h:
16444 * s/hpux10-20.h:
16445 * s/hpux11.h:
16446 * s/netbsd.h:
16447 * s/sol2-3.h:
16448 * s/sol2-4.h:
16449 * s/sol2.h:
16450 * s/usg5-4.h:
16451 * s/vms.h: Remove references to unused variables.
16452
164532008-07-10 Andreas Schwab <schwab@suse.de>
16454
16455 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
16456 pattern before matching the generic family.
16457
164582008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
16459
16460 * unexec.c:
16461 * s/vms.h:
16462 * s/usg5-4-2.h:
16463 * s/sol2-5.h:
16464 * s/freebsd.h:
16465 * s/darwin.h: Remove dead code.
16466
16467 * m/template.h:
16468 * m/sparc.h:
16469 * m/mips.h:
16470 * m/m68k.h:
16471 * m/iris4d.h:
16472 * m/intel386.h:
16473 * m/ibms390x.h:
16474 * m/ibms390.h:
16475 * m/ia64.h:
16476 * m/hp800.h:
16477 * m/arm.h:
16478 * m/amdx86-64.h: Remove dead code and references to unused
16479 and compiler defined symbols.
16480
16481 * unexmips.c:
16482 * unexelf.c: Remove references to desupported systems.
16483
16484 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
16485
16486 * m/powermac.h: Remove boilerplate comments.
16487 (NO_REMAP): Remove unused definition.
16488
16489 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
16490 define them.
16491
164922008-07-10 Kenichi Handa <handa@m17n.org>
16493
16494 * xfont.c (xfont_open): Log the reason of failure.
16495
164962008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
16497
16498 * fontset.c (fontset_get_font_group):
16499 * font.c (font_check_otf): Specify argument types.
16500
165012008-07-09 Kenichi Handa <handa@m17n.org>
16502
16503 * coding.c (detect_coding_utf_8): Set detect_info->found only when
16504 non-ASCII char is found.
16505
16506 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
16507 (reorder_font_vector): Change the arg preferred_family to font.
16508 Prefer the spec matching with font.
16509 (fontset_get_font_group): New function.
16510 (fontset_find_font): Change the format of an element of a realized
16511 fontset. Use fontset_get_font_group.
16512 (fontset_font): Try the current fontset, the default fontset, the
16513 fallbacks of the current fontset, and the fallbacks of the default
16514 fontset in this order.
16515 (face_for_char): Delete the shortcut to use the current font.
16516 (fontset_from_font): Don't set fonts for Latin in the fontset.
16517
16518 * font.h (font_make_object, font_match_p): Adjust prototypes.
16519
16520 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
16521
16522 * font.c (font_make_object): New arg entity and pixelsize.
16523 (font_check_otf_features, font_check_otf): New functions.
16524 (font_match_p): Check :lang, :script, and :otf properties.
16525
16526 * xfont.c (xfont_open): Adjust it for the change of
16527 font_make_object.
16528 (xfont_text_extents): Fix initial setting of metrics.
16529
16530 * ftfont.c (struct ftfont_info): New member index, delete member
16531 fc_charset_idx. Make the member order compatible with struct
16532 xftfont_info.
16533 (fc_charset_table): Change charset names to registry names.
16534 (ftfont_pattern_entity): Delete the args registry and
16535 fc_charset_idx. Change the value of :font-entity property
16536 to (FONTNAME . INDEX). Always set :registry property to
16537 `iso10646-1'.
16538 (struct ftfont_cache_data): New struct.
16539 (ftfont_lookup_cache): New arg for_face.
16540 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
16541 (ftfont_driver): Set the member otf_capability.
16542 (ftfont_get_charset): Adjust it for the change of
16543 fc_charset_table.
16544 (OTF_TAG_SYM): New macro.
16545 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
16546 for the change of fc_charset_table.
16547 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
16548 ftfont_pattern_entity. Add FC_INDEX to objset.
16549 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
16550 and ftfont_pattern_entity.
16551 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
16552 font_make_object, struct ftfont_info.
16553 (ftfont_has_char): Use ftfont_get_fc_charset.
16554 (ftfont_otf_features, ftfont_otf_capability): New functions.
16555 (ftfont_shape): Use ftfont_get_otf.
16556 (ftfont_text_extents): Fix initial setting of metrics.
16557
16558 * xftfont.c (struct xftfont_info): New member ft_size. Make the
16559 member order compatible with struct ftfont_info.
bba3e508
SM
16560 (xftfont_open): Add FC_CHARSET to the pattern.
16561 Set xftfont_info->ft_size. Don't unlock the face. Check BDF
aac0c6e3
MR
16562 properties if appropriate.
16563 (xftfont_close): Unlock the face.
16564 (xftfont_anchor_point, xftfont_shape): Deleted.
16565 (syms_of_xftfont): Don't set members anchor_point and shape of
16566 xftfont_driver.
16567
16568 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
16569 font_make_object.
16570
16571 * w32font.c (w32font_open): Adjust it for the change of
16572 font_make_object.
16573 (w32font_open_internal): Don't set properties of font_object here.
16574
165752008-07-08 Chong Yidong <cyd@stupidchicken.com>
16576
16577 * macfns.c (x_create_tip_frame):
16578 * w32fns.c (x_create_tip_frame):
16579 * xfns.c (x_create_tip_frame): Pass parameter argument to
16580 face-set-after-frame-default.
16581
16582 * xfaces.c (Finternal_merge_in_global_face): Save merged
16583 attributes for the default face back into the face vector.
16584
165852008-07-08 Andreas Schwab <schwab@suse.de>
16586
16587 * fontset.h: Declare fontset_from_font. Don't declare
16588 new_fontset_from_font and fontset_from_font_name.
16589 * xterm.c: Include "fontset.h".
16590 * Makefile.in (xterm.o): Update dependencies.
16591
165922008-07-08 Glenn Morris <rgm@gnu.org>
16593
16594 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
16595 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
16596
165972008-07-07 Chong Yidong <cyd@stupidchicken.com>
16598
16599 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
16600 (x_set_frame_parameters): Don't bind it.
16601
166022008-07-07 Juanma Barranquero <lekktu@gmail.com>
16603
16604 * w32fns.c (map_w32_filename): Declare extern.
16605
166062008-07-07 Jason Rumney <jasonr@gnu.org>
16607
16608 * w32term.c (WS_EX_LAYERED): Define if not already.
16609
166102008-07-06 Chong Yidong <cyd@stupidchicken.com>
16611
16612 * xfaces.c (set_font_frame_param): Don't try to set the font
16613 parameter if it is still unspecified in the lface.
16614
166152008-07-05 Chong Yidong <cyd@stupidchicken.com>
16616
16617 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
16618 face if it didn't already exist.
16619
16620 * xdisp.c (try_window_id): Give up if word-wrapping is on.
16621
166222008-07-05 Andreas Schwab <schwab@suse.de>
16623
16624 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
16625
166262008-07-05 Chong Yidong <cyd@stupidchicken.com>
16627
16628 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
16629 word-wrapping.
16630 (IT_DISPLAYING_WHITESPACE): New macro.
16631 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
16632 when word-wrapping. Simplify word-wrapping logic. Use correct
16633 pixel positions when saving copies of the iterator.
16634 (display_line): Use proper wrap point if the last character on a
16635 line was preceded by whitespace.
16636
166372008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16638
16639 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
16640
166412008-07-04 Kenichi Handa <handa@m17n.org>
16642
16643 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
16644
16645 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
16646
166472008-07-02 Jason Rumney <jasonr@gnu.org>
16648
16649 * xfns.c (syms_of_xfns): Only define x-select-font when both
2ae37cf0 16650 HAVE_FREETYPE and USE_GTK.
aac0c6e3
MR
16651
16652 * xdisp.c (next_element_from_display_vector): Move assignment out
16653 of if statement.
16654
166552008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
16656
16657 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
16658
16659 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
16660 (syms_of_fileio): Initialize and export them.
16661 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
16662
16663 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
16664 (Fsystem_move_file_to_trash): New function.
16665 (syms_of_w32fns): Export it to lisp.
16666
166672008-07-01 Jason Rumney <jasonr@gnu.org>
16668
16669 * w32font.c (w32font_text_extents): Don't count overhang as part
16670 of width.
16671
166722008-06-30 Miles Bader <miles@gnu.org>
16673
16674 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
16675 Add `avoid_cursor_p' field.
16676
16677 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
16678 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
16679 (append_glyph, append_composite_glyph, produce_image_glyph)
16680 (append_stretch_glyph): Initialize avoid_cursor_p.
16681 (get_it_property): Rename from `get_line_height_property'.
16682 (x_produce_glyphs): Use get_it_property.
16683 (handle_line_prefix, push_display_prop): New functions.
16684 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
16685 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
16686 New variables.
16687 (syms_of_xdisp): Initialize them.
16688
166892008-06-30 Kenichi Handa <handa@m17n.org>
16690
16691 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
16692 XftDefaultSubstitute (they are called in XftFontMatch).
16693 (xftfont_open): Fix args to ftfont_font_format.
16694
16695 * ftfont.c (fc_charset_table): New member lang.
16696 (ftfont_resolve_generic_family): New arg pattern.
60612c8f 16697 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
aac0c6e3
MR
16698 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
16699 (ftfont_open): Fix args to ftfont_font_format.
16700 (ftfont_font_format): New arg filename.
16701
167022008-06-30 Chong Yidong <cyd@stupidchicken.com>
16703
16704 * xfaces.c (Finternal_merge_in_global_face): If default face was
16705 modified, realize it again. Update the font face attribute.
16706
167072008-06-29 Jason Rumney <jasonr@gnu.org>
16708
16709 * w32term.c (x_set_frame_alpha): Fix logic.
16710
167112008-06-29 Kenichi Handa <handa@m17n.org>
16712
16713 * fontset.c (Finternal_char_font): Return font-object instead of
16714 font-name.
16715
16716 * composite.c (get_composition_id): Fix the width calculation for TAB.
16717
167182008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
16719
16720 * indent.c (Fvertical_motion): Properly handle float column arg.
16721
167222008-06-28 Jason Rumney <jasonr@gnu.org>
16723
16724 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
16725 (pfnSetLayeredWindowAttributes): New function pointer.
16726 (w32_initialize): Initialize it when supported.
16727 (x_set_frame_alpha): New function.
16728
16729 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
16730 (w32_frame_parm_handlers): Set alpha handler.
16731
16732 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
16733
167342008-06-27 Jason Rumney <jasonr@gnu.org>
16735
16736 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
16737 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
16738 (w32_to_x_charset, x_to_w32_charset)
16739 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
16740 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
16741 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
16742 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
16743 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
16744 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
16745 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
16746 (Qw32_charset_unicode): Remove.
16747 (syms_of_w32fns): Update for above changes.
16748
16749 * w32font.c (w32_to_x_charset, x_to_w32_charset)
16750 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
16751 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
16752 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
16753 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
16754 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
16755 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
16756 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
16757 (syms_of_w32font): Update for above changes.
16758
167592008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
16760
16761 * s/usg5-4.h: Fix previous change: keep the correct branch of a
16762 removed #if.
16763 (USG_SHARED_LIBRARIES): Remove duplicate definition.
16764
167652008-06-26 Juanma Barranquero <lekktu@gmail.com>
acd0102a 16766 Eli Zaretskii <eliz@gnu.org>
aac0c6e3
MR
16767
16768 * makefile.w32-in (LOCAL_FLAGS):
16769 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
16770
16771 * sysdep.c (_spawnlp, _getpid):
16772 Declare with explicit _cdecl instead of _CRTAPI1.
16773
16774 * editfns.c (Fget_internal_run_time):
16775 Check for WINDOWSNT with #ifdef, not #if.
16776
167772008-06-26 Jason Rumney <jasonr@gnu.org>
16778
16779 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
16780
16781 * w32term.c (x_draw_glyph_string_foreground)
16782 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
16783 Use FONT_HANDLE macro.
16784 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
16785
16786 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
16787 (uniscribe_encode_char): Use FONT_HANDLE macro.
16788
16789 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
16790 (w32font_text_extents): Use precast w32_font.
16791 (w32font_close): Free cached metrics.
16792 (w32font_open_internal): Allocate space for name on stack.
16793
167942008-06-26 Chong Yidong <cyd@stupidchicken.com>
16795
16796 * xdisp.c (extend_face_to_end_of_line): Fix last change.
16797
167982008-06-26 Jason Rumney <jasonr@gnu.org>
16799
16800 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
16801 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
16802
168032008-06-26 Juanma Barranquero <lekktu@gmail.com>
16804
16805 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
16806
168072008-06-26 Jason Rumney <jasonr@gnu.org>
16808
16809 * w32bdf.c, w32bdf.h: Remove obsolete files.
16810
16811 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
16812
16813 * w32gui.h: Don't include w32bdf.h.
16814 (XCharStruct, enum w32_char_font_type, W32FontStruct):
16815 Remove obsolete font support.
16816
16817 * w32font.h (struct w32font_info): Remove compat_w32_font.
16818 Add hfont member.
16819 (FONT_COMPAT): Remove obsolete macro.
16820
16821 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
16822 (w32font_encode_char, w32font_text_extents): Use new hfont member.
16823 (w32font_open_internal): Remove compat code. Set new hfont member.
16824 (Fx_select_font): Use new hfont member.
16825
16826 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
16827 (uniscribe_encode_char): Use new hfont member.
16828
16829 * w32term.c (x_draw_glyph_string_foreground)
16830 (x_draw_composite_glyph_string_foreground): Use new hfont member.
16831 (x_draw_glyph_string): Use metrics in w32font_info.
16832
168332008-06-26 Kenichi Handa <handa@m17n.org>
16834
16835 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
16836
168372008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
16838
16839 * unexnext.c:
16840 * m/ews4800.h:
16841 * m/hp9000s300.h:
16842 * m/ibm370aix.h:
16843 * m/mips-siemens.h:
16844 * m/ncr386.h:
16845 * m/next.h:
16846 * m/pmax.h:
16847 * m/powerpcle.h:
16848 * m/tandem-s2.h:
16849 * s/386bsd.h:
16850 * s/bsd386.h:
16851 * s/bsd4-1.h:
16852 * s/bsd4-2.h:
16853 * s/bsdos2-1.h:
16854 * s/bsdos2.h:
16855 * s/bsdos3.h:
16856 * s/bsdos4.h:
16857 * s/nextstep.h:
16858 * s/ultrix4-3.h:
16859 * s/usg5-0.h:
16860 * s/usg5-2-2.h:
16861 * s/usg5-2.h:
16862 * s/usg5-4-3.h:
16863 * s/ux4800.h:
16864 * s/uxpds.h:
16865 * s/uxpv.h: Remove support for obsolete systems.
16866 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
8f3a3ac2 16867 Remove, insert contents in s/hpux10-20.h.
aac0c6e3
MR
16868 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
16869 Remove, insert contents in s/aix4-2.h.
16870 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
16871 * s/bsd4-3.h: Rename to ...
16872 * s/bsd-common.h: ... this.
16873 * data.c:
16874 * doc.c:
16875 * ecrt0.c:
16876 * emacs.c:
16877 * fileio.c:
16878 * floatfns.c:
16879 * keyboard.c:
16880 * mem-limits.h:
16881 * print.c:
16882 * process.c:
16883 * sysdep.c:
16884 * syssignal.h:
16885 * systty.h:
16886 * syswait.h:
16887 * term.c:
16888 * unexec.c:
16889 * unexelf.c:
16890 * unexhp9k800.c:
16891 * m/hp800.h:
16892 * m/ibmrs6000.h:
16893 * m/mips.h:
16894 * m/vax.h:
16895 * s/darwin.h:
16896 * s/freebsd.h:
16897 * s/gnu.h:
16898 * s/ms-w32.h:
16899 * s/msdos.h:
16900 * s/netbsd.h:
16901 * s/template.h: Remove references to obsolete variables.
16902
16903 * Makefile.in: Add dependencies for all unexec files.
16904 (admindir): Remove unused variable.
16905 (UNEXEC_SRC): Remove references.
16906
169072008-06-25 Chong Yidong <cyd@stupidchicken.com>
16908
16909 * xfns.c (x_default_font_parameter): If Xft is available, first
16910 try Monospace-12 for the default font.
16911
169122008-06-25 Jason Rumney <jasonr@gnu.org>
16913
16914 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
16915
169162008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
16917
16918 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
16919
16920 * buffer.c (syms_of_buffer): Remove default-word-wrap.
16921
169222008-06-25 Juanma Barranquero <lekktu@gmail.com>
16923
16924 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
16925 <scroll-conservatively>: Fix typo in docstring.
16926
16927 * xselect.c (Fx_send_client_event): Doc fix.
16928
169292008-06-25 Kenichi Handa <handa@m17n.org>
16930
16931 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
16932
16933 * font.c (font_parse_fcname): Remove unused variables.
16934 (font_sort_entites): Delete the arg SPEC. Caller changed.
16935 Fix for the case of ! best_only.
16936 (font_delete_unmatched): Check DPI and AVGWIDTH too.
16937
16938 * lisp.h (Fstring_to_unibyte): EXFUN it.
16939
16940 * character.h (str_to_unibyte): Extern it.
16941
16942 * character.c (str_to_unibyte): New function.
16943
16944 * fns.c (Fstring_to_unibyte): New function.
16945 (syms_of_fns): Defsubr it.
16946
169472008-06-24 Kenichi Handa <handa@m17n.org>
16948
16949 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
16950 DPI too.
16951 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
16952
169532008-06-24 Andreas Schwab <schwab@suse.de>
16954
16955 * Makefile.in (${lispsource}loaddefs.el): Rename from
16956 ../lisp/loaddefs.el.
16957 (bootstrap-clean): Do what distclean does but don't remove
16958 Makefile.
16959 (distclean): Depend on bootstrap-clean and remove Makefile.
16960
169612008-06-24 Chong Yidong <cyd@stupidchicken.com>
16962
16963 * buffer.h (struct buffer): New member word_wrap.
16964
16965 * buffer.c (syms_of_buffer): New variables default-word-wrap and
16966 word-wrap.
16967 (init_buffer_once): Initialize them.
16968
16969 * dispextern.h (struct it): Replace bool truncate_lines_p with a
16970 line_wrap enum possessing three possible values.
16971
16972 * termopts.h: Replace truncate_partial_width_windows with
16973 Vtruncate_partial_width_windows.
16974
16975 * dispnew.c (direct_output_for_insert): Avoid direct output when
16976 inserting a space with word wrap on.
16977
16978 * indent.c (compute_motion): Obey integer values of
16979 truncate-partial-width-windows.
16980
16981 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
16982 replacing truncate_partial_width_windows.
16983 (init_iterator): If Vtruncate_partial_width_windows is an integer,
16984 truncate only if the window width is below that integer.
16985 (start_display, resize_mini_window, produce_stretch_glyph)
16986 (display_string, move_it_in_display_line_to): Use line_wrap.
bba3e508
SM
16987 (back_to_previous_visible_line_start, reseat_1):
16988 Reset string_from_display_prop_p.
aac0c6e3
MR
16989 (display_line): Extend default face to end of line when wrapping.
16990
169912008-06-24 Kim F. Storm <storm@cua.dk>
16992
16993 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
16994 to wrap continued lines at word boundaries.
16995
169962008-06-24 Jason Rumney <jasonr@gnu.org>
16997
16998 * font.c (Ffont_face_attributes): Multiply pixel size before point
16999 conversion to avoid multiplying rounding error.
17000
170012008-06-23 Jason Rumney <jasonr@gnu.org>
17002
17003 * w32term.c (x_draw_glyph_string_background)
17004 (x_draw_glyph_string): Remove old bdf font code.
17005
17006 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
17007
170082008-06-22 Kenichi Handa <handa@m17n.org>
17009
17010 * font.c (font_find_for_lface): Try the adstyle specified in
17011 the property of LFACE_FONT of LFACE (if any).
17012
170132008-06-21 Seiji Zenitani <zenitani@mac.com>
acd0102a 17014 Ryo Yoshitake <ryo@shiftmode.net>
aac0c6e3
MR
17015
17016 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
17017
170182008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
17019
17020 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
17021 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
17022 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
17023 (witness-emacs): Remove.
17024 (lisp, shortlisp): Move loaddefs.el earlier.
17025 (mostlyclean): Forget about witness-emacs.
17026
170272008-06-22 Glenn Morris <rgm@gnu.org>
17028
17029 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
17030 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
17031
170322008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17033
17034 * Makefile.in (PRECOMP): Remove.
17035 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
17036 (witness-emacs): Run `compile-first'.
17037 (.el.elc): Use the new compile-onefile target.
17038
170392008-06-21 Kenichi Handa <handa@m17n.org>
17040
17041 * xftfont.c (xftfont_open): Handle QCembolden only when
17042 FC_EMBOLDEN is defined.
17043
170442008-06-21 Andreas Schwab <schwab@suse.de>
17045
17046 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
17047 (.el.elc): Likewise.
17048
170492008-06-21 Miles Bader <miles@gnu.org>
17050
17051 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
17052 build dir, not the lisp source dir.
17053
170542008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17055
17056 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
17057 (bootstrapclean): Remove.
17058 (.el.elc): New rule.
17059 (PRECOMP): New var.
17060 (../lisp/subdirs.el): Remove.
17061 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
17062 (witness-emacs): New target.
17063 (mostlyclean): Remove witness-emacs as well.
17064 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
17065 Add witness-emacs dependency.
17066
170672008-06-20 Chong Yidong <cyd@stupidchicken.com>
17068
17069 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
17070 defined by the font.
17071
170722008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17073
17074 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
17075 (bootstrap-clean): New target that keeps TAGS around.
17076 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
17077 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
17078
170792008-06-20 Jason Rumney <jasonr@gnu.org>
17080
17081 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
17082 Remove obsolete font code.
17083
17084 * w32font.c (font_matches_spec): Use csb bitfield from font signature
17085 to determine language support.
17086
170872008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17088
17089 * sysdep.c (cfsetspeed): New fun extracted from the code.
17090 (cfmakeraw): Move before first use.
17091
170922008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
17093
17094 * sysdep.c (cfmakeraw): Provide fallback implementation.
17095 (serial_configure): Provide fallback implementation of cfsetspeed.
17096
170972008-06-20 Kenichi Handa <handa@m17n.org>
17098
17099 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
17100 the pattern.
17101
17102 * fontset.c (fontset_from_font): Copy font_spec before changing
17103 the elements.
17104
17105 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
17106
171072008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17108
17109 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
17110 for explicit `font' parameters.
17111
17112 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
17113
171142008-06-19 Kenichi Handa <handa@m17n.org>
17115
17116 * frame.c: Include <ctype.h>.
17117 (x_set_font_backend): Allow spacing characters in the X resource
17118 for FontBackend.
17119
171202008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
17121
17122 * w32fns.c, xfns.c (Qfont_param): New var.
17123 (syms_of_w32fns): Initialize it.
17124 (x_default_font_parameter): Record explicit `font' into
17125 `font-parameter'.
17126
171272008-06-18 Kenichi Handa <handa@m17n.org>
17128
17129 * font.c (font_parse_xlfd): Fix previous change.
17130 (font_parse_fcname): Don't use :fc-unknown-spec.
17131 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
17132 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
17133 (font_add_log): Prepend the driver name to the resulting fonts.
17134
17135 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
17136 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
17137 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
17138
17139 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
17140 (QCembolden): New variables.
17141 (syms_of_xftfont): DEFSYM them.
17142 (xftfont_open): Call XftFontMatch. Don't trust the result of
17143 XftTextExtents8 if the pixel_size is less than 5.
17144
171452008-06-18 Andreas Schwab <schwab@suse.de>
17146
17147 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
17148 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
17149
171502008-06-18 Jason Rumney <jasonr@gnu.org>
17151
17152 * w32font.c (w32font_list, w32font_match): Add logging.
17153
17154 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
17155
171562008-06-17 Chong Yidong <cyd@stupidchicken.com>
17157
17158 * font.c (font_parse_fcname): Store divider characters for
17159 unknown-spec list. For known key symbols, intern using correct
17160 symbol name.
17161
171622008-06-17 Kenichi Handa <handa@m17n.org>
17163
17164 * xfaces.c (realize_default_face): If the frame is not on window
17165 system, set the fontset of face to nil.
17166
171672008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
17168
17169 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
17170
171712008-06-16 Juanma Barranquero <lekktu@gmail.com>
17172
17173 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
17174 (build_font_name_from_vector): Delete externs.
17175
17176 * xfaces.c (struct font_name): Don't declare.
17177
171782008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
17179
17180 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
17181
171822008-06-16 Chong Yidong <cyd@stupidchicken.com>
17183
17184 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
17185
171862008-06-16 Juanma Barranquero <lekktu@gmail.com>
17187
17188 * font.c (Ffont_spec): Fix usage in docstring.
17189 (Ffont_face_attributes): Doc fix.
17190
171912008-06-16 Andreas Schwab <schwab@suse.de>
17192
17193 * font.c (Ffont_face_attributes): Fix definition.
17194
171952008-06-16 Jason Rumney <jasonr@gnu.org>
17196
17197 * font.h (font_style_symbolic_from_value): Remove.
17198
17199 * font.c (font_style_symbolic_from_value): Remove.
17200 (font_style_symbolic): Revert to pre 2008-06-13 version.
17201
17202 * w32font.c (w32_to_fc_weight): New function.
17203 (w32font_full_name, logfont_to_fcname): Use it.
17204
172052008-06-16 Kenichi Handa <handa@m17n.org>
17206
17207 * font.c (font_check_object): Delete it.
17208 (font_clear_cache): Check if a font-object is alive.
17209 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
17210 font-object to nil.
17211 (font_close_object): Don't check FONT_CLOSE_OBJECT.
17212 (font_at): Don't call font_check_object.
17213 (Ffont_get): Return a symbol for :weight, :slant, and :width.
17214
172152008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
17216
17217 * puresize.h (BASE_PURESIZE): Increase to 1230000.
17218
172192008-06-16 Chong Yidong <cyd@stupidchicken.com>
17220
17221 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
17222
172232008-06-15 Chong Yidong <cyd@stupidchicken.com>
17224
17225 * font.c (font_parse_fcname): Only one decimal point.
17226 (font_unparse_fcname): Handle data in family and foundry indices
17227 as symbols, not strings.
17228 (font_unparse_gtkname, Ffont_face_attributes): New functions.
17229
17230 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
17231
17232 * font.h (font_unparse_gtkname): Add prototype.
17233
172342008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
17235
17236 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
17237
172382008-06-15 Andreas Schwab <schwab@suse.de>
17239
17240 * font.c (font_update_drivers): Fix crash when no drivers match.
17241
172422008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17243
17244 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
17245 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
17246
172472008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
17248
17249 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
17250
172512008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
17252
17253 * process.c (Fserial_process_configure, Fprocess_send_eof):
17254 Use EQ to compare Lisp_Objects.
17255
172562008-06-13 Jason Rumney <jasonr@gnu.org>
17257
17258 * w32fns.c (Fw32_select_font): Remove old font API function.
17259
17260 * w32font.c (logfont_to_fcname): New function.
17261 (Fx_select_font): New font dialog function compatible with
17262 GTK/fontconfig version.
17263
17264 * font.c (font_style_symbolic_from_value): New function.
17265 (font_style_symbolic): Use it.
17266
17267 * font.h (font_style_symbolic_from_value): Declare new function.
17268
172692008-06-13 Juanma Barranquero <lekktu@gmail.com>
17270
17271 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
17272 <font-width-table>: Fix typos in docstrings.
17273
172742008-06-13 Daniel Engeler <engeler@gmail.com>
17275
17276 These changes add serial port access.
17277 * process.c: Add HAVE_SERIAL.
17278 (Fdelete_process, Fprocess_status, Fset_process_buffer)
17279 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
17280 (list_processes_1, select_wrapper, Fstop_process)
17281 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
17282 (status_notify): Modify to handle serial processes.
17283 [HAVE_SERIAL] (Fserial_process_configure)
17284 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
17285 New functions.
17286 * process.h (struct Lisp_Process): Add `type'.
17287 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
17288 New functions.
17289 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
17290 serial ports.
b71ac3dd 17291 (serial_open, serial_configure): New functions.
aac0c6e3
MR
17292 * w32.h: Add FILE_SERIAL.
17293 (struct _child_process): Add ovl_read, ovl_write.
17294
172952008-06-13 Kenichi Handa <handa@m17n.org>
17296
17297 * dispextern.h (enum lface_attribute_index): New member
17298 LFACE_FOUNDRY_INDEX.
17299
17300 * font.c (font_score): Delete arg alternate_families. Check only
17301 weight, slant, width, and size. Ignore the difference of alias
17302 style symbols.
17303 (font_sort_entites): Adjust for the above change. Reflect the
17304 order of font-driver to scores.
17305 (font_list_entities): Don't check alternate_familes here.
17306 (font_clear_prop): Handle foundry.
17307 (font_update_lface): Don't parse "foundry-family" form here.
17308 Handle FONT_FOUNDRY_INDEX.
17309 (font_find_for_lface): Likewise. Handle alternate families here.
17310 If registry is nil, try iso8859-1 and ascii-0.
17311 (font_open_for_lface): Pay attention to size in ENTITY.
17312 (font_open_by_name): Simplify by calling font_load_for_lface.
17313 (free_font_driver_list): Delete it.
17314 (font_update_drivers): Preserve the order of backends.
17315 (syms_of_font): Setting of sort_shift_bits adjusted for the change
17316 of font_score and font_sort_entites.
17317 (font_update_sort_order): Likewise.
17318
17319 * xfaces.c (LFACE_FOUNDRY): New macro.
17320 (check_lface_attrs): Check foundry.
17321 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
17322 (merge_face_vectors): Check foundry.
17323 (merge_face_ref): Likewise.
17324 (Finternal_set_lisp_face_attribute): Likewise.
17325 (x_update_menu_appearance): Likewise.
17326 (Finternal_get_lisp_face_attribute): Likewise.
17327 (lface_hash): Likewise.
17328 (lface_same_font_attributes_p): Likewise.
17329 (x_supports_face_attributes_p): Likewise.
17330 (tty_supports_face_attributes_p): Likewise.
17331 (Finternal_set_alternative_font_family_alist): Intern strings.
17332 (Finternal_set_alternative_font_registry_alist): Downcase strings.
17333 (realize_default_face): Set LFACE_FOUNDRY (lface).
17334
17335 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
17336 font-driver at first.
17337
17338 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
17339
173402008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
17341
17342 * lread.c (Fload): Use xfree, not free on saved_doc_string.
17343
173442008-06-12 Jim Meyering <meyering@redhat.com>
17345
17346 Make unexec_free handle NULL the same way free does.
17347 * unexmacosx.c (unexec_free): Ignore a NULL argument.
17348
173492008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
17350
17351 * character.h (CHAR_TO_BYTE_SAFE): New macro.
17352 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
17353 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
17354 (WEAK_ALIAS): Simplify.
17355 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
17356 when searching a unibyte buffer.
17357
173582008-06-12 Chong Yidong <cyd@stupidchicken.com>
17359
17360 * xfns.c (Fx_select_font): Rename from x-font-dialog.
17361
173622008-06-12 Juanma Barranquero <lekktu@gmail.com>
17363
17364 * w32font.c: Include ctype.h.
17365
173662008-06-11 Jason Rumney <jasonr@gnu.org>
17367
17368 * w32font.c (w32font_encode_char): Detect missing glyphs that are
17369 misreported as space.
17370 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
17371 as aliases for registry iso10646-1.
17372
173732008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
17374
17375 * buffer.c (clone_per_buffer_values): Skip `name'.
17376
173772008-06-11 Chong Yidong <cyd@stupidchicken.com>
17378
17379 * font.c (font_parse_fcname): Fix last change; accept decimal
17380 points in font size.
17381
173822008-06-10 Jason Rumney <jasonr@gnu.org>
17383
17384 * w32uniscribe.c (add_opentype_font_name_to_list):
17385 Skip non unicode fonts.
17386
173872008-06-10 Chong Yidong <cyd@stupidchicken.com>
17388
17389 * xfns.c (Fx_font_dialog): New function.
17390
17391 * gtkutil.c (xg_dialog_response_cb): Rename from
17392 xg_file_response_callback.
17393 (pop_down_dialog): Rename from pop_down_file_dialog.
17394 (xg_get_file_name): Callers changed.
17395 (xg_get_font_name): New function.
17396
17397 * gtkutil.h (xg_get_font_name): Insert prototype.
17398
173992008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
17400
17401 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
17402 x_underline_minimum_display_offset.
17403 (syms_of_xdisp): Declare it here rather than in xterm.c.
17404 * dispextern.h (underline_minimum_offset): Declare it.
17405 * w32term.c (x_draw_glyph_string): Use it.
17406 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
17407 (syms_of_xterm): Don't declare it any more.
17408 (x_draw_glyph_string): Adjust to the new name.
17409
8719abec 174102008-06-10 David De La Harpe Golden <david@harpegolden.net>
aac0c6e3
MR
17411
17412 * xterm.c (x_underline_minimum_display_offset): New var.
17413 (x_draw_glyph_string): Use it.
17414 (syms_of_xterm): Declare it.
17415
174162008-06-10 Chong Yidong <cyd@stupidchicken.com>
17417
17418 * font.c (font_parse_fcname): Accept GTK-style font names too.
17419
174202008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
17421
17422 * dired.c (file_name_completion): Don't return t if the match is exact
17423 but with different capitalization.
17424 * minibuf.c (Ftry_completion): Simplify.
17425
17426 * window.c (Vwindow_point_insertion_type): New var.
17427 (set_window_buffer): Use it.
17428 (syms_of_window): Init and export it to Lisp.
17429
174302008-06-10 Kenichi Handa <handa@m17n.org>
17431
17432 * font.h (font_intern_prop): Prototype adjusted.
17433
17434 * font.c (font_intern_prop): New arg force_symbol.
17435 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
17436 Adjust for the change of font_intern_prop.
17437
17438 * ftfont.c (ftfont_pattern_entity):
17439 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
17440 (w32_registry):
17441 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
17442 the change of font_intern_prop.
17443
174442008-06-09 Juanma Barranquero <lekktu@gmail.com>
17445
17446 * w32menu.c (digest_single_submenu): Declare extern.
17447
174482008-06-09 Jason Rumney <jasonr@gnu.org>
17449
17450 * w32term.c (x_make_frame_visible): Use alternate restore flags.
17451
17452 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
17453 (parse_single_submenu): Remove.
17454 (digest_single_submenu): Remove.
17455 (syms_of_w32menu): Don't initialise variables that have moved
17456 to menu.c.
17457 (set_frame_menubar): Sync with version in xmenu.c.
17458 (w32_menu_show): Sync with xmenu_show in xmenu.c.
17459
17460 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
17461 Make static again.
17462
174632008-06-09 Jason Rumney <jasonr@gnu.org>
17464
17465 Changes to w32 files related to the move of common menu code
17466 to menu.c on 2008-06-08 by Chong Yidong.
17467
17468 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
17469 defs to w32gui.h.
17470 (single_keymap_panes, push_menu_item, push_menu_pane):
17471 Make globally visible.
17472
17473 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
17474 (local_free, malloc_widget_value, free_widget_value)
17475 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
17476 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
17477 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
17478 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
17479 (menu_items, menu_items_allocated, menu_items_used)
17480 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
17481 (init_menu_items, finish_menu_items, discard_menu_items)
17482 (grow_menu_items, push_submenu_start, push_submenu_end)
17483 (push_left_right_boundary, push_menu_pane, push_menu_item)
17484 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
17485 (free_menubar_widget_tree_value, parse_single_submenu)
17486 (update_submenu_strings): Remove functions.
17487 (xmalloc_widget_value): Remove and declare extern.
17488
17489 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
17490 (OBJ1): Build it.
17491
17492 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
17493 (local_heap, local_alloc, local_free, malloc_widget_value)
17494 (free_widget_value): Define here.
17495
174962008-06-09 Kenichi Handa <handa@m17n.org>
17497
17498 * font.h (Qascii_0): Extern it.
17499
17500 * font.c (Qascii_0): New variable.
17501 (syms_of_font): DEFSYM it.
17502 (font_open_by_name): If the registry "iso8859-1" fails, try also
17503 "ascii-0".
17504
17505 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
17506
175072008-06-08 Kenichi Handa <handa@m17n.org>
17508
17509 * .gdbinit (xfont): New command.
17510
175112008-06-08 Andreas Schwab <schwab@suse.de>
17512
17513 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
17514 * Makefile.in (menu.o): Update dependencies.
17515
17516 * Makefile.in (obj): Always add menu.o.
17517 * emacs.c (main): Always call syms_of_menu.
17518 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
17519
175202008-06-08 Chong Yidong <cyd@stupidchicken.com>
17521
17522 * Makefile.in: Compile menu.c.
17523
17524 * lisp.h: Declare syms_of_menu.
17525
17526 * emacs.c (main): Call syms_of_menu.
17527
17528 * keyboard.h: Relocate platform-independent menu definitions from
17529 xmenu.c.
17530
17531 * menu.c: New file. Relocate platform-independent menu
17532 definitions from xmenu.c. Suggested by Adrian Robert.
17533
17534 * xmenu.c: Remove platform-independent menu definitions.
560bb7ae 17535 (menu_items, menu_items_inuse, menu_items_allocated)
aac0c6e3
MR
17536 (menu_items_used, menu_items_n_panes)
17537 (menu_items_submenu_depth): Move to keyboard.h.
17538 (init_menu_items, finish_menu_items, unuse_menu_items)
17539 (discard_menu_items, restore_menu_items, save_menu_items)
17540 (grow_menu_items, push_submenu_start, push_submenu_end)
17541 (push_left_right_boundary, push_menu_pane, push_menu_item)
17542 (keymap_panes, single_keymap_panes, single_menu_item)
17543 (list_of_panes, list_of_items, find_and_call_menu_selection)
17544 (xmalloc_widget_value, free_menubar_widget_value_tree)
17545 (parse_single_submenu, digest_single_submenu)
17546 (update_submenu_strings): Move to menu.c.
17547
175482008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
17549
17550 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
17551
175522008-06-06 Miles Bader <miles@gnu.org>
17553
17554 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
17555 face, not frame default.
17556
175572008-06-05 Martin Rudalics <rudalics@gmx.at>
17558
17559 * window.c (pop_up_windows, pop_up_frames)
17560 (display_buffer_reuse_frames, Vpop_up_frame_function)
17561 (Vdisplay_buffer_function, Veven_window_heights)
17562 (Vspecial_display_buffer_names, Vspecial_display_regexps)
17563 (Vspecial_display_function, Vsame_window_buffer_names)
17564 (Vsame_window_regexps, split_height_threshold)
17565 (Vsplit_window_preferred_function): Move those vars to window.el.
17566 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
17567 (Fdisplay_buffer): Move those functions to window.el.
17568 (syms_of_window): Remove corresponding declarations.
17569 (display_buffer): New function.
17570 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
17571 * dispnew.c (Flast_nonminibuf_frame): New function.
17572 * buffer.c (Fpop_to_buffer): Move to window.el.
17573
175742008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
17575
17576 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
17577
175782008-06-05 Kenichi Handa <handa@m17n.org>
17579
17580 * coding.c (detect_coding): Fix previous change.
17581 (detect_coding_system): Likewise.
17582
175832008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
17584
17585 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
17586
17587 * keymap.c (Vminibuffer_local_filename_must_match_map):
17588 Rename from Vminibuffer_local_must_match_filename_map.
17589 (syms_of_keymap):
17590 * minibuf.c (Fcompleting_read): Adjust accordingly.
17591 * commands.h: Rename declaration as well.
17592
175932008-06-05 Kenichi Handa <handa@m17n.org>
17594
17595 * font.c (Ffont_spec): Don't use font_parse_family_registry for
17596 family name.
17597 (Ffont_put): Likewise.
17598
17599 * fontset.c (fontset_find_font): Call font_open_for_lface with the
17600 current font-spec.
17601
17602 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
17603 is unspecified.
17604
17605 * xfaces.c (realize_x_face): If the font-related face attributes
17606 are the same as those of default face, realize a new fontset from
17607 default->fontset.
17608 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
17609
176102008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
17611
17612 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
17613 (move_it_in_display_line): New wrapper.
17614
17615 * window.c (window_scroll_pixel_based_preserve_x)
17616 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
17617 (window_scroll_pixel_based, window_scroll_line_based):
17618 Use them to preserve column positions.
17619 (syms_of_window): Initialize them.
17620
17621 * indent.c (Fvertical_motion): Extend first arg to allow passing an
17622 (HPOS . VPOS) pair.
17623
17624 * dispextern.h (move_it_in_display_line): Declare.
17625
176262008-06-05 Juanma Barranquero <lekktu@gmail.com>
17627
17628 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
17629 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
17630 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
17631
176322008-06-04 Juanma Barranquero <lekktu@gmail.com>
17633
17634 * window.c (Fset_window_parameter): Doc fix.
17635 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
17636
176372008-06-04 Joakim Verona <joakim@verona.se>
17638
17639 * window.h (struct window): Add new member window_parameters.
17640
17641 * window.c (Fwindow_parameters, Fwindow_parameter)
17642 (Fset_window_parameter): New defuns.
17643 (syms_of_window): Defsubr the new defuns.
17644 (make_window): Initialize window_parameters to nil.
17645
176462008-06-04 John Paul Wallington <jpw@pobox.com>
17647
17648 * eval.c (Fdefmacro): Doc fix.
17649
176502008-06-04 Kenichi Handa <handa@m17n.org>
17651
17652 * coding.c (detect_coding): Fix handling of coding->head_ascii.
17653 Be sure to call setup_coding_system when we find a proper coding system.
17654 (detect_coding_system): Fix handling of coding->head_ascii.
17655
176562008-06-03 Andreas Schwab <schwab@suse.de>
17657
17658 * font.c (font_prop_validate_spacing): Fix last change.
17659
176602008-06-03 Kenichi Handa <handa@m17n.org>
17661
17662 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
17663 (font_parse_fcname): Fix handling of unknown key.
17664
17665 * xfont.c (xfont_list): Try an alias.
17666
17667 * charset.c (char_charset): Return NULL if the arg charset_list is
17668 specified and C doesn't belong to any of them.
17669
176702008-06-02 Chip Coldwell <coldwell@redhat.com>
17671
17672 * font.c (font_pixel_size): Don't take cdr of an integer.
17673
176742008-06-02 Jim Meyering <meyering@redhat.com>
17675
17676 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
17677 * alloc.c (xfree): Return right away for a NULL arg.
17678 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
17679 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
17680 * mac.c (create_apple_event_from_event_ref): Likewise.
17681 (create_apple_event_from_drag_ref, cfstring_create_normalized):
17682 Likewise.
17683 * doprnt.c (doprnt1): Likewise.
17684 * frame.c (frame): Likewise.
17685 * keyboard.c (wipe_kboard): Likewise.
17686 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
17687 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
17688 * term.c (tty_default_color_capabilities, maybe_fatal)
17689 (delete_tty): Likewise.
17690 * w16select.c (string): Likewise.
17691 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
17692 * w32bdf.c (w32_free_bdf_font): Likewise.
17693 * w32fns.c (w32_unload_font): Likewise.
17694 * w32font.c (w32font_close): Likewise.
17695 * window.c (size_window): Likewise.
17696 * xselect.c (receive_incremental_selection): Likewise.
17697 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
17698 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
17699 * w32.c (stat): Likewise.
17700
17701 Remove useless if-before-free tests.
17702 * editfns.c (Fset_time_zone_rule): Likewise.
17703 * lread.c (nosuffix): Likewise.
17704 * ralloc.c (get_bloc): Likewise.
17705 * regex.c (reg_free): Likewise.
17706 * xftfont.c (xftfont_open, xftfont_close): Likewise.
17707 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
17708 * xsmfns.c (smc_save_yourself_CB): Likewise.
17709
177102008-06-02 Kenichi Handa <handa@m17n.org>
17711
17712 * font.c (font_find_for_lface): Handle float font size.
17713 (font_open_for_lface): Likewise.
17714
17715 * xfaces.c (x_supports_face_attributes_p): Check face->font before
17716 comparing the properties.
17717
177182008-06-01 Jason Rumney <jasonr@gnu.org>
17719
17720 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
17721 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
17722 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
17723 Don't add empty script list.
17724 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
17725
177262008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
17727
17728 * Makefile.in (dot, dotdot): Remove, update users.
17729 ".." has been used elsewhere in the file for a long time.
17730 (LIBXT_STATIC): Remove conditional based on unused variable.
17731
177322008-06-01 Miles Bader <miles@gnu.org>
17733
17734 * xfaces.c (Vface_remapping_alist): New variable.
17735 (syms_of_xfaces): Initialize it.
17736 (enum named_merge_point_kind): New type.
17737 (struct named_merge_point): Add `named_merge_point_kind' field.
17738 (push_named_merge_point): Make cycle detection respect different
17739 named-merge-point kinds.
17740 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
17741 Remove face-name alias resolution.
17742 (lface_from_face_name): New definition using
17743 `lface_from_face_name_no_resolve'.
17744 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
17745 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
17746 (get_lface_attributes): New definition that layers face-remapping on
17747 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
17748 (lookup_basic_face): New function.
17749 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
17750 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
17751 `get_lface_attributes'.
17752 (face_at_buffer_position): Use `lookup_basic_face' to lookup
17753 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
17754 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
17755
17756 * xdisp.c (init_iterator): Pass base_face_id through
17757 `lookup_basic_face' when we actually use it as a face-id.
17758 (handle_single_display_prop): Use `lookup_basic_face' to lookup
17759 DEFAULT_FACE_ID.
17760
17761 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
17762 lookup the initial face-id.
17763
17764 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
17765
177662008-06-01 Juanma Barranquero <lekktu@gmail.com>
17767
17768 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
17769 (Fremove_text_properties): Fix typos in docstrings.
17770
177712008-05-31 Kenichi Handa <handa@m17n.org>
17772
17773 * font.c (font_list_entities): Fix the car part of data to be
17774 stored in the cache.
17775
17776 * ftfont.c (ftfont_font_format): Don't use strcasestr.
17777
177782008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
17779
17780 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
17781 Add a `test' argument so another predicate than `equal' can be used.
17782 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
17783 (map_char_table): Remove unused vars `c' and `i'.
17784 * lisp.h (Foptimize_char_table): Adjust declaration.
17785 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
17786
177872008-05-30 Kenichi Handa <handa@m17n.org>
17788
17789 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
17790 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
17791 defined.
17792
177932008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
17794
17795 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
17796 (Fmake_variable_frame_local): Disallow mixing buffer-local and
17797 frame-local settings for the same variable.
17798
177992008-05-30 Kenichi Handa <handa@m17n.org>
17800
17801 * fontset.c (Ffont_info): Move to font.c.
17802 (syms_of_fontset): Delete defsubr of Sfont_info.
17803
17804 * font.c (font_style_to_value, font_score): Delete casting of the
17805 args to xstcasecmp.
17806 (register_font_driver): Increment num_font_drivers only when
17807 registering the driver globally.
17808 (Ffont_info): Move from fontset.c. Handle a font object too.
17809 (syms_of_font): Defsubr Sfont_info.
17810
178112008-05-29 Kenichi Handa <handa@m17n.org>
17812
17813 * coding.h (enum define_coding_utf8_arg_index): New enum.
17814 (enum coding_attr_index): Change coding_attr_utf_16_bom to
17815 coding_attr_utf_bom.
17816 (enum utf_bom_type): Rename from utf_16_bom_type.
17817 (struct utf_16_spec): Adjust for the above change.
17818 (struct coding_system): Add utf_8_bom in `spec' union.
17819
17820 * coding.c (CODING_UTF_8_BOM): New macro.
17821 (enum coding_category): Delete coding_category_utf_8, add
17822 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
17823 coding_category_utf_8_sig.
17824 (CATEGORY_MASK_UTF_8): Delete it.
17825 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
17826 (CATEGORY_MASK_UTF_8_SIG): New macros.
17827 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
17828 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
17829 CATEGORY_MASK_UTF_8_SIG.
17830 (CATEGORY_MASK_UTF_8): New macro.
17831 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
17832 (detect_coding_utf_8): Check BOM.
17833 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
17834 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
17835 (encode_coding_utf_16): Likewise.
17836 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
17837 (detect_coding, detect_coding_system): Handle utf-8-auto.
17838 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
17839 (syms_of_coding): Fix setting up of Vcoding_category_table.
17840
178412008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
17842
17843 * process.c (Faccept_process_output): If `millisec' is non-nil,
17844 `seconds' default to 0.
17845 (wait_reading_process_output): Also return non-nil if we read output
17846 from a non-running process.
17847
178482008-05-29 Jason Rumney <jasonr@gnu.org>
17849
17850 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
17851 `raster' specified.
17852 (add_font_entity_to_list): Allow non-opentype truetype fonts back
17853 in the uniscribe backend, but disallow any font that has no
17854 unicode subrange support.
17855
178562008-05-29 Juanma Barranquero <lekktu@gmail.com>
17857
17858 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
17859 Fix typos in docstrings.
17860
178612008-05-29 Kenichi Handa <handa@m17n.org>
17862
17863 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
17864 (Fx_family_fonts): Set frame correctly.
17865
178662008-05-28 Jason Rumney <jasonr@gnu.org>
17867
17868 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
17869
178702008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
17871
17872 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
17873 calling build_annotations.
17874
178752008-05-28 Juanma Barranquero <lekktu@gmail.com>
17876
17877 * coding.c (Fdecode_coding_region, Fencode_coding_region)
17878 (Fencode_coding_string):
17879 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
17880 <latin-extra-code-table>: Fix typos in docstrings.
17881 (syms_of_coding) <coding-system-alist>: Doc fix.
17882 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
17883
178842008-05-28 Kenichi Handa <handa@m17n.org>
17885
17886 * fontset.c (Ffont_info): Don't call font_close_object.
17887
17888 * font.c (font_parse_family_registry): Use Ffont_put to validate
17889 foundry and family.
17890 (font_delete_unmatched): Don't check spacing.
17891 (font_list_entities): Add spacing to the spec to list fonts.
17892
17893 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
17894 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
17895
17896 * coding.c (encode_coding_raw_text): Fix previous change.
17897 (encode_coding_object): When the dst_object is a buffer and is
17898 different from src_object, move gap to PT.
17899
179002008-05-27 Chong Yidong <cyd@stupidchicken.com>
17901
17902 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
17903
179042008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
17905
17906 * coding.c (encode_coding_raw_text): Set coding->produced_char for
17907 all branches. Compute it differently.
17908
17909 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
17910
179112008-05-27 Juanma Barranquero <lekktu@gmail.com>
17912
17913 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
17914 into "else if () ... else ...".
17915
179162008-05-27 Jason Rumney <jasonr@gnu.org>
17917
17918 * w32font.c (w32font_open_internal): Determine if glyph indices
17919 are likely to work here.
17920
179212008-05-27 Chong Yidong <cyd@stupidchicken.com>
17922
17923 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
17924 draw overlap glyphs with appropriate highlighting.
17925
179262008-05-27 Kenichi Handa <handa@m17n.org>
17927
17928 * xfont.c (xfont_open): Fix calculation of font->average_width.
17929
179302008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
17931
17932 * casefiddle.c (casify_object): Try to guess better whether the
17933 argument is a byte or a char.
17934
179352008-05-26 Andreas Schwab <schwab@suse.de>
17936
17937 * xselect.c (x_reply_selection_request): Properly handle format == 32.
17938 Always send multiples of format size.
17939
17940 * xterm.c (x_set_frame_alpha): Fix type mismatch.
17941
179422008-05-26 Jason Rumney <jasonr@gnu.org>
17943
17944 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
17945 (compute_metrics): Don't set failure if we just cleared the cache.
17946 (w32_weight_table): Remove unused variable.
17947 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
17948 backwards compatibility.
17949
179502008-05-25 Kenichi Handa <handa@m17n.org>
17951
17952 * w32term.c (x_draw_glyph_string):
17953 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
17954
17955 * xfaces.c: Delete unused function prototypes.
17956 (xstrlwr, font_frame): Delete them.
17957 (clear_face_cache): Delete unused variable.
17958
17959 * xftfont.c (xftfont_open): Delete unused variable.
17960 If underline_thickness is not 1, adjust underline_position.
17961
17962 * ftxfont.c (ftxfont_open): Delete unused variable.
17963
17964 * fontset.c (face_for_char): Optimize for the case of no charset
17965 property.
17966
17967 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
17968 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
17969 (otf_open, font_otf_capability, generate_otf_features)
17970 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
17971 Comment out by surrounding "#if 0" and "#endif" for the moment.
17972 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
17973 (syms_of_font): Codes for accessing above commented out.
17974
179752008-05-24 Eli Zaretskii <eliz@gnu.org>
17976
17977 * w32proc.c: Include dispextern.h.
17978
17979 * w32.c: Include dispextern.h.
17980
179812008-05-23 Juanma Barranquero <lekktu@gmail.com>
17982
17983 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
17984 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
17985 Fix typos in docstrings.
17986
179872008-05-23 Jason Rumney <jasonr@gnu.org>
17988
17989 * xsmfns.c: Remove includes that are already included by config.h.
17990
179912008-05-23 Kenichi Handa <handa@m17n.org>
17992
17993 * charset.c (Qemacs, charset_emacs): New variables.
17994 (char_charset): Fix for non-Unicode characters.
17995 (syms_of_charset): Define charset_emacs.
17996
17997 * w32term.c (x_draw_glyph_string): Be sure to update
17998 s->underline_thickness and s->underline_position. Be sure to draw
17999 underline within the current line area.
18000
18001 * xterm.c (x_draw_glyph_string): Be sure to update
18002 s->underline_thickness and s->underline_position. Be sure to draw
18003 underline within the current line area.
18004
18005 * fontset.c: Delete unused variables and add casting for char *
18006 throughout the file.
18007 (fontset_font): Try the fallback fonts of the current fontset
18008 before consulting the default fontset.
18009
18010 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
18011
18012 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
18013
180142008-05-22 Jason Rumney <jasonr@gnu.org>
18015
18016 * font.c: Don't include strings.h.
18017
18018 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
18019
18020 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
18021 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
18022 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
18023 to call xstrcasecmp.
18024
18025 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
18026
18027 * fontset.c (fs_query_fontset): Use xstrcasecmp.
18028
18029 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
18030
18031 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
18032
180332008-05-22 Kenichi Handa <handa@m17n.org>
18034
18035 * puresize.h (BASE_PURESIZE): Increase to 1220000.
18036
18037 * font.c (font_prop_validate_style): Adjust for the format
18038 change of font_style_table.
18039
18040 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
18041 two args.
18042
18043 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
18044 two args.
18045
180462008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18047
18048 * minibuf.c (keys_of_minibuf): Delete.
18049 * lisp.h (keys_of_minibuf): Delete.
18050 * emacs.c (main): Don't call keys_of_minibuf.
18051
180522008-05-22 Kenichi Handa <handa@m17n.org>
18053
18054 * ftfont.c (ftfont_resolve_generic_family): Rename from
18055 ftfont_list_generic_family. Return a single family for each
18056 generic family.
18057 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
18058 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
18059 Call font_add_log.
18060 (ftfont_match): Call font_add_log.
18061
18062 * font.h (Ffont_xlfd_name): EXFUN adjusted.
18063 (FONT_DEBUG): Define it.
18064 (font_add_log): Extern it.
18065 (font_assert): Rename from xassert.
18066
18067 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
18068 (xfont_list_family): Call font_add_log.
18069 (xfont_match): Likewise.
18070 (memq_no_quit): Delete.
18071
18072 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
18073 call of Ffont_xlfd_name.
18074
18075 * xfaces.c (struct table_entry, slant_table, weight_table)
18076 (swidth_table): Move to font.c.
18077
18078 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
18079 xassert are changed to font_assert. Delete many unused variables.
18080 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
18081 New variables.
18082 (struct table_entry): Move from xfaces.c and modified.
18083 (weight_table, slant_table, width_table): Move from xfaces.c and
18084 contents adjusted for the change of struct table_entry.
18085 (font_style_to_value, font_style_symbolic): Adjust for the
18086 format change of font_style_table.
18087 (font_parse_family_registry): Don't overwrite existing foundry and
18088 family of font_spec.
18089 (font_score): Fix calculation of diff for sizes.
18090 (font_sort_entites): Call font_add_log.
18091 (font_delete_unmatched): Return a newly created list.
18092 (font_list_entities): Fix previous change. Call font_add_log.
18093 (font_matching_entity, font_open_entity, font_close_entity):
18094 Call font_add_log.
18095 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
18096 (Finternal_set_font_style_table): Delete.
18097 (BUILD_STYLE_TABLE): New macro.
18098 (build_style_table): New function.
18099 (Vfont_log, font_log_env_checked): New variables.
18100 (font_add_log): New function.
18101 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
18102 Declare Lisp variables "font-weight-table", "font-slant-table",
18103 "font-width-table", and "font-log". Initialize font_style_table.
18104
181052008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
18106
18107 * xterm.c (x_set_frame_alpha): Move declarations before statements.
18108
181092008-05-21 Seiji Zenitani <zenitani@mac.com>
acd0102a 18110 Ryo Yoshitake <ryo@shiftmode.net>
aac0c6e3
MR
18111
18112 * frame.c (Qalpha): Add a new frame parameter `alpha'.
18113 (Vframe_alpha_lower_limit): New variable.
18114 (x_set_alpha): New function.
18115
18116 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
18117
18118 * xfns.c (x-create-frame, Qalpha):
18119 Initialize the frame parameter `alpha'.
18120 * xterm.c (OPAQUE, OPACITY): New.
18121 (x_set_frame_alpha): New function.
18122 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
18123
18124 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
18125 * w32fns.c (w32_frame_parm_handlers): Likewise.
18126
181272008-05-20 Jason Rumney <jasonr@gnu.org>
18128
18129 * w32font.c (add_font_entity_to_list): Don't add non-opentype
18130 truetype fonts to opentype list.
18131
181322008-05-20 Juanma Barranquero <lekktu@gmail.com>
18133
18134 * fontset.c (Ffontset_info): Doc fix.
18135 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
18136 <ignore-relative-composition>: Fix typos in docstrings.
18137
18138 * font.c (syms-of-font) <font-encoding-alist>:
18139 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
18140 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
18141 (Ffont_otf_alternates): Doc fixes.
18142
181432008-05-20 Kenichi Handa <handa@m17n.org>
18144
18145 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
18146 font.h through out the file.
18147 (FONT_DRIVERS): Rename from FONTOBJ.
18148 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
18149 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
18150
18151 * emacs.c (main): Call syms_of_font unconditionally.
18152
18153 * font.h (find_font_encoding): Extern it.
18154
18155 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
18156 fontset.c.
194d44e7 18157 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
aac0c6e3
MR
18158 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
18159 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
18160 only when HAVE_WINDOW_SYSTEM is defined.
18161 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
18162 when HAVE_WINDOW_SYSTEM is defined.
18163
18164 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
18165 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
18166
18167 * xfaces.c: Include font.h unconditionally.
18168 (merge_face_ref, merge_face_vectors)
18169 (Finternal_set_lisp_face_attribute): Cancel the previous change.
18170
181712008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
18172
18173 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
18174 indirect_variable.
18175 * eval.c (lisp_indirect_variable): New fun.
18176 (Fuser_variable_p): Use it.
18177
181782008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
18179
18180 * lisp.h (indirect_variable):
18181 * data.c (indirect_variable, let_shadows_buffer_binding_p):
18182 Use Lisp_Symbol pointers rather than Lisp_Object.
18183 Adjust callers.
18184 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
18185 To this end, change calling-convention.
18186
18187 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
18188 if some non-hidden buffers are selected by string&pred.
18189
181902008-05-19 Chong Yidong <cyd@stupidchicken.com>
18191
18192 * process.c (wait_reading_process_output): Always check status
18193 when in batch mode.
18194
181952008-05-19 Kenichi Handa <handa@m17n.org>
18196
18197 * font.c (font_list_entities): Fix handling of cache.
18198 (font_matching_entity): Likewise.
18199
18200 * ftfont.c (cs_iso8859_1): Delete.
18201 (ft_face_cache): New variable.
18202 (struct ftfont_info): New member fc_charset_idx.
18203 (ftfont_build_basic_charsets): Delete.
18204 (fc_charset_table): New variable.
18205 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
18206 . FC_CHARSET_IDX) as :font-entity property in the font entity.
18207 Callers changed.
18208 (ftfont_lookup_cache, ftfont_get_charset): New functions.
18209 (ftfont_spec_pattern): New argument fc_charset_idx.
18210 Check registry more rigidly. Change callers.
18211 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
18212 change of :font-entity property of the font.
18213
18214 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
18215 property of the font.
18216
182172008-05-18 Juanma Barranquero <lekktu@gmail.com>
18218
18219 * coding.c (Fcoding_system_p): Rename argument to match docstring.
18220 (Funencodable_char_position, Fcheck_coding_systems_region)
18221 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
18222 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
18223 (Ffind_operation_coding_system, Fset_coding_system_priority)
18224 (Fcoding_system_eol_type): Doc fixes.
18225
182262008-05-17 Glenn Morris <rgm@gnu.org>
18227
18228 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
18229
182302008-05-16 Eli Zaretskii <eliz@gnu.org>
18231
18232 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
18233 and st_gid.
18234
18235 * frame.c (Fdelete_frame): Don't call font_update_drivers if
18236 HAVE_WINDOW_SYSTEM is not defined.
18237
18238 * xfaces.c (merge_face_ref, merge_face_vectors)
18239 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
18240 HAVE_WINDOW_SYSTEM is defined.
18241 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
18242
182432008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
18244
18245 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
18246
182472008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18248
18249 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
18250
182512008-05-15 Kenichi Handa <handa@m17n.org>
18252
18253 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
18254 preference.
18255
182562008-05-15 Glenn Morris <rgm@gnu.org>
18257
18258 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
18259
182602008-05-15 Chong Yidong <cyd@stupidchicken.com>
18261
18262 * fns.c (init_fns): Don't initialize weak_hash_tables here.
18263 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
18264
18265 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
18266
182672008-05-15 Kenichi Handa <handa@m17n.org>
18268
18269 * ftfont.c (ftfont_list): Downcase family name to check generic
18270 families.
18271
18272 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
18273 font-spec for QCfont value.
18274
18275 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
18276 buffer. Check the return value of it.
18277
182782008-05-14 Jason Rumney <jasonr@gnu.org>
18279
18280 * w32term.c (w32_get_glyph_overhangs): Remove.
18281 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
18282
182832008-05-14 Kenichi Handa <handa@m17n.org>
18284
18285 * font.c (font_prop_validate): Make nil a valid value.
18286 (font_clear_cache): Check if the cached vector of entities is nil
18287 or not.
18288
182892008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18290
18291 * emacs.c (main_thread): Conditionalize on
18292 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
18293 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
18294
18295 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
18296 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
18297 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
18298
182992008-05-14 Kenichi Handa <handa@m17n.org>
18300
18301 * coding.c (detect_coding_iso_2022): Ignore a coding category that
18302 has no corresponding coding system.
18303
183042008-05-14 Jason Rumney <jasonr@gnu.org>
18305
18306 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
18307
18308 * w32font.h (w32font_open_internal): Update declaration.
18309
18310 * w32font.c (w32font_open_internal): Change last argument from
18311 w32font_info struct to font object. Fill in font object from
18312 font_entity. Get Outline metrics if possible. Use them to
18313 calculate underline position and thickness. Use xlfd name as name
18314 property. Don't set codepage.
18315 (w32font_open): Pass font_object to w32font_open_internal. Don't
18316 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
18317 (w32font_draw): Use s->font.
18318 (clear_cached_metrics): Don't clear non-existent blocks.
18319
18320 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
18321 font was not found.
18322 (x_draw_glyph_string): Use underline position and thickness from font.
18323
18324 * w32uniscribe.c (uniscribe_open): Pass font_object to
18325 w32font_open_internal.
18326
183272008-05-14 Kenichi Handa <handa@m17n.org>
18328
18329 These changes are to delete all legacy font-handling codes, and
18330 make Emacs use only font-backends.
18331
18332 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
18333 (frame.o, image.o, print.o): Depend on $(FONTSRC).
18334
18335 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
18336
18337 * charset.h (Vcharset_non_preferred_head)
18338 (Vcurrent_iso639_language): Extern them.
18339
18340 * charset.c (Vcharset_non_preferred_head): New variable.
18341 (Vcurrent_iso639_language): New variable.
18342 (syms_of_charset): Declare it as a Lisp variable.
18343 (char_charset): Don't check non preferred charsets. As a last
18344 resort, return charset_unicode.
18345 (Fset_charset_priority): Update Vcharset_non_preferred_head.
18346
18347 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
18348 conditionals. Don't check enable_font_backend. Delete all codes
18349 used only when USE_FONT_BACKEND is not defined.
18350
18351 * dispextern.h (struct glyph_string): Change type of `font' to
18352 `struct font *'.
18353 (struct glyph_string): New member underline_position and
18354 underline_thickness.
18355 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
bba3e508
SM
18356 (struct face): Change type of `font' to `struct font *'.
18357 Remove members `font_name', `font_info_id'.
aac0c6e3
MR
18358 (per_char_metric, encode_char): Delete externs.
18359 (calc_pixel_width_or_height): Adjust the prototype.
18360
18361 * emacs.c (enable_font_backend): Delete extern.
18362 (main): Don't set enable_font_backend. Don't check the command
18363 line argument "-disable-font-backend".
18364
18365 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
18366 (enum font_property_index): New members FONT_DPI_INDEX,
18367 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
18368 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
18369 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
18370 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
18371 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
18372 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
18373 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
18374 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
18375 (struct font_spec, struct font_entity): New structs.
ef1b0ba7 18376 (FONT_ENCODING_NOT_DECIDED): Move from fontset.h.
aac0c6e3
MR
18377 (struct font): Many members from old "struct font_info" moved to
18378 here. Members font and entity deleted.
18379 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
18380 the new font-related objects.
18381 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
18382 (CHECK_FONT_GET_OBJECT): Likewise.
18383 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
ef1b0ba7 18384 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move from font.h.
bba3e508
SM
18385 (struct font_driver): New members case_sensitive anc check.
18386 Type of the member list and open changed.
aac0c6e3
MR
18387 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
18388 (font_symbolic_width, font_find_object, font_get_spec)
18389 (font_set_lface_from_name): Delete extern.
18390 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
18391
18392 * font.c: Include <strings.h>.
18393 (enable_font_backend): Delete it.
18394 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
18395 (CHECK_VALIDATE_FONT_SPEC): Delete it.
ef1b0ba7 18396 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move to font.h.
aac0c6e3
MR
18397 (null_string): Delete it.
18398 (null_vector): Make it static.
18399 (font_family_alist): Delete it.
18400 (Qnormal): Extern it.
18401 (QCextra, QClanguage): Delete it.
18402 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
18403 (font_make_spec, font_make_entity, font_make_object)
ef1b0ba7 18404 (font_intern_prop): Rename from intern_downcase. Don't downcase
aac0c6e3 18405 the string. Callers changed.
bba3e508 18406 (font_pixel_size): Adjust for the format change of font-related
aac0c6e3
MR
18407 objects.
18408 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
18409 (font_style_to_value, font_style_symbolic): New function.
18410 (build_font_family_alist): Delete it.
18411 (font_registry_charsets): Use Fassoc_string instead of
18412 assq_no_quit.
18413 (font_prop_validate_symbol): Don't return null_string.
bba3e508 18414 (font_prop_validate_style): Adjust for the change of
aac0c6e3
MR
18415 style-related values in a font vector.
18416 (font_property_table): Delete entries for QClanguage and
18417 QCantialias, add entries for QCavgwidth.
18418 (get_font_prop_index): Delete the 2nd argument FROM.
18419 (font_prop_validate): Arguments changed.
bba3e508 18420 (font_put_extra): Adjust for the change of font-related objects.
aac0c6e3
MR
18421 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
18422 (font_parse_fcname, font_unparse_fcname)
18423 (font_prepare_composition): Likewise.
ef1b0ba7 18424 (font_parse_family_registry): Rename from font_merge_old_spec.
aac0c6e3 18425 (otf_open): Delete the 1st arg entity.
bba3e508 18426 (font_otf_capability): Adjust for the above change.
aac0c6e3
MR
18427 (font_score): New arg alternate_families. Adjusted for the change
18428 of font-related objects.
18429 (font_sort_entites): New arg best_only.
18430 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
18431 Delete them.
18432 (font_match_p): Check alternate families.
18433 (font_find_object): Delete it.
18434 (font_check_object): New function.
bba3e508 18435 (font_clear_cache): Adjust for the change of font-related objects.
aac0c6e3
MR
18436 (font_delete_unmatched): New arg.
18437 (font_list_entities): Call font_driver->list with a spec that
18438 doesn't specify style-related properties.
18439 (font_matching_entity): Arguments changed. Caller changed.
bba3e508 18440 (font_open_entity): Adjust for the change of font-related objects.
aac0c6e3
MR
18441 (font_close_object, font_has_char, font_encode_char)
18442 (font_get_name, font_get_spec): Likewise.
18443 (font_spec_from_name, font_clear_prop, font_update_lface):
18444 New functions.
18445 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
18446 (font_prepare_for_face, font_done_for_face, font_open_by_name)
bba3e508 18447 (font_at): Adjust for the change of font-related objects.
aac0c6e3
MR
18448 (font_range): New function.
18449 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
bba3e508 18450 (Ffont_xlfd_name): Adjust for the change of font-related objects.
aac0c6e3 18451 (Fcopy_font_spec, Fmerge_font_spec): New function.
ef1b0ba7 18452 (Ffont_family_list): Rename from list-families.
aac0c6e3
MR
18453 (Finternal_set_font_style_table): Arguments changed.
18454 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
bba3e508 18455 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjust for the
aac0c6e3
MR
18456 change of font-related objects.
18457 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
18458
18459 * fontset.h (struct font_info): Delete it. Most members go to
18460 struct font.
ef1b0ba7 18461 (FONT_ENCODING_NOT_DECIDED): Move to font.h.
aac0c6e3
MR
18462 (enum FONT_SPEC_INDEX): Delete it.
18463 (font_info, list_fonts_func, load_font_func, query_font_func)
18464 (set_frame_fontset_func, find_ccl_program_func)
bba3e508
SM
18465 (get_font_repertory_func, new_fontset_from_font_name):
18466 Delete externs.
aac0c6e3
MR
18467 (fontset_from_font_name): Extern it.
18468 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
18469 (FONT_INFO_FROM_FACE): Deleted.
18470 (face_for_font): Adjust prototype.
18471
18472 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
18473 conditionals. Don't check enable_font_backend. Delete all codes
18474 used only when USE_FONT_BACKEND is not defined.
18475 (get_font_info_func, list_font_func, load_font_func)
18476 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
18477 (get_font_repertory_func): Delete them.
18478 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
18479 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
18480 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
18481 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
18482 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
18483 (fontset_compare_rfontdef): New function.
18484 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
18485 rfont-defs by qsort. Adjusted for the change of font-group vector.
18486 (load_font_get_repertory): Deleted.
18487 (fontset_find_font): Use new macros to ref/set elements of
18488 font-def and rfont-def.
18489 (fontset_font): Fix the timing of remembering that no font for C.
18490 (free_face_fontset): Do nothing if the face has no fontset.
18491 (face_suitable_for_char_p): Use new macros to ref/set elements of
18492 rfont-def.
18493 (face_for_char): Likewise. Call face_for_char with font_object.
18494 (fs_load_font): Delete. Delete #pragma surrounding it.
18495 (fs_query_fontset): Use strcasecmp instead of strcmp.
bba3e508 18496 (generate_ascii_font_name): Adjust for the format change of
aac0c6e3
MR
18497 font-spec.
18498 (Fset_fontset_font): Likewise. Use new macros to set elements of
18499 font-def.
18500 (Fnew_fontset): Use font_unparse_xlfd to generate
18501 FONTSET_ASCII (fontset).
18502 (new_fontset_from_font_name): Deleted.
ef1b0ba7 18503 (fontset_from_font): Rename from new_fontset_from_font. Check if
aac0c6e3
MR
18504 a fontset is already created for the font. FIx updating of
18505 Vfontset_alias_alist.
18506 (fontset_ascii_font): Deleted.
bba3e508 18507 (Ffont_info): Adjust for the format change of font-spec.
aac0c6e3
MR
18508 (Finternal_char_font): Likewise.
18509 (Ffontset_info): Likewise.
18510 (syms_of_fontset): Don't check load_font_func.
18511
18512 * fns.c (internal_equal): Handle PREV_FONT.
18513
18514 * frame.h: Delete USE_FONT_BACKEND conditional.
18515
18516 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
18517 conditionals. Don't check enable_font_backend. Delete all codes
18518 used only when USE_FONT_BACKEND is not defined.
18519 (x_set_font): Call x_new_font, not x_new_fontset2.
18520 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
18521 already set for the frame.
18522
bba3e508
SM
18523 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed.
18524 Make a font-entity by font_make_entity. Use font_intern_prop instead
aac0c6e3
MR
18525 of intern_downcase. Use FONT_SET_STYLE to set a style-related
18526 font property. If a font is scalable, set avgwidth property to 0.
18527 Set font-entity property by font_put_extra.
18528 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
bba3e508 18529 (ffont_driver): Adjust for the change of struct font_driver.
aac0c6e3
MR
18530 (ftfont_spec_pattern): New function.
18531 (ftfont_list): Return a list, not vector.
18532 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
18533 (ftfont_list_family): Don't downcase names.
18534 (ftfont_free_entity): Deleted.
18535 (ftfont_open): Return a font-object. Adjusted for the change of
18536 struct font. Get underline_thickness and underline_position from
18537 font property. Don't update dpyinfo->smallest_font_height and
18538 dpyinfo->smallest_char_width.
18539 (ftfont_close): Don't free `struct font'.
bba3e508 18540 (ftfont_has_char): Adjust for the format change of font-entity.
aac0c6e3
MR
18541 (ftfont_encode_char, ftfont_text_extents): Likewise.
18542
18543 * ftxfont.c (ftxfont_list): Return a list, not vector.
18544 (ftxfont_open): Return a font-object. Adjusted for the change of
18545 struct font. Get underline_thickness and underline_position from
18546 font property. Don't update dpyinfo->smallest_font_height and
18547 dpyinfo->smallest_char_width.
18548 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
bba3e508 18549 (ftxfont_draw): Adjust for the change of struct font.
aac0c6e3 18550
bba3e508
SM
18551 * image.c (image_ascent): Don't include "charset.h".
18552 Include "character.h" and "font.h".
aac0c6e3
MR
18553
18554 * lisp.h (enum pvec_type): New member PREV_FONT.
18555 (Fassoc_string): EXFUN it.
18556
18557 * print.c: Include font.h.
18558 (print_object): Handle font-related objects.
18559
18560 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
18561 conditionals. Don't check enable_font_backend. Delete all codes
18562 used only when USE_FONT_BACKEND is not defined.
18563 (handle_auto_composed_prop): Do nothing if it->f is not on a
18564 window system. Check how many following characters can be
18565 displayed by the same font.
18566 (calc_pixel_width_or_height): Type of the 4th arg is changed to
18567 'struct font *'.
18568 (get_char_face_and_encoding): Assign the whole encoding task to
18569 the `encode-char' method of a font driver.
bba3e508 18570 (fill_composite_glyph_string): Adjust for the change of `struct
aac0c6e3
MR
18571 face' and `struct glyph_string'.
18572 (fill_glyph_string): Likewise.
18573 (get_per_char_metric): Arguments changed.
bba3e508 18574 (x_get_glyph_overhangs): Adjust for the change of `struct face'
aac0c6e3
MR
18575 and `struct glyph_string'.
18576 (produce_stretch_glyph, calc_line_height_property)
18577 (x_produce_glyphs): Likewise.
18578
18579 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
18580 conditionals. Don't check enable_font_backend. Delete all codes
bba3e508
SM
18581 used only when USE_FONT_BACKEND is not defined.
18582 Use FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
aac0c6e3
MR
18583 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
18584 (Qp): Extern them.
18585 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
18586 Deleted.
18587 (struct font_name): Deleted.
18588 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
18589 (compare_fonts_by_sort_order): New function.
18590 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
18591 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
18592 Deleted.
18593 (Fx_family_fonts): Use font_list_entities, and sort fonts by
18594 compare_fonts_by_sort_order.
18595 (Fx_font_family_list): Call Ffont_family_list.
18596 (face_numeric_value, face_numeric_weight, face_numeric_slant)
18597 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
18598 (face_symbolic_slant, face_symbolic_swidth)
18599 (split_font_name_into_vector, build_font_name_from_vector)
18600 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
18601 (font_rescale_ratio, split_font_name, build_font_name)
18602 (free_font_names, sort_fonts, x_face_list_fonts)
18603 (face_font_available_p, sorted_font_list, cmp_font_names)
18604 (font_list_1, concat_font_list, font_list, remove_duplicates):
18605 Deleted.
18606 (Fx_list_fonts): Use Ffont_list.
18607 (LFACE_AVGWIDTH): Deleted.
18608 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
18609 by FONTP.
18610 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
18611 (set_lface_from_font_name): Delete it.
ef1b0ba7 18612 (set_lface_from_font): Rename from
aac0c6e3
MR
18613 set_lface_from_font_and_fontset. Caller changed. Don't set
18614 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
18615 for face.
18616 (merge_face_vectors): Copy font-spec if necessary.
18617 Clear properties of the font-spec if necessary.
18618 (merge_face_ref): Clear properties of the font-spec if necessary.
18619 (Finternal_set_lisp_face_attribute): Likewise.
18620 (set_font_frame_param): Use font_load_for_lface to load a
18621 font-object, and call Fmodify_frame_parameters with it.
18622 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
18623 font name by Ffont_xlfd_name.
18624 (Finternal_lisp_face_attribute_values): Don't check QCweight,
18625 QCslant, and QCwidth.
18626 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
18627 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
18628 Compare fonts by EQ.
18629 (lookup_non_ascii_face): Deleted.
18630 (face_for_font): The 2nd argument changed.
18631 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
18632 Check atomic font properties by case insensitive.
18633 (realize_non_ascii_face): Set face->overstrike correctly.
18634 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
18635 (dump_realized_face): Get font name from
18636 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
18637
18638 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
18639 conditionals. Don't check enable_font_backend. Delete all codes
18640 used only when USE_FONT_BACKEND is not defined.
18641 (xic_create_xfontset): Original code deleted and renamed from
18642 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
18643 (x_make_gc): Don't set GCFont in GCs.
18644 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
18645 opened by "fixed".
18646 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
18647 find_ccl_program_func, query_font_func, set_frame_fontset_func,
18648 get_font_repertory_func.
18649
18650 * xfont.c: Include <stdlib.h> and "ccl.h".
18651 (struct xfont_info): New structure.
18652 (xfont_query_font): Deleted.
ef1b0ba7 18653 (xfont_find_ccl_program): Rename from x_find_ccl_program and
aac0c6e3 18654 moved from xterm.c.
bba3e508 18655 (xfont_driver): Adjust for the change of struct font_driver.
aac0c6e3 18656 (compare_font_names): New function.
ef1b0ba7
SM
18657 (xfont_list_pattern): Sort font names case insensitively.
18658 Make font_entity by calling font_make_entity. Avoid auto-scaled fonts.
aac0c6e3
MR
18659 (xfont_list): Return a list, not vector.
18660 (xfont_match): If the font doesn't have QCname property, generate
18661 a name from the other font properties.
18662 (xfont_open): Return a font-object. Adjusted for the change of
18663 struct font. Get underline_thickness and underline_position from
18664 font property. Don't update dpyinfo->smallest_font_height and
18665 dpyinfo->smallest_char_width.
18666 (xfont_close): Don't free struct font.
bba3e508 18667 (xfont_prepare_face): Adjust for the change of struct font.
aac0c6e3 18668 (xfont_done_face): Deleted.
bba3e508 18669 (xfont_has_char): Adjust for the change of struct font.
aac0c6e3
MR
18670 (xfont_encode_char, xfont_draw): Likewise.
18671 (xfont_check): New function.
18672
bba3e508 18673 * xftfont.c (xftfont_list): Adjust for the change of `list'
aac0c6e3 18674 callback function.
bba3e508
SM
18675 (xftfont_match): Adjust for the format change of font-entity.
18676 (xftfont_open): Adjust for the format change of font-entity and
aac0c6e3
MR
18677 font-object. Adjusted for the change of struct font. Return a
18678 font-object. Don't update dpyinfo->smallest_font_height and
18679 dpyinfo->smallest_char_width.
18680 (xftfont_close): Block input while calling XftFontClose.
18681 (xftfont_prepare_face): Don't block input while calling
18682 xftfont_get_colors. Adjusted for the change of struct font.
18683 (xftfont_shape): Return value of error case fixed.
18684
18685 * xrdb.c (x_load_resources): Don't setup a fontset resource.
18686
18687 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
18688 conditionals.
18689 (FONT_WIDTH): Return (f)->max_width.
18690 (struct x_display_info): Delete member `font'.
18691 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
18692 (x_find_ccl_program, x_get_font_repertory): Delete externs.
18693 (struct x_output): Change type of `font' to `struct font *'.
18694
18695 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
18696 conditionals. Don't check enable_font_backend. Delete all codes
18697 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
18698 (x_per_char_metric, x_encode_char): Deleted.
18699 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
bba3e508 18700 (x_compute_glyph_string_overhangs): Adjust for the change of
aac0c6e3
MR
18701 `struct face'.
18702 (x_draw_glyph_string_foreground)
18703 (x_draw_composite_glyph_string_foreground): Likewise.
18704 (x_draw_glyph_string): Likewise. Use font->underline_position and
18705 font->underline_thickness.
ef1b0ba7 18706 (x_new_font): Rename from x_new_fontset2.
aac0c6e3
MR
18707 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
18708 (x_check_font): Call `check' method of a font driver.
18709 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
18710 (x_query_font, x_get_font_repertory): Deleted.
ef1b0ba7 18711 (x_find_ccl_program): Rename and moved to xfont.c.
bba3e508 18712 (x_redisplay_interface): Adjust for the change of `struct
aac0c6e3
MR
18713 redisplay_interface'.
18714
18715 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
18716 conditionals. Don't check enable_font_backend. Delete all codes
18717 used only when USE_FONT_BACKEND is not defined. Surround non-used
18718 code by "#ifdef OLD_FONT" and "endif".
18719 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
18720
18721 * w32font.h (struct w32font_info): New member.
18722 (FONT_COMPAT): New macro.
18723 (w32font_open_internal): Prototype adjusted.
18724
18725 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
18726 OLD_FONT" and "endif".
18727
18728 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
18729 conditionals. Don't check enable_font_backend. Delete all codes
18730 used only when USE_FONT_BACKEND is not defined.
18731 (w32font_open): Return a font-object. Make a font-object by
18732 font_make_object. Adjusted for the change of struct w32font_info.
18733 (w32font_close): Don't free struct font. Adjusted for the change
18734 of struct w32font_info.
18735 (w32font_encode_char, w32font_text_extents, w32font_draw):
ef1b0ba7 18736 Adjust for the change of struct w32font_info.
aac0c6e3
MR
18737 (w32font_draw): Likewise.
18738 (w32font_list_internal): Return a list, not vector.
18739 (w32font_open_internal): Change the 4th arg to font-object.
18740 Adjusted for the change of struct w32font_info and font-object format.
18741 (add_font_name_to_list): Don't downcase names.
18742 (w32_enumfont_pattern_entity): Make a font-entity by
18743 font_make_entity. Adjusted for the format change of font-entity.
18744 Use FONT_SET_STYLE to set a style-related font property. If a
18745 font is scalable, set avgwidth property to 0. Set font-entity
18746 property by font_put_extra.
bba3e508 18747 (font_matches_spec): Adjust for the format change of font-entity.
aac0c6e3
MR
18748 (w32_weight_table, w32_decode_weight): New variables.
18749 (w32_encode_weight): New function.
bba3e508 18750 (fill_in_logfont): Adjust for the format change of font-spec.
aac0c6e3
MR
18751 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
18752 weight value.
bba3e508 18753 (w32font_driver): Adjust for the change of struct font_driver.
aac0c6e3
MR
18754
18755 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
18756 conditionals. Don't check enable_font_backend. Surround non-used
18757 code by "#ifdef OLD_FONT" and "endif".
18758 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
bba3e508 18759 (FONT_AVG_WIDTH): Adjust for the change of struct font.
aac0c6e3
MR
18760
18761 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
18762 conditionals. Don't check enable_font_backend. Delete all codes
18763 used only when USE_FONT_BACKEND is not defined. Surround non-used
18764 code by "#ifdef OLD_FONT" and "endif".
18765
18766 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
18767 (uniscribe_open): Return value changed to font-object.
18768 Adjusted for the format change of font-object.
bba3e508 18769 (uniscribe_otf_capability): Adjust for the change of struct font.
aac0c6e3 18770 (add_opentype_font_name_to_list): Don't downcase names.
bba3e508 18771 (uniscribe_font_driver): Adjust for the change of struct
aac0c6e3
MR
18772 font_driver.
18773
187742008-05-13 Chong Yidong <cyd@stupidchicken.com>
18775
18776 * dispnew.c (update_frame_1): Check if tty output is still valid
18777 before flushing it.
18778
187792008-05-13 Jan Djärv <jan.h.d@swipnet.se>
18780
18781 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
18782 to Gtk+ menus.
18783
187842008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
18785
18786 * dired.c (file_name_completion): Tweak the code so as to always do it
18787 in a single pass. Tighten the scope of some variables.
18788
18789 * dired.c (Qdefault_directory): New var.
18790 (file_name_completion): Use it instead of Fexpand_file_name.
18791 (syms_of_dired): Initialize it.
18792
187932008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
18794
18795 * fileio.c (double_dollars): Remove dead code.
18796
187972008-05-10 Eli Zaretskii <eliz@gnu.org>
18798
18799 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
18800 Mention w32-get-true-file-attributes in doc string.
18801
18802 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
18803
188042008-05-09 Glenn Morris <rgm@gnu.org>
18805
18806 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
18807 2008-04-23.
18808
188092008-05-09 Eli Zaretskii <eliz@gnu.org>
18810
18811 Support for reporting owner and group of each file on MS-Windows:
18812 * dired.c (stat_uname, stat_gname): New functions, with special
18813 implementation for w32.
18814 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
18815
18816 * w32.c: Rename the_passwd_* to dflt_passwd_*.
18817 (dflt_group_name): New static variable.
18818 (dflt_group): Rename from the_group.
18819 (init_user_info): Init dflt_group fields. Get user's group name
18820 from LookupAccountSid.
18821 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
18822 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
18823 New initialization states.
18824 (globals_of_w32): Initialize them to zero. Initialize the default
18825 group name to "None".
18826 (GetFileSecurity_Name): New global var, the name of the function
18827 to call for GetFileSecurity.
18828 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
18829 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
18830 (get_file_security, get_security_descriptor_owner)
18831 (get_security_descriptor_group, is_valid_sid)
18832 (get_file_security_desc, get_rid, get_name_and_id)
18833 (get_file_owner_and_group): New functions.
18834 (stat): Use get_file_security_desc and get_file_owner_and_group to
18835 report the owner and primary group of each file. Don't ignore the
18836 high 32 bits of file's size, now that st_size is 64-bit wide.
18837 Fix test when to get true file attributes.
18838 (init_user_info): Use get_rid instead of equivalent inline code.
18839 (fstat): Don't ignore the high 32 bits of file's size.
18840
188412008-05-09 Chong Yidong <cyd@stupidchicken.com>
18842
18843 * image.c (png_load): Use correct bit-depth for setting background
18844 color.
18845
188462008-05-08 Eli Zaretskii <eliz@gnu.org>
18847
18848 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
18849 epa-hook.elc.
18850
188512008-05-08 Juanma Barranquero <lekktu@gmail.com>
18852
18853 * font.c (Ffont_match_p): Don't use `iff' in docstring.
18854
188552008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
18856
18857 * macfns.c (Fx_create_frame): Make a copy of frame parameters
18858 because the original parameters are in pure storage now.
18859 (mac_window): Remove unused params. Update callers.
18860
188612008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
18862
18863 * lread.c (substitute_object_recurse): Use lower-level primitives.
18864 Don't signal errors when traversing sub-char-tables.
18865 Don't loop over all the possible characters when traversing char-tables.
18866
18867 * print.c (print_preprocess): Add sub-char-tables to the print-table,
18868 just like we do in print.c.
18869
188702008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
18871
18872 * minibuf.c (Ftry_completion): Remove code left over from when we used
18873 scmp instead of Fcompare_strings.
18874
188752008-05-04 Juanma Barranquero <lekktu@gmail.com>
18876
18877 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
18878
188792008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18880
18881 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
18882 Create bitmap context in native byte order.
18883
18884 * macterm.c (XDrawLine)
18885 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
18886 context in native byte order.
18887
188882008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18889
18890 * config.in: Regenerate.
18891
18892 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
18893 New definitions for Image I/O support.
18894 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
18895 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
18896 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
18897 (mac_data_provider_release_data, image_load_image_io)
18898 [USE_MAC_IMAGE_IO]: New functions.
18899 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
18900 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
18901 (init_image_func_pointer) [MAC_OSX]: Remove function.
18902 (image_load_quartz2d) [MAC_OSX]: Check availability of
18903 CGImageCreateWithPNGDataProvider at compile time.
18904 Use lowercase `false' for boolean constant.
18905 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
18906 Use image_load_image_io.
18907 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
18908 Don't check MyCGImageCreateWithPNGDataProvider.
18909 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
18910 Don't call init_image_func_pointer.
18911
18912 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
18913
18914 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
18915 Make variable non-static.
18916 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
18917 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
18918
18919 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
18920 (RED_FROM_ULONG): Mask off higher bits.
18921 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
18922
18923 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
18924 Include AvailabilityMacros.h.
18925 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
18926 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
18927
189282008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
18929
18930 * chartab.c (Fset_char_table_range): If range is t, really set all
18931 chars to that value.
18932
189332008-05-03 Eli Zaretskii <eliz@gnu.org>
18934
18935 * dired.c (Ffile_attributes): Don't allow the device number become
18936 negative.
18937
189382008-05-02 Daiki Ueno <ueno@unixuser.org>
18939
18940 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
18941
189422008-05-02 Juri Linkov <juri@jurta.org>
18943
18944 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
18945 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
18946 DEFAULT argument as a list of default values in docstrings.
18947
189482008-05-01 Chong Yidong <cyd@stupidchicken.com>
18949
18950 * puresize.h (BASE_PURESIZE): Increase to 1210000.
18951
189522008-05-01 Martin Rudalics <rudalics@gmx.at>
18953
18954 * dispnew.c (change_frame_size_1): Preserve small windows when
18955 shrinking frames by calling set_window_height|width with third
18956 arg 2.
18957
18958 * window.h (struct window): Replace field too_small_ok by field
18959 resize_proportionally.
18960
18961 * window.c (make_window): Initialize resize_proportionally.
18962 (enlarge_window): Temporarily set resize_proportionally to make
18963 sure that shrink_windows does scale the window proportionally.
18964 (shrink_windows): When window has resize_proportionally set try
18965 to shrink it proportionally by stealing from other windows.
18966 (struct saved_window, Fset_window_configuration)
18967 (compare_window_configurations): Handle resize_proportionally.
18968 (WINDOW_TOTAL_SIZE): New macro.
18969 (window_min_size, shrink_windows, size_window): Use it.
18970 (check_min_window_sizes): Remove. Invalid values of
18971 window-min-height|width are handled by window_min_size_2 now.
18972 (size_window, Fsplit_window, enlarge_window)
18973 (adjust_window_trailing_edge, grow_mini_window): Don't call
18974 check_min_window_sizes.
18975 (window_min_size_2, window_min_size_1, window_min_size):
18976 New argument safe_p for retrieving "safe" minimum sizes.
18977 (Fdisplay_buffer, Fsplit_window, enlarge_window)
18978 (adjust_window_trailing_edge, grow_mini_window):
18979 Adjust arguments of window_min_size... functions.
18980 (shrink_windows): Argument min_size removed. New argument
18981 safe_p allows shrinking windows to their safe minimum sizes.
18982 Calculate minimum size and decide whether a window shall be
18983 deleted for each window individually.
18984 (size_window): When nodelete_p equals 2, tell shrink_windows to
18985 delete windows only if their new minimum size is no more safe.
18986 (shrink_window_lowest_first): Call window_min_size_1 to make
18987 sure to preserve modeline of bottom-most window when resizing
18988 the minibuffer.
18989 (Fset_window_configuration, Fcurrent_window_configuration)
18990 (compare_window_configurations): Do not handle
18991 window-min-height|width any more.
18992 (syms_of_window): Clarify window-min-height|width doc-strings.
18993
189942008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
18995
18996 * dired.c (file_name_completion): Fix up the encoding/decoding issue
18997 some more. Copy some of the code from Ftry_completions.
18998 Remove special case code that dates back to initial revision when the
18999 slash was only added when necessary and that can't trigger nowadays.
19000
190012008-04-27 Kenichi Handa <handa@m17n.org>
19002
19003 * font.c (font_prop_validate): Signal `error' instead of `font'.
19004
190052008-04-29 Jason Rumney <jasonr@gnu.org>
19006
19007 * w32fns.c (Fw32_battery_status): New defun.
19008 (syms_of_w32fns): Defsubr it.
19009
190102008-04-28 Andreas Schwab <schwab@suse.de>
19011
19012 * dired.c (file_name_completion): Fix another mixing of encoded
19013 and decoded names.
19014
190152008-04-28 Juanma Barranquero <lekktu@gmail.com>
19016
19017 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
19018
190192008-04-27 Juanma Barranquero <lekktu@gmail.com>
19020
19021 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
19022
190232008-04-27 Andreas Schwab <schwab@suse.de>
19024
19025 * dired.c (file_name_completion): Fix inappropriate mixing of
19026 encoded and decoded names.
19027
19028 * xterm.c (XTread_socket): Fix use of uninitialized variable.
19029
19030 * puresize.h (BASE_PURESIZE): Increase to 1200000.
19031
190322008-04-26 Eli Zaretskii <eliz@gnu.org>
19033
19034 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
19035 2008-03-31, it's not needed anymore with `struct stat' definition
19036 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
19037 for the same reasons.
19038
190392008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
19040
19041 * m/sparc.h: Additional redefinitions for GNU/Linux.
19042
190432008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19044
19045 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
19046 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
19047 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
19048 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
19049 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
19050 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
19051 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
19052 Likewise.
19053
19054 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
19055 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
19056 (mac_ax_number_of_characters): Add externs.
19057 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
19058 [USE_MAC_TSM]: Likewise.
19059 (mac_handle_text_input_event) [MAC_OSX]:
19060 Handle kEventTextInputOffsetToPos for no active input area case.
19061 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
19062 (mac_handle_document_access_event)
19063 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
19064 (install_application_handler) [MAC_OSX]: Register handlers for
19065 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
19066 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
19067 Register mac_handle_document_access_event.
19068
19069 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
19070 Make functions non-static.
19071
190722008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
19073
19074 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
19075 (read_file_name_completion_ignore_case, insert_default_directory)
19076 (Qdefault_directory): Move to minibuffer.el.
19077 (Fread_file_name): Call the new `read-file-name' instead.
19078
190792008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19080
19081 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
19082 Make function non-static.
19083 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
19084 Remove function.
19085 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
19086 Move to mactoolbox.c.
19087 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
19088
19089 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
19090 (mac_rect_make): New macro.
19091
19092 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
19093 instead of float.
19094 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
19095 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
19096 (XSetBackground) [USE_CG_DRAWING]: Likewise.
19097 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
19098 CGRectMake.
19099 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
19100 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
19101 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
19102 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
19103 instead of WindowRef in argument type.
19104 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
19105 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
19106 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
19107 instead of DISPLAY. All uses changed.
19108 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
19109 (x_calc_absolute_position): Simplify so as not to use
19110 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
19111
19112 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
19113 instead of WindowRef in argument type.
19114 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
19115 [TARGET_API_MAC_CARBON]: Remove externs.
19116 (create_apple_event, mac_event_parameters_to_lisp)
19117 [TARGET_API_MAC_CARBON]: Add externs.
19118
19119 * mactoolbox.c (Vmac_ts_script_language_on_focus)
19120 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
19121 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
19122 is clicked.
19123 (x_activate_menubar): Remove extern for saved_menu_event_location.
19124 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
19125 Move from mac.c.
19126
191272008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19128
19129 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
19130 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
19131
191322008-04-23 Jason Rumney <jasonr@gnu.org>
19133
19134 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
19135 attributes only for local files.
19136
19137 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
19138 default to Qlocal.
19139
191402008-04-22 Juri Linkov <juri@jurta.org>
19141
19142 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
19143 read-buffer-to-switch instead of using the letter "B".
19144
191452008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
19146
19147 * fileio.c (Qdefault_directory): New variable.
19148 (Fread_file_name): Use it to pass `dir' to the completion functions.
19149
191502008-04-20 Chong Yidong <cyd@stupidchicken.com>
19151
19152 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
19153
191542008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
19155
19156 * keyboard.c (Vpre_help_message): Remove.
19157 (show_help_echo): Remove default C code.
19158
19159 * dired.c (directory_files_internal, file_name_completion):
19160 Only call ENCODE_FILE if the string is indeed decoded.
19161
191622008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
19163
19164 * Makefile.in (TOOLKIT_DEFINES): Remove.
19165 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
19166
191672008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19168
19169 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
19170 (mactoolbox.o): New target.
19171
19172 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
19173 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
19174
19175 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
19176 Use mac_set_frame_window_background instead of XSetWindowBackground.
19177 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
19178 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
19179 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
19180 instead of SetWindowTitleWithCFString.
19181 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
19182 Move function to mactoolbox.c.
19183 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
19184 Use mac_set_window_modified instead of SetWindowModified.
19185 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
19186 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
19187 (Fx_focus_frame): Use mac_front_non_floating_window instead of
19188 FrontNonFloatingWindow. Use mac_activate_window instead of
19189 ActivateWindow. Use mac_active_non_floating_window instead of
19190 ActiveNonFloatingWindow.
19191 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
19192 Use mac_show_hourglass and mac_hide_hourglass.
19193 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
19194 instead of GetGlobalMouse.
19195 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
19196 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
19197 Use mac_bring_window_to_front instead of BringToFront.
19198 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
19199 mactoolbox.c.
19200 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
19201 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
19202 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
19203 mactoolbox.c.
19204
19205 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
19206 (XtPointer): Move typedef from macmenu.c.
19207 (enum button_type): Move enum from macmenu.c.
19208 (widget_value): Move typedef from macmenu.c.
19209 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
19210 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
19211 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
19212 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
19213 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
19214 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
19215 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
19216 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
19217 (Selection): Move typedef from macselect.c.
19218 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
19219 macterm.c.
19220 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
19221 (mac_is_window_collapsed, mac_bring_window_to_front)
19222 (mac_send_window_behind, mac_hide_window, mac_show_window)
19223 (mac_collapse_window, mac_front_non_floating_window)
19224 (mac_active_non_floating_window, mac_activate_window)
19225 (mac_move_window_structure, mac_move_window, mac_size_window)
19226 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
19227
19228 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
19229 (enum mac_menu_kind): Move enum to mactoolbox.c.
19230 (min_menu_id): Move variable to mactoolbox.c.
19231 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
19232 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
19233 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
19234 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
19235 [TARGET_API_MAC_CARBON]: Likewise.
19236 (XtPointer): Move typedef to macgui.h.
19237 (enum button_type): Move enum to macgui.h.
19238 (widget_value): Move typedef to macgui.h.
19239 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
19240 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
19241 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
19242 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
19243 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
19244 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
19245 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
19246 (popup_activated_flag): Make variable non-static.
19247 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
19248 (add_menu_item, fill_menu, dispose_menus):
19249 Move functions to mactoolbox.c.
19250 (restore_show_help_function, menu_target_item_handler)
19251 (install_menu_target_item_handler, mac_handle_dialog_event)
19252 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
19253 [TARGET_API_MAC_CARBON]: Likewise.
19254 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
19255 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
19256 (find_and_call_menu_selection, name_is_separator): Make function
19257 non-static.
19258 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
19259 to mactoolbox.c.
19260 (set_frame_menubar): Don't call install_menu_quit_handler.
19261 (menu_item_selection): New variable.
19262 (mac_menu_show): Use create_and_show_popup_menu.
19263 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
19264 selection but set variable menu_item_selection. All uses changed.
19265 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
19266 Call install_menu_quit_handler. Move to mactoolbox.c.
19267
19268 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
19269 (Selection): Move typedef to macgui.h.
19270 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
19271 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
19272 Make variables non-static.
19273 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
19274 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
19275 Make functions non-static.
19276 (Vmac_service_selection) [MAC_OSX]: Likewise.
19277 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
19278 (mac_valid_selection_target_p, mac_clear_selection)
19279 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
19280 (mac_put_selection_value, mac_selection_has_target_p)
19281 (mac_get_selection_value, mac_get_selection_target_list)
19282 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
19283 Move functions to mactoolbox.c.
19284 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
19285 Likewise.
19286 (copy_scrap_flavor_data, mac_handle_service_event)
19287 (install_service_handler) [MAC_OSX]: Likewise.
19288 (syms_of_macselect) <Vmac_dnd_known_types>:
19289 Use mac_dnd_default_known_types.
19290
19291 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
19292 Move to mactoolbox.c.
19293 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
19294 (Fx_selection_owner_p): Add EXFUN.
19295 (install_window_handler, remove_window_handler, XSetWindowBackground):
19296 Remove externs.
19297 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
19298 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
19299 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
19300 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
19301 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
19302 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
19303 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
19304 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
19305 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
19306 (create_and_show_popup_menu, mac_get_selection_from_symbol)
19307 (mac_valid_selection_target_p, mac_clear_selection)
19308 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
19309 (mac_put_selection_value, mac_selection_has_target_p)
19310 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
19311 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
19312 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
19313 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
19314 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
19315 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
19316 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
19317 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
19318 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
19319
19320 * mactoolbox.c: New file.
19321
193222008-04-18 Jason Rumney <jasonr@gnu.org>
19323
19324 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
19325
193262008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
19327
19328 * character.c (Fmultibyte_char_to_unibyte):
19329 Return latin1 chars unchanged.
19330
19331 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
19332 relocated if it points to `name'.
19333
193342008-04-17 Kenichi Handa <handa@m17n.org>
19335
19336 * data.c (Faset): Allow setting a multibyte character in an
19337 ASCII-only unibyte string.
19338
19339 * lisp.h (STRING_SET_MULTIBYTE): New macro.
19340
193412008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
19342
19343 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
19344 done in config.h.
19345
193462008-04-16 Juanma Barranquero <lekktu@gmail.com>
19347
19348 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
19349 (Fchar_direction): Add usage in the docstring.
19350
193512008-04-15 Chong Yidong <cyd@stupidchicken.com>
19352
19353 * keyboard.c (read_key_sequence): Remove always-true checks.
19354
193552008-04-14 Jason Rumney <jasonr@gnu.org>
19356
19357 * w32font.c (w32font_open_internal): Set max_bounds.descent in
19358 compatibility struct, for better underline positioning.
19359
193602008-04-13 David Hansen <david.hansen@gmx.net>
19361
19362 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
19363 string.
19364
193652008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
19366
19367 * m/hp800.h (XUINT, XSET): Remove.
19368
193692008-04-12 Juanma Barranquero <lekktu@gmail.com>
19370
19371 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
19372 previous change.
19373
193742008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
19375
19376 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
19377 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
19378
193792008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
19380
19381 * keymap.h (map_keymap_canonical): Declare.
19382 * xmenu.c (single_keymap_panes): Use it.
19383
193842008-04-11 Glenn Morris <rgm@gnu.org>
19385
19386 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
19387 set the target's value to that of the alias.
19388
193892008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
19390
19391 * term.c (set_tty_color_mode): Left over typo.
19392
193932008-04-10 Michael Albinus <michael.albinus@gmx.de>
19394
19395 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
19396 only after check for file name handler functions. Signal, when
19397 native functionality is not supported.
19398 (syms_of_fileio): Declare it unconditionally.
19399
194002008-04-10 Jason Rumney <jasonr@gnu.org>
19401
19402 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
19403 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
19404
19405 * w32.c (logon_network_drive): Also logon to remote drives that
19406 are mapped to drive letters.
19407
194082008-04-10 Glenn Morris <rgm@gnu.org>
19409
19410 * xdisp.c (truncate-partial-width-windows): Doc fix.
19411
194122008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
19413
19414 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
19415 Move functions to minibuffer.el.
19416 (syms_of_fileio): Don't declare them.
19417
194182008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
19419
19420 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
19421 (syms_of_minibuf): Remove its initialization.
19422
19423 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
19424
194252008-04-09 Juanma Barranquero <lekktu@gmail.com>
19426
19427 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
19428
194292008-04-09 Jason Rumney <jasonr@gnu.org>
19430
19431 * makefile.w32-in (distclean): Delete makefile too.
19432 (maintainer-clean): New target.
19433
19434 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
19435
19436 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
19437 for new font backend and composite cases.
19438
194392008-04-09 Jan Djärv <jan.h.d@swipnet.se>
19440
19441 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
19442 Most of the code moved to run_timers.
19443 (do_pending_atimers): Call run_timers.
19444 (run_timers): New function.
19445
19446 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
19447 run atimers.
19448
19449 * process.c (wait_reading_process_output): The same as above.
19450
194512008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
19452
19453 * minibuf.c (last_exact_completion): Remove variable.
19454 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
19455 (complete_and_exit_1, complete_and_exit_2)
19456 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
19457 (Fdisplay_completion_list, display_completion_list_1)
19458 (Fminibuffer_completion_help, Fself_insert_and_exit)
19459 (Fexit_minibuffer, Fminibuffer_message): Move functions to
19460 minibuffer.el.
19461 (syms_of_minibuf): Remove corresponding initializations.
19462
19463 * keyboard.c (Qdeactivate_mark): New var.
19464 (command_loop_1): Use it to call `deactivate-mark'.
19465 (syms_of_keyboard): Initialize it.
19466
19467 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
19468 to another frame.
19469 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
19470 Don't call set_tty_color_mode.
19471 (store_frame_param): Reset previous_frame rather than call
19472 set_tty_color_mode.
19473 * term.c (set_tty_color_mode): Rewrite.
19474 * dispextern.h (set_tty_color_mode): New type.
19475 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
19476
194772008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
19478
19479 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
19480 for generic chars, which do not exist any more in emacs-unicode.
19481
194822008-04-08 Michael Albinus <michael.albinus@gmx.de>
19483
19484 * coding.c (detect_coding_emacs_mule)
19485 (Ffind_operation_coding_system): Fix typo.
19486
194872008-04-08 Jason Rumney <jasonr@gnu.org>
19488
19489 * w32uniscribe.c (SNAME): Extract only symbol name.
19490
19491 * w32font.h (struct w32_metric_cache): New struct.
19492 (w32font_info): Use it.
19493 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
19494 (CACHE_BLOCKSIZE): New constants.
19495
19496 * w32font.c (Qja, Qko, Qzh): New symbols.
19497 (syms_of_w32font): Initialise them.
19498 (font_matches_spec): Use them to filter by language.
19499 (recompute_cached_metrics): Remove function.
19500 (compute_metrics, clear_cached_metrics): New functions.
19501 (w32font_encode_char): Use them to manage metric cache.
19502 (w32font_text_extents): Cache metrics for all glyphs on demand.
19503 Delay converting glyph indices to WORD until needed.
19504 (w32font_open_internal): Initialize metric cache to empty.
19505 (registry_to_w32_charset): Charset should always be a symbol.
19506 (fill_in_logfont, list_all_matching_fonts): Family should
19507 always be a symbol.
19508
195092008-04-06 Jason Rumney <jasonr@gnu.org>
19510
19511 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
19512 Give up if glyph indices not supported. Use uniscribe obtained
19513 ABC widths for individual metrics. Map glyph clusters back to
19514 characters using fClusterStart flag. Return number of glyphs
19515 produced, not chars processed.
19516 (uniscribe_shape): Map char at FROM to current glyph.
19517
195182008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19519
19520 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
19521 Use SetMenuItemHierarchicalMenu.
19522
195232008-04-05 Jason Rumney <jasonr@gnu.org>
19524
19525 * image.c (pbm_load): Allow color values up to 65535.
19526 Throw an error if max_color_idx is outside the supported range.
19527 Report an error when image size is invalid.
19528 Read two bytes at a time when raw images have max_color_idx above 255.
19529
aac0c6e3
MR
195302008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
19531
19532 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
19533 append "CCL: Quitted" when the CCL program is quitted.
19534 (setup_ccl_program): Initialize ccl->quit_silently to zero.
19535
19536 * ccl.h (struct ccl_program): New member quit_silently.
19537
195382008-04-05 Chong Yidong <cyd@stupidchicken.com>
19539
19540 * search.c (compile_pattern_1): Treat non-nil and non-string of
19541 search-spaces-regexp as nil.
19542
19543 * minibuf.c (Fassoc_string): Tweak docstring.
19544
195452008-04-05 Eli Zaretskii <eliz@gnu.org>
19546
19547 * dired.c (Ffile_attributes): Support inode numbers wider than 32
19548 bits. Remove ugly WINDOWSNT-specific kludge introduced on
19549 2008-03-14 to force inode be positive.
19550
19551 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
19552 _S_* ones, since we now use our own sys/stat.h.
19553 (stat, fstat): Don't mangle the inode number.
19554 (init_user_info): Don't restrict UID and GID to 0-60000 range.
19555
195562008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
19557
19558 * frame.h (struct frame): Give one more bit to `visible' since we use
19559 values larger than 1 to indicate obscured frames on ttys.
19560
19561 * keymap.c (Qkeymap_canonicalize): New var.
19562 (Fmap_keymap_internal): New fun.
19563 (describe_map): Use keymap-canonicalize.
19564
19565 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
19566 (Fundo_boundary): Set them.
19567 (syms_of_undo): Initialize them.
19568 (record_point): Use them instead of last_point_position*.
19569 (last_undo_buffer): Change type.
19570
195712008-04-04 Jason Rumney <jasonr@gnu.org>
19572
19573 * w32font.c (w32font_text_extents): Use font's ascent and descent.
19574 (recompute_cached_metrics): Don't set ascent and descent per char.
19575
19576 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
19577 (uniscribe_check_otf): Add GC protection before consing.
19578 Rearrange loop for counting features.
19579
195802008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
19581
19582 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
19583 buffer with byte-size of source buffer.
19584
195852008-04-03 Chong Yidong <cyd@stupidchicken.com>
19586
19587 * callint.c (Fcall_interactively): Handle temporary region even
19588 when shift-select-mode is off.
19589
195902008-04-03 Jason Rumney <jasonr@gnu.org>
19591
19592 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
19593
195942008-04-03 Kenichi Handa <handa@m17n.org>
19595
19596 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
19597 (CATEGORY_MASK_UTF_16): Likewise.
19598 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
19599 binary file.
19600 (detect_coding): Add null-byte detection for a binary file.
19601 (detect_coding_system): Likewise.
19602
196032008-04-03 Jason Rumney <jasonr@gnu.org>
19604
19605 * w32uniscribe.c: New file.
19606
19607 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
19608
19609 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
19610
19611 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
19612 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
19613 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
19614 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
19615 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
19616 (Qphonetic): New symbols.
19617 (syms_of_w32font): Initialize them.
19618 (font_supported_scripts): Use them.
19619 (w32font_list_family): List all charsets.
19620 (w32font_text_extents, recompute_cached_metrics): Fix metric
19621 calculations.
19622 (w32_enumfont_pattern_entity): Make full_type a DWORD.
19623 Give opentype fonts their own format.
19624 (font_matches_spec): New arguments backend and logfont.
19625 Handle :otf spec for uniscribe backend.
19626 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
19627 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
19628
19629 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
19630 font backend.
19631 (globals_of_w32fns): Initialize uniscribe font backend.
19632
19633 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
19634 dependencies.
19635 (w32uniscribe.$(O)): New file to build.
19636 (FONT_OBJ): Include w32uniscribe.$(O).
19637 (LIBS): Add uniscribe libraries.
19638
19639 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
19640
196412008-04-02 Chong Yidong <cyd@stupidchicken.com>
19642
19643 * callint.c (Vshift_select_mode): New var.
19644 (Finteractive): Document new ^ spec.
19645 (Fcall_interactively): Call handle-shift-selection if the ^ spec
19646 is present.
19647
19648 * keyboard.c (Vthis_command_keys_shift_translated): New var.
19649 (command_loop_1): Avoid running the direct display versions of
19650 forward-char and backward-char if shift-selection may occur.
19651 (read_key_sequence): Set Vthis_command_keys_shift_translated if
19652 shift-translation takes place.
19653
19654 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
19655 avoid clobbering by define-minor-mode.
19656
19657 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
19658 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
19659
19660 * syntax.c (Fforward_word): Add ^ interactive spec.
19661
19662 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
19663 (Fscroll_right): Add ^ interactive spec.
19664
196652008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
19666
19667 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
19668
19669 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
19670
19671 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
19672
196732008-03-31 Juri Linkov <juri@jurta.org>
19674
19675 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
19676
196772008-03-30 Jan Djärv <jan.h.d@swipnet.se>
19678
19679 * gtkutil.c (xg_set_geometry): Fix indentation.
19680 (xg_resize_outer_widget): Remove.
19681 (x_wm_size_hint_off): Fix indentation.
19682 (xg_frame_set_char_size): Call flush_and_sync after
19683 gtk_window_resize.
19684 (x_wm_set_size_hint): Pass NULL as geometry window to
19685 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
19686 Add menu bar and tool bar height to base height.
19687 (xg_update_frame_menubar, free_frame_menubar)
19688 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
19689 (update_frame_tool_bar, free_frame_tool_bar):
19690 Change xg_resize_outer_widget to xg_frame_set_char_size.
19691
196922008-03-30 Michael Albinus <michael.albinus@gmx.de>
19693
19694 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
19695 (Fdbus_call_method): New parameter TIMEOUT.
19696 (dbus-send-signal): Optimize UNGCPRO call.
19697
196982008-03-29 Juri Linkov <juri@jurta.org>
19699
19700 * window.c (Fdisplay_buffer): Move call to
19701 Vsplit_window_preferred_function out of conditions that check
19702 if window is eligible for vertical splitting.
19703 When Vsplit_window_preferred_function is non-nil, call it and use
19704 its non-nil return value as window. Otherwise, continue doing
19705 vertical splitting using Fsplit_window with arg horflag=nil.
19706 (syms_of_window) <Vsplit_window_preferred_function>: Change the
19707 default value from `split-window' to nil.
19708
197092008-03-29 Juri Linkov <juri@jurta.org>
19710
19711 * callint.c (Fcall_interactively): Revert 2008-03-16 change
19712 for interactive code letters 'b' and 'B'.
19713
197142008-03-29 Eli Zaretskii <eliz@gnu.org>
19715
19716 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
19717 multibyte string.
19718
197192008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
19720
19721 * keyboard.c (pending_funcalls): New var.
19722 (timer_check): Run it.
19723 (syms_of_keyboard): Initialize it.
19724 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
19725 (Vdelete_terminal_functions): New vars.
19726 (syms_of_terminal): Initialize them.
19727 (Fdelete_terminal): Run delete-terminal-functions.
19728 * xdisp.c (safe_eval): Rewrite.
19729 (safe_call2): New fun.
19730 * frame.c (Qdelete_frame_functions): New var.
19731 (syms_of_frame): Initialize it.
19732 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
19733 * lisp.h (safe_call2, pending_funcalls): Declare.
19734
197352008-03-28 Andreas Schwab <schwab@suse.de>
19736
19737 * indent.c (Fmove_to_column): Move declaration before statements.
19738
197392008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
19740
19741 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
19742 (struct frame): Use bit fields for boolean vars.
19743
19744 * process.c (server_accept_connection): Simplify naming.
19745 (emacs_get_tty_pgrp): Use SDATA.
19746
19747 * coding.c (decode_coding_object): Fix last change.
19748
197492008-03-27 Jason Rumney <jasonr@gnu.org>
19750
19751 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
19752
197532008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
19754
19755 * charset.c (Fdefine_charset_internal): Change the way of
19756 registering charsets in Vcharset_order_list.
19757 (syms_of_charset): Make the charset `eight-bit' supplementary.
19758
197592008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
19760
19761 * regex.c (EXTEND_BUFFER): Change order of pointer addition
19762 operations, to avoid having the difference between pointers
19763 overflow.
19764
197652008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
19766
19767 * indent.c (check_display_width): New fun.
19768 (scan_for_column): Use it.
19769
19770 * data.c (syms_of_data): Mark most-positive-fixnum and
19771 most-negative-fixnum as constants.
19772
19773 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
19774
19775 * indent.c (scan_for_column): Extract from current_column_1.
19776 Merge with the same code from Fmove_to_column.
19777 (current_column_1, Fmove_to_column): Use it.
19778
197792008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
19780
19781 * keymap.c (map_keymap_internal): New fun.
19782 (map_keymap): Use it.
19783 (Fmap_keymap_internal): New fun.
19784 (Fmap_keymap): Remove left-out test from before make_save_value.
19785
19786 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
19787
19788 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
19789 Use XCAR/XCDR.
19790
19791 * process.h (struct Lisp_Process): Remove filter_multibyte.
19792 * process.c (QCfilter_multibyte): Remove.
19793 (setup_process_coding_systems): Don't use filter_multibyte.
19794 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
19795 (read_process_output): Don't adjust multibyteness to filter_multibyte.
19796 (Fset_process_filter_multibyte): Change the coding-system to
19797 approximate the previous behavior.
19798 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
19799 coding-system.
19800
19801 * coding.c (decode_coding_object): When not decoding into a buffer,
19802 obey the coding system's preference of (uni|multi)byte.
19803
198042008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
19805
19806 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
19807 every char is changed and has a different byte-length.
19808 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
19809 Fix int -> EMACS_INT.
19810
198112008-03-23 David Hansen <david.hansen@gmx.net>
19812
19813 * dbusbind.c (xd_read_message): Remove extra copying of message
19814 strings. Check for NULL `interface' or `member'.
19815
198162008-03-22 Eli Zaretskii <eliz@gnu.org>
19817
19818 * w32.c (readdir): If FindFirstFile/FindNextFile return in
19819 cFileName a file name that includes `?' characters, use the 8+3
19820 alias in cAlternateFileName instead.
19821
198222008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
19823
19824 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
19825
198262008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
19827
19828 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
19829 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
19830 work on current_buffer only instead (that was already the case
19831 for some of the code anyway).
19832 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
19833 (temp_set_point, temp_set_point_both): Use EMACS_INT.
19834 (SET_PT, SET_PT_BOTH): Adjust.
19835 * intervals.h (set_point, temp_set_point, set_point_both)
19836 (temp_set_point_both): Remove redundant declarations.
19837
198382008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
19839
19840 * fileio.c (Finsert_file_contents):
19841 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
19842 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
19843 when buffer != current_buffer anyway.
19844
198452008-03-20 Andreas Schwab <schwab@suse.de>
19846
19847 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
19848 as default.
19849
198502008-03-19 Jason Rumney <jasonr@gnu.org>
19851
19852 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
19853 (syms_of_w32fns): Initialize them.
19854 (HOURGLASS_ID): New constant.
19855 (x_window_to_frame): Don't check hourglass_window.
19856 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
19857 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
19858 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
19859 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
19860 Only change the cursor if hourglass is not active.
19861 (Fx_create_frame): Initialize frame's current_cursor.
19862 (hourglass_atimer): Remove.
19863 (hourglass_started): New function.
19864 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
19865 (show_hourglass): Adapt to w32, changing argument to frame.
19866
19867 * w32term.h (struct w32_output): Remove hourglass_window.
19868 Add current_cursor.
19869
19870 * eval.c (call_debugger, Fsignal):
19871 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
19872 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
19873 (Fexecute_extended_command, cancel_hourglass_unwind):
19874 * minibuf.c (read_minibuf):
19875 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
19876
198772008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
19878
19879 * window.c (run_funs): New fun.
19880 (run_window_configuration_change_hook): Use it to run the buffer-local
19881 and the global part of the hook.
19882
19883 * xdisp.c (format_mode_line_unwind_data): Add window argument.
19884 (unwind_format_mode_line): Restore selected window.
19885 (x_consider_frame_title, Fformat_mode_line): Set selected window.
19886
198872008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
19888
19889 * editfns.c (Fchar_equal): Check they are valid characters.
19890
19891 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
19892
198932008-03-17 Andreas Schwab <schwab@suse.de>
19894
19895 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
19896 against a charset.
19897
19898 * lisp.h (Fbuffer_list): Declare.
19899
199002008-03-17 Jan Djärv <jan.h.d@swipnet.se>
d6c952f8 19901
aac0c6e3
MR
19902 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
19903 handlebox_widget is != 0.
19904
199052008-03-16 Juri Linkov <juri@jurta.org>
19906
19907 * callint.c (Fcall_interactively): For interactive code letters
19908 'b' and 'B' put the buffer list into the list of default "future"
19909 values of the minibuffer.
19910
199112008-03-16 Andreas Schwab <schwab@suse.de>
19912
19913 * keyboard.c (read_key_sequence): Fix downcasing of letters with
19914 modifiers.
19915
19916 * regex.c (re_match_2_internal): Correct matching of a charset
19917 against latin-1 characters.
19918
199192008-03-16 Kenichi Handa <handa@m17n.org>
19920
19921 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
19922 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
19923 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
19924 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
19925 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
19926 CHAR_STRING_ADVANCE.
19927 (produce_chars): Fix for the case that the source and the
19928 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
19929 instead of CHAR_STRING_ADVANCE.
19930 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
19931 STRING_CHAR_ADVANCE.
19932
199332008-03-15 Andreas Schwab <schwab@suse.de>
19934
19935 * regex.c (re_match_2_internal): Correct matching of eight bit
19936 characters in unibyte strings.
19937
199382008-03-15 Martin Rudalics <rudalics@gmx.at>
19939
19940 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
19941 at end of range when it coincides with the end of the buffer.
19942
199432008-03-14 Eli Zaretskii <eliz@gnu.org>
19944
19945 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
19946
19947 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
19948
199492008-03-14 Jason Rumney <jasonr@gnu.org>
19950
19951 * editfns.c (initial_tz): New variable.
19952 (syms_of_editfns): Initialize it.
19953 (Fset_time_zone_rule): Set it when first called.
19954 Use it when TZSTRING is nil.
19955
19956 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
19957 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
19958 (monitor_from_point_fn, get_monitor_info_fn): New globals.
19959 (globals_of_w32fns): Initialize them.
19960 (compute_tip_xy): Use them to position tooltips.
19961
199622008-03-14 Glenn Morris <rgm@gnu.org>
19963
19964 * emacs.c (main): Revert previous change.
19965 (standard_args): Revert -internal-script back to -scriptload,
19966 and remove the long-option form.
19967
199682008-03-13 Glenn Morris <rgm@gnu.org>
19969
19970 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
19971 Remove option -enable-font-backend.
19972
199732008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
19974
19975 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
19976
199772008-03-11 Jan Djärv <jan.h.d@swipnet.se>
19978
19979 * xterm.c (x_connection_closed): For GTK: If this is the last
19980 terminal just exit without closing the display.
19981
199822008-03-11 Jason Rumney <jasonr@gnu.org>
19983
19984 * w32font.c (w32font_full_name): Use floor to round.
19985
f0131492 199862008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
aac0c6e3
MR
19987
19988 * sound.c (alsa_configure): Declare vol at beginning of block.
19989
19990 * fontset.c (Ffontset_info): Remove extra semicolon.
19991
199922008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
19993
19994 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
19995 size of resulting string.
19996
199972008-03-10 Jason Rumney <jasonr@gnu.org>
19998
19999 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
20000
200012008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20002
20003 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
20004 Don't pretend as if characters with display property haven't been
20005 consumed for string-replacing-string case.
20006
200072008-03-08 Kim F. Storm <storm@cua.dk>
20008
20009 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
20010 (get_next_display_element, next_element_from_string)
20011 (next_element_from_ellipsis, next_element_from_buffer): Use it.
20012
200132008-03-08 Andreas Schwab <schwab@suse.de>
20014
20015 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
20016
200172008-03-06 Jason Rumney <jasonr@gnu.org>
20018
20019 * w32font.c (w32_registry): Take font_type argument. Use ANSI
20020 when charset not specified. Only translate ANSI to unicode when
20021 font_type is truetype.
20022 (w32font_coverage_ok): New function.
20023 (add_font_entity_to_list): Use it to filter unsuitable fonts.
20024
200252008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
20026
20027 * lread.c (Fread_char): Resolve modifiers.
20028 (Fread_char_exclusive): Likewise.
20029
20030 * character.c (char_resolve_modifier_mask): New function.
20031 (char_string): Use char_resolve_modifier_mask.
20032 (Fchar_resolve_modifiers): New function.
20033 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
20034 function.
20035
200362008-03-04 Jason Rumney <jasonr@gnu.org>
20037
20038 * makefile.w32-in: Always include w32font.c in the build.
20039 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
20040
200412008-03-04 Andreas Schwab <schwab@suse.de>
20042
20043 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
20044 (versionclean): Likewise.
20045
200462008-03-04 Juanma Barranquero <lekktu@gmail.com>
20047
20048 * .cvsignore: Add oo.
20049
200502008-03-03 Andreas Schwab <schwab@suse.de>
20051
20052 * coding.c (decode_coding_object): Inhibit gap shrinking while
20053 decoding in place.
20054
200552008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
20056
20057 * w32term.c: Remove unused include "gnu.h".
20058 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
20059
20060 * gnu.h: Rename to ...
20061 * emacs-icon.h: ... this.
20062 * xterm.c: Use emacs-icon.h instead of gnu.h.
20063 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
20064
200652008-03-03 Juanma Barranquero <lekktu@gmail.com>
20066
20067 * w32font.c: Include math.h.
20068
200692008-03-03 Jason Rumney <jasonr@gnu.org>
20070
20071 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
20072 Compute options separately.
20073 (w32font_open_internal): Set glyph_idx before caching metrics.
20074
20075 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
20076 Define if system headers don't.
20077 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
20078 (w32font_encode_char): Don't declare here.
20079
20080 * w32font.c (Quniscribe, QCformat): New symbols.
20081 (syms_of_w32font): Define them.
20082 (w32font_has_char): Indicate uncertainty.
20083 (w32font_encode_char): Encode as glyph point. Make static.
20084 (recompute_cached_metrics): New function.
20085 (w32font_open_internal): Use it. Set font to use glyph points
20086 initially. Set format based on type of font.
20087 (w32font_text_extents, w32font_draw): Optionally use glyph points.
20088 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
20089 on it. Set format based on information available here.
20090 (add_font_entity_to_list): Identify backend based on opentype_only.
20091
200922008-03-02 Andreas Schwab <schwab@suse.de>
20093
20094 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
20095
20096 * coding.c (decode_coding_big5, produce_chars):
20097 Fix typos in last change.
20098
200992008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
20100
20101 * gnu.h: New icon.
20102
201032008-03-02 Kenichi Handa <handa@m17n.org>
20104
20105 * coding.c (decode_coding_utf_8): When eol-type of CODING is
20106 `dos', don't decode '\r' if that is the last in the source.
20107 (decode_coding_utf_16, decode_coding_emacs_mule)
20108 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
20109 (decode_coding_raw_text, decode_coding_charset): Likewise.
20110 (produce_chars): Don't decode EOL here. Use EMACS_INT.
20111
201122008-03-01 Jason Rumney <jasonr@gnu.org>
20113
20114 * w32font.c (w32font_full_name): Report point size for scalable fonts.
20115
201162008-03-01 Kim F. Storm <storm@cua.dk>
20117
20118 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
20119
201202008-03-01 Jason Rumney <jasonr@gnu.org>
20121
20122 * w32font.c (w32font_full_name): New function.
20123 (w32font_open_internal): Use it.
20124
201252008-03-01 Kim F. Storm <storm@cua.dk>
20126
20127 * dispnew.c (line_draw_cost): Fix invalid glyph check.
20128
201292008-03-01 Jason Rumney <jasonr@gnu.org>
20130
20131 * font.c (font_unparse_fcname): Increase len when style is a symbol.
20132
201332008-03-01 Jan Djärv <jan.h.d@swipnet.se>
20134
20135 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
20136 xg_frame_resized when the event is for the edit widget.
20137
ef1b0ba7 20138 * gtkutil.h (xg_frame_resized): Rename from xg_resize_widgets.
aac0c6e3
MR
20139
20140 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
20141 set_char_size.
ef1b0ba7 20142 (xg_frame_resized): Rename from xg_resize_widgets. Remove all
aac0c6e3
MR
20143 operations on widgets here. Just set frame size if needed.
20144 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
20145 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
20146 (x_wm_set_size_hint): Set size hints on the edit widget only, not
20147 the whole frame.
20148 (xg_create_tool_bar): Move attachment of the tool bar to
20149 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
20150 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
20151
201522008-03-01 Jason Rumney <jasonr@gnu.org>
20153
20154 * w32fns.c (w32_msg_pump): Disable debug code.
20155
201562008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20157
20158 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
20159
201602008-02-29 Chong Yidong <cyd@stupidchicken.com>
20161
20162 * xdisp.c (next_overlay_string): Don't set
20163 overlay_strings_at_end_processed_p if we're currently reading from
20164 a display string.
20165
201662008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
20167
20168 * xdisp.c (get_overlay_strings_1): Fix typo.
20169
201702008-02-29 Chong Yidong <cyd@stupidchicken.com>
20171
20172 * xdisp.c (get_overlay_strings_1): Add missing argument type.
20173
201742008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
20175
20176 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
20177
20178 * xdisp.c (display_mode_element): Cancel the previous change.
20179 (decode_mode_spec): Likewise.
20180 (handle_auto_composed_prop): Don't make composition if it->string
20181 is a string.
20182
201832008-02-27 Kim F. Storm <storm@cua.dk>
20184
20185 * lisp.h (GLYPH): Change type from int to struct with separate char
20186 and face_id members.
20187 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
20188 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
20189 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
20190 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
20191 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
20192 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
20193 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
20194 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
20195 handle new Lisp glyph code encoding, either an integer or a cons.
20196
20197 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
20198 (GLYPH_ALIAS): Delete.
20199 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
20200 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
20201 (GLYPH_FROM_CHAR): Replace macro by ...
20202 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
20203
20204 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
20205 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
20206 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
20207 (GLYPH_INVALID_P): New macro.
20208 (spec_glyph_lookup_face): Update prototype.
20209
20210 * dispnew.c (line_draw_cost): Adapt to new glyph type.
20211 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
20212 new glyph code encoding.
20213 (spec_glyph_lookup_face): No return value; update passed glyph instead.
20214 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
20215
20216 * xdisp.c (get_next_display_element, next_element_from_display_vector):
20217 Adapt to new glyph type and new glyph code encoding.
20218
20219 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
20220
20221 * indent.c (current_column, current_column_1, Fmove_to_column)
20222 (compute_motion): Adapt to new glyph code encoding.
20223
20224 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
20225
202262008-02-27 Chong Yidong <cyd@stupidchicken.com>
20227
20228 * process.c (wait_reading_process_output): Check for window
20229 changes caused by timers.
20230 Suggested by Johan Bockgård.
20231
202322008-02-27 Glenn Morris <rgm@gnu.org>
20233
20234 * emacs.c (USAGE1): Add `--disable-font-backend'.
20235
202362008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
20237
20238 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
20239 is made to the buffer.
20240
202412008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
20242
20243 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
20244 (face_at_string_position):
20245 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
20246 (face_at_string_position):
20247 * xdisp.c (display_string, next_overlay_change):
20248 * buffer.h (overlays_at):
20249 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
20250 Update callers.
20251
202522008-02-26 Chong Yidong <cyd@stupidchicken.com>
20253
20254 * editfns.c (Fformat): Doc fix.
20255
202562008-02-26 Juanma Barranquero <lekktu@gmail.com>
20257
20258 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
20259 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
20260 (Ffont_otf_alternates, Fquery_font): Doc fixes.
20261
202622008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
20263
20264 * buffer.c (Fbuffer_swap_text): New function.
20265 (syms_of_buffer): Defsubr it.
20266
202672008-02-25 Chong Yidong <cyd@stupidchicken.com>
20268
20269 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
20270
202712008-02-25 Jason Rumney <jasonr@gnu.org>
20272
20273 * w32font.c (w32font_draw): Draw one character at a time when padding.
20274
202752008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
20276
20277 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
20278 Handle a nil arg. Use run_window_configuration_change_hook.
20279 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
20280 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
20281 Use run_window_configuration_change_hook.
20282
202832008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
20284
20285 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
20286 1-pixel width.
20287
202882008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
20289
20290 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
20291 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
20292 if the glyph in the font is zero pixel with.
20293
20294 * dispextern.h (struct glyph_string): New member padding_p.
20295
20296 * w32font.c (w32font_draw): Pay attention to s->padding_p.
20297
20298 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
20299
20300 * xfont.c (xfont_draw): Pay attention to s->padding_p.
20301
20302 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
20303
20304 * font.c: If the font driver doesn't have `shape' function, return Qnil.
20305
203062008-02-25 Jason Rumney <jasonr@gnu.org>
20307
20308 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
20309
203102008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
20311
20312 Allow fine-grained image-cache flushing.
20313 * dispextern.h (struct image): Add `dependencies' field.
20314 (clear_image_caches): Change arg to Lisp_Object.
20315 * image.c (make_image): Initialize `dependencies' field.
20316 (clear_image_cache): Change arg to allow fine-grained flushing.
20317 Perform the flush even if image-cache-eviction-delay is nil.
20318 (clear_image_caches): Change arg to Lisp_Object.
20319 (Fclear_image_cache): Expand meaning of the argument.
20320 (mark_image): Mark `dependencies' field.
20321 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
20322 (lface_hash): Use XHASH rather than XFASTINT.
20323 (face_at_buffer_position): Fix int -> EMACS_INT position.
20324 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
20325 (select_frame_for_redisplay): Remove code duplication.
20326 (redisplay_internal): Adapt arg to call to clear_image_caches.
20327
203282008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
20329
20330 * s/vms4-0.h:
20331 * s/vms4-2.h:
20332 * s/vms4-4.h:
20333 * s/vms5-5.h: Remove, unused.
20334
20335 * s/irix5-2.h:
20336 * s/irix6-0.h:
20337 * s/riscos5.h:
20338 * s/mach-bsd4-3.h:
20339 * m/mips4.h: Remove files for obsolete systems.
20340
20341 * Makefile.in:
20342 * filelock.c:
20343 * unexmips.c:
20344 * m/hp9000s300.h:
20345 * m/iris4d.h:
20346 * s/aix3-1.h:
20347 * s/hpux.h:
20348 * s/msdos.h:
20349 * s/usg5-0.h:
20350 * s/usg5-2-2.h:
20351 * s/usg5-2.h:
20352 * s/usg5-3.h: Remove references to obsolete variables.
20353
20354 * s/irix5-0.h: Remove, move all the contents ...
20355 * s/irix6-5.h: ... here. Simplify.
20356 * config.in: Regenerate.
20357
203582008-02-24 Jason Rumney <jasonr@gnu.org>
20359
20360 * w32term.c (x_draw_glyph_string_background): Clear the background
20361 manually when cleartype is in use.
20362 (x_draw_glyph_string_foreground): Draw text transparently when
20363 cleartype is in use.
20364
20365 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
20366 a font into it unless we have to.
20367
203682008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
20369
20370 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
20371 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
d6c952f8 20372
aac0c6e3
MR
203732008-02-18 Jason Rumney <jasonr@gnu.org>
20374
20375 * w32fns.c (Fw32_shell_execute): Encode parameters.
20376
203772008-02-09 Eli Zaretskii <eliz@gnu.org>
20378
20379 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
20380
203812008-02-05 Juanma Barranquero <lekktu@gmail.com>
20382
20383 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
20384
203852008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
20386
20387 * xterm.c (x_set_offset): Don't change the gravity if
20388 CHANGE_GRAVITY is -1.
20389
203902008-02-23 Chong Yidong <cyd@stupidchicken.com>
20391
20392 * fileio.c (auto_save_error_occurred): New var.
20393 (auto_save_error): Set it.
20394 (Fdo_auto_save): Don't overwrite the error message if an auto-save
20395 error occurred.
20396
203972008-02-23 Eli Zaretskii <eliz@gnu.org>
20398
20399 * w32.c (globals_of_w32): Add initializations for
20400 g_b_init_get_sid_sub_authority and
20401 g_b_init_get_sid_sub_authority_count.
20402
204032008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
20404
20405 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
20406 (font_parse_xlfd): Use them for sanity check.
20407 (Finternal_set_font_style_table): Make sure the table is bijective.
20408
20409 Consolidate the image_cache to the terminal struct.
20410 * termhooks.h (P_): Remove redundant def.
20411 (struct terminal): New field `image_cache'.
20412 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
20413 of FRAME_X_IMAGE_CACHE.
20414 * xterm.h (struct x_display_info): Remove image_cache field.
20415 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
20416 * w32term.h (struct w32_display_info): Remove image_cache field.
20417 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
20418 * macterm.h (struct mac_display_info): Remove image_cache field.
20419 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
20420 * xterm.c (x_term_init):
20421 * w32term.c (w32_term_init):
20422 * macterm.c (mac_term_init): Set the image_cache in the terminal.
20423 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
20424 Remove declarations.
20425 (clear_image_caches, mark_image_cache): New declarations.
20426 * xfaces.c (clear_face_cache):
20427 * xdisp.c (redisplay_internal): Use clear_image_caches.
20428 * image.c (clear_image_cache): Don't check that a frame is on
20429 a window-system before checking if it shares the same cache.
20430 (clear_image_caches): New function.
20431 (Fclear_image_cache): Use it.
20432 (mark_image): Move from allo.c.
20433 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
20434 * alloc.c (mark_image, mark_image_cache): Move to image.c.
20435 (mark_object): Don't call mark_image_cache for frames.
20436 (mark_terminals): Call mark_image_cache.
20437
20438 * lisp.h (Fdelete_terminal): Declare.
20439
20440 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
20441 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
20442 wrong_type_argument.
20443
204442008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
20445
20446 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
20447 malayalam.el, and tamil.el. Add sinhala.el.
20448
204492008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
20450
20451 * xterm.c (x_connection_closed): Consolidate identical tests.
20452 (x_delete_terminal): Don't crash if called via x_connection_closed.
20453
204542008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
20455
20456 * xdisp.c (decode_mode_spec): New arg string.
20457 (display_mode_element): Adjust for the above change.
20458
204592008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
20460
20461 * callint.c (Fcall_interactively): Use AREF.
20462
204632008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
20464
20465 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
20466
204672008-02-18 Jan Djärv <jan.h.d@swipnet.se>
20468
20469 * xfns.c (Fx_show_tip): Set string to " " if empty.
20470
204712008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
20472
20473 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
20474 with Qt.
20475
204762008-02-17 Kenichi Handa <handa@m17n.org>
20477
20478 * ftfont.c (ftfont_shape): Return Lispy number.
20479
20480 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
20481 for GCs.
20482 (Finternal_set_font_selection_order): Call font_update_sort_order
20483 only when enable_font_backend is set.
20484 (realize_x_face): Set face->font_info to that of default face only
20485 when enable_font_backend is set.
20486
20487 * xdisp.c (handle_composition_prop): Set it->c to the fist
20488 character of the composed region.
20489 (fill_composite_glyph_string): Set base_face->font_info to
20490 s->font_info. Get a face for ascii from base_face->ascii_face.
20491 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
20492 with a face already decided.
20493 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
20494 non-negative.
20495 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
20496 call font_prepare_composition unconditionally.
20497
20498 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
20499
20500 * xterm.h (struct x_display_info): New member font.
20501
20502 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
20503 (x_set_mouse_face_gc, x_new_font): Likewise.
20504 (x_term_init): Setup display_info->font.
20505 (x_delete_terminal): Free display_info->font.
20506
20507 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
20508
20509 * ftxfont.c (ftxfont_default_fid): Delete it.
20510 (ftxfont_open): Set xfont->fid to 0.
20511 (ftxfont_end_for_frame): Clear data specific to the frame and the
20512 font-driver.
20513
20514 * xftfont.c (xftfont_default_fid): Delete it.
20515 (xftfont_open): Set xfont->fid to 0.
20516
20517 * fontset.c (FONTSET_OBJLIST): New macro.
20518 (fontset_find_font): Update font-object list of the fontset.
20519 (free_realized_fontset): New function.
20520 (free_face_fontset): Call free_realized_fontset.
20521 (Ffont_info): Call font_close_object only when enable_font_backend
20522 is set.
20523
20524 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
20525 [HAVE_NTGUI]: Include w32term.h.
20526 [MAC_OS]: Include macterm.ch.
20527 (font_otf_ValueRecord): Use make_number.
20528 (font_finish_cache): Fix handling of reference count.
20529 (font_clear_cache): Update num_fonts.
20530 (font_open_entity): Update smallest_char_width and
20531 smallest_font_height of the frame.
20532 (font_close_object): Update num_fonts.
20533 (Fclear_font_cache): Fix finding the target cache data.
20534
205352008-02-16 Glenn Morris <rgm@gnu.org>
20536
20537 * fontset.c (Finternal_char_font): Fix compilation warning.
20538
205392008-02-16 Eli Zaretskii <eliz@gnu.org>
20540
20541 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
20542 instead of char arrays. Enlarge the size of array passed to
20543 get_token_information.
20544
20545 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
20546 warnings.
20547
205482008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
20549
20550 * .gdbinit: Don't set `args', it breaks gdb --args.
20551
205522008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
20553
20554 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
20555 within a narrowed buffer.
20556
205572008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
20558
20559 * coding.c (decode_coding_object, encode_coding_object):
20560 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
20561
205622008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
20563
20564 * coding.c (coding_set_destination): Use BEG_BYTE rather than
20565 hardcoding 1.
20566 (detect_coding_system):
20567 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
20568 (string_char_to_byte, string_byte_to_char, insert_from_gap):
20569 * insdel.c (insert_from_gap):
20570 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
20571 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
20572 (string_to_multibyte):
20573 * character.c (chars_in_text, multibyte_chars_in_text):
20574 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
20575
20576 * character.h (FETCH_STRING_CHAR_ADVANCE)
20577 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
20578 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
20579 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
20580
20581 * casefiddle.c (casify_region): Only call after-change and composition
20582 functions on the part of the region that was changed.
20583
20584 * keyboard.c (read_avail_input):
20585 * frame.c (Fdelete_frame): Call Fdelete_terminal.
20586
205872008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
20588
20589 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
20590 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
20591
205922008-02-11 Juanma Barranquero <lekktu@gmail.com>
20593
20594 * w32menu.c (push_submenu_start, push_submenu_end)
20595 (push_left_right_boundary, push_menu_pane, push_menu_item):
20596 * keyboard.c (read_key_sequence): Don't pass args with side effects
20597 to AREF, it fails when compiling with -DENABLE_CHECKING.
20598
205992008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
20600
20601 * Makefile.in (${lispsource}international/charprop.el):
20602 Delete this target.
20603
20604 * search.c (boyer_moore): Fix incorrect synching of the trunk and
20605 emacs-unicode-2.
20606
206072008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
20608
20609 * terminal.c (Fdelete_terminal): Clean up the `force' path.
20610
206112008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
20612
20613 * frame.c (Qnoelisp): New symbol.
20614 (syms_of_frame): Initialize it.
20615 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
20616 harmless Elisp code, from a strong `force' from x_connection_closed.
20617 * frame.h (Qnoelisp): Declare.
20618 * xterm.c (x_connection_closed): Pass `noelisp'.
20619
20620 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
20621 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
20622 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
20623 rather than `int' for the type of `type'.
20624
206252008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
20626
20627 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
20628
20629 * Makefile.in (GNUC): Remove support for gcc-1.x.
20630
206312008-02-10 Richard Stallman <rms@gnu.org>
20632
20633 * lisp.h (ASET): Use AREF, not ASLOT.
20634
206352008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
20636
20637 * lisp.h (ASET): Check bounds.
20638
206392008-02-10 Glenn Morris <rgm@gnu.org>
20640
20641 * buffer.c (mode-name): Doc fix.
20642
206432008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
20644
20645 * Makefile.in:
20646 * emacs.c:
20647 * gmalloc.c:
20648 * keyboard.c:
20649 * lisp.h:
20650 * m/ibm370aix.h:
20651 * process.c:
20652 * regex.c:
20653 * s/hpux.h:
20654 * sysdep.c:
20655 * sysselect.h:
20656 * systty.h:
20657 * unexec.c:
20658 * w32term.c:
20659 * xsmfns.c:
20660 * xterm.c: Remove code that deals with obsolete variables.
20661
20662 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
20663
20664 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
20665 nothing else needs it anymore.
20666
206672008-02-09 Eli Zaretskii <eliz@gnu.org>
20668
20669 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
20670 instead of unibyte_char_to_multibyte.
20671
206722008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
20673
20674 * s/gnu-linux.h: Remove commented out code.
20675
20676 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
20677
20678 * Makefile.in: Update what RMS says about using autoconf.
20679 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
20680 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
20681 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
20682 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
20683
206842008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
20685
20686 * keymap.c (Fkey_description): Move side effect outside of macro call.
20687
20688 * xfaces.c (Finternal_make_lisp_face):
20689 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
20690
20691 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
20692 (syms_of_fontset): Use ASET.
20693
20694 * fns.c (concat): Move side effect outside of macro call.
20695 (hash_clear): Use ASET.
20696
206972008-02-08 Richard Stallman <rms@gnu.org>
20698
20699 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
20700 If FORCE, and frame has a surrogate minibuffer for another frame,
20701 delete the other frame first.
20702
207032008-02-07 Timo Savola <timo.savola@iki.fi>
20704
20705 * xterm.c (x_detect_focus_change): Handle embed client message.
20706 (handle_one_xevent): Ditto.
20707 (handle_one_xevent): If embedded and we get a button press/release,
20708 request focus.
20709 (xembed_set_info, xembed_send_message): New functions.
20710 (x_make_frame_visible): Call xembed_set_info if embedded.
20711 (x_make_frame_invisible): Call xembed_set_info if embedded.
20712 (x_term_init): Initialize Xatom_XEMBED.
20713 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
20714 (x_iconify_frame): Ditto.
20715
20716 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
20717 (enum xembed_info, enum xembed_message, enum xembed_focus)
20718 (enum xembed_modifier, enum xembed_accelerator): New.
20719 (xembed_set_info, xembed_send_message): Declare.
20720 (FRAME_X_EMBEDDED_P): New.
20721
20722 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
20723 gtk_plug_new.
20724
20725 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
20726 window ID of a frame.
20727 (x_window): Reparent frame if embedded.
20728 (Fx_create_frame): Don't set border width if embedded.
20729
20730 * emacs.c (USAGE3): Add --parent-id.
20731 (standard_args): Ditto.
20732
207332008-02-07 Jan Djärv <jan.h.d@swipnet.se>
20734
20735 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
20736
207372008-02-07 Jim Meyering <meyering@redhat.com>
20738
20739 Use "do...while (0)", not "if (1)...else" in macro definitions.
20740 The latter provokes a warning from gcc about the empty else, when
20741 followed by ";". Also, without that trailing semicolon, it would
20742 silently swallow up any following statement.
20743 * syntax.h (SETUP_SYNTAX_TABLE)
20744 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
20745 * buffer.h (DECODE_POSITION): Likewise.
20746 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
20747 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
20748 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
20749 (FETCH_CHAR_ADVANCE): Likewise.
20750 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
20751
207522008-02-07 Jim Meyering <meyering@redhat.com>
20753
20754 * lread.c [lint]: Don't include <sys/inode.h>.
20755
207562008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
20757
20758 * xselect.c (x_handle_dnd_message):
20759 * xmenu.c (digest_single_submenu, xmenu_show):
20760 * xdisp.c (with_echo_area_buffer_unwind_data)
20761 (format_mode_line_unwind_data, unwind_format_mode_line)
20762 (display_menu_bar):
20763 * eval.c (Ffetch_bytecode):
20764 * doc.c (store_function_docstring):
20765 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
20766 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
20767 * buffer.c (add_overlay_mod_hooklist): Use ASET.
20768
207692008-02-07 Kenichi Handa <handa@m17n.org>
20770
20771 * ftxfont.c (ftxfont_open): Don't set
20772 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
20773
20774 * ftfont.c (ftfont_open): Fix previous change.
20775
207762008-02-06 Jason Rumney <jasonr@gnu.org>
20777
20778 * w32font.c (w32font_text_extents): Fill in lbearing metric.
20779 Use cached metrics for ASCII characters.
20780 (w32font_open_internal): Don't set font's owning_frame.
20781 Cache metrics for ASCII characters.
20782
20783 * w32font.h (struct w32font_info): Add ascii_metrics.
20784 Remove owning_frame.
20785
207862008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
20787
20788 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
20789 to negative value.
20790
20791 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
20792
20793 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
20794
20795 * charset.c (syms_of_charset): Set QCtest and Qeq.
20796
207972008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
20798
20799 * process.c (Fstart_process):
20800 * callproc.c (Fcall_process): Handle the case where
20801 Funhandled_file_name_directory returns nil.
20802
20803 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
20804 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
20805 * font.c (check_gstring): Use them and AREF to access the vector before
20806 we know it's really a gstring.
20807 (Ffont_shape_text): Fix typo.
46e722a9 20808 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
aac0c6e3
MR
20809
20810 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
20811 Declare.
20812
20813 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
20814
208152008-02-05 Jason Rumney <jasonr@gnu.org>
20816
20817 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
20818 Set smallest_font_height and smallest_char_width in display info.
20819
208202008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
20821
20822 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
20823
208242008-02-05 Miles Bader <miles@gnu.org>
20825
20826 * xfaces.c (get_lface_attributes, merge_named_face)
20827 (lookup_named_face, lookup_derived_face, realize_named_face):
20828 Revert 2008-02-01 change by cyd@stupidchicken.com.
20829
208302008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
20831
20832 * fontset.c (Ffontset_info): Handle the case of inhibitting the
20833 fallback fonts.
20834 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
20835
208362008-02-04 Jason Rumney <jasonr@gnu.org>
20837
20838 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
20839 set full_name.
20840 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
20841
208422008-02-03 Jason Rumney <jasonr@gnu.org>
20843
20844 * makefile.w32-in (OBJ1): Include font.o here.
20845 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
20846
208472008-02-02 Jason Rumney <jasonr@gnu.org>
20848
20849 * makefile.w32-in (temacs): Bump EMHEAP to 21.
20850
208512008-02-01 Jason Rumney <jasonr@gnu.org>
20852
20853 * s/cygwin.h: Define VIRT_ADDR_VARIES.
20854
20855 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
20856
208572008-02-01 Andreas Schwab <schwab@suse.de>
20858
20859 * Makefile.in (shortlisp, lisp): Update for rename of
20860 ../lisp/language/myanmar.el.
20861
208622008-02-01 Chong Yidong <cyd@stupidchicken.com>
20863
20864 * xfaces.c (get_lface_attributes): Delete function.
20865 (merge_named_face, lookup_named_face, lookup_derived_face)
20866 (realize_named_face): Call lface_from_face_name directly, and use
20867 the fact that merge_face_vectors does not alter its FROM argument.
20868
208692008-02-01 Jason Rumney <jasonr@gnu.org>
20870
20871 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
20872 input in the default locale. Handle non-Unicode multibyte input.
20873
208742008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20875
20876 * fontset.c (reorder_font_vector): Exclude nil elements from the
20877 font group. Don't try multiple fonts.
20878 (fontset_font): Adjust for the above change.
20879 (Finternal_char_font): Return nil if the found font doesn't
20880 contain the character ch.
20881
20882 * Makefile.in (lisp, shortlisp): Add cham.el.
20883
208842008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20885
20886 * font.h (FONTP): Make it return 1 also for a font-object.
20887
20888 * .gdbinit (xfontset): New function.
20889
20890 * font.c (font_find_for_lface): Check if the character C is
20891 supported or not only for the first font.
20892
20893 * fontset.c (reorder_font_vector): Fix typo.
20894 (fontset_find_font): Don't add a font-spec specifying a script.
20895 Use 0 (not Qt) for the indication of empty font-group. Change the
20896 format of RFONT-DEF. Return Qt if no font in the font-group
20897 support the character.
20898 (fontset_font): Adjust for the above change. If no font was
20899 found the character, remember that.
20900 (face_for_char): Adjust for the change of RFONT-DEF.
20901 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
20902 no font for the target.
20903 (Finternal_char_font): Adjust for the change of RFONT-DEF.
20904
209052008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20906
20907 * font.c (font_load_for_face): Handle the case that the font in
20908 face->lface is a string.
20909
209102008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20911
20912 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
20913
209142008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20915
20916 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
20917 Fix previous change. If the frame is not on a window system,
20918 signal an error.
20919
209202008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20921
bba3e508
SM
20922 * coding.c (decode_coding_object, encode_coding_object):
20923 Adjust marker positions after conversion.
aac0c6e3
MR
20924
20925 * lisp.h (struct Lisp_Marker): New member need_adjustment.
20926
209272008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20928
20929 * font.c (font_find_for_lface): Fix the handling of the return
20930 value of font_has_char.
20931 (Ffont_shape_text): Fix previous change.
20932
20933 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
20934 (fontset_ref_and_range): Delete it.
20935 (fontset_find_font): Call char_table_ref_and_range instead of
20936 FONTSET_REF_AND_RANGE.
20937 (make_fontset): Don't setup font groups of Latin here.
20938 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
20939 (new_fontset_from_font): Make the specified font the default for
20940 all Latin characters.
20941
209422008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20943
20944 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
20945 is on a window system before accessing the fontset of the frame.
20946
209472008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20948
20949 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
20950
20951 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
20952 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
20953
20954 * font.c (Ffont_shape_text): If the font driver doesn't have a
20955 shaper function, make zero-width glyphs to have at least one-pixel
20956 width. Fix setting of `to' field of glyphs.
20957
209582008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20959
20960 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
20961 glyphs.
20962
20963 * font.h (struct font_driver): Improve docstring of member `shape'.
20964
209652008-02-01 Kenichi Handa <handa@m17n.org>
20966
20967 * composite.c (syms_of_composite): Fix docstring of
20968 auto-composition-function.
20969
20970 * font.h (LGLYPH_SIZE): New macro.
20971
20972 * font.c (Ffont_fill_gstring): Stop filling when a character not
20973 supported by the font is found.
20974 (Ffont_shape_text): When a shape callback function returns nil,
20975 try at most two more times with larger gstring.
20976 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
20977
20978 * xdisp.c (handle_auto_composed_prop): Change the argument to
20979 auto-composition-function.
20980
20981 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
20982 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
20983 Lispy glyph and store it in the lgstring.
20984
20985 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
20986
20987 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
20988
209892008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20990
20991 * font.c (Ffont_shape_text): Avoid unnecessary composition.
20992
20993 * fontset.c (Vfont_encoding_charset_alist): New variable.
20994 (syms_of_fontset): DEFVAR it.
20995 (reorder_font_vector, fontset_find_font): Optimize for the case of
20996 no need of reordering.
20997 (face_for_char): Map the charset property by
20998 Vfont_encoding_charset_alist.
20999
210002008-02-01 Jason Rumney <jasonr@gnu.org>
21001
21002 * w32font.c (logfonts_match): Don't check adstyle here.
21003 (font_matches_spec): Check here against physical font instead.
21004 (add_font_entity_to_list): Avoid some substitutions.
21005
21006 * font.c (font_parse_fcname): Default weight and slant to normal.
21007 (font_score): Prefer normal fonts if weight or slant unspecified.
21008 (font_score) [WINDOWSNT]: Scale weight difference down to closer
21009 match freetype scores.
21010
210112008-02-01 Jason Rumney <jasonr@gnu.org>
21012
21013 * w32font.c (w32font_text_extents): Don't use the frame stored in the
21014 font, as it may have been deleted.
21015 (w32_enumfont_pattern_entity): Map generic family to adstyle using
21016 most common hyphenless variation.
21017 (logfonts_match): Check generic family.
21018 (font_matches_spec): Don't check generic family here.
21019 (fill_in_logfont): Set generic family based on adstyle.
21020
21021 * w32font.h (w32font_get_cache): Update declaration.
21022
210232008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21024
21025 * ftfont.c (ftfont_get_cache): Adjust the argument type.
21026
21027 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
21028 If none of the new drivers are available, call font_update_drivers
21029 with the old drivers.
21030
21031 * w32font.c (w32font_get_cache): Adjust the argument type.
21032
21033 * xfont.c (xfont_get_cache): Adjust the argument type.
21034
21035 * font.h (struct font_driver): Change argument type of get_cache.
21036
21037 * xftfont.c (xftfont_start_for_frame): Delete prototype.
21038
21039 * font.c (Ffont_get): Fix arguments to Fassoc.
21040 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
21041 (font_clear_cache): New function.
21042 (font_list_entities, font_matching_entity): Use font_get_cache.
21043 (font_update_drivers): Call font_clear_cache when finishing a driver.
21044
21045 * fontset.c (fontset_find_font): Fix previous change.
21046
210472008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21048
21049 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
21050 dpyinfo->font_table.
21051 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
21052 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
21053
21054 * font.c (font_at): Handle the case that the arg C is negative.
21055 Handle the unibyte case.
21056 (Ffont_at): Call font_at with the arg C -1.
21057
21058 * xdisp.c (handle_auto_composed_prop): Don't get a character at
21059 the position here, and call font_at with the arg C -1.
21060 Don't check the range of the existing composition at the point.
21061
210622008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21063
21064 * fontset.c (fontset_add): New args charset_id and family.
21065 Change caller.
21066 (load_font_get_repertory, fontset_find_font): Assume that
21067 font_spec is always a font-spec object.
21068 (Fset_fontset_font): Always store a font-spec object in a fontset.
21069
21070 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
21071 instead of get_property_and_range.
21072
210732008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21074
21075 * xftfont.c (struct xftfont_info): Delete the member ft_face.
21076 (xftfont_open): Don't keep locking face.
21077 (xftfont_close): Don't unlock face.
21078 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
21079
21080 * fontset.c (fontset_find_font): Don't prefer a font of
21081 supplementary charset.
21082
210832008-02-01 Kenichi Handa <handa@m17n.org>
21084
21085 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
21086 script, langsys_tag to langsys, new member script.
21087 (OTF_TAG_STR): Terminate by '\0'.
867d4bb3 21088 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
aac0c6e3
MR
21089 listing to the script specified in that property. Fix arg to
21090 OTF_check_features.
21091
210922008-02-01 Jason Rumney <jasonr@gnu.org>
21093
21094 * w32font.h: New file.
21095
21096 * w32font.c: Include it.
21097 (struct w32font_info): Add owning_frame field. Move to w32font.h.
21098 (w32font_open): Set owning_frame.
21099 (w32font_text_extents): Use owning_frame.
21100 (struct font_callback_data): Add opentype_only field.
21101 (add_font_entity_to_list): Use it to filter fonts.
21102 Don't check against full name.
21103 (w32font_list_internal): New function.
21104 (w32font_list): Use it.
21105 (w32font_match_internal): New function.
21106 (w32font_match): Use it.
21107 (w32font_open_internal): New function.
21108 (w32font_open): Use it.
21109 (w32font_get_cache, w32font_close, w32font_has_char)
21110 (w32font_encode_char, w32font_text_extents, w32font_draw):
21111 Make non-static.
21112
21113 * makefile.w32-in (w32font.o): Depend on w32font.h.
21114
211152008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21116
21117 * charset.c (Fdefine_charset_internal): Record a supplementary
21118 charset at the tail of Vcharset_order_list.
21119
21120 * font.c (Ffont_shape_text): Fix the return value.
21121
21122 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
21123
21124 * xdisp.c (handle_auto_composed_prop): Fix previous change.
21125
211262008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21127
21128 * ftfont.c (struct OpenTypeSpec): New struct.
21129 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
21130 (ftfont_get_open_type_spec): New function.
21131 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
21132
21133 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
21134
211352008-02-01 Jason Rumney <jasonr@gnu.org>
21136
21137 * w32font.c (add_font_entity_to_list): Compare only the beginning
21138 of full name.
21139
211402008-02-01 Kenichi Handa <handa@m17n.org>
21141
21142 * xdisp.c (handle_auto_composed_prop): Simplify the code.
21143 Never return HANDLED_RECOMPUTE_PROPS.
21144
211452008-02-01 Kenichi Handa <handa@m17n.org>
21146
21147 * font.c (font_gstring_produce): Delete it.
21148
21149 * composite.h (COMPOSITION_METHOD):
21150 Handle COMPOSITION_WITH_GLYPH_STRING.
21151
211522008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21153
21154 * xfont.c (Qx): Delete.
21155 (syms_of_xfont): Don't initialize Qx.
21156
21157 * composite.h (enum composition_method):
21158 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
21159
211602008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21161
21162 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
21163 (choose_face_font): Accept new form of font-spec.
21164
21165 * frame.h (font_driver_list): Declare it unconditionally.
21166 (struct frame): Define members font_driver_list and font_data_list
21167 unconditionally.
21168
21169 * fontset.c: Include "font.h" unconditionally.
21170 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
21171 (Fset_fontset_font): Accept a font-spec object.
21172
21173 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
21174 PIXEL_SIZE part a wild card.
21175
21176 * dispextern.h (struct glyph_string): Define members clip and
21177 num_clips unconditionally.
21178 (struct face): Define members font_info and extra unconditionally.
21179
21180 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
21181 ftfont_info only when HAVE_LIBOTF is defined.
21182
211832008-02-01 Andreas Schwab <schwab@suse.de>
21184
21185 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
21186 and end.
21187
211882008-02-01 Jason Rumney <jasonr@gnu.org>
21189
21190 * w32font.c (w32font_driver): Add new fields.
21191
211922008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21193
21194 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
21195 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
21196 (LIBES): Add @M17N_FLT_CFLAGS@.
21197
21198 * composite.c (compose_text): Don't treat the new style
21199 composition specially.
21200
21201 * emacs.c (main): Call syms_of_font unconditionally.
21202
21203 * font.h (FONT_ENTITY_NOT_LOADABLE)
21204 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
21205 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
21206 (struct font_driver): New member shape.
21207 (font_registry_charsets): Extern it.
21208 (font_find_for_lface, font_prepare_composition): Adjust prototype.
21209 (font_otf_capability, font_drive_otf): Delete their externs.
21210
21211 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
21212 (font_charset_alist, font_registry_charsets): Move from xfont.c
21213 and rename.
21214 (font_prop_validate_otf): New function.
21215 (font_property_table): Register it for QCotf.
21216 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
21217 (font_drive_otf): Delete.
21218 (font_prepare_composition): New arg F. Adjust for the change of
21219 lispy gstring.
21220 (font_find_for_lface): New arg C.
21221 (font_load_for_face): Adjust for the change of font_find_for_lface.
21222 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
21223 lispy gstring.
21224 (Ffont_shape_text): New function.
21225 (Fopen_font): If the font size is not given, use 12-pixel.
21226 (Ffont_at): New arg STRING.
40b1a3a9 21227 (syms_of_font): Initialize font_charset_alist.
aac0c6e3
MR
21228 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
21229 conditionally.
21230
21231 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
21232 fonts of the same font-spec. Change the format of RFONT-DEF.
21233 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
21234 Adjust for the change of RFONT-DEF.
21235 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
21236
21237 * ftfont.h: New file.
21238
21239 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
21240 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
21241 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
21242 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
21243 font_otf_capability and font_drive_otf, set ftfont_shape.
21244 (ftfont_list): Adjust for the change of :otf property value.
21245 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
21246 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
21247 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
21248 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
21249 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
21250 (otf_gstring, gstring, m17n_flt_initialized): New variables.
21251
21252 * w32term.c (x_draw_composite_glyph_string_foreground):
21253 Adjust for the change of lispy gstring.
21254
21255 * xdisp.c (handle_composition_prop): Adjust for the change of
21256 lispy gstring. Call a function for auto-composition with the
21257 third arg it->window.
21258 (fill_composite_glyph_string): Adjust for the change of lispy string.
21259 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
21260
21261 * xfaces.c (set_font_frame_param): Adjust for the change of
21262 font_find_for_lface.
21263
21264 * xfont.c (x_font_charset_alist): Move to font.c and rename.
21265 (xfont_registry_charsets): Likewise. Change caller.
21266 (syms_of_xfont): Don't handle x_font_charset_alist.
21267
21268 * xftfont.c: Include "ftfont.h".
21269 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
21270 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
21271 (xftfont_close) [HAVE_LIBOTF]: Close otf.
21272 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
21273 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
21274 Set xftfont_driver.shape to xftfont_shape.
21275
21276 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
21277 the change of lispy gstring.
21278
212792008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21280
21281 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
21282
212832008-02-01 Jason Rumney <jasonr@gnu.org>
21284
21285 * w32font.c (w32font_draw): Fill background manually.
21286
212872008-02-01 Jason Rumney <jasonr@gnu.org>
21288
21289 * font.c (Qfontp): Remove unused symbol.
21290 (QCantialias): New symbol.
21291 (syms_of_font): Define it.
21292 (font_property_table): Set a validator for QCantialias.
21293
21294 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
21295 Define if not already.
21296 (QCfamily): Share with xfaces.c.
21297 (Qstandard, Qsubpixel, Qnatural): New symbols.
21298 (syms_of_w32font): Define them. Don't define QCfamily here.
21299 (w32_antialias_type, lispy_antialias_type): New functions.
21300 (w32_enumfont_pattern_entity): New arg requested_font.
21301 Set antialias parameter if non-default was requested.
21302 (fill_in_logfont): Fill in lfQuality if :antialias specified.
21303
213042008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21305
21306 * lread.c (read1): Undo the previous change.
21307
213082008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
21309
21310 * frame.c (Fdelete_frame): Call font_update_drivers only when
21311 USE_FONT_BACKEND is defined.
21312
213132008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21314
21315 * font.h (struct font_bitmap): New member bits_per_pixel.
21316 (struct font_driver): New members start_for_frame and end_for_frame.
21317 (struct font_data_list): New struct.
21318 (font_put_frame_data, font_get_frame_data): Extern them.
21319
21320 * frame.h (struct frame): New member font_data_list.
21321
21322 * font.c (font_update_drivers): Call driver->start_for_frame and
21323 driver->end_for_frame at proper timings.
21324 (font_put_frame_data, font_get_frame_data): New functions.
21325 (Ffont_spec): Add usage in the docstring.
21326
21327 * frame.c (make_frame): Initialize f->font_data_list to NULL.
21328 (Fdelete_frame): Call font_update_drivers.
21329
21330 * xftfont.c (struct xftface_info): Delete the member xft_draw.
21331 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
21332 (xftfont_get_xft_draw): New function.
21333 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
21334 (xftfont_end_for_frame): New function.
21335 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
21336
21337 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
21338 Change argument. Cache GCs in the per-frame data.
21339 (struct ftxfont_frame_data): New struct.
21340 (ftxfont_draw_bitmap): New arg gc_fore and flush.
21341 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
21342 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
21343 (ftxfont_end_for_frame): New function.
21344 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
21345
21346 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
21347
213482008-02-01 Kenichi Handa <handa@m17n.org>
21349
21350 * xselect.c (Vselection_coding_system)
21351 (Vnext_selection_coding_system): Delete them.
21352 (syms_of_xselect): Don't declare selection-coding-system and
21353 next-selection-coding-system. They are declared in select.el.
21354
213552008-02-01 Jason Rumney <jasonr@gnu.org>
21356
21357 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
21358
21359 * w32fns.c: Include imm.h.
21360 (get_composition_string_fn, get_ime_context_fn): New optional
21361 system functions.
21362 (globals_of_w32fns): Load them from imm32.dll.
21363 (ignore_ime_char): New flag.
21364 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
21365 WM_IME_ENDCOMPOSITION messages.
21366
21367 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
21368 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
21369
213702008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21371
21372 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
21373 (READCHAR_REPORT_MULTIBYTE): New macro.
21374 (readchar): New 2nd arg MULTIBYTE.
21375 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
21376 Make symbol's name multibyte according to the multibyteness of the
21377 source.
21378
213792008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21380
21381 * xfaces.c (face_for_overlay_string): Call lookup_face with
21382 correct arguments (fix of synching with the trunk).
21383
213842008-02-01 Kenichi Handa <handa@m17n.org>
21385
21386 * font.c (font_prop_validate_symbol, font_prop_validate_style)
21387 (font_prop_validate_non_neg, font_prop_validate_spacing):
21388 Delete argument prop_index.
21389 (font_property_table): Change arguments to validater. Change Callers.
21390 (font_lispy_object): Delete.
21391 (font_at): Use font_find_object instead fo font_lispy_object.
21392
213932008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21394
21395 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
21396 and file names.
21397
213982008-02-01 Jason Rumney <jasonr@gnu.org>
21399
21400 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
21401 (font_matches_spec): Remove debug output.
21402 (add_font_entity_to_list): Avoid using substituted fonts.
21403
214042008-02-01 Jason Rumney <jasonr@gnu.org>
21405
21406 * doc.c (Fsnarf_documentation):
21407 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
21408
214092008-02-01 Miles Bader <miles@gnu.org>
21410
21411 * dispextern.h (struct glyph_row): Only define "clip" field if
21412 HAVE_WINDOW_SYSTEM is defined.
21413
214142008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
21415
21416 Fix up multi-tty merge.
21417
21418 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
21419 and indentation.
21420
21421 * xfaces.c (free_realized_face, clear_face_gcs):
21422 Include font_done_for_face in the input_blocked section, just in case.
21423
21424 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
21425 (get_char_face_and_encoding): Undo last change and remove the *other*
21426 duplicate definition (i.e. keep the one that's better scoped and that
21427 includes code for the font-backend).
21428
21429 * terminal.c (create_terminal): Default keyboard_coding to
21430 `no-conversion' and terminal_coding to `undecided'.
21431
21432 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
21433
21434 * fontset.c (free_realized_fontsets): Check that the table entry does
21435 contain a fontset before trying to compare it to `base'.
21436
21437 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
21438 syms_of_charset, and syms_of_coding earlier because init_window_once
21439 now needs Vcoding_system_hash_table to be setup.
21440
21441 * coding.h (default_buffer_file_coding): Remove.
21442
21443 * coding.c (default_buffer_file_coding): Remove.
21444 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
21445 than ->symbol, and use the terminal-local coding system.
21446 (syms_of_coding): Don't setup the coding-systems that are not
21447 terminal-local.
21448 (Fdefine_coding_system_internal): Use XCAR/XCDR.
21449
21450 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
21451 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
21452
21453 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
21454 in chartab.c and were re-added here by mistake.
21455 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
21456
21457 * doc.c (Fsnarf_documentation):
21458 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
21459 src to etc.
21460
21461 * ChangeLog.10: Add mistakenly removed entry.
21462
214632008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
21464
21465 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
21466
214672008-02-01 Miles Bader <miles@gnu.org>
21468
21469 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
21470 Add extra args to FACE_FOR_CHAR.
21471
214722008-02-01 Kenichi Handa <handa@m17n.org>
21473
21474 * keymap.c (where_is_internal_1): If key is a cons, store the copy
21475 in sequence.
21476
21477 * chartab.c (map_sub_char_table, map_char_table): If the range
21478 contains just one character, call the function with that character
21479 even if the depth is not 3.
21480
214812008-02-01 Jason Rumney <jasonr@gnu.org>
21482
21483 * w32font.c (w32font_text_extents): Calculate metrics for the
21484 whole string.
21485
214862008-02-01 Jason Rumney <jasonr@gnu.org>
21487
21488 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
21489
214902008-02-01 Jason Rumney <jasonr@gnu.org>
21491
bba3e508
SM
21492 * w32term.c (x_set_glyph_string_clipping):
21493 Use get_glyph_string_clip_rects.
aac0c6e3
MR
21494 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
21495 Adjust for the change of struct glyph_string.
21496
21497 * w32font.c (w32font_draw): Do clipping here.
21498
214992008-02-01 Kenichi Handa <handa@m17n.org>
21500
21501 * xftfont.c (xftfont_draw): Adjust for the change of struct
21502 glyph_string.
21503
bba3e508
SM
21504 * xterm.c (x_set_glyph_string_clipping):
21505 Use get_glyph_string_clip_rects.
aac0c6e3
MR
21506 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
21507 Adjust for the change of struct glyph_string.
21508
21509 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
21510 the resulting clip(s}.
21511 (expose_overlaps): Add arg r. Change callers. Set it to
21512 row->clip temporarily.
21513 (expose_window): Redraw rows overlapping the exposed area.
21514
21515 * dispextern.h (struct glyph_row): New member clip.
21516 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
21517 clip_height, new member clip, and num_clips.
21518
215192008-02-01 Kenichi Handa <handa@m17n.org>
21520
21521 * data.c (Fchar_or_string_p): Fix docstring.
21522
215232008-02-01 Kenichi Handa <handa@m17n.org>
21524
21525 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
21526 create a temporary XftDraw object.
21527
215282008-02-01 Kenichi Handa <handa@m17n.org>
21529
21530 * font.c (Ffontp): Fix docstring.
21531
21532 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
21533 strong evidence of ISO-2022.
21534
215352008-02-01 Kenichi Handa <handa@m17n.org>
21536
21537 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
21538 SYNTAX_ENTRY_FOLLOW_PARENT.
21539
215402008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
21541
21542 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
21543 its type.
21544 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
21545 Update to the new type of weak_hash_tables and next_weak.
21546
21547 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
21548 a plain C pointer to Lisp_Hash_Table.
21549
21550 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
21551 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
21552 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
21553 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
21554 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
21555 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
21556 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
21557 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
21558 (GC_EQ): Remove since they've been identical to their non-GC_
21559 alter-egos ever since the markbit was eradicated.
21560
21561 * alloc.c:
21562 * buffer.c:
21563 * buffer.h:
21564 * data.c:
21565 * fileio.c:
21566 * filelock.c:
21567 * fns.c:
21568 * frame.h:
21569 * lisp.h:
21570 * macterm.c:
21571 * print.c:
21572 * process.c:
21573 * w32fns.c:
21574 * w32menu.c:
21575 * w32term.c:
21576 * xfns.c:
21577 * xmenu.c:
21578 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
21579
215802008-02-01 Kenichi Handa <handa@m17n.org>
21581
21582 * chartab.c (map_sub_char_table): Make it work for the top-level
21583 char-table. Fix handling of parent char-table.
21584 (map_char_table): Adjust for the above change.
21585
215862008-02-01 Jason Rumney <jasonr@gnu.org>
21587
21588 * w32font.c (Qgdi): Rename from Qw32.
21589
215902008-02-01 Jason Rumney <jasonr@gnu.org>
21591
21592 * w32bdf.c (get_quoted_string): Make function static.
21593
215942008-02-01 Kenichi Handa <handa@m17n.org>
21595
21596 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
21597 bigger ascent and descent than those of the font, use them as
21598 font's ascent and descent.
21599
216002008-02-01 Kenichi Handa <handa@m17n.org>
21601
21602 * Makefile.in (${lispsource}international/charprop.el): Move this
21603 target within "#ifdef HAVE_UNIDATA" and "#endif".
21604
216052008-02-01 Kenichi Handa <handa@m17n.org>
21606
21607 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
21608 (shortlisp): Add ../lisp/language/tai-viet.el.
21609
216102008-02-01 Ulrich Mueller <ulm@gentoo.org>
21611
21612 * Makefile.in (${lispsource}international/charprop.el): Depend on
21613 temacs${EXEEXT}.
21614
216152008-02-01 Jason Rumney <jasonr@gnu.org>
21616
21617 * w32font.c (w32font_close): Delete the GDI font object.
21618
21619 * w32menu.c: Include character.h.
21620
21621 * w32proc.c: Likewise.
21622
21623 * w32select.c: Likewise.
21624
21625 * makefile.w32-in (w32proc.o): Depend on character.h.
21626
216272008-02-01 Jason Rumney <jasonr@gnu.org>
21628
21629 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
21630
21631 * w32menu.c (syms_of_w32menu): Likewise.
21632
21633 * w32proc.c (syms_of_ntproc): Likewise.
21634
21635 * w32select.c (syms_of_w32select): Likewise.
21636
21637 * w32term.c (syms_of_w32term): Likewise.
21638
216392008-02-01 Jason Rumney <jasonr@gnu.org>
21640
21641 * w32font.c (w32font_draw): Delete brush after using it.
21642
216432008-02-01 Jason Rumney <jasonr@gnu.org>
21644
21645 * w32font.c (w32font_open): Don't set font_idx.
21646 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
21647 to font settings.
21648 (w32font_draw): Fill background explicitly.
21649
216502008-02-01 Jason Rumney <jasonr@gnu.org>
21651
21652 * w32term.c (w32_initialize): Don't call w32font_initialize.
21653
21654 * w32font.c (w32font_info): Remove subranges.
21655 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
21656 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
21657 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
21658 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
21659 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
21660 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
21661 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
21662 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
21663 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
21664 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
21665 New symbols.
21666 (font_callback_data): New struct.
21667 (w32font_list, w32font_match): Use it.
21668 (w32font_open): Don't populate subranges.
21669 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
21670 (w32font_encode_char): Always return unicode code-point as-is.
21671 (w32font_text_extents): Supply a transformation matrix to
21672 GetGlyphOutline. Never look up by glyph index. Avoid looping
21673 twice. Use unicode version of GetTexExtentPoint32 instead of
21674 glyph index version.
21675 (set_fonts_frame): Remove.
21676 (w32_enumfont_pattern_entity): Add frame parameter, use it to
21677 set frame parameter. Use backward compatible fake foundries.
21678 Save generic family in extra slot under QCfamily. Make width slot
21679 constant. Save QCspacing value. Save list of scripts instead of
21680 binary subranges.
21681 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
bba3e508
SM
21682 (add_font_entity_to_list): Use font_callback_data struct.
21683 Filter unwanted fonts.
aac0c6e3
MR
21684 (add_one_font_entity_to_list): Use font_callback_data struct.
21685 (w32_registry): Default to iso10646_1.
21686 (fill_in_logfont): Use dpi from extra slot. Don't bother with
21687 string font registries. Don't fill in font name if it is a generic
21688 family name, fill family instead. Use spacing, family and script
21689 extra info to fill pitch, family and charset fields.
21690 (list_all_matching_fonts): Use font_callback_data struct.
21691 (unicode_range_for_char): Remove.
21692 (font_supported_scripts): New function.
21693 (w32font_initialize): Remove.
21694 (syms_of_w32font): Update which symbols are defined.
21695
216962008-02-01 Jason Rumney <jasonr@gnu.org>
21697
21698 * font.c (font_pixel_size): Reverse assq_no_quit args.
21699
21700 * w32term.h (FONT_WIDTH): Report max width, not average.
21701 (FONT_MAX_WIDTH): Remove.
21702 (FONT_AVG_WIDTH): New macro.
21703
21704 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
21705 redefinition of FONT_WIDTH.
21706
21707 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
21708 (w32_cache_char_metrics): Use FONT_WIDTH.
21709
21710 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
21711
217122008-02-01 Jason Rumney <jasonr@gnu.org>
21713
21714 * w32font.c (w32font_open): Make lfHeight negative.
21715
21716 * w32fns.c (x_default_font_parameter): Use new style font name.
21717 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
21718
217192008-02-01 Jason Rumney <jasonr@gnu.org>
21720
21721 * w32font.c (QCsubranges): New symbol.
21722 (w32font_open, w32font_has_char): Get subranges from subproperty
21723 of extra.
21724 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
21725 (syms_of_w32font): Define :subranges symbol.
21726
21727 * font.c (font_put_extra): Expose externally.
21728
21729 * font.h (font_put_extra): Move declaration from font.c.
21730
21731 * font.c (Ffont_get): Use font driver to determine otf capability.
21732 (adjust_anchor): Check if driver defines anchor_point before using.
21733
21734 * w32font.c (w32font_open): Handle size, height and pixel_size better.
21735 (w32font_draw): Use options.
21736 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
21737 Fix detection of truetype fonts.
21738 (registry_to_w32_charset): Handle charsets other than iso8859-1
21739 expressed as lisp symbols.
21740 (w32_registry): Express charset as lisp symbol.
21741 (fill_in_logfont): Reverse pixel and point height logic.
21742 Don't set width here. Set quality to default.
21743
21744 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
21745 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
21746
21747 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
21748 Remove redundant loop and allocation.
21749
21750 * makefile.w32-in (font.o, w32font.o): New objects.
21751 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
21752 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
21753
21754 * xdisp.c (fill_composite_glyph_string): Make the first arg to
21755 STORE_XCHARB a valid l-value.
21756
21757 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
21758 calculations for non-Truetype fonts.
21759 (x_draw_glyph_string): Sync with xterm.c.
21760 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
21761 Remove redundant code.
21762 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
21763
21764 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
21765 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
21766
21767 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
21768 (x_to_w32_charset, w32_to_x_charset): Expose externally.
21769
21770 * w32font.c: New file for w32 font backend.
21771
217722008-02-01 Kenichi Handa <handa@m17n.org>
21773
21774 * term.c: Don't include "buffer.h" twice.
21775
217762008-02-01 Kenichi Handa <handa@m17n.org>
21777
21778 * character.c (Funibyte_string): New function.
21779 (syms_of_character): Defsubr it.
21780
217812008-02-01 Jason Rumney <jasonr@gnu.org>
21782
21783 * w32term.c [USE_FONT_BACKEND]:
21784 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
21785 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
21786 (x_draw_glyph_string, x_draw_glyph_string_foreground)
21787 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
21788 (x_free_frame_resources): Sync with xterm.c.
21789
217902008-02-01 Andreas Schwab <schwab@suse.de>
21791
21792 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
21793 char-table size.
21794
217952008-02-01 Kenichi Handa <handa@m17n.org>
21796
21797 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
21798
217992008-02-01 Kenichi Handa <handa@m17n.org>
21800
21801 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
21802 font_otf_gpos, add font_drive_otf.
21803
21804 * fontset.c (fontset_find_font): Pay attention to font size
21805 specified for a font.
21806 (reorder_font_vector): Check contents of font_def.
21807
21808 * font.c (struct otf_list): Delete it.
21809 (otf_list): Make it a lisp variable.
21810 (otf_open): Use lispy otf_list.
21811 (generate_otf_features): Rename from parse_gsub_gpos_spec.
21812 (check_otf_features): New function.
21813 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
21814 New functions.
21815 (font_drive_otf): New function merging font_otf_gsub and
21816 font_otf_gpos.
21817 (font_open_for_lface): New arg spec. Change argument order.
21818 (font_load_for_face): Adjust for the change of font_open_for_lface.
21819 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
21820 Ffont_otf_gpos.
21821 (syms_of_font): Staticpro otf_list. Delete defsubr of
21822 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
21823
21824 * xfaces.c (set_font_frame_param): Adjust for the change of
21825 font_open_for_lface.
21826
21827 * font.h (font_open_for_lface): Adjust prototype.
21828 (struct font_driver): Delete members otf_gsub and otf_gpos, add
21829 member otf_drive.
21830 (font_otf_gsub, font_otf_gpos): Delete externs.
21831 (font_drive_otf): Extern it.
21832
218332008-02-01 Kenichi Handa <handa@m17n.org>
21834
21835 * font.c (font_at): If the window W is not on a window system,
21836 return Qnil.
21837
21838 * coding.c (produce_chars, encode_coding): Don't call
21839 insert_from_gap if no characters to produce.
21840
218412008-02-01 Kenichi Handa <handa@m17n.org>
21842
21843 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
21844 Fclear_face_cache.
21845
21846 * xfaces.c (face_for_font): Check also face->font==font->font.font.
21847
218482008-02-01 Miles Bader <miles@gnu.org>
21849
21850 * emacs.c (main): Change default value of `enable_font_backend' to 1.
21851 Parse "--disable-font-backend" option.
21852 (standard_args): Add "--disable-font-backend" option.
21853
218542008-02-01 Kenichi Handa <handa@m17n.org>
21855
21856 * fontset.c (fontset_find_font): New function.
21857 (fontset_font): Use fontset_find_font.
21858 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
21859 Register the specified font for all Latin characters.
21860 (new_fontset_from_font): Register the specified font for all Latin
21861 characters.
21862 (dump_fontset): For a realized fontset, include the base fontset
21863 name in the returned vector.
21864
218652008-02-01 Kenichi Handa <handa@m17n.org>
21866
21867 * character.h (CHAR_STRING): Cast C to unsigned on calling
21868 char_string.
21869
21870 * character.c (char_string): Type of arg C changed to unsigned.
21871 Signal an error if C is an invalid character code.
21872
21873 * editfns.c (general_insert_function, Fchar_to_string):
21874 Use CHARACTERP, not INTEGERP.
21875
218762008-02-01 Kenichi Handa <handa@m17n.org>
21877
21878 * character.h (MIN_MULTIBYTE_LEADING_CODE)
21879 (MAX_MULTIBYTE_LEADING_CODE): New macros.
21880
21881 * regex.c (analyse_first): Fix for multibyte characters in "case
21882 charset:" and "case categoryspec:".
21883
218842008-02-01 Andreas Schwab <schwab@suse.de>
21885
21886 * Makefile.in (LIBES): Move standard libraries to the end.
21887
218882008-02-01 Kenichi Handa <handa@m17n.org>
21889
21890 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
21891 nonzero, don't shrink the buffer nextb.
21892
21893 * buffer.h (struct buffer_text): New member inhibit_shrinking.
21894
21895 * coding.c (coding_alloc_by_making_gap): New arg offset.
21896 (alloc_destination): Call coding_alloc_by_making_gap with the arg
21897 offset.
21898 (decode_coding_iso_2022): Update coding->safe_charsets.
21899 (decode_coding_gap): Temporarily set
21900 current_buffer->text->inhibit_shrinking to 1.
21901
219022008-02-01 Kenichi Handa <handa@m17n.org>
21903
bba3e508
SM
21904 * xterm.c (x_draw_composite_glyph_string_foreground):
21905 Fix indexing into elements of s->cmp and s->char2b.
aac0c6e3
MR
21906
219072008-02-01 Juanma Barranquero <lekktu@gmail.com>
21908
21909 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
21910
219112008-02-01 Kenichi Handa <handa@m17n.org>
21912
21913 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
21914 target_multibyte instead of multibyte.
21915 (re_match_2_internal): Call bcmp_translate with target_multibyte.
21916 (bcmp_translate): Change the argument name from multibyte to
21917 target_multibyte.
21918
219192008-02-01 Kenichi Handa <handa@m17n.org>
21920
21921 These changes are to compile a regexp into a pattern that can be
21922 used both for multibyte and unibyte targets.
21923
21924 * Makefile.in (search.o): Depend on charset.h.
21925
21926 * character.c (multibyte_char_to_unibyte_safe): New function.
21927
21928 * search.c: Include "charset.h".
21929 (compile_pattern_1): Delete argument multibyte. Don't set
21930 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
21931 (compile_pattern): Don't compare cp->buf.target_multibyte.
21932 Compare cp->buf.charset_unibyte.
21933 (compile_pattern): Set cp->buf.target_multibyte.
21934
21935 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
21936
21937 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
21938
21939 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
21940 multibyte. Change callers.
21941 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
21942 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
21943 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
21944 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
21945 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
21946 (regex_compile): Make the compiled pattern usable both for
21947 multibyte and unibyte targets.
21948 (analyse_first): Make the fastmap usable both for multibyte and
21949 unibyte targets.
21950 (TRANSLATE_VIA_MULTIBYTE): Delete.
21951 (re_match_2_internal): Pay attention to the case that the
21952 multibyteness of bufp and target may be different.
21953
219542008-02-01 Kenichi Handa <handa@m17n.org>
21955
21956 * xdisp.c (x_produce_glyphs): When a font is not found, make the
21957 empty box occupy at least one column width.
21958
219592008-02-01 Miles Bader <miles@gnu.org>
21960
21961 * Makefile.in: Remove redundant HAVE_XFT clause.
21962
219632008-02-01 Kenichi Handa <handa@m17n.org>
21964
21965 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
21966
219672008-02-01 Kenichi Handa <handa@m17n.org>
21968
21969 * fontset.c (Finternal_char_font): Fix for the case of POSITION
21970 being nil.
21971
219722008-02-01 Kenichi Handa <handa@m17n.org>
21973
21974 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
21975
219762008-02-01 Kenichi Handa <handa@m17n.org>
21977
21978 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
21979
219802008-02-01 Kenichi Handa <handa@m17n.org>
21981
21982 * search.c (simple_search): Fix previous change.
21983
219842008-02-01 Kenichi Handa <handa@m17n.org>
21985
21986 * xftfont.c (ftfont_font_format): Extern declaration.
21987
21988 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
21989
21990 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
21991 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
21992
21993 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
21994 (ftfont_font_format): Fix previous change.
21995
21996 * font.h (Ffont_xlfd_name): EXFUN it.
21997
21998 * font.c (font_parse_xlfd): Fix the array size of `f'.
21999 (register_font_driver): Use EQ to compare driver->type.
22000
22001 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
22002 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
22003 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
22004
220052008-02-01 Kenichi Handa <handa@m17n.org>
22006
22007 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
22008 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
22009
220102008-02-01 Kenichi Handa <handa@m17n.org>
22011
22012 * xfont.c (xfont_open): Set font->format.
22013
22014 * xftfont.c (xftfont_open): Set font->format.
22015
22016 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
22017 (ftfont_list): Include FC_FONTFORMAT in FcObject.
22018 (ftfont_open): Set font->format.
22019 (ftfont_font_format): New function.
22020
22021 * font.h (struct font): New member format.
22022
22023 * font.c (Qopentype): New variable.
22024 (syms_of_font): Defsym it.
22025 (Fquery_font): Change the format of the last element of the return
22026 value.
22027
220282008-02-01 Kenichi Handa <handa@m17n.org>
22029
22030 * xfns.c (xic_create_xfontset): Try the default fontset name as a
22031 last resort.
22032
220332008-02-01 Kenichi Handa <handa@m17n.org>
22034
22035 * coding.c (detect_coding_charset): Fix detection of multi-byte
22036 charset.
22037
220382008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
22039
22040 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
22041
220422008-02-01 Kenichi Handa <handa@m17n.org>
22043
22044 * xdisp.c (get_next_display_element): Set it->face_id for the
22045 first component of a composition.
22046 (x_produce_glyphs): Check if the font is changed or not for composition.
22047
220482008-02-01 Kenichi Handa <handa@m17n.org>
22049
22050 * fontset.c (Qlatin): New variable.
22051 (syms_of_fontset): Define it as a lisp symbol.
22052 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
22053
220542008-02-01 Kenichi Handa <handa@m17n.org>
22055
22056 * font.c (font_unparse_fcname): Pay attention to the case that
22057 some of font property is a null string.
22058
220592008-02-01 Kenichi Handa <handa@m17n.org>
22060
22061 * term.c: Include "composite.h".
22062 (encode_terminal_code): Output all components of composition.
22063 Check the size of encode_terminal_src.
22064 (produce_glyphs): For composition, call produce_composite_glyph.
22065 (append_composite_glyph, produce_composite_glyph): New functions.
22066
22067 * xdisp.c (x_produce_glyphs): In handling composition, if a font
22068 is not found, get font_info from the current ascii face.
22069
220702008-02-01 Kenichi Handa <handa@m17n.org>
22071
22072 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
22073 buffer-file-name to Qnil before calling insert_from_buffer.
22074
22075 * font.c (font_unparse_fcname): Pay attention to the case that
22076 foundry is a null string.
22077
220782008-02-01 Kenichi Handa <handa@m17n.org>
22079
22080 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
22081
22082 * font.c (Qunicode_sip): New variable.
22083 (syms_of_font): Declare it as a Lisp symbol.
22084
22085 * font.h (Qunicode_sip): Extern it.
22086
220872008-02-01 Kenichi Handa <handa@m17n.org>
22088
22089 * composite.c (get_composition_id): Pay attention to TAB component.
22090
22091 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
22092 TAB. Adjust for the change of s->char2b which always points to
22093 the first element of allocated memory.
22094
22095 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
22096
22097 * xdisp.c (handle_composition_prop): Set it->c to the first
22098 non-TAB component.
22099 (fill_composite_glyph_string): Change argument.
22100 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
22101 (x_produce_glyphs): Fix handling of left/right padding.
22102
221032008-02-01 Kenichi Handa <handa@m17n.org>
22104
22105 * coding.c (detect_coding_system): Fix for handling off
22106 inhibit_iso_escape_detection. Fix for the case that no coding
22107 system is defined for a specific coding category.
22108
221092008-02-01 Kenichi Handa <handa@m17n.org>
22110
22111 * font.c (font_matching_entity): Delete unused local var.
22112
22113 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
22114 opening a font.
22115
22116 * fileio.c (Finsert_file_contents): On recovering a file, assume
22117 Unix-like eol.
22118 (choose_write_coding_system): On auto-saving a file, force
22119 Unix-like eol.
22120
22121 * coding.c (setup_coding_system): Fix setting of
22122 coding->common_flags based on eol_type.
22123 (coding_inherit_eol_type): If PARENT is not nil, be sure to
22124 inherit from it.
22125
221262008-02-01 Kenichi Handa <handa@m17n.org>
22127
22128 * alloc.c (NSTATICS): Increas to 0x600.
22129
221302008-02-01 Kenichi Handa <handa@m17n.org>
22131
22132 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
22133 (ftfont_list): Don't check :name property.
22134 (ftfont_match): New function.
22135 (ftfont_pattern_entity): If the pattern doesn't contain
22136 FC_SPACING, don't assume FC_MONO.
22137
22138 * font.h (struct font_driver): New member `match'.
22139 (font_update_drivers): Adjust prototype.
22140
22141 * font.c (font_parse_fcname, font_parse_name): Don't change :name
22142 property of FONT.
bba3e508
SM
22143 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring):
22144 Define them unconditionally.
aac0c6e3
MR
22145 (font_matching_entity): New function.
22146 (font_open_by_name): Try font_matching_entity if exact match is
22147 not found.
22148 (font_update_drivers): Delete the arg FONT. Return a list of
22149 actually used backends. Don't free faces, font caches here.
22150 Don't store data in frame parameters. Don't call x_set_font.
22151 (Ffont_spec): Store :name property as is.
22152 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
22153 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
22154 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
22155 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
22156 Call font->driver->otf_gsub instead of font_otf_gsub.
22157
22158 * frame.c (x_set_font_backend): Do more works that were done in
22159 font_update_drivers before.
22160
22161 * xfont.c (xfont_match): New function.
22162 (xfont_driver): Set xfont_driver.match to xfont_match.
22163 (xfont_draw): Set font in GC if necessary.
22164
22165 * ftxfont.c (ftxfont_match): New function.
22166 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
22167
22168 * xftfont.c (xftfont_match): New function.
22169 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
22170
221712008-02-01 Kenichi Handa <handa@m17n.org>
22172
22173 * font.h (struct font): New member scalable.
22174 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
22175 (font_otf_gsub): Adjust prototype.
22176
22177 * font.c (font_otf_capability): Fix handling of the default langsys.
22178 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
22179 Check the contents of SPEC.
22180 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
22181 (check_gstring): New function.
22182 (REPLACEMENT_CHARACTER): New macro.
22183 (font_otf_gsub): New arg alternate_subst. Be sure to set all
22184 glyph codes of GSTRING.
22185 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
22186 (font_prepare_composition): Set cmp->glyph_len.
22187 (font_open_entity): Set font->scalable.
22188 (Ffont_get): Handle :otf property.
bba3e508
SM
22189 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates):
22190 New functions.
aac0c6e3
MR
22191 (Fquery_font): Use font->font.full_name.
22192 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
22193 Sfont_otf_alternates.
22194
22195 * ftfont.c (ftfont_open): Set font->font.full_name and
22196 font->font.name properly. Fix calculation of font->font.height
22197 and font->min_width.
22198
22199 * ftxfont.c (ftxfont_create_gcs): New function.
22200 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
22201 (ftxfont_draw_backgrond): Fix filling region.
22202 (ftxfont_default_fid): New function.
22203 (ftxfont_open): Set xfont->fid to the return value of
22204 ftxfont_default_fid.
22205 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
22206 (ftxfont_done_face): Free only GCs that are created by
22207 ftxfont_create_gcs.
22208 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
22209
22210 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
22211 Clip to src->width, etc (not src->clip_XXX).
22212
22213 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
22214 FontBackend frame parameter.
22215
222162008-02-01 Kenichi Handa <handa@m17n.org>
22217
22218 * font.h (struct font_driver_list): New member `on'.
22219 (Fclear_font_cache): EXFUN it.
22220 (font_update_drivers): Extern it.
22221
22222 * font.c (font_unparse_fcname): Fix typo (swidth->width).
22223 (font_list_entities): Check driver_list->on.
40b1a3a9 22224 (register_font_driver): Initialize `on' member to 0.
aac0c6e3
MR
22225 (font_update_drivers): New function.
22226 (Fclear_font_cache): Check driver_list->on.
22227
22228 * frame.h (Qfont_backend): Extern it.
22229 (x_set_font_backend): Extern it.
22230
22231 * frame.c (Qfont_backend): New variable.
22232 (frame_parms): New element for font-backend.
22233 (x_set_font_backend): New function.
22234
22235 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
22236 FontBackend frame parameter.
22237 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
22238 x_set_font_backend.
22239
22240 * xfont.c (xfont_list): Don't try listing by :name property if the
22241 name is not for XLFD.
22242
222432008-02-01 Kenichi Handa <handa@m17n.org>
22244
22245 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
22246 (LGLYPH_SET_TO): New macros.
22247 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
22248 element of G is vector or not.
22249 (font_at): Extern it.
22250
22251 * font.c: Include window.h.
22252 (font_lispy_object): New function.
22253 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
22254 end of valid glyph.
22255 (font_close_object): Fix getting (struct font *).
22256 (font_at): New function.
22257 (Ffont_get): If FONT is a font-object, get entity from it.
22258 (Ffont_make_gstring): Initialize elements of glyphs with nil.
bba3e508
SM
22259 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX.
22260 Fix range check.
aac0c6e3
MR
22261 (Ffont_at): New function.
22262 (syms_of_font): Defsubr Sfont_at.
22263
22264 * xdisp.c (it_props): Move the entry for Qauto_composed to just
22265 before the entry for Qcomposition.
22266 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
22267 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
22268 the font in gstring.
22269 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
22270 LGLYPH_FORM (g) to detect the end of valid glyph.
22271 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
22272 we are composing with gstring.
22273
22274 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
22275 Check if adjustment is vector or not.
22276
22277 * Makefile.in (font.o): Make it depends on window.h.
22278
222792008-02-01 Kenichi Handa <handa@m17n.org>
22280
22281 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
22282 adjustment is vector or not.
22283
222842008-02-01 Miles Bader <miles@gnu.org>
22285
22286 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
22287
222882008-02-01 Kenichi Handa <handa@m17n.org>
22289
22290 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
bba3e508 22291 (LGLYPH_SET_WIDTH): Adjust for the change of LGLYPH format.
aac0c6e3
MR
22292 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
22293
22294 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
22295 (DEVICE_DELTA): Fix typo.
22296 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
22297 LGLYPH format.
22298
22299 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
22300 the change of LGLYPH format.
22301
223022008-02-01 Kenichi Handa <handa@m17n.org>
22303
22304 * ftfont.c (ftfont_list): Fix typo.
22305 (ftfont_build_basic_charsets): Don't include letters with diacritics.
22306
223072008-02-01 Jan Djärv <jan.h.d@swipnet.se>
22308
22309 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
22310
22311 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
22312 xftface_info is non-NULL.
22313
223142008-02-01 Jan Djärv <jan.h.d@swipnet.se>
22315
22316 * ftfont.c (ftfont_list): Move misplaced #endif.
22317
223182008-02-01 Kenichi Handa <handa@m17n.org>
22319
22320 * ftfont.c (ftfont_list): Pay attention to the case that
22321 FC_CAPABILITY is not defined.
22322
223232008-02-01 Kenichi Handa <handa@m17n.org>
22324
22325 * xftfont.c (xftfont_open): Set charset related members to -1.
22326
22327 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
22328 QCname.
22329 (ftfont_open): Set charset related members to -1.
22330
22331 * fontset.c (Votf_script_alist): New variable.
22332 (syms_of_fontset): Initialize it.
22333 (fontset_font): Delete unused variable.
22334
22335 * fontset.h (Votf_script_alist): Extern it.
22336
22337 * font.c (font_find_for_lface): Optimize code.
22338
22339 * font.h (font_close_object, font_merge_old_spec): Extern them.
22340
223412008-02-01 Kenichi Handa <handa@m17n.org>
22342
22343 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
22344 (syms_of_font): Initialize them.
22345 (font_pixel_size): Allow float value in dpi.
22346 (font_prop_validate_type): Delete.
22347 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
22348 Change caller.
22349 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
22350 (font_prop_validate_extra): Delete.
22351 (font_prop_validate_spacing): New function.
22352 (font_property_table): Add elements for all known properties.
bba3e508
SM
22353 (get_font_prop_index): Rename from check_font_prop_name.
22354 New argument FROM. Change caller.
aac0c6e3
MR
22355 (font_prop_validate): Validate all known properties.
22356 (font_put_extra): Delete argument force. Change caller.
22357 (font_expand_wildcards): Make it static. Fix the way of shrinking
22358 the possible range.
22359 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
22360 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
22361 Change caller.
22362 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
22363 (font_parse_fcname): Delete argument merge. Fix parsing of point
22364 size. Don't validate properties values here. Change caller.
22365 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
22366 (font_open_by_name): Delete unused variable.
22367 (Ffont_spec): Likewise. Validate property values.
22368 (Ffont_match_p): New function.
22369
22370 * font.h (QCscalable): Extern it.
22371 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
22372
22373 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
22374
22375 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
22376 (xfont_list_pattern): New function.
22377 (xfont_list): Use xfont_list_pattern.
22378
223792008-02-01 Kenichi Handa <handa@m17n.org>
22380
22381 * font.h (Flist_fonts): EXFUN it.
22382
223832008-02-01 Jason Rumney <jasonr@gnu.org>
22384
22385 * w32term.c (w32_initialize): Add back smoothing_type and
22386 smoothing_enabled definitions.
22387
223882008-02-01 Kenichi Handa <handa@m17n.org>
22389
22390 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
22391 s->face->font on determining underline position.
22392
223932008-02-01 Kenichi Handa <handa@m17n.org>
22394
22395 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
22396 (font_has_char): Accept font-object too.
22397 (font_find_for_lface): Try at first with a size specified in face.
22398
223992008-02-01 Kenichi Handa <handa@m17n.org>
22400
22401 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
22402 font_open_by_name.
22403
224042008-02-01 Kenichi Handa <handa@m17n.org>
22405
22406 * font.h (QCspacing, QCdpi): Extern them.
22407 (enum font_spacing): New enum.
22408 (FONT_PIXEL_SIZE_QUANTUM): New macro.
22409
22410 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
22411 (QCspacing, QCdpi): New variables.
22412 (syms_of_font): Initialize them.
22413 (font_pixel_size): New function.
22414 (font_put_extra): New function.
22415 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
22416 in FONT_EXTRA.
22417 (font_parse_fcname): Handle enumerated values (e.g. bold).
22418 Fix handling font size. Add QCname property that contains only
22419 unknown properties.
22420 (font_score): Change argument. Change caller. Pay attention to
22421 FONT_PIXEL_SIZE_QUANTUM.
22422 (font_sort_entites, font_list_entities, font_find_for_lface)
22423 (font_open_for_lface, font_open_by_name): Fix handling of font size.
22424 (Ffont_spec): Add QCname property that contains only unknown properties.
22425
bba3e508
SM
22426 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.
22427 Don't include weight in listing pattern, instead check weight of each
aac0c6e3
MR
22428 listed font. Don't include scalable in pattern. Pay attention to
22429 FONT_PIXEL_SIZE_QUANTUM.
22430
224312008-02-01 Kenichi Handa <handa@m17n.org>
22432
22433 * font.c (font_parse_fcname): Fix parsing of point-size.
22434 (font_unparse_fcname): Produce symbolic names for style properties.
22435 (font_list_entities): Handle float size correctly.
22436 (font_open_by_name): Prefer `normal' property values if the name
22437 doesn't specify them.
22438
22439 * fontset.c (Finternal_char_font): Use font_get_name, not
22440 Ffont_xlfd_name.
22441
22442 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
22443 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
22444 pattern. Don't force scalable.
22445
22446 * xftfont.c (xftfont_open): For generating a name, start from
22447 96-byte buffer.
22448
224492008-02-01 Jan Djärv <jan.h.d@swipnet.se>
22450
22451 * frame.h (x_new_fontset2): Fix prototype.
22452
224532008-02-01 Kenichi Handa <handa@m17n.org>
22454
22455 * font.h (struct font_driver): Delete member parse_name.
22456 (font_match_p, font_get_spec, font_parse_fcname)
22457 (font_unparse_fcname): Extern them.
22458 (font_get_name): Adjust prototype.
22459
22460 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
22461 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
bba3e508
SM
22462 (font_expand_wildcards): Fix handling ENCODING field.
22463 Avoid unnecessary checks for weight, slant, and swidth.
aac0c6e3
MR
22464 (font_parse_fcname): New function.
22465 (font_unparse_fcname): New function.
22466 (font_parse_name): New function.
22467 (font_match_p): New function.
22468 (font_get_name): Change return value to Lisp string.
22469 (font_get_spec): New function.
22470 (Qunspecified, Qignore_defface): Don't extern them.
22471 (font_find_for_lface): Assume that LFACE is fully specified.
22472 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
22473 object, use it for FACE.
22474 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
22475 driver->parse_name.
22476 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
22477
22478 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
22479 prototype.
22480
22481 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
22482 argument F. Don't call Fnew_fontset. Instead, directly call
22483 make_fontset.
22484
22485 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
22486
22487 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
22488 of x_new_fontset2.
22489
22490 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
22491 (Qsans__serif): New variables.
22492 (ftfont_generic_family_list): New variable.
22493 (syms_of_ftfont): Initialize the above variables.
22494 (ftfont_pattern_entity): Delete argument NAME.
22495 (ftfont_list_generic_family): New function.
22496 (ftfont_parse_name): Delete this function.
22497 (ftfont_list): Try generic family only when FcFontList found no font.
22498 (ftfont_list_family): Fix args to FcObjectSetBuild.
22499
22500 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
22501 object in attrs[LFACE_FONT_INDEX].
22502 (set_lface_from_font_name): Cancel all changes for font-backend.
22503 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
22504 function.
22505 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
22506 font object in QCfont attribute.
22507 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
22508 (realize_default_face) [USE_FONT_BACKEND]: Call
22509 set_lface_from_font_and_fontset.
22510
22511 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
22512 "fixed", and signal error here if no suitable font was found.
22513
22514 * xfont.c (xfont_parse_name): Delete this function.
22515
22516 * xftfont.c (xftfont_open): Change coding style of error
22517 handling. Generate fontconfig's fontname pattern.
22518
22519 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
22520 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
22521
22522 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
22523 Both args FONTSET and FONT_OBJECT must be existing ones.
22524
225252008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22526
22527 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
22528
225292008-02-01 Kenichi Handa <handa@m17n.org>
22530
22531 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
22532
22533 * font.h (struct font): Fix typo.
22534
22535 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
22536 XLFD_XXX_INDEX.
22537 (enum xlfd_field_mask): New enum.
ef1b0ba7 22538 (intern_font_field): Change argument. Change caller. If digits
aac0c6e3
MR
22539 are followed by non-digits, return a symbol.
22540 (font_expand_wildcards): New function.
22541 (font_parse_xlfd): Fix wildcard handling.
22542 (Ffont_spec): If :name is specified, reflect the info in the other
22543 properties.
22544
22545 * ftfont.c (ftfont_pattern_entity): Fix typo.
22546 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
22547 locale.
22548
225492008-02-01 Kenichi Handa <handa@m17n.org>
22550
22551 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
22552
22553 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
22554 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
22555 registry doesn't specify encoding part.
22556 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
22557 (font_open_by_name): At first try parsing the name.
22558 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
22559 as Lisp symbols.
22560
22561 * fontset.c (reorder_font_vector): Pay attention to the case that
22562 the 3rd element of font_def is nil.
22563 (fontset_font): For the default fontset, append one more fontset
22564 elements for a script-based font specification. Don't add script
22565 attribute on finding a font.
22566 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
22567 font name.
22568 (fontset_ascii_font): If a font can't be opened, return nil.
22569
22570 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
22571 (ftfont_pattern_entity): New function.
22572 (ftfont_get_cache): Assume that freetype_font_cache is already
22573 initialized.
22574 (ftfont_list): Handle the case that a file is specified in font
22575 name. Use ftfont_pattern_entity to generate entities.
22576 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
22577 (syms_of_ftfont): Initialize freetype_font_cache.
22578
22579 * xftfont.c (xftfont_open): Make the font name fontconfig's
22580 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
22581 (xftfont_close): Free font->font.name if not NULL.
22582
22583 * xfont.c (xfont_list): If script is specified for a font, return
22584 null_vector.
22585 (xfont_list_family): Declare argument type.
22586
22587 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
22588 name, set LFACE_FONT (lface) to nil.
22589
22590 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
22591 return Qnil.
22592
225932008-02-01 Kenichi Handa <handa@m17n.org>
22594
22595 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
22596 (standard_args): Add "-enable-font-backend".
22597
225982008-02-01 Kenichi Handa <handa@m17n.org>
22599
22600 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
22601 (struct xftdraw_list, xftdraw_list): Delete them.
22602 (register_xftdraw, check_xftdraw): Delete them.
22603 (xftfont_prepare_face): Don't call register_xftdraw.
22604 (xftfont_done_face): Don't call check_xftdraw.
22605 (xftfont_draw): Get background color only when with_background is
22606 nonzero.
22607
22608 * xfont.c (xfont_encode_char): Fix calculation of char2b.
22609
226102008-02-01 Kenichi Handa <handa@m17n.org>
22611
22612 These changes are for the new font handling codes.
22613
22614 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
22615 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
22616 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
22617 (FONTSRC, FONTOBJ): New variables.
22618 (obj): Add $(FONTOBJ).
22619 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
22620 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
22621 @LIBOTF_LIBS@.
22622 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
22623 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
22624
22625 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
22626
22627 * character.h (Vscript_representative_chars): Extern it.
22628
22629 * character.c (Vscript_representative_chars): New variable.
22630 (syms_of_character): Declare it as a Lisp variable.
22631
22632 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
22633 enable_font_backend is nonzero, accept the composition method
22634 COMPOSITION_WITH_GLYPH_STRING.
22635
22636 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
22637 enumeration COMPOSITION_WITH_GLYPH_STRING.
22638
22639 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
22640 members clip_x, clip_y, clip_width, and clip_height.
22641 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
22642
22643 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
22644 --enable-font-backend. Call syms_of_font.
22645
22646 * fns.c (assoc_no_quit): New function.
22647
22648 * fontset.h (FONT_INFO_FROM_FACE): New macro.
22649 (face_for_font, new_fontset_from_font)
22650 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
22651
22652 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
22653 (fontset_font, fontset_ascii, face_for_char)
22654 (make_fontset_for_ascii_face, Ffont_info)
22655 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
22656 is nonzero, use font-backend mechanism.
22657 (find_font_encoding): Make it non-static.
22658 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
22659 New functions.
22660
22661 * frame.h (struct frame): New members resx and resy.
22662 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
22663 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
22664
22665 * frame.c [USE_FONT_BACKEND]: Include "font.h".
22666 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
22667
22668 * lisp.h (assoc_no_quit): Extern it.
22669
22670 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
22671 Through out the file, use FONT_INFO_FROM_FACE instead of
22672 FONT_INFO_FROM_ID, use get_per_char_metric instead of
22673 rif->per_char_metric.
22674 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
22675 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
22676 (get_glyph_face_and_encoding, fill_composite_glyph_string)
22677 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
22678 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
22679 nonzero, use font-backend mechanism.
22680 (get_per_char_metric): New function.
22681
22682 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
22683 (set_lface_from_font_name)
22684 (set_font_frame_param, free_realized_face)
22685 (prepare_face_for_display, clear_face_gcs)
22686 (Finternal_set_font_selection_order, realize_x_face)
22687 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
22688 font-backend mechanism.
22689 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
22690 (load_face_font) [USE_FONT_BACKEND]: Abort.
22691 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
22692 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
22693
22694 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
22695 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
22696 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
bba3e508
SM
22697 nonzero, register all available font drivers.
22698 Call x_default_font_parameter for deciding a font.
aac0c6e3
MR
22699 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
22700
22701 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
22702 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
22703 (x_set_glyph_string_clipping_exactly)
22704 (x_compute_glyph_string_overhangs)
22705 (x_draw_glyph_string_foreground)
22706 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
22707 (x_free_frame_resources) [USE_FONT_BACKEND]: If
22708 enable_font_backend is nonzero, use font-backend mechanism.
22709 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
22710
227112008-02-01 Kenichi Handa <handa@m17n.org>
22712
22713 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
22714 system_eol_type.
22715 (syms_of_coding): Initialize system_eol_type.
22716
22717 * process.c (Fset_process_coding_system): Inherit system's eol
22718 format if necessary.
22719
227202008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22721
22722 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
22723
227242008-02-01 Kenichi Handa <handa@m17n.org>
22725
22726 * coding.c (decode_eol): Pay attention to buffer relocation in
22727 del_range_2.
22728 (decode_coding): Call decode_eol before restoring undo_list.
22729
227302008-02-01 Kenichi Handa <handa@m17n.org>
22731
22732 * charset.c (Fdefine_charset_internal): Fix setting of
22733 emacs_mule_bytes.
22734
227352008-02-01 Kenichi Handa <handa@m17n.org>
22736
22737 * keyboard.c (read_char): Check if C is a character or not before
22738 looking up Vkeyboard_translate_table.
22739
227402008-02-01 Kenichi Handa <handa@m17n.org>
22741
bba3e508
SM
22742 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION):
22743 Fix condition to terminate the loop.
aac0c6e3
MR
22744
227452008-02-01 Kenichi Handa <handa@m17n.org>
22746
22747 * coding.c (produce_composition): Compare charbuf[i] instead of
22748 args[i] against 0.
22749 (Fterminal_coding_system): Use EQ to compare Lisp objects.
22750
227512008-02-01 Kenichi Handa <handa@m17n.org>
22752
22753 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
22754 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
22755 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
22756 detect_coding.
22757 (emacs_mule_char): Handle old style (Emacs 20) component character
22758 of a composition.
22759 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
22760 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
22761 composition rule.
22762 (decode_coding_emacs_mule): Handle invalid bytes correctly.
22763
227642008-02-01 Kenichi Handa <handa@m17n.org>
22765
22766 * coding.c (encode_coding_ccl): Allocate destination dynamically
22767 when necessary.
22768
227692008-02-01 Kenichi Handa <handa@m17n.org>
22770
22771 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
22772 the loop. When quitted, show a proper error message.
22773
227742008-02-01 Kenichi Handa <handa@m17n.org>
22775
bba3e508
SM
22776 * xterm.c (x_set_glyph_string_clipping_exactly):
22777 Set src->clip_head and src->clip_tail temporarily instead of src->hl.
aac0c6e3
MR
22778
22779 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
22780 character sequence.
22781 (Fccl_execute_on_string): Use ASET, not XSET.
22782
227832008-02-01 Kenichi Handa <handa@m17n.org>
22784
22785 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
22786
227872008-02-01 Kenichi Handa <handa@m17n.org>
22788
22789 * coding.c (decode_coding): Fix the condition of terminating the
22790 decoding loop.
22791
227922008-02-01 Kenichi Handa <handa@m17n.org>
22793
22794 * data.c (Faset): On setting a character bigger than 255 in a
22795 unibyte string, signal an error instead of make the string multibyte.
22796
227972008-02-01 Kenichi Handa <handa@m17n.org>
22798
22799 * charset.c (map_charset_chars): Fix for ascii-compatible charset
22800 made by a mapping table.
22801
228022008-02-01 Kenichi Handa <handa@m17n.org>
22803
22804 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
22805 not.
22806 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
22807 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
22808
bba3e508
SM
22809 * xterm.c (x_draw_composite_glyph_string_foreground):
22810 Check s->face is NULL or not.
aac0c6e3
MR
22811
228122008-02-01 Kenichi Handa <handa@m17n.org>
22813
22814 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
22815 (x_draw_glyph_string): Fix drawing of right_overhang and
22816 left_overhang around/on cursor.
22817
22818 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
22819
228202008-02-01 Kenichi Handa <handa@m17n.org>
22821
22822 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
22823
228242008-02-01 Kenichi Handa <handa@m17n.org>
22825
22826 * coding.c (Fdefine_coding_system_internal)
22827 (Fdefine_coding_system_alias): Avoid a duplicated element in
22828 Vcoding_system_alist.
22829
228302008-02-01 Kenichi Handa <handa@m17n.org>
22831
22832 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
22833
22834 * coding.c (Qcoding_system_define_form): New variable.
22835 (syms_of_coding): Intern and staticpro it.
22836 (Fcoding_system_p): Check Qcoding_system_define_form.
22837 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
22838
22839 * coding.h (CODING_SYSTEM_P): If ID is not available, call
22840 Fcoding_system_p.
22841 (CHECK_CODING_SYSTEM): If ID is not available, call
22842 Fcheck_coding_system.
22843 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
22844 Try also Fcheck_coding_system.
22845
228462008-02-01 Kenichi Handa <handa@m17n.org>
22847
22848 * coding.c (code_conversion_restore): GCPRO arg.
22849
228502008-02-01 Kenichi Handa <handa@m17n.org>
22851
22852 * character.c (lisp_string_width): Check multibyteness of STRING.
22853
228542008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22855
22856 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
22857 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
22858 (decode_mac_font_name): Use decode_coding_c_string instead of
22859 decode_coding.
bba3e508
SM
22860 (x_load_font): Initialize fontp->fontset to -1.
22861 Set fontp->encoding_type.
aac0c6e3
MR
22862
228632008-02-01 Kenichi Handa <handa@m17n.org>
22864
22865 * search.c (search_buffer): Give up BM search on case-fold-search
22866 if one of a target character has a case-equivalence of different
3b59c351 22867 byte length even if that target character is an ASCII.
aac0c6e3
MR
22868 (simple_search): Fix calculation of byte length of matched text.
22869 (boyer_moore): Fix handling of case-equivalent multibyte characters.
22870
228712008-02-01 Kenichi Handa <handa@m17n.org>
22872
22873 * coding.c (decode_coding): Fix handling of invalid bytes.
22874
228752008-02-01 Kenichi Handa <handa@m17n.org>
22876
22877 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
22878 Unicode characters.
22879
228802008-02-01 Kenichi Handa <handa@m17n.org>
22881
22882 * coding.c (encode_coding_object): If a pre-write-conversion
22883 function makes a new buffer, kill it.
22884
228852008-02-01 Kenichi Handa <handa@m17n.org>
22886
22887 * coding.c (QCascii_compatible_p): New variable.
22888 (syms_of_coding): Initialize it.
22889 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
22890 calling string_char.
22891 (record_conversion_result): Add `default:' case.
22892 (coding_charset_list): Delete unused variable `coding_type'.
22893 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
22894 property in the plist of the coding system.
22895 (Fcoding_system_put): Check QCascii_compatible_p.
22896
228972008-02-01 Miles Bader <miles@gnu.org>
22898
22899 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
22900 removed calculation of frame `f', as it's now used.
22901
229022008-02-01 Kenichi Handa <handa@m17n.org>
22903
22904 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
22905 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
22906 (UNIDATA): New variable.
22907 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
bba3e508
SM
22908 (bootstrap-emacs${EXEEXT}): Depends on charprop.el.
22909 Run $(RUN_TEMACS) unconditionally.
aac0c6e3
MR
22910
229112008-02-01 Kenichi Handa <handa@m17n.org>
22912
22913 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
22914 (admindir): New variable.
22915 ($(lispsource)international/charprop.el): New target.
22916
229172008-02-01 Miles Bader <miles@gnu.org>
22918
22919 * character.c (chars-in-region): Remove obsolete function.
22920 (syms_of_character): Remove its initialization.
22921
229222008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
22923
22924 * w32select.c (validate_coding_system)
22925 (setup_windows_coding_system): New functions.
bba3e508
SM
22926 (convert_to_handle_as_coded, Fw32_get_clipboard_data):
22927 Use setup_windows_coding_system.
22928 (setup_config, Fw32_get_clipboard_data):
22929 Use validate_coding_system.
aac0c6e3
MR
22930 (Fx_selection_exists): Move call to setup_config to a place
22931 where signals are allowed.
22932
22933 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
22934 (Fcheck_coding_system): Add declarations.
22935
229362008-02-01 Kenichi Handa <handa@m17n.org>
22937
22938 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
22939
229402008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22941
22942 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
22943 string as the second argument for x_new_fontset.
22944
229452008-02-01 Kenichi Handa <handa@m17n.org>
22946
22947 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
22948 (encode_coding_object): Use safe_call instead of call2.
22949
229502008-02-01 Kenichi Handa <handa@m17n.org>
22951
22952 * fontset.c (Fset_fontset_font): Check family element of a given vector.
22953
22954 * Makefile.in (lisp): Include charprop.el.
22955
229562008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22957
22958 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
22959 Not sure if it's unnecessary.
22960
229612008-02-01 Steven Tamm <steventamm@mac.com>
22962
22963 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
22964 some possibly unnecessary fontset checking code that crashed
22965 when creating a new frame.
22966
229672008-02-01 Kenichi Handa <handa@m17n.org>
22968
22969 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
22970 lookup_face.
22971
22972 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
22973
22974 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
22975
229762008-02-01 Kenichi Handa <handa@m17n.org>
22977
22978 * coding.c: Cancel the change done in HEAD on 2008-02-01.
22979 (coding_charset_list): New function.
22980
22981 * coding.h (coding_charset_list): Extern it.
22982
229832008-02-01 Kenichi Handa <handa@m17n.org>
22984
22985 * fontset.c (Fset_fontset_font): Call find_font_encoding with
22986 concatenation of family and registry.
22987
229882008-02-01 Kenichi Handa <handa@m17n.org>
22989
22990 * character.h (BYTE8_STRING): Fix typo.
22991
22992 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
22993 string to multibyte (sync to HEAD).
22994
22995 * casefiddle.c (casify_region): Handle changes in byte-length
22996 using replace_range_2 (sync to HEAD).
22997
229982008-02-01 Andreas Schwab <schwab@suse.de>
22999
23000 * chartab.c (map_char_table): GCPRO table and arg.
23001
230022008-02-01 Kenichi Handa <handa@m17n.org>
23003
23004 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
23005 already at limit.
23006
230072008-02-01 Kenichi Handa <handa@m17n.org>
23008
23009 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
23010 instead of fast_c_string_match_ignore_case.
bba3e508
SM
23011 (find_font_encoding): Change argument to Lisp_Object.
23012 Use fast_string_match_ignore_case instead of
aac0c6e3
MR
23013 fast_c_string_match_ignore_case. Change caller.
23014
230152008-02-01 Kenichi Handa <handa@m17n.org>
23016
23017 * xdisp.c (get_next_display_element): In unibyte case, decide to
23018 display in octal form by checking a character by
23019 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
23020
23021 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
23022
23023 * character.c (unibyte_has_multibyte_table): New variable.
23024
23025 * character.h (unibyte_has_multibyte_table): Extern it.
23026 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
23027
230282008-02-01 Kenichi Handa <handa@m17n.org>
23029
23030 * coding.c (encode_coding_iso_2022): Fix handling of charset
23031 annotation.
23032
230332008-02-01 Kenichi Handa <handa@m17n.org>
23034
23035 * coding.c (setup_coding_system): If coding_system is nil, use
23036 Qundecided.
23037 (Fterminal_coding_system): Return nil if terminal coding system is
23038 `undecided'.
bba3e508
SM
23039 (syms_of_coding): Define coding-system `undecided' here.
23040 Setup terminal_coding as `undecided'.
aac0c6e3
MR
23041
230422008-02-01 Kenichi Handa <handa@m17n.org>
23043
bba3e508
SM
23044 * xdisp.c (message_dolog, set_message_1):
23045 Call unibyte_char_to_multibyte with arg type int.
aac0c6e3
MR
23046
23047 * lread.c (read1): Fix reading of a char-table.
23048
23049 * print.c (print_object): Include sub char-table in circularities
23050 detection.
23051
230522008-02-01 Kenichi Handa <handa@m17n.org>
23053
23054 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
23055 Append the found sequences in car of ARGS instead of prepending.
23056
230572008-02-01 Kenichi Handa <handa@m17n.org>
23058
23059 * fileio.c (report_file_error): Make a unibyte string from
23060 strerror (errorno).
23061 (Fsubstitute_in_file_name): Fix the arg to
23062 unibyte_char_to_multibyte. It is evaluated twice.
23063
230642008-02-01 Kenichi Handa <handa@m17n.org>
23065
23066 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
23067
230682008-02-01 Kenichi Handa <handa@m17n.org>
23069
23070 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
23071 BOM is not found.
23072 (detect_coding, detect_coding_system): Optimization for ISO-2022
23073 when no 8-bit data is found.
23074
230752008-02-01 Jason Rumney <jasonr@gnu.org>
23076
23077 * w32fns.c (x_to_w32_font): Update to use new coding struct.
23078
230792008-02-01 Kenichi Handa <handa@m17n.org>
23080
23081 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
23082 CHARS.
23083
230842008-02-01 Steven Tamm <steventamm@mac.com>
23085
23086 * macterm.c (mac_encode_char): Add charset argument and update
23087 to use encoding_type.
23088 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
23089 switch to pure fontset.
23090 (decode_mac_font_name): Temporarily remove decoding.
23091 (x_font_name_to_mac_font_name): Temporarily remove encoding.
23092 (x_load_font): Temporarily remove encoding.
23093
230942008-02-01 Kenichi Handa <handa@m17n.org>
23095
23096 * xfaces.c (Fface_font): If frame is not on a window system,
23097 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
23098 refer to face->font.
23099 (split_font_name_into_vector, build_font_name_from_vector)
23100 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
23101 when HAVE_WINDOW_SYSTEM is defined.
23102
231032008-02-01 Kenichi Handa <handa@m17n.org>
23104
23105 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
23106 (x_produce_glyphs): Fix setting of members of cmp in case
23107 cmp->glyph_len is zero.
23108
23109 * fontset.c (Fset_fontset_font): Fix docstring.
23110 (Ffontset_info): Make it backward compatible. New arg ALL.
23111
231122008-02-01 Kim F. Storm <storm@cua.dk>
23113
23114 * process.c (read_process_output): Grow decoding_buf when needed;
23115 this could cause a crash in allocate_string and compact_small_strings.
23116
231172008-02-01 Kenichi Handa <handa@m17n.org>
23118
23119 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
23120
231212008-02-01 Kenichi Handa <handa@m17n.org>
23122
23123 * coding.c (setup_coding_system): Set coding->common_flags
23124 correctly for raw-text.
23125 (consume_chars): On encoding unibyte text by raw-text, don't check
23126 multibyte form.
23127 (encode_coding): On encoding by raw-text, never use translation tables.
23128
23129 * fileio.c (e_write): Short cut for the case of no encoding.
23130
231312008-02-01 Kenichi Handa <handa@m17n.org>
23132
23133 * coding.c (detect_coding, detect_coding_system): Delete unused
23134 variables.
23135
231362008-02-01 Kenichi Handa <handa@m17n.org>
23137
23138 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
23139 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
23140
231412008-02-01 Kenichi Handa <handa@m17n.org>
23142
bba3e508
SM
23143 * coding.c (Ffind_coding_systems_region_internal):
23144 Include raw-text and no-conversion in the result.
aac0c6e3
MR
23145
231462008-02-01 Kenichi Handa <handa@m17n.org>
23147
23148 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
23149 (load_font_get_repertory): Delete unnecessary check of ENCODING of
23150 FONT_DEF.
23151 (font_def_arg, add_arg, from_arg, to_arg): New args.
23152 (set_fontset_font): Change argument.
23153 (Fset_fontset_font): Fix for the case that TARGET is a script
23154 name and charset name.
23155 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
23156
231572008-02-01 Kenichi Handa <handa@m17n.org>
23158
23159 * fontset.c (fontset_font): Rename from fontset_face. Change return
23160 value.
23161 (face_suitable_for_char_p, face_for_char): Adjust for the change
23162 of fontset_font.
23163 (make_fontset_for_ascii_face): Fix setting of the fontset element
23164 for ASCII.
23165 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
23166 to get a font name.
23167 (Ffontset_info): Adjust for the change of fontset_font.
23168
23169 * coding.c (emacs_mule_char): Check invalid code more rigidly.
23170
23171 * character.h (LEADING_CODE_LATIN_1_MIN)
23172 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
23173
231742008-02-01 Kenichi Handa <handa@m17n.org>
23175
23176 * editfns.c (check_translation): New function.
23177 (Ftranslate_region_internal): Handle M:N mapping.
23178
231792008-02-01 Kenichi Handa <handa@m17n.org>
23180
23181 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
23182
231832008-02-01 Kenichi Handa <handa@m17n.org>
23184
23185 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
23186 goto invalid_code.
23187 (decode_coding_iso_2022): Fix handling of invalid designation.
23188
23189 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
23190 after calling code_conversion_save.
23191
231922008-02-01 Kenichi Handa <handa@m17n.org>
23193
23194 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
23195
23196 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
23197
23198 * fontset.c: Include "intervals.h".
23199 (fontset_face): Fix comparing of Lisp_Objects.
bba3e508
SM
23200 (free_face_fontset, new_fontset_from_font_name):
23201 Fix Lisp_Object/int mixup.
aac0c6e3
MR
23202
23203 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
23204
23205 * coding.c: Add many prototypes for static functions.
23206 (get_translation_table): Allow max_lookup to be NULL.
23207 (decode_coding, Ffind_coding_systems_region_internal)
bba3e508
SM
23208 (Funencodable_char_position, Fcheck_coding_systems_region):
23209 Call get_translation_table with max_lookup NULL.
aac0c6e3
MR
23210
232112008-02-01 Kenichi Handa <handa@m17n.org>
23212
23213 * coding.c (get_translation_table): Declare it as Lisp_Object.
23214 (LOOKUP_TRANSLATION_TABLE): New macro.
23215 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
23216 instead of CHAR_TABLE_REF.
23217
232182008-02-01 Kenichi Handa <handa@m17n.org>
23219
23220 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
23221 annotation data format.
23222 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
23223 Change arguments FROM and TO to single argument NCHARS. Change caller.
23224 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
23225 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
23226 (decode_coding_ccl, decode_coding_charset): Pay attention to
23227 coding->charbuf_used.
23228 (get_translation): New function.
23229 (produce_chars): New arguments translation_table and last_block.
23230 Translate characters here. Return number of carryover chars.
23231 Change caller.
23232 (produce_composition): New argument pos. Change caller.
23233 Adjust for the change of annotation data format.
23234 (produce_charset, produce_annotation): Likewise.
23235 (decode_coding, encode_coding): Don't call translate_chars.
23236 (consume_chars): New arg translation_table. Change caller.
23237 (translate_chars): Delete.
23238 (syms_of_coding): Make translation-table's number of extra slots 2.
23239
232402008-02-01 Kenichi Handa <handa@m17n.org>
23241
23242 * search.c (simple_search): Fix setting this_pos_byte in backward
23243 search.
23244
23245 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
23246 byte sequence.
23247 (detect_coding_ccl): Fix setting of the variable valids.
23248
232492008-02-01 Kenichi Handa <handa@m17n.org>
23250
23251 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
23252
23253 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
23254
23255 * editfns.c (Ftranslate_region_internal): Rename from
23256 Ftranslate_region. Accept a char-table in TABLE.
23257 (syms_of_editfns): Defsubr Stranslate_region_internal.
23258
23259 * xfaces.c (set_lface_from_font_name): If a font is specified for
23260 a frame, generate a fontset from the font.
23261 (build_scalable_font_name): If the scalable font is requested for
23262 a specific size, don't change that size.
23263 (try_font_list): Try a scalable font also in the case that a
23264 pattern string is specified.
23265
232662008-02-01 Kenichi Handa <handa@m17n.org>
23267
23268 * xfaces.c (Fface_font): New optional arg CHARACTER.
23269
232702008-02-01 Kenichi Handa <handa@m17n.org>
23271
23272 * charset.h (CHARSET_OFFSET): New macro.
23273
232742008-02-01 Kenichi Handa <handa@m17n.org>
23275
23276 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
23277
23278 * fontset.c (fontset_face): Handle the case that repertory is a
23279 char-table.
23280 (find_font_encoding): Return nil for unknown encoding.
23281 (Fset_fontset_font): Ignore a font of unknown encoding.
23282
232832008-02-01 Kenichi Handa <handa@m17n.org>
23284
23285 * keymap.c (describe_vector): Handle default value of a char table.
23286
23287 * fontset.c (fontset_face): Handle fallback fonts correctly.
23288 (Ffontset_info): Return infomation about fallback fonts.
23289
232902008-02-01 Kenichi Handa <handa@m17n.org>
23291
23292 * fontset.c (FONTSET_DEFAULT): New macro.
23293 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
23294 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
23295 the case that it is nil.
23296 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
23297 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
23298
23299 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
23300 subset or superset.
23301
233022008-02-01 Kenichi Handa <handa@m17n.org>
23303
23304 * emacs.c (main): Call init_charset after syms_of_XXX.
23305
23306 * charset.c (Vcharset_map_directory): Delete.
23307 (Vcharset_map_path): New variable.
23308 (load_charset_map_from_file): Use Vcharset_map_path instead.
23309 (init_charset): Initialize Vcharset_map_path.
23310 (syms_of_charset): Delete declaration of "charset-map-directory",
23311 add declaration of "charset-map-path".
23312
233132008-02-01 Kenichi Handa <handa@m17n.org>
23314
23315 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
23316 ASCII only string.
23317
23318 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
23319
23320 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
23321 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
23322
233232008-02-01 Kenichi Handa <handa@m17n.org>
23324
23325 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
23326
23327 * coding.c (QCmnemonic, QCdefalut_char)
23328 (QCdecode_translation_table, QCencode_translation_table)
23329 (QCpost_read_conversion, QCpre_write_conversion): New variables.
23330 (get_translation_table): Return a list of translation tables if
23331 necessary.
23332 (decode_coding): Call get_translation_table with ENCODEP 0.
23333 (char_encodable_p): If translation_table is non-nil, always call
23334 translate_char.
23335 (Fdefine_coding_system_internal): Accept list of translation
23336 tables as :encode-translation-table and :decode-translation-table.
23337 (Fcoding_system_put): New function.
bba3e508
SM
23338 (syms_of_coding): Declare new symbols.
23339 Defsubr Scoding_system_put.
aac0c6e3
MR
23340 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
23341 typically JISX0212.
23342
23343 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
23344 when the charset is superset type.
23345
23346 * character.c (translate_char): Accept list of translation tables.
23347
233482008-02-01 Kenichi Handa <handa@m17n.org>
23349
23350 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
23351 (CODING_ATTR_TRANS_TBL): New macro.
23352
23353 * coding.c (get_translation_table): New function.
23354 (translate_chars): Fix the bug of skipping annotation data.
23355 (decode_coding, encode_coding): Utilize get_translation_table.
23356 (char_encodable_p, Funencodable_char_position): Translate char if
23357 necessary.
23358 (Ffind_coding_systems_region_internal)
23359 (Fcheck_coding_systems_region): Setup translation table for encode
23360 in a coding system attribute vector in advance.
23361 (Fdefine_coding_system_internal): Allow a symbol as translation
23362 table. For shift-jis type coding system, allow 4th charset.
23363
233642008-02-01 Kenichi Handa <handa@m17n.org>
23365
23366 * coding.c (decode_coding_sjis): Check the first byte rigidly.
23367
23368 * xdisp.c (get_next_display_element): Pass -1 as POS to
23369 FACE_FOR_CHAR if displaying a C-string.
23370
233712008-02-01 Kenichi Handa <handa@m17n.org>
23372
23373 * composite.c (get_composition_id): Handle xoff and yoff in a
23374 composition rule.
23375
23376 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
23377 (struct composition): New member lbearing and rbearing.
23378
23379 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
23380 (x_get_glyph_overhangs): Handle a composition glyph.
23381 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
23382
23383 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
23384 composition glyph.
23385
233862008-02-01 Kenichi Handa <handa@m17n.org>
23387
23388 * print.c: Include charset.h.
23389 (Vprint_charset_text_property): New variable.
23390 (Qdefault): Extern it.
23391 (PRINT_STRING_NON_CHARSET_FOUND)
23392 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
23393 (print_check_string_result): New variable.
23394 (print_check_string_charset_prop): New function.
23395 (print_prune_charset_plist): New variable.
23396 (print_prune_string_charset): New function.
23397 (print_object): Call print_prune_string_charset if
23398 Vprint_charset_text_property is not t.
23399 (print_interval): Print nothing if interval->plist is nil.
23400 (syms_of_print): Declare Vprint_charset_text_property as a lisp
23401 variable. Init and staticpro print_prune_charset_plist.
23402
234032008-02-01 Kenichi Handa <handa@m17n.org>
23404
23405 * fontset.c (new_fontset_from_font_name): Use the specified font
23406 for all characters in the new fontset.
23407
23408 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
23409 OBJECT args.
23410
23411 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
23412 OBJECT args for composition too.
23413
23414 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
23415 OBJECT args.
23416
234172008-02-01 Kenichi Handa <handa@m17n.org>
23418
23419 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
23420
23421 * fontset.c (reorder_font_vector): Adjust for the change of
23422 FONT_DEF format.
23423 (fontset_face): New arg id. Change caller.
23424 (face_for_char): New args pos and object.
23425 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
23426 (fs_query_fontset): Check NAME by Fassoc too.
23427 (Fset_fontset_font): Allow non-XLFD font name.
23428 (Ffontset_info): Adjust for the change of FONT_DEF format.
23429
23430 * fontset.h (face_for_char): Adjust prototype.
23431
23432 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
23433 (append_space, extend_face_to_end_of_line)
23434 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
23435 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
23436
23437 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
23438 POS and OBJECT args.
23439
23440 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
23441 POS and OBJECT args.
23442
234432008-02-01 Jason Rumney <jasonr@gnu.org>
23444
23445 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
23446 of GlobalAlloc'ed memory.
23447
234482008-02-01 Kenichi Handa <handa@m17n.org>
23449
23450 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
23451
23452 * charset.h (charset_table_used): Delete extern.
23453
23454 * charset.c (charset_table_used): Make it static.
23455 (map_charset_chars): Fix args to c_function with.
23456
23457 * chartab.c (map_sub_char_table_for_charset): Fix args to
23458 c_function with.
23459
bba3e508
SM
23460 * coding.h (enum coding_result_code):
23461 Delete CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
aac0c6e3
MR
23462
23463 * coding.c (Qinsufficient_source, Qinconsistent_eol)
23464 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
23465 (Vlast_code_conversion_error): New variables.
23466 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
23467 (ONE_MORE_BYTE): Record error if any instead of signaling an
23468 error. If non-ASCII multibyte char is found, return the negative
23469 value of the code. All callers changed to check it.
23470 (ONE_MORE_BYTE_NO_CHECK): Likewise.
23471 (record_conversion_result): New function. Change all codes setting
23472 coding->result to call this function.
23473 (detect_coding_utf_8, decode_coding_utf_8)
23474 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
23475 Don't use the local variable incomplete.
23476 (emacs_mule_char): Change the second arg to `const'.
23477 (decode_coding): Fix of flushing out unprocessed data.
23478 (make_conversion_work_buffer): Fix making of a work buffer.
23479 (decode_coding_object): Return coding->dst_object.
23480
23481 * fontset.c (set_fontset_font): Fix args.
23482
23483 * lisp.h (CHARACTERBITS): Define as 22.
23484
23485 * process.c (send_process): Be sure to set coding->src_multibyte.
23486
23487 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
23488
234892008-02-01 Kenichi Handa <handa@m17n.org>
23490
23491 * xdisp.c (handle_auto_composed_prop): Give limit to
23492 Fnext_single_char_property_change.
23493
234942008-02-01 Kenichi Handa <handa@m17n.org>
23495
23496 * composite.c (syms_of_composite): Don't make the composition hash
23497 table weak.
23498
23499 * fontset.c (Fset_fontset_font): Fix docstring.
23500
23501 * lisp.h (detect_coding_system): Adjust prototype.
23502
23503 * fileio.c (kill_workbuf_unwind): Delete this function.
23504 (Finsert_file_contents): Adjust the call of detect_coding_system.
23505 Get conversion_buffer by code_conversion_save. Use the macro
23506 CODING_MAY_REQUIRE_DECODING. After decoding, update
23507 coding_system.
23508
23509 * coding.h (make_conversion_work_buffer): Delete extern.
23510 (code_conversion_save): Extern it.
23511
23512 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
23513 (CODING_GET_INFO): Delete argument eol_type. Change callers.
23514 (decode_coding_utf_8): Don't do eol converion.
23515 (detect_coding_utf_16): Check coding->src_chars, not
23516 coding->src_bytes. Add heuristics for those that have no signature.
23517 (decode_coding_emacs_mule, decode_coding_iso_2022)
23518 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
23519 Don't do eol converion.
23520 (adjust_coding_eol_type): Return a new coding system.
23521 (detect_coding): Don't detect eol. Fix for utf-16 detection.
23522 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
23523 each change.
23524 (decode_coding): Pay attention to undo_list. Do eol conversion for
23525 all types of coding-systems (if necessary).
23526 (Vcode_conversion_work_buf_list): Delete it.
23527 (Vcode_conversion_reused_workbuf): Rename from
23528 Vcode_conversion_reused_work_buf.
23529 (Vcode_conversion_workbuf_name): New variable.
23530 (reused_workbuf_in_use): New variable.
23531 (make_conversion_work_buffer): Delete the arg DEPTH.
23532 (code_conversion_restore): Change argument to cons.
23533 (code_conversion_save): Delete the argument BUFFER. Change callers.
23534 (detect_coding_system): New argument src_chars. Change callers.
23535 Fix for utf-16 detection.
23536 (init_coding_once): Don't use ISO_carriage_return.
23537 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
23538 reused_workbuf_in_use.
23539
235402008-02-01 Kenichi Handa <handa@m17n.org>
23541
23542 * keymap.c (store_in_keymap): Pay attention to the case that idx
23543 is a cons specifying a character range.
23544
235452008-02-01 Kenichi Handa <handa@m17n.org>
23546
23547 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
23548 HANDLED_RECOMPUTE_PROPS.
23549
23550 * coding.c (Fdefine_coding_system_internal): Fix checking of
23551 ascii compatibility.
23552
235532008-02-01 Kenichi Handa <handa@m17n.org>
23554
23555 * charset.c (find_charsets_in_text): Delete unused locale variable.
23556 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
23557
23558 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
23559 Resync charset_list to Vemacs_mule_charset_list.
23560
23561 * keymap.c (store_in_keymap): Pay attention to the case that idx
23562 is a cons specifying a character range.
23563
235642008-02-01 Kenichi Handa <handa@m17n.org>
23565
23566 * composite.c (update_compositions): Bind inhibit-read-only, etc
23567 to t before calling remove-list-of-text-properties.
23568
23569 * print.c (print_object): Always print ASCII chars as is.
23570
235712008-02-01 Kenichi Handa <handa@m17n.org>
23572
23573 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
23574
23575 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
23576 is a char table.
23577
235782008-02-01 Kenichi Handa <handa@m17n.org>
23579
23580 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
23581
235822008-02-01 Kenichi Handa <handa@m17n.org>
23583
23584 * xfaces.c (set_lface_from_font_name): Fix for the case that
23585 FONTNAME is not fontset name.
23586
235872008-02-01 Kenichi Handa <handa@m17n.org>
23588
23589 * fns.c (base64_encode_1): Fix previous change.
23590
235912008-02-01 Kenichi Handa <handa@m17n.org>
23592
23593 * fontset.c (set_fontset_font): New function.
23594 (Fset_fontset_font): If a font is specified for a charset, use
23595 map_charset_chars to store the font spec in a fontset.
23596
235972008-02-01 Kenichi Handa <handa@m17n.org>
23598
23599 * fontset.c (fontset_face): Create a fallback fontset on demand.
23600 (make_fontset): Don't create a fallback fontset here.
23601 (free_face_fontset): Free a fallback fontset (if any) too.
23602 (n_auto_fontsets): Delete this variable.
23603 (auto_fontset_alist): New variable.
23604 (new_fontset_from_font_name): Check auto_fontset_alist.
23605 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
23606 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
23607 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
23608 Defsubr Sfontset_list_all.
23609
236102008-02-01 Kenichi Handa <handa@m17n.org>
23611
23612 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
23613
236142008-02-01 Kenichi Handa <handa@m17n.org>
23615
23616 * fontset.c (Fnew_fontset): Check NAME more rigidly.
23617
236182008-02-01 Kenichi Handa <handa@m17n.org>
23619
23620 * editfns.c (Fgoto_char): Fix docstring.
23621
236222008-02-01 Kenichi Handa <handa@m17n.org>
23623
23624 * insdel.c (insert_from_gap): Adjust intervals correctly.
23625
236262008-02-01 Jason Rumney <jasonr@gnu.org>
23627
23628 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
23629 (pfnGetFontUnicodeRanges): New dynamically loaded function.
23630 (w32_initialize): Try to load it.
23631 (x_get_font_repertory): Use it if available.
23632 (w32_encode_char): Add shortcut for unicode output.
23633
23634 * w32fns.c (w32_load_system_font): Default charset to -1.
23635 (x_to_w32_charset): Match all fonts for unicode.
23636 (w32_to_x_charset): New parameter matching. Don't return partial
23637 or wildcard charsets.
23638 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
23639 (w32_codepage_for_font): Return CP_UNICODE for unicode.
23640 (w32_to_x_font): Match charset to real charset.
23641 (enum_font_cb2): Always list unicode versions.
23642
23643 * makefile.w32-in (temacs): Increase EMHEAP.
23644
236452008-02-01 Jason Rumney <jasonr@gnu.org>
23646
23647 * w32term.c (w32_encode_char): New charset parameter.
23648 font_info.encoding becomes encoding_type.
23649 (x_get_font_repertory): New function. Warning: stub only!
23650 (x_new_font): Return quickly if font already set.
23651 (x_new_fontset): fontsetname parameter is Lisp_Object.
23652 Use new fs_query_fontset. Try new_fontset_from_font_name.
23653 Use fontset_name for return value.
23654
23655 * w32term.h: Declare x_get_font_repertory.
23656
23657 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
23658 place of find_charset_in_text. Use encode_coding_object in place
23659 of encode_coding.
23660 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
23661 decode_coding.
23662
23663 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
23664 of x_new_fontset.
23665 (w32_load_system_font): Initialize charset as unicode.
23666 font_info.encoding becomes encoding_type.
23667 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
23668 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
23669 (syms_of_w32fns): Set get_font_repertory_func.
23670
23671 * w32console.c: Include character.h. Use terminal_encode_buffer
23672 from term.c.
bba3e508
SM
23673 (write_glyphs): Use new version of encode_terminal_code.
23674 Use encode_coding_object in place of encode_coding.
aac0c6e3
MR
23675
23676 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
23677 encoding becomes encoding_type.
23678
23679 * term.c (terminal_encode_buffer): Make externally visible.
23680
23681 * makefile.w32-in: Add character.h dependancies.
23682 (character.o, chartab.o): New targets.
23683
236842008-02-01 Kenichi Handa <handa@m17n.org>
23685
23686 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
23687 CODING_ID_EOL_TYPE.
23688
236892008-02-01 Andreas Schwab <schwab@suse.de>
23690
23691 * coding.c (produce_chars): Revert last change.
23692
236932008-02-01 Kenichi Handa <handa@m17n.org>
23694
23695 * charset.h (charset_unicode): Extern it.
23696
23697 * charset.c (string_xstring_p): Check by (C >= 0x100).
bba3e508
SM
23698 (find_charsets_in_text): Change format of the arc CHARSETS.
23699 New arg MULTIBYTE.
aac0c6e3
MR
23700 (Ffind_charset_region, Ffind_charset_string): Adjust for the
23701 change of find_charsets_in_text.
23702 (Fsplit_char): Fix doc. Never return unknown.
23703
23704 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
23705
bba3e508
SM
23706 * coding.c (Fdefine_coding_system_alias):
23707 Update Vcoding_system_list.
aac0c6e3
MR
23708
23709 * fontset.c (load_font_get_repertory): Pay attention to the case
23710 that ENCODING of a font is specified by a char-table.
23711
23712 * xterm.c (x_get_font_repertory): Handle the case that the
23713 encoding of font is other than Unicode.
23714
237152008-02-01 Kenichi Handa <handa@m17n.org>
23716
bba3e508
SM
23717 * term.c (encode_terminal_code): Don't handle glyph-table.
23718 Check if a character is encodable by the terminal coding system.
23719 If not, produces proper number of `?'s. Update
aac0c6e3
MR
23720 terminal_encode_buffer and terminal_encode_buf_size if necessary.
23721 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
23722
237232008-02-01 Kenichi Handa <handa@m17n.org>
23724
bba3e508
SM
23725 * term.c (terminal_encode_buffer, terminal_encode_buf_size):
23726 New variables.
aac0c6e3
MR
23727 (encode_terminal_code): Change argument. Encode multiple
23728 characters at once. Store the result of encoding in
23729 terminal_encode_buffer.
23730 (write_glyphs, insert_glyphs): Adjust for the change of
23731 encode_terminal_code.
23732 (term_init): Initialize terminal_encode_buffer and
23733 terminal_encode_buf_size.
23734
23735 * coding.c (consume_chars): If coding->src_object is nil, don't
23736 check annotation.
23737
237382008-02-01 Kenichi Handa <handa@m17n.org>
23739
23740 * character.c (char_string): Use ASCII_CHAR_P instead of
23741 SINGLE_BYTE_CHAR_P.
23742
237432008-02-01 Kenichi Handa <handa@m17n.org>
23744
23745 * xdisp.c (handle_auto_composed_prop): Check if the last
23746 characters of auto-composed region is newly composed with the
23747 following characters.
23748 (handle_composition_prop): Fix checking of point being inside
23749 composition.
23750
237512008-02-01 Kenichi Handa <handa@m17n.org>
23752
23753 * fns.c (concat): Don't change multibyteness of the result by
23754 concatenating an 8-bit character.
23755
23756 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
23757 multibyteness of the result when newelt is an 8-bit character.
23758
237592008-02-01 Dave Love <fx@gnu.org>
23760
23761 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
23762 EMACS_INT.
23763
23764 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
23765
23766 * xfaces.c (face_numeric_value): Declare dim size_t.
23767 (Finternal_lisp_face_equal_p): Remove unused f.
23768
23769 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
23770 (MATRIX_ROW): Remove unused vars.
23771 (draw_glyphs, x_insert_glyphs, fast_find_position)
23772 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
23773 byte/char counts.
23774
23775 * regex.c (regex_compile): Remove unused var.
23776
23777 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
23778
23779 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
23780 (Faccessible_keymaps, where_is_internal): Remove unused vars.
23781
23782 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
23783
23784 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
23785
23786 * fileio.c (Fwrite_region): Remove unused var.
23787
23788 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
23789 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
23790
23791 * composite.c (Fremove_list_of_text_properties): Declare.
23792
23793 * coding.c (inhibit_pre_post_conversion): Remove (unused).
23794 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
23795 (coding_inherit_eol_type): Remove unused attrs.
23796 (detect_coding): Cast arg of detect_eol.
23797
23798 * charset.c (syms_of_charset): Remove unused var p.
23799 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
23800 byte/char counts.
23801
23802 * casetab.c (set_case_table): Remove unused var.
23803
bba3e508
SM
23804 * window.c (Fdisplay_buffer, Fframe_selected_window):
23805 Remove unused vars.
aac0c6e3
MR
23806
238072008-02-01 Dave Love <fx@gnu.org>
23808
23809 * xterm.c (x_bitmap_mask): Declare.
23810
238112008-02-01 Dave Love <fx@gnu.org>
23812
23813 * xterm.c (x_term_init): Fix type error.
23814
23815 * lisp.h: Add Funibyte_char_to_multibyte.
23816
23817 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
23818 (Fset_coding_system_priority): Doc fix.
23819
23820 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
23821
23822 * indent.c (check_composition): Make start and end EMACS_INT.
23823
23824 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
23825
23826 * xdisp.c (handle_composition_prop, check_point_in_composition):
23827 Make buffer positions EMACS_INT.
23828
23829 * composite.c (find_composition, run_composition_function)
23830 (update_compositions, Ffind_composition_internal): Make buffer
23831 positions EMACS_INT.
23832
bba3e508
SM
23833 * composite.h (find_composition, update_compositions):
23834 Make position args EMACS_INT.
aac0c6e3
MR
23835
23836 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
23837
23838 * intervals.c (get_property_and_range):
23839 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
23840
23841 * unexalpha.c: Don't include varargs.h.
23842
238432008-02-01 Dave Love <fx@gnu.org>
23844
23845 * coding.h (ENCODE_UTF_8): New.
23846
23847 * Makefile.in (gtkutil.o): Depend on coding.h.
23848
23849 * coding.c (Fset_coding_system_priority): Doc fix.
23850
238512008-02-01 Kenichi Handa <handa@m17n.org>
23852
23853 * fileio.c (Finsert_file_contents): Call setup_coding_system in
23854 the case of auto saving.
23855
238562008-02-01 Andreas Schwab <schwab@suse.de>
23857
bba3e508
SM
23858 * chartab.c (map_char_table, map_char_table_for_charset):
23859 Protect `range' from GC.
aac0c6e3
MR
23860
238612008-02-01 Kenichi Handa <handa@m17n.org>
23862
23863 * coding.c (decode_coding_sjis): Check bytes more rigidly.
23864
238652008-02-01 Kenichi Handa <handa@m17n.org>
23866
23867 * fileio.c (choose_write_coding_system): Return a decided coding system.
23868 (Fwrite_region): Set Vlast_coding_system_used to the return value
23869 of choose_write_coding_system.
23870
238712008-02-01 Kenichi Handa <handa@m17n.org>
23872
23873 * charset.c (Fset_charset_priority): Pay attention to duplicated
23874 arguments.
23875
23876 * coding.c (QCcategory): New variable.
23877 (syms_of_coding): Defsym it. Set all elements of
23878 Vcoding_category_table and their symbol values.
23879 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
23880 coding-category-XXX, and coding-category-list.
23881 (Fdefine_coding_system_internal): Add category in the plist.
23882
238832008-02-01 Kenichi Handa <handa@m17n.org>
23884
23885 * callproc.c (Fcall_process): Handle carryover correctly.
23886
23887 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
23888 (raw_text_coding_system): Check NILP (coding_system).
23889 (coding_inherit_eol_type): Check NILP (coding_system) and
23890 NILP (parent).
23891 (consume_chars): Fix for the case of raw-text.
23892
23893 * process.c (read_process_output): Handle carryover correctly.
23894
238952008-02-01 Dave Love <fx@gnu.org>
23896
23897 * regex.c (re_search_2): Fix last change.
23898
238992008-02-01 Kenichi Handa <handa@m17n.org>
23900
23901 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
23902 target_multibyte. Even in a unibyte case, return a converted
23903 multibyte char.
23904 (GET_CHAR_AFTER): New macro.
23905 (PATFETCH): Translate via multibyte char.
23906 (HANDLE_UNIBYTE_RANGE): Delete this macro.
23907 (SETUP_MULTIBYTE_RANGE): New macro.
23908 (regex_compile): Setup compiled code so that its multibyteness
23909 matches that of a target. Fix the handling of "[X-YZ]" using
23910 SETUP_MULTIBYTE_RANGE.
23911 (analyse_first) <charset>: For filling fastmap for all multibyte
23912 characters, don't check by BASE_LEADING_CODE_P.
23913 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
23914 the same as RE_MULTIBYTE_P (bufp) now.
23915 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
23916 (TARGET_CHAR_AND_LENGTH): Delete this macro.
23917 (TRANSLATE_VIA_MULTIBYTE): New macro.
23918 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
23919 It is the same as RE_MULTIBYTE_P (bufp) now.
23920 <exactn>: Translate via multibyte.
bba3e508
SM
23921 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH.
23922 Don't translate it.
aac0c6e3
MR
23923 <charset, charset_not>: Fetch a character by
23924 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
23925 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
23926 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
23927 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
23928 by GET_CHAR_AFTER.
23929 (bcmp_translate): Likewise.
23930
23931 * search.c (compile_pattern): Check the member target_multibyte,
23932 not the member multibyte of buf.
23933
23934 * lread.c (read1): While reading a string, set force_singlebyte
23935 and force_multibyte correctly.
23936
23937 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
23938 up of unibyte_to_multibyte_table.
23939
239402008-02-01 Kenichi Handa <handa@m17n.org>
23941
23942 * coding.c (setup_coding_system): If coding has
23943 post-read-conversion or pre-write-conversion, set
23944 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
23945 respectively.
23946 (decode_coding_gap): Run post-read-conversion if any.
23947
23948 * fileio.c (Finsert_file_contents): Even if we read into a
23949 unibyte buffer, check if we must decode the result or not.
23950
239512008-02-01 Kenichi Handa <handa@m17n.org>
23952
23953 * coding.c (make_conversion_work_buffer): Change the work buffer
23954 name to the same one as that of Emacs 21.
23955
239562008-02-01 Kenichi Handa <handa@m17n.org>
23957
23958 * coding.h (make_conversion_work_buffer): Adjust prototype.
23959 (code_conversion_restore): Don't extern it.
23960
23961 * coding.c (detected_mask): Delete unused variable.
23962 (decode_coding_iso_2022): Pay attention to the byte sequence of
23963 CTEXT extended segment, and retain those bytes as is.
23964 (decode_coding_ccl): Delete unused variable `valids'.
23965 (setup_coding_system): Delete unused variable `category'.
23966 (consume_chars): Delete unused variable `category'. Make it work
23967 for non-multibyte case.
23968 (make_conversion_work_buffer): Change argument.
23969 (saved_coding): Delete unused variable.
23970 (code_conversion_restore): Don't check saved_coding->destination.
23971 (code_conversion_save): New function.
23972 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
23973 instead of record_unwind_protect.
23974 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
23975 (detect_coding_system): Delete unused variable `mask'.
23976 (Fdefine_coding_system_internal): Delete unused variable id.
23977
23978 * fileio.c (kill_workbuf_unwind): New function.
23979 (Finsert_file_contents): On replacing, call
23980 make_conversion_work_buffer with correct args, and call
23981 record_unwind_protect with the first arg kill_workbuf_unwind.
23982
23983 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
23984
239852008-02-01 Kenichi Handa <handa@m17n.org>
23986
23987 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
23988 (fontset_add): Fix for the case that TO is less than TO1.
23989 (Ffontset_info): Don't use fallback fontset on checking the
23990 default fontset.
23991 (dump_fontset): New function for debugging.
23992
23993 * coding.c (Fdefine_coding_system_internal): Fix for the case that
23994 coding_type is Qcharset.
23995
239962008-02-01 Kenichi Handa <handa@m17n.org>
23997
23998 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
23999 (map_char_table): Don't inherit the value from the parent on
24000 initializing VAL. Adjust for the above change.
24001
240022008-02-01 Kenichi Handa <handa@m17n.org>
24003
24004 * coding.c (Qsignature, Qendian): Delete these variables.
24005 (syms_of_coding): Don't initialize them.
24006 (CATEGORY_MASK_UTF_16_AUTO): New macro.
24007 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
24008 detect_info->found.
24009 (decode_coding_utf_16): Don't detect BOM here.
24010 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
24011 is NOT utf_16_without_bom.
24012 (setup_coding_system): For a coding system of type utf-16, check
24013 if the attribute :endian is Qbig or not (not nil or not), and set
24014 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
24015 (detect_coding): If coding type is utf-16 and BOM detection is
24016 required, detect it.
24017 (Fdefine_coding_system_internal): For a coding system of type
24018 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
24019
240202008-02-01 Kenichi Handa <handa@m17n.org>
24021
24022 * coding.c (coding_set_source): Fix for the case that the current
24023 buffer is different from coding->src_object.
24024 (decode_coding_object): Don't use the conversion work buffer if
24025 DST_OBJECT is a buffer.
24026
240272008-02-01 Dave Love <fx@gnu.org>
24028
24029 * lread.c (read_emacs_mule_char) [len==2]: Index
24030 emacs_mule_charset correctly.
24031
240322008-02-01 Dave Love <fx@gnu.org>
24033
24034 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
24035 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
24036 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
24037 treated specially.)
24038 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
24039 (detected_mask): Remove Big5 bits.
24040
240412008-02-01 Kenichi Handa <handa@m17n.org>
24042
24043 The following changes are to make the font rescaling facility
24044 compatible with Emacs 21.
24045
24046 * xfaces.c (Vface_font_rescale_alist): Rename from
24047 Vface_resizing_fonts.
24048 (struct font_name): Rename member resizing_ratio to rescale_ratio.
24049 (font_rescale_ratio): Rename from font_resizing_ratio.
24050 (split_font_name): Set font->rescale_ratio.
24051 (better_font_p): Pay attention to font->rescale_ratio.
24052 (build_scalable_font_name): Likewise. Change RESX, and RESY
24053 fields.
24054 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
24055
240562008-02-01 Kenichi Handa <handa@m17n.org>
24057
24058 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
24059 (Qutf_16_le): Remove these variables.
24060 (syms_of_coding): Don't DEFSYM them.
24061 (decode_coding_utf_16): Fix handling of BOM.
24062 (encode_coding_utf_16): Fix handling of BOM.
24063
240642008-02-01 Kenichi Handa <handa@m17n.org>
24065
24066 * fileio.c (Finsert_file_contents): On replacing, before decoding
24067 the file into the work buffer, set point of the work buffer to the end.
24068
240692008-02-01 Dave Love <fx@gnu.org>
24070
24071 * coding.c (Fcheck_coding_systems_region): Fix type errors.
24072
240732008-02-01 Dave Love <fx@gnu.org>
24074
24075 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
24076 and fix C types.
24077
240782008-02-01 Kenichi Handa <handa@m17n.org>
24079
24080 * xdisp.c (SKIP_GLYPHS): New macro.
24081 (set_cursor_from_row): Pay attention to string display properties.
24082
24083 * category.c (copy_category_entry): Fix for the case that RANGE
24084 is an integer.
24085
24086 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
24087
24088 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
24089
240902008-02-01 Kenichi Handa <handa@m17n.org>
24091
24092 * charset.c (Fcharset_id_internal): New function.
24093 (syms_of_charset): Defsubr it.
24094
24095 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
24096 with the last arg charset_list acquired from coding.
24097 (Fdefine_coding_system_internal): For ccl-based coding system, fix
24098 the attribute coding_attr_ccl_valids.
24099
24100 * coding.h (enum define_coding_ccl_arg_index): Set the first
24101 member coding_arg_ccl_decoder to coding_arg_max.
24102
24103 * ccl.h (ccl_driver): Adjust prototype.
24104
24105 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
24106 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
60612c8f 24107 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
aac0c6e3
MR
24108 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
24109 last arg Qnil.
24110
241112008-02-01 Kenichi Handa <handa@m17n.org>
24112
24113 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
24114 call encode_char.
24115
24116 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
24117
241182008-02-01 Dave Love <fx@gnu.org>
24119
24120 * composite.c (syms_of_composite): Make composition_hash_table weak.
24121
241222008-02-01 Kenichi Handa <handa@m17n.org>
24123
24124 * dispextern.h (check_face_attributes, generate_ascii_font_name)
24125 (font_name_registry): Don't extern them.
24126 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
24127
24128 * fontset.h (Qfontset): Don't extern it.
24129 (new_fontset_from_font_name): Extern it.
24130
24131 * fontset.c: Give 8 extra slots to fontset objects.
24132 (Qfontset_info): New variable.
24133 (syms_of_fontset): Defsym it.
24134 (FONTSET_FALLBACK): New macro.
24135 (fontset_face): Try also the default fontset.
24136 (make_fontset): Realize a fallback fontset from the default fontset.
24137 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
24138 using split_font_name_into_vector and build_font_name_from_vector.
24139 (Fset_fontset_font): Access the elements of font_spec by enum
24140 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
24141 name by using split_font_name_into_vector.
24142 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
bba3e508
SM
24143 generate a proper font name from the fontset name.
24144 Update Vfontset_alias_alist.
aac0c6e3
MR
24145 (n_auto_fontsets): New variable.
24146 (new_fontset_from_font_name): New function.
24147 (Ffont_info): Store the information about fonts generated from the
24148 default fontset in the first extra slot of the returned char-table.
24149
24150 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
24151 (font_name_registry): Delete function.
24152 (split_font_name_into_vector): New function.
24153 (build_font_name_from_vector): New function.
24154 (font_list): The argument REGISTRY is now a list of registry names.
24155 (choose_face_font): If we are choosing an ASCII font, and ATTRS
24156 specifies an explicit font name, return the name as is. Make a
24157 list of registy names.
24158
24159 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
24160 of x_new_fontset.
24161 (Fx_create_frame): Don't call x_new_fontset here. Just use
24162 x_list_fonts to check the existence of fonts.
24163
24164 * xterm.h (x_new_fontset): Adjust prototype.
24165
24166 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
24167 string. Use new_fontset_from_font_name to create a fontset from a
24168 font name.
24169
241702008-02-01 Kenichi Handa <handa@m17n.org>
24171
24172 * syntax.c (Vfind_word_boundary_function_table): New name for
24173 Vnext_word_boundary_function_table.
24174 (find-word-boundary-function-table): New name for
24175 next-word-boundary-function-table.
24176
241772008-02-01 Dave Love <fx@gnu.org>
24178
24179 * Makefile.in: Fix some dependencies.
24180
24181 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
24182 set it to nil before returning.
24183
24184 * composite.c (update_compositions): Fix type error.
24185
24186 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
24187
241882008-02-01 Kenichi Handa <handa@m17n.org>
24189
24190 * xterm.c (x_new_font): Optimize for the case that the font is
24191 already set for the frame.
24192
241932008-02-01 Kenichi Handa <handa@m17n.org>
24194
24195 * chartab.c (char_table_ascii): Check if the char table contents
24196 is sub-char-table or not.
24197 (char_table_set, char_table_set_range): Fix argument to
24198 char_table_ascii.
24199
24200 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
24201 (detect_coding_utf_8, detect_coding_utf_16)
24202 (detect_coding_emacs_mule, detect_coding_iso_2022)
24203 (detect_coding_sjis, detect_coding_big5)
24204 (detect_coding_ccl, detect_coding_charset): Change argument MASK
24205 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
24206 sequence is valid in this coding system. Change callers.
24207 (MAX_ANNOTATION_LENGTH): New macro.
24208 (ADD_ANNOTATION_DATA): New macro.
bba3e508
SM
24209 (ADD_COMPOSITION_DATA): Change argument. Change callers.
24210 Call ADD_ANNOTATION_DATA. Change the format of annotation data.
aac0c6e3
MR
24211 (ADD_CHARSET_DATA): New macro.
24212 (emacs_mule_char): New argument ID. Change callers.
24213 (decode_coding_emacs_mule, decode_coding_iso_2022)
24214 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
24215 Produce charset annotation data in coding->charbuf.
24216 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
24217 to charset annotation data in coding->charbuf.
24218 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
24219 coding->common_flags if the coding system is iso-2022 based and
24220 uses designation.
24221 (produce_composition): Adjust for the new annotation data format.
24222 (produce_charset): New function.
24223 (produce_annotation): Handle charset annotation.
bba3e508
SM
24224 (handle_composition_annotation, handle_charset_annotation):
24225 New functions.
aac0c6e3
MR
24226 (consume_chars): Handle charset annotation. Utilize the above two
24227 functions.
24228 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
24229 buffer, get the deleted text as a string and set
24230 coding->src_object to that string.
24231 (detect_coding, detect_coding_system): Use the new struct
24232 coding_detection_info.
24233
24234 * coding.h (struct coding_detection_info): New structure.
24235 (struct coding_system): Adjust prototype of the member `detector'.
24236 (CODING_ANNOTATE_CHARSET_MASK): New macro.
24237
242382008-02-01 Kenichi Handa <handa@m17n.org>
24239
24240 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
24241
242422008-02-01 Dave Love <fx@gnu.org>
24243
24244 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
24245 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
24246 to new local and nullify apropos_accumulate before returning.
24247 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
24248
242492008-02-01 Kenichi Handa <handa@m17n.org>
24250
24251 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
24252 correctly.
e3eea1fc 24253
aac0c6e3
MR
242542008-02-01 Dave Love <fx@gnu.org>
24255
24256 * fns.c (Flanginfo): Call synchronize_system_time_locale.
24257
242582008-02-01 Kenichi Handa <handa@m17n.org>
24259
24260 The following changes are to make character composition happen
24261 automatically on displaying.
24262
24263 * Makefile.in (lisp, shortlisp): Add composite.elc.
24264
24265 * composite.h (Qauto_composed, Vauto_composition_function)
24266 (Qauto_composition_function): Extern them.
24267
24268 * composite.c (Vcomposition_function_table)
24269 (Qcomposition_function_table): Delete variables.
24270 (Qauto_composed, Vauto_composition_function)
24271 (Qauto_composition_function): New variables.
24272 (run_composition_function): Don't call
24273 compose-chars-after-function.
24274 (update_compositions): Clear `auto-composed' text property.
24275 (compose_chars_in_text): Delete this function.
24276 (syms_of_composite): Staticpro Qauto_composed and
24277 Qauto_composition_function. Declare Vauto_composition_function as
24278 a Lisp variable.
24279
24280 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
24281
24282 * xdisp.c (it_props): Add an entry for Qauto_composed.
24283 (handle_auto_composed_prop): New function.
24284
24285 * xselect.c (selection_data_to_lisp_data): Don't call
24286 compose_chars_in_text.
24287
242882008-02-01 Dave Love <fx@gnu.org>
24289
24290 * keyboard.c (read_char): Modify checking around use of
24291 Vkeyboard_translate_table.
24292
24293 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
24294 and fix C types.
24295
242962008-02-01 Kenichi Handa <handa@m17n.org>
24297
24298 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
24299 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
24300 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
24301 the case that the last byte is '\r' correctly.
24302 (decode_coding): Flush out the unprocessed data correctly.
24303 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
24304
243052008-02-01 Dave Love <fx@gnu.org>
24306
24307 * xterm.c (XTread_socket): Fix changes for defined keysyms.
24308 Add XK_ISO... case.
24309 (xaw_scroll_callback): Revert last change.
24310
243112008-02-01 Kenichi Handa <handa@m17n.org>
24312
24313 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
24314
243152008-02-01 Kenichi Handa <handa@m17n.org>
24316
24317 * xfaces.c (Vface_resizing_fonts): New variable.
24318 (struct font_name): New member `resizing_ratio'.
24319 (font_resizing_ratio): New function.
24320 (split_font_name): Set font->resizing_ratio.
24321 (better_font_p): Pay attention to font->resizing_ratio.
24322 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
24323 RESX, and RESY fields.
24324 (try_alternative_families): Try scalable fonts if
24325 Vscalable_fonts_allowed is not Qt.
24326 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
24327
243282008-02-01 Dave Love <fx@gnu.org>
24329
24330 * xterm.c (xaw_scroll_callback): Cast correctly.
24331
243322008-02-01 Dave Love <fx@gnu.org>
24333
24334 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
24335 (lispy_kana_keys): Comment out.
24336 (make_lispy_event) [XK_kana_A]: Comment out.
24337
24338 * xterm.c (xaw_scroll_callback): Cast call_data.
24339 (XTread_socket): Deal with ASCII keysyms.
24340 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
24341
243422008-02-01 Dave Love <fx@gnu.org>
24343
24344 * xterm.c (Vx_keysym_table): New.
24345 (syms_of_xterm): Initialize it.
24346 (XTread_socket): Use it.
24347 From head: Eliminate incorrect optimization that tried to avoid
24348 decoding the output of X*LookupString.
24349 (x_get_font_repertory): Delete charset declaration.
24350
243512008-02-01 Kenichi Handa <handa@m17n.org>
24352
24353 * coding.c (detect_coding_charset): If only ASCII bytes are found,
24354 return 0.
bba3e508
SM
24355 (Fdefine_coding_system_internal):
24356 Setup CODING_ATTR_ASCII_COMPAT (attrs) correctly.
aac0c6e3
MR
24357
243582008-02-01 Dave Love <fx@gnu.org>
24359
24360 * coding.c (Fcheck_coding_system): Doc fix.
24361
24362 * editfns.c (Finsert_byte): Return a proper value.
24363
243642008-02-01 Kenichi Handa <handa@m17n.org>
24365
bba3e508
SM
24366 * coding.c (decode_coding): Fix args to translate_chars.
24367 Pay attention to Vstandard_translation_table_for_decode.
aac0c6e3
MR
24368 (encode_coding): Fix args to translate_chars. Pay attention to
24369 Vstandard_translation_table_for_encode.
24370
24371 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
24372 SINGLE_BYTE_CHAR_P.
24373
24374 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
24375 not by SINGLE_BYTE_CHAR_P.
24376
24377 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
24378 SINGLE_BYTE_CHAR_P.
24379
24380 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
24381 SINGLE_BYTE_CHAR_P.
24382
24383 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
24384 by SINGLE_BYTE_CHAR_P.
24385
24386 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
24387 SINGLE_BYTE_CHAR_P.
24388
243892008-02-01 Dave Love <fx@gnu.org>
24390
24391 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
24392
243932008-02-01 Dave Love <fx@gnu.org>
24394
24395 * fns.c (Flanginfo): Fix typo.
24396
24397 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
24398
243992008-02-01 Kenichi Handa <handa@m17n.org>
24400
24401 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
24402 (detect_coding_emacs_mule, detect_coding_iso_2022)
24403 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
24404 incomplete byte sequence. Don't update *mask when correctly detected.
24405 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
24406 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
24407 (detect_coding, detect_coding_system): Adjust for the changes above.
24408
244092008-02-01 Kenichi Handa <handa@m17n.org>
24410
24411 * character.c (char_string): Rename from
24412 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
24413 (string_char): Rename from string_char.
24414
24415 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
24416 if C is greater than MAX_3_BYTE_CHAR.
bba3e508
SM
24417 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE):
24418 Call string_char instead of string_char_with_unification.
aac0c6e3
MR
24419
244202008-02-01 Dave Love <fx@gnu.org>
24421
24422 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
24423
244242008-02-01 Kenichi Handa <handa@m17n.org>
24425
24426 * keymap.c (push_key_description): Pay attention to force_multibyte.
24427
24428 * regex.c (re_search_2): Fix for the case of unibyte buffer.
24429
244302008-02-01 Dave Love <fx@gnu.org>
24431
24432 * charset.c (define_charset_internal): Rename `supprementary'.
24433
24434 * Makefile.in (lisp, shortlisp): Remove latin-N.
24435
244362008-02-01 Dave Love <fx@gnu.org>
24437
24438 * xfns.c (x_window, x_window): Use use_xim.
24439
24440 * xterm.c (use_xim): Initialize.
24441 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
24442 (x_term_init): Maybe set use_xim.
24443
24444 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
24445
244462008-02-01 Kenichi Handa <handa@m17n.org>
24447
24448 * search.c (search_buffer): Fix case-fold-search of multibyte
24449 characters.
24450 (boyer_moore): Rename the last argument to char_high_bits.
24451
244522008-02-01 Kenichi Handa <handa@m17n.org>
24453
24454 * xdisp.c (display_string): Fix for the case of zero width glyph.
24455
24456 * xfns.c (x_set_font): Change the error message of the case that
24457 x_new_fontset returns Qt.
24458
24459 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
24460 (Finternal_set_lisp_face_attribute): Use signal_error for the
24461 error of invalid fontset.
24462
24463 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
24464 fontset, return Qt.
24465
244662008-02-01 Dave Love <fx@gnu.org>
24467
24468 * unexelf.c (unexec): Make .got handling not SGI-specific.
24469
24470 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
24471
24472 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
24473
24474 * keyboard.c (read_key_sequence): Fix type error.
24475
bba3e508
SM
24476 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte):
24477 Fix type error.
aac0c6e3
MR
24478
24479 * fontset.c (fontset_add): Return Lisp_Object.
24480
244812008-02-01 Dave Love <fx@gnu.org>
24482
24483 * charset.h (charset_ordered_list_tick): Declare extern.
24484
244852008-02-01 Kenichi Handa <handa@m17n.org>
24486
24487 The following changes (and some of 2008-02-01 changes of mine) are
24488 for handling syntax, category, and case conversion for unibyte
24489 characters by converting them to multibyte on the fly. With these
24490 changes, we don't have to setup syntax and case tables for unibyte
24491 characters in each language environment.
24492
24493 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
24494 multibyte if necessary.
24495
24496 * bytecode.c (Fbyte_code): Likewise.
24497
24498 * character.h (LEADING_CODE_LATIN_1_MIN)
24499 (LEADING_CODE_LATIN_1_MAX): New macros.
24500 (unibyte_to_multibyte_table): Extern it.
24501 (unibyte_char_to_multibyte): New macro.
24502 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
24503 (CHAR_LEADING_CODE): New macro.
24504 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
24505
24506 * character.c (unibyte_to_multibyte_table): New variable.
24507 (unibyte_char_to_multibyte): Move to character.h and define as macro.
24508 (multibyte_char_to_unibyte): If C is an eight-bit character,
24509 convert it to the corresponding byte value.
24510
24511 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
24512 not 1, signals an error. Update the elements of
24513 unibyte_to_multibyte_table.
24514 (init_charset_once): Initialize unibyte_to_multibyte_table.
24515 (syms_of_charset): Define the charset `iso-8859-1'.
24516
24517 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
24518 as is without converting it to unibyte. In a unibyte buffer,
24519 convert C to multibyte before checking the syntax.
24520
24521 * lisp.h (unibyte_char_to_multibyte): Delete extern.
24522
24523 * minibuf.c (Fminibuffer_complete_word): Use the macro
24524 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
24525
24526 * regex.h (struct re_pattern_buffer): New member target_multibyte.
24527
24528 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
bba3e508
SM
24529 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte.
24530 If that is zero, convert an eight-bit char to multibyte.
aac0c6e3
MR
24531 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
24532 non-emacs case.
24533 (PATFETCH): Convert an eight-bit char to multibyte.
24534 (HANDLE_UNIBYTE_RANGE): New macro.
24535 (regex_compile): Setup the compiled pattern for multibyte chars
24536 even if the given regex string is unibyte. Use PATFETCH_RAW
24537 instead of PATFETCH in many places. To handle `charset'
24538 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
24539 only for ASCII chars.
24540 (analyse_first) <exactn>: Simplify because the compiled pattern
24541 is multibyte.
24542 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
24543 <charset>: Use CHAR_LEADING_CODE to get leading codes.
24544 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
24545 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
24546 multibyte always 1.
24547 (re_search_2): In emacs, set the locale variable multibyte to 1,
24548 otherwise to 0. New local variable target_multibyte. Check it
bba3e508
SM
24549 to decide the multibyteness of STR1 and STR2.
24550 If target_multibyte is zero, convert unibyte chars to multibyte
aac0c6e3
MR
24551 before translating and checking fastmap.
24552 (TARGET_CHAR_AND_LENGTH): New macro.
24553 (re_match_2_internal): In emacs, set the locale variable multibyte
bba3e508
SM
24554 to 1, otherwise to 0. New local variable target_multibyte.
24555 Check it to decide the multibyteness of STR1 and STR2.
24556 Use TARGET_CHAR_AND_LENGTH to fetch a character from D.
aac0c6e3
MR
24557 <charset, charset_not>: If multibyte is nonzero, check fastmap
24558 only for ASCII chars. Call bcmp_translate with
24559 target_multibyte, not with multibyte.
24560 <begline>: Declare the local variable C as `unsigned'.
24561 (bcmp_translate): Change the last arg name to target_multibyte.
24562
24563 * search.c (compile_pattern_1): Don't adjust the multibyteness of
24564 the regexp pattern and the matching target. Set cp->buf.multibyte
24565 to the multibyteness of the regexp pattern. Set
24566 cp->but.target_multibyte to the multibyteness of the matching target.
24567 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
24568 FETCH_STRING_CHAR_ADVANCE.
24569 (Freplace_match): Convert unibyte chars to multibyte.
24570
24571 * syntax.c (char_quoted, back_comment, scan_words)
24572 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
24573 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
24574 unibyte chars to multibyte.
24575 (skip_chars): Delete the arg syntaxp, and move the code for
24576 handling syntaxes to skip_syntaxes. Change callers.
24577 Fix the case that the multibyteness of STRING and the current
24578 buffer doesn't match.
24579 (skip_syntaxes): New function.
24580 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
24581 SINGLE_BYTE_CHAR_P.
24582
245832008-02-01 Kenichi Handa <handa@m17n.org>
24584
24585 * xfaces.c (QCfontset): New variable.
24586 (LFACE_FONTSET): New macro.
24587 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
24588 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
24589 (Finternal_set_lisp_face_attribute)
24590 (Finternal_get_lisp_face_attribute): Handle QCfontset.
24591 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
24592 check also LFACE_FONTSET_INDEX.
24593 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
24594 attrs[LFACE_FONT_INDEX].
24595 (syms_of_xfaces): Intern and staticpro QCfontset.
24596
24597 * dispextern.h (enum lface_attribute_index): New member
24598 LFACE_FONTSET_INDEX.
24599
24600 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
24601
246022008-02-01 Kenichi Handa <handa@m17n.org>
24603
24604 * coding.c (coding_set_destination): Fix coding->destination for
24605 the case converting a region.
24606 (encode_coding_utf_8): Encode eight-bit chars as single byte.
24607 (encode_coding_object): Fix coding->dst_pos and
24608 coding->dst_pos_byte for the case converting a region.
24609
24610 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
24611
24612 * character.h (BYTE8_STRING): New macro.
24613
24614 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
24615
246162008-02-01 Kenichi Handa <handa@m17n.org>
24617
24618 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
24619 characters by octal form.
24620
24621 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
24622
24623 * buffer.h (_fetch_multibyte_char_len): Delete extern.
24624 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
24625 _fetch_multibyte_char_len.
24626 (FETCH_CHAR_AS_MULTIBYTE): New macro.
24627
24628 * casetab.c (set_canon, set_identity, shuffle): Simplify.
24629
24630 * casefiddle.c (casify_object): Simplify. Handle the case that
24631 the case conversion change the byte length.
24632 (casify_region): Likewise.
24633
24634 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
24635
24636 * character.c (_fetch_multibyte_char_len): Delete this variable.
24637 (syms_of_character): Setup Vprintable_chars.
24638
24639 * editfns.c (Fchar_equal): Fix for the unibyte case.
24640 (Finsert_byte): New function.
24641 (syms_of_editfns): Defsubr it.
24642
24643 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
24644 of direct code 0x3ffff.
24645
24646 * search.c (Freplace_match): Fix for the unibyte case.
24647
246482008-02-01 Kenichi Handa <handa@m17n.org>
24649
24650 * lread.c (safe_to_load_p): Fix the logic.
24651
24652 * syntax.c (scan_words): Don't treat characters belonging to
24653 different scripts as constituting a word.
24654
24655 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
24656
24657 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
24658
24659 * emacs.c (main): In the case of --unibyte, instead of aborting on
24660 finding non-empty buffer, make it unibyte.
24661
246622008-02-01 Kenichi Handa <handa@m17n.org>
24663
24664 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
24665 to create a fontset.
24666
246672008-02-01 Dave Love <fx@gnu.org>
24668
24669 * character.c (Funibyte_char_to_multibyte): Doc fix.
24670
24671 * xfns.c [HAVE_STDLIB_H]: Fix last change.
24672
246732008-02-01 Kenichi Handa <handa@m17n.org>
24674
24675 * fontset.c (fontset_add): Make the type `int'.
24676 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
24677
24678 * character.c (unibyte_char_to_multibyte)
24679 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
24680 charset_unibyte, not charset_primary.
24681
24682 * charset.h (charset_unibyte): Extern it instead of charset_primary.
24683
24684 * charset.c (charset_unibyte): Rename from charset_primary.
24685 (Funibyte_charset): Rename from Fprimary_charset.
24686 (Fset_unibyte_charset): Rename from Fset_primary_charset.
24687 (syms_of_charset): Adjust for the above changes.
24688
24689 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
24690 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
24691 it->multibyte_p is zero.
24692
24693 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
24694 Delete extern.
24695
246962008-02-01 Kenichi Handa <handa@m17n.org>
24697
24698 * coding.c (Fdefine_coding_system_internal): Fix category setting
24699 for a coding system of type iso-2022.
24700
247012008-02-01 Kenichi Handa <handa@m17n.org>
24702
24703 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
24704
247052008-02-01 Kenichi Handa <handa@m17n.org>
24706
24707 * syntax.c (Vnext_word_boundary_function_table): New variable.
24708 (next-word-boundary-function-table): Declare it as a Lisp variable
24709 in syms_of_syntax.
24710 (scan_words): Call functions in Vnext_word_boundary_function_table
24711 if any.
24712
24713 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
24714
24715 * fontset.c (fs_load_font): If fontp->charset is not negative,
24716 return fontp without setting its members.
24717
247182008-02-01 Dave Love <fx@gnu.org>
24719
24720 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
24721
24722 * m/sparc.h (HAVE_ALLOCA): Delete.
24723
24724 * s/irix6-5.h: Don't include strings.h.
24725 (bcopy, bzero, bcmp): Don't undef.
24726
24727 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
24728
24729 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
24730 (TIOCSIGSEND): Don't test IRIX6.
24731 (bcopy, bzero, bcmp): Define conditionally.
24732
247332008-02-01 Kenichi Handa <handa@m17n.org>
24734
24735 * buffer.c (Qas, Qmake, Qto): New variables.
24736 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
24737 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
24738
24739 * callproc.c (Fcall_process): Don't call insert_1_both directly if
24740 we are inserting a process output into a multibyte buffer.
24741
24742 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
24743 multibyte_char_to_unibyte.
24744
24745 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
24746 by the primary charset, make it eight-bit char.
24747 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
24748
24749 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
24750 (charset_8_bit__control, charset_8_bit_graphic)
24751 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
24752 (define_charset_internal): New function.
24753 (syms_of_charset): Call define_charset_internal for pre-defined
24754 charsets.
24755
24756 * charset.h (charset_8_bit): Extern it.
24757
24758 * coding.c (make_conversion_work_buffer): Adjust for the change
24759 of Fset_buffer_multibyte.
24760 (encode_coding_raw_text): Increment p0 in the loop.
24761
24762 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
24763
bba3e508
SM
24764 * xdisp.c (setup_echo_area_for_printing, set_message_1):
24765 Adjust for the change of Fset_buffer_multibyte.
aac0c6e3
MR
24766
24767 * fns.c (Fstring_to_multibyte): New function.
24768 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
24769
247702008-02-01 Dave Love <fx@gnu.org>
24771
24772 * xfns.c (x_put_x_image): Declare args.
24773
24774 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
24775 (try_font_list): Declare an arg.
24776
24777 * xdisp.c (message2_nolog, set_message): Declare an arg.
24778
24779 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
24780
24781 * syntax.c (scan_sexps_forward): Declare an arg.
24782
24783 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
24784 Declare an arg.
24785
24786 * lisp.h (Fnew_fontset): Declare.
24787
24788 * keymap.c (push_key_description): Call CHARACTERP correctly.
24789
24790 * fontset.c (fontset_add): Declare args. Call make_number correctly.
24791 (face_for_char): Delete unused vars.
24792 (Fset_fontset_font): Doc fix. Delete unused vars.
24793
24794 * doc.c (Fsubstitute_command_keys): Delete unused vars.
24795
24796 * composite.c (update_compositions): Declare arg.
24797
24798 * cm.c (calccost, cmgoto): Declare args.
24799
24800 * charset.c: Remove `emacs' conditional. Doc fixes.
24801 (map_char_table_for_charset): Declare.
24802
24803 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
24804
24805 * ccl.c: Remove `emacs' conditional.
24806
248072008-02-01 Kenichi Handa <handa@m17n.org>
24808
24809 The following changes are to allow specifying multiple font
24810 patterns for a character range (specified by script or charset).
24811
24812 * Makefile.in (abbrev.o): Depend on syntax.h.
24813 (xfaces.o): Depend on charset.h.
24814
24815 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
24816 SINGLE_BYTE_CHAR_P.
24817
24818 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
24819
24820 * character.h (Vchar_script_table): Extern it.
24821
24822 * character.c (Vscript_alist): Delete.
24823 (Vchar_script_table, Qchar_script_table): New variable.
24824 (syms_of_character): Declare Vchar_script_table as a lisp variable
24825 and initialize it.
24826
24827 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
24828 have property char-table-extra-slots, make no extra slot.
24829
24830 * dispextern.h (struct face): Delete member `charset'.
24831 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
24832 SINGLE_BYTE_CHAR_P.
24833 (choose_face_font, lookup_non_ascii_face, font_name_registry):
24834 Add prototypes.
24835 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
24836 (generate_ascii_font_name): Rename from generate_ascii_font.
24837
24838 * fontset.h (get_font_repertory_func): New prototype.
24839 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
24840 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
24841
24842 * fontset.c (Qprepend, Qappend): New variables.
24843 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
24844 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
24845 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
24846 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
24847 (fontset_ref_and_range, fontset_add, reorder_font_vector)
24848 (load_font_get_repertory): New functions.
24849 (fontset_set): Delete.
24850 (fontset_face): New arg FACE. Return face ID, not face.
24851 Complete re-write to handle new fontset structure. Change caller.
24852 (free_face_fontset): Use ASET istead of AREF (X) = Y.
24853 (face_for_char): Don't call lookup_face.
24854 (make_fontset_for_ascii_face): New arg FACE.
24855 (fs_load_font): New arg CHARSET_ID. Don't check
24856 Vfont_encoding_alist here.
24857 (find_font_encoding): New function.
24858 (list_fontsets): Use STRINGP, not ! NILP.
24859 (accumulate_script_ranges): New function.
bba3e508
SM
24860 (Fset_fontset_font, Fnew_fontset, Ffontset_info):
24861 Completely re-written to handle new fontset structure.
aac0c6e3 24862 (Ffontset_font): Return a copy of element.
bba3e508
SM
24863 (syms_of_fontset): Define symbols Qprepend and Qappend.
24864 Fix docstring of font-encoding-alist.
aac0c6e3
MR
24865
24866 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
24867 (Fset_fotset_font): Fix arguments to 5.
24868
24869 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
24870
24871 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
24872 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
24873 (highlight_trailing_whitespace): Adjust for the change of
24874 lookup_named_face.
24875
24876 * xfaces.c: Include charset.h.
24877 (load_face_font): Delete argument C. Change caller.
24878 (generate_ascii_font_name): Rename from generate_ascii_font.
24879 (font_name_registry): New function.
24880 (cache_face): Store ascii faces before non-ascii faces in buckets.
24881 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
24882 Lookup only ascii faces.
24883 (lookup_non_ascii_face): New function.
24884 (lookup_named_face): Delete argument C. Change caller.
24885 (lookup_derived_face): Delete argument C. Change caller.
24886 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
24887 a string, just call font_list with it.
24888 (choose_face_font): Delete arguments FACE and C. New arg
24889 FONT_SPEC. Change caller.
24890 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
24891 Change caller.
24892 (realize_non_ascii_face): New function.
24893 (realize_x_face): Call load_face_font here.
24894 (realize_tty_face): Delete argument C. Change caller.
24895 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
24896 get a face ID.
24897 (dump_realized_face): Don't print charset of FACE.
24898
24899 * xfns.c (x_set_font): Always call x_new_fontset and
24900 store_frame_parameter.
24901 (Fx_create_frame): Call x_new_fontset, not x_new_font.
24902 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
24903
24904 * xterm.h (x_get_font_repertory): Extern it.
24905
24906 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
24907 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
24908 it->multibyte_p is zero.
24909 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
24910 (x_new_fontset): If FONTSETNAME doesn't match any existing
24911 fontsets, create a new one.
24912 (x_get_font_repertory): New function.
24913
249142008-02-01 Kenichi Handa <handa@m17n.org>
24915
24916 * coding.c (Ffind_coding_systems_region_internal): Detect an
24917 ASCII only string correctly.
24918
24919 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
24920 version is 0.
24921
249222008-02-01 Kenichi Handa <handa@m17n.org>
24923
24924 * lread.c: Include "coding.h".
24925 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
24926 (load_each_byte, unread_char): New variables.
24927 (readchar_backlog): Delete.
24928 (readchar): Return a character unless load_each_byte is nonzero.
24929 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
24930 cons. If unread_char is not -1, simply return it.
24931 (unreadchar): Handle the case that readcharfun is
24932 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
24933 (read_multibyte): Delete.
24934 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
24935 (read_emacs_mule_char): New functions.
24936 (Fload): Even if the file doesn't have the extension ".elc", if
24937 safe_to_load_p returns a positive version number, assume that the
24938 file contains bytecompiled code. If the version is less than 22,
24939 load the file while decoding multibyte sequences by emacs-mule.
24940 (readevalloop): Don't use readchar_backlog.
24941 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
24942 (Fread_from_string): Pay attention to the case that STREAM is a cons.
24943 (read_escape): Delete the arg BYTEREP.
24944 (read1): Set load_each_byte to 1 temporarily while handling
24945 #@NUMBER. Don't call read_multibyte.
24946 (read_vector): Call Fread with a cons. If readcharfun is
24947 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
24948 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
24949 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
24950 and Qload_force_doc_strings.
24951
249522008-02-01 Kenichi Handa <handa@m17n.org>
24953
bba3e508
SM
24954 * xdisp.c (face_before_or_after_it_pos):
24955 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
aac0c6e3
MR
24956
249572008-02-01 Kenichi Handa <handa@m17n.org>
24958
24959 * character.h (TRAILING_CODE_P): New macro.
24960 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
24961 (string_char_with_unification): Fix prototype.
24962 (Vscript_alist): Extern it.
24963
24964 * character.c (Vscript_alist): New variable.
24965 (string_char_with_unification, str_as_unibyte)
24966 (string_escape_byte8): Add `const' to local variables.
24967 (syms_of_character): Declare script-alist as a Lisp variable.
24968
24969 * charset.h (Vcharset_ordered_list): Extern it.
24970 (charset_ordered_list_tick): Extern it.
24971 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
24972 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
24973 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
24974 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
24975 (Funify_charset): Adjust for the change of Funify_charset.
24976
24977 * charset.c (charset_ordered_list_tick): New variable.
24978 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
24979 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
6e051c0a 24980 deunify instead of unify a charset.
aac0c6e3
MR
24981 (string_xstring_p): Add `const' to local variables.
24982 (find_charsets_in_text): Add `const' to arguments and local variables.
bba3e508
SM
24983 (encode_char): Adjust for the change of Funify_charset.
24984 Fix detecting of invalid code.
aac0c6e3
MR
24985 (Fset_charset_priority): Increment charset_ordered_list_tick.
24986 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
24987 and TO_CODE.
24988
24989 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
24990 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
24991 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
24992 (decode_coding_ccl, consume_chars)
24993 (Ffind_coding_systems_region_internal)
24994 (Fcheck_coding_systems_region): Add `const' to local variables.
24995
24996 * print.c (print_object): Use octal form for printing the
24997 contents of a bool vector.
24998
249992008-02-01 Dave Love <fx@gnu.org>
25000
25001 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
25002 <version == 20>: Refuse to load.
25003
250042008-02-01 Dave Love <fx@gnu.org>
25005
25006 * fns.c: Move coding.h.
25007 (Qcodeset, Qdays, Qmonths): New.
25008 (concat): Use CHARACTERP instead of INTEGERP.
25009 (Flocale_codeset): Delete.
25010 (Flanginfo): New function.
25011 (syms_of_fns): Change accordingly.
25012
25013 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
25014
250152008-02-01 Dave Love <fx@gnu.org>
25016
bba3e508
SM
25017 * casetab.c (init_casetab_once, init_casetab_once):
25018 Fix CHAR_TABLE_SET call.
aac0c6e3
MR
25019
25020 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
25021
25022 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
25023
25024 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
25025 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
25026 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
25027
25028 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
25029
25030 * coding.c (ENCODE_DESIGNATION, decode_eol)
25031 (make_conversion_work_buffer, code_conversion_restore)
25032 (Fdefine_coding_system_internal): Convert Lisp types.
25033 (code_conversion_restore): Use EQ, not ==.
25034 (Fencode_coding_string): Fix code_convert_string call.
25035
25036 * coding.h (code_convert_region): Fix prototype.
25037
25038 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
25039
25040 * fontset.c (fontset_ref, fontset_set, fs_load_font)
25041 (Ffontset_info): Convert Lisp types.
25042
25043 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
25044
25045 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
25046
25047 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
25048
25049 * chartab.c: Include "...h", not <...h> in some cases.
25050
25051 * callproc.c (Fcall_process): Remove unused variables.
25052
250532008-02-01 Dave Love <fx@gnu.org>
25054
25055 * coding.c (Fset_coding_system_priority): Allow null arg list.
25056
250572008-02-01 Dave Love <fx@gnu.org>
25058
25059 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
25060 (Fself_insert_and_exit): Use CHARACTERP.
25061
25062 * callproc.c (Fcall_process): Remove unused vars.
25063
25064 * xterm.c (XTread_socket): Add extra dead keysyms.
25065
25066 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
25067
25068 * dispextern.h: Remove prototypes for redraw_frame,
25069 redraw_garbaged_frames.
25070
25071 * cmds.c (Fself_insert_command): Use CHARACTERP.
25072
25073 * chartab.c (make_sub_char_table): Remove unused var.
25074 (Fset_char_table_default, Fmap_char_table): Doc fix.
25075
25076 * keymap.c (access_keymap): Remove generic char code.
25077 (push_key_description): Use CHARACTERP.
25078
250792008-02-01 Dave Love <fx@gnu.org>
25080
25081 * charset.c: Doc fixes.
25082 (Funify_charset): Extra checking.
25083
250842008-02-01 Dave Love <fx@gnu.org>
25085
25086 * lread.c: Remove some unused variables.
25087 (safe_to_load_p): If safe, return the magic number version byte.
25088 (Fload): Maybe use load-with-code-conversion.
25089
250902008-02-01 Kenichi Handa <handa@m17n.org>
25091
25092 * category.c (Fmodify_category_entry): Don't modify the contents
bba3e508
SM
25093 of category_set for characters out of the range.
25094 Avoid unnecessary modification.
aac0c6e3
MR
25095
25096 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
25097 Vchar_unify_table. The default value of the table is now nil.
25098
25099 * character.c (syms_of_character): Setup Vchar_width_table for
25100 eight-bit-control and raw-byte chars.
25101
bba3e508
SM
25102 * charset.h (enum define_charset_arg_index):
25103 Delete charset_arg_parents and add charset_arg_subset and
aac0c6e3
MR
25104 charset_arg_superset.
25105 (enum charset_attr_index): Delete charset_parents and add
25106 charset_subset and charset_superset.
25107 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
25108 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
25109 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
25110 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
25111 (CHARSET_SUPERSET): New macros.
25112 (charset_work): Extern it.
25113 (ENCODE_CHAR): Use charset_work.
25114 (CHAR_CHARSET_P): Adjust for the change of encoder format.
25115 (map_charset_chars): Extern it.
25116
25117 * charset.c (load_charset_map): Set the default value of encoder
25118 and deunifier char-tables to nil.
bba3e508
SM
25119 (map_charset_chars): Change argument. Change callers.
25120 Use map_char_table_for_charset instead of map_char_table.
aac0c6e3
MR
25121 (Fmap_charset_chars): New optional args from_code and to_code.
25122 (Fdefine_charset_internal): Adjust for the change of
25123 `define-charset' (:parents -> :subset or :superset).
25124 (charset_work): New variable.
25125 (encode_char, syms_of_charset): Adjust for the change of
25126 Fdefine_charset_internal.
25127 (Ffind_charset_string): Setup the vector `charsets' correctly.
25128
bba3e508
SM
25129 * chartab.c (sub_char_table_ref_and_range): New arg default.
25130 Fix the previous change.
aac0c6e3
MR
25131 (char_table_ref_and_range): Adjust for the above change.
25132 (map_sub_char_table_for_charset): New function.
25133 (map_char_table_for_charset): New function.
25134
25135 * keymap.c (describe_vector): Handle a char-table directly here.
25136 (describe_char_table): Delete.
25137
25138 * lisp.h (map_charset_chars): Delete.
25139
251402008-02-01 Dave Love <fx@gnu.org>
25141
25142 * fns.c (count_combining): Comment out (unused).
25143 (Flocale_codeset): New.
25144 (syms_of_fns): Defsubr it.
25145
25146 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
25147 (size_t): Remove.
25148
251492008-02-01 Dave Love <fx@gnu.org>
25150
25151 * Makefile.in (chartab.o): Depend on charset.h.
25152
251532008-02-01 Kenichi Handa <handa@m17n.org>
25154
25155 * character.c (syms_of_character): Set the default value of
25156 Vprintable_chars to Qnil.
25157
251582008-02-01 Dave Love <fx@gnu.org>
25159
25160 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
25161
251622008-02-01 Kenichi Handa <handa@m17n.org>
25163
25164 * charset.c (load_charset_map): Handle the case that from < to
25165 correctly.
25166
25167 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
25168 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
25169 Pay attention to raw-8-bit chars.
25170
251712008-02-01 Kenichi Handa <handa@m17n.org>
25172
25173 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
25174 It is not bytecompiled now.
25175
25176 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
25177 (charset_jisx0208): New variables.
25178 (Fdefine_charset_internal): Setup them if appropriate.
25179 (init_charset_once): Initialize them to -1.
25180
25181 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
25182 (charset_jisx0208): Extern them.
25183
25184 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
25185 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
25186 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
25187 (setup_iso_safe_charsets): Fix arguments to Fassq.
25188 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
25189 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
25190 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
25191 (encode_coding_iso_2022): Change the 1st arg to
25192 ENCODE_ISO_CHARACTER to a variable.
25193
251942008-02-01 Kenichi Handa <handa@m17n.org>
25195
25196 * charset.h (enum define_charset_arg_index): New enums
25197 charset_arg_min_code and charset_arg_max_code.
25198 (struct charset): New member char_index_offset.
25199
25200 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
25201 Take charset->char_index_offset into account.
25202 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
25203 args[charset_arg_max_code]. Setup charset.char_index_offset.
25204 (syms_of_charset): Fix args to Fdefine_charset_internal.
25205
252062008-02-01 Dave Love <fx@gnu.org>
25207
25208 * coding.c (decode_coding_utf_8): Reject overlong sequences.
25209
252102008-02-01 Dave Love <fx@gnu.org>
25211
25212 * coding.c: Doc fixes.
25213 (Fcoding_system_aliases): Fix return value.
25214 (Qmac): Remove (duplicated) definition.
25215
252162008-02-01 Dave Love <fx@gnu.org>
25217
362654a6
JB
25218 * charset.c (Fcharset_priority_list, Fset_charset_priority):
25219 New functions.
aac0c6e3
MR
25220
25221 * character.c (Fstring): Doc fix.
25222
25223 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
25224
362654a6 25225 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
aac0c6e3
MR
25226 (font-encoding-alist): Doc fix.
25227
252282008-02-01 Dave Love <fx@gnu.org>
25229
25230 * term.c (costs_set): Declare static, non-initialized for pcc.
25231 (encode_terminal_code): Remove unused var.
25232
25233 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
25234 for K&R.
25235
25236 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
25237
25238 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
25239 (suffixes): Move out of make_subsidiaries for K&R.
25240
25241 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
25242
25243 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
25244
252452008-02-01 Dave Love <fx@gnu.org>
25246
25247 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
25248
25249 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
25250
252512008-02-01 Yong Lu <lyongu@asia-infonet.com>
25252
25253 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
25254
25255 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
25256
252572008-02-01 Kenichi Handa <handa@m17n.org>
25258
25259 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
25260 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
25261
252622008-02-01 Kenichi Handa <handa@m17n.org>
25263
25264 * coding.c (decode_coding_charset): Adjust for the change of
25265 Fdefine_coding_system_internal.
25266 (Fdefine_coding_system_internal): For a coding system of
25267 `charset' type, store a list of charset IDs in
25268 `charset_attr_charset_valids' element of coding attributes.
25269
252702008-02-01 Kenichi Handa <handa@m17n.org>
25271
25272 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
bba3e508
SM
25273 (emacs_mule_char): New arg src. Delete arg `composition'.
25274 Change caller. Handle 2-byte and 3-byte charsets correctly.
aac0c6e3
MR
25275 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
25276 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
25277 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
ef1b0ba7
SM
25278 (DECODE_EMACS_MULE_21_COMPOSITION):
25279 Call DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
aac0c6e3
MR
25280 sequence.
25281 (decode_coding_emacs_mule): Handle composition correctly. Rewind
25282 `src' and `consumed_chars' correctly before calling emacs_mule_char.
25283 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
25284 and alt&rule composition.
25285 (decode_coding_iso_2022): Handle composition correctly.
25286 (init_coding_once): Setup emacs_mule_bytes for private charsets.
25287
25288 * charset.c (Fdefine_charset_internal): Fix bug for the case of
25289 re-defining a charset. If the charset has :emacs-mule-id, setup
25290 emacs_mule_bytes.
25291 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
25292
252932008-02-01 Kenichi Handa <handa@m17n.org>
25294
25295 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
25296 (encode_coding_big5, encode_coding_charset): If coding requires safe
25297 encoding, produce a character specified by
25298 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
25299
253002008-02-01 Dave Love <fx@gnu.org>
25301
25302 * xterm.c (XSetIMValues): Declare.
25303
25304 * process.c: Conditionally include sys/wait.h, pty.h.
25305
25306 * print.c (print_object): Fix print format for 64-bit systems.
25307
25308 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
25309
25310 * buffer.c (emacs_strerror): Declare.
25311
25312 * fontset.c (Fclear_face_cache): Declare.
25313 (accumulate_font_info): Comment-out (unused).
25314 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
25315 variables.
25316
25317 * character.h (string_escape_byte8): Declare.
25318
bba3e508
SM
25319 * charset.c (load_charset_map, load_charset_map_from_file):
25320 Remove unused vars.
aac0c6e3
MR
25321 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
25322 (Fmap_charset_chars): Doc fix.
25323
25324 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
25325 (Fset_coding_system_priority, Fset_coding_system_priority)
25326 (Fdefine_coding_system_internal): Doc fix.
25327
253282008-02-01 Dave Love <fx@gnu.org>
25329
25330 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
25331
253322008-02-01 Kenichi Handa <handa@m17n.org>
25333
25334 * character.c (string_escape_byte8): Make multibyte string with
25335 correct size.
25336
25337 * charset.c (Fmake_char): Delete unnecessary code.
25338
253392008-02-01 Kenichi Handa <handa@m17n.org>
25340
25341 * xfns.c (x_encode_text): Allocate coding.destination here, and
25342 call encode_coding_object with dst_object Qnil.
25343
25344 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
25345 multibyte form correctly.
25346
25347 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
25348 against Vfont_encoding_alist.
25349
25350 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
25351 handling of charset list.
25352 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
25353 (decode_coding_object): Move point to coding->dst_pos before
25354 calling post-read-conversion function.
25355 (encode_coding_object): Give correct arguments to
25356 pre-write-conversion. Ignore the return value of
25357 pre-write-conversion function. Pay attention to the case that
25358 pre-write-conversion changes the current buffer. If dst_object is
25359 Qt, even if coding->src_bytes is zero, allocate at least one byte
25360 to coding->destination.
25361
25362 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
25363
25364 * charset.c (Fmake_char): Make it more backward compatible.
25365 (Fmap_charset_chars): Fix docstring.
25366
253672008-02-01 Dave Love <fx@gnu.org>
25368
25369 * coding.c: Doc fixes.
25370 (Fdefine_coding_system_alias): Use names, not symbols, in
25371 coding-system-alist.
25372
253732008-02-01 Kenichi Handa <handa@m17n.org>
25374
25375 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
25376 of calling free_realized_face.
25377
253782008-02-01 Yong Lu <lyongu@asia-infonet.com>
25379
25380 * charset.c (read_hex): Don't treat SPC as a comment starter.
25381 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
25382 (Fdecode_char): Fix typo.
25383
253842008-02-01 Kenichi Handa <handa@m17n.org>
25385
25386 * charset.h (struct charset): New member `code_space_mask'.
25387
25388 * coding.c (coding_set_source): Delete the local variable beg_byte.
25389 (encode_coding_charset, Fdefine_coding_system_internal):
25390 Delete the local variable charset.
bba3e508
SM
25391 (Fdefine_coding_system_internal):
25392 Setup attrs[coding_attr_charset_valids] correctly.
aac0c6e3
MR
25393
25394 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
25395 member to check if CODE is valid or not.
25396 (Fdefine_charset_internal): Initialize `code_space_mask' member.
25397 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
25398 is within the range of charset->min_code and carset->max_code.
25399
254002008-02-01 Dave Love <fx@gnu.org>
25401
25402 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
25403
25404 * dispextern.h (generate_ascii_font): Fix return type.
25405
25406 * xfaces.c (generate_ascii_font): Fix arg declaration.
25407
25408 * coding.c (coding_inherit_eol_type)
25409 (Fset_terminal_coding_system_internal)
25410 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
25411
254122008-02-01 Kenichi Handa <handa@m17n.org>
25413
bba3e508
SM
25414 * coding.c (decode_coding_charset, encode_coding_charset):
25415 Handle multiple charsets correctly.
aac0c6e3
MR
25416
254172008-02-01 Kenichi Handa <handa@m17n.org>
25418
25419 * search.c (boyer_moore): Fix handling of multibyte character
25420 translation.
25421
25422 * xdisp.c (display_mode_element): When the variable `elt' is
25423 changed, update `this' and `lisp_string'.
25424
254252008-02-01 Kenichi Handa <handa@m17n.org>
25426
25427 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
25428
25429 * callproc.c (Fcall_process): Be sure to give the current buffer
25430 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
25431
25432 * charset.c (struct charset_map_entries): New struct.
25433 (load_charset_map): Rename from parse_charset_map. New args
25434 entries and n_entries. Change caller.
25435 (load_charset_map_from_file): Rename from load_charset_map.
25436 Change caller. New arg control_flag. Call load_charset_map at
25437 the tail.
25438 (load_charset_map_from_vector): New function.
25439 (Fdefine_charset_internal): Setup charset.compact_codes_p.
25440 (encode_char): If the charset is compact, change a character index
25441 to a code point.
25442
25443 * coding.c (coding_alloc_by_making_gap): Check the case that the
25444 source and destination are the same correctly.
25445 (decode_coding_raw_text): Set coding->consumed_char and
25446 coding->consumed to 0.
25447 (produce_chars): If coding->chars_at_source is nonzero, update
25448 coding->consumed_char and coding->consumed before calling
25449 alloc_destination.
25450 (Fdefine_coding_system_alias): Register ALIAS in
25451 Vcoding_system_alist.
25452 (syms_of_coding): Define `no-conversion' coding system at the tail.
25453
25454 * fileio.c (Finsert_file_contents): Set coding_system instead of
25455 val. If the current buffer is multibyte, always call
25456 decode_coding_gap.
25457
25458 * xfaces.c (try_font_list): Give higher priority to fontset's
25459 family than face's family.
25460
254612008-02-01 Kenichi Handa <handa@m17n.org>
25462
25463 * callproc.c (Fcall_process): Be sure to give the current buffer
25464 to decode_coding_c_string.
25465
25466 * xfaces.c (try_font_list): Give a family specified in a fontset
25467 higher priority than a family specified in a face.
25468
254692008-02-01 Kenichi Handa <handa@m17n.org>
25470
25471 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
25472 Fix arguments to insert_from_buffer.
25473
25474 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
25475
254762008-02-01 Kenichi Handa <handa@m17n.org>
25477
25478 * coding.c (produce_chars): Set the variable `multibytep' correctly.
25479 (decode_coding_gap): Set coding->dst_multibyte correctly.
25480
254812008-02-01 Kenichi Handa <handa@m17n.org>
25482
25483 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
25484 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
25485 (encode_coding_utf_16): Substitute coding->default_char for
25486 non-Unicode characters.
25487 (decode_coding): Don't call record_insert here.
25488 (setup_coding_system): Initialize `surrogate' of
25489 coding->spec.utf_16 to 0.
25490 (EMIT_ONE_BYTE): Fix for multibyte case.
25491
25492 * insdel.c (insert_from_gap): Call record_insert.
25493
254942008-02-01 Kenichi Handa <handa@m17n.org>
25495
25496 * casefiddle.c (casify_region): Fix multibyte case.
25497
25498 * character.c (c_string_width): Add return type `int'.
25499 (char_string_with_unification): Delete arg ADVANCED.
25500
25501 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
25502 (CHAR_STRING): Adjust for the change of char_string_with_unification.
25503 (CHAR_STRING_ADVANCE): Make it do-while statement.
25504
25505 * chartab.c (sub_char_table_set_range): Optimize for the case
25506 DEPTH == 3. Add workaround code for a GCC optimization bug.
25507
25508 * charset.c (parse_charset_map): Remove an unused variable.
25509
25510 * coding.c: Delete unused variables.
25511
25512 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
25513 earlier. If inserted is zero and the coding system doesn't
25514 require flushing, don't call decode_coding_gap.
25515
25516 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
25517
255182008-02-01 Kenichi Handa <handa@m17n.org>
25519
25520 The following changes are for using Unicode as an internal
25521 character model, and use UTF-8 format for buffer/string
25522 representation.
25523
25524 * .gdbinit (xchartable): Adjust for the change of char table structure.
25525 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
25526
25527 * Makefile.in (obj): Add character.o and chartab.o.
25528 (lisp, shortlisp): Remove utf-8.elc.
25529 (*.o): For many files, change dependency on charset.h to
25530 character.h, and add dependency on character.h.
25531 (character.o, chartab.o): New targets.
25532
25533 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
25534 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
25535 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
25536 of "charset.h".
25537
25538 * dired.c, filelock.c: Include "character.h".
25539
25540 * alloc.c: Include "character.h" instead of "charset.h".
25541 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
25542 (syms_of_alloc): Remove defsubr for Smake_char_table.
25543
25544 * buffer.c: Include "character.h" instead of "charset.h", don't
25545 include "coding.h".
25546 (Fset_buffer_multibyte): Adjust for UTF-8.
25547
25548 * buffer.h: EXFUN Fbuffer_live_p.
25549
25550 * callproc.c: Include "character.h" instead of "charset.h".
25551 (Fcall_process): Big change for the new code-conversion APIs.
25552
25553 * casetab.c: Include "character.h" instead of "charset.h".
25554 (set_canon, set_identity, shuffle): Adjust for the new
25555 map_char_table spec.
25556 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
25557 accessing the char table structure.
25558
25559 * chartab.c: New file that implements char table.
25560
25561 * category.c: Include "character.h".
25562 (copy_category_entry): New function.
25563 (copy_category_table): Call map_char_table and copy_category_entry.
25564 (Fmake_category_table): Initialize all top-level slots.
25565 (char_category_set): New function.
25566 (modify_lower_category_set): Delete.
25567 (Fmodify_category_entry): Call char_table_ref_and_range.
25568
25569 * category.h (CATEGORY_SET): Just call char_category_set.
25570
25571 * ccl.c: Include "character.h".
25572 (Qccl, Qcclp): New variables.
25573 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
25574 it's less than 256.
25575 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
25576 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
25577 and DST type.
25578 (ccl_driver): Change types of argument, adjust code accordingly.
25579 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
25580 ccl_driver.
25581 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
25582
25583 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
25584 New members src_multibyte, dst_multibyte, consumed, and produced.
25585 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
25586 (CODING_SPEC_CCL_PROGRAM): New macro.
25587 (ccl_driver): Update prototype.
25588 (Qccl, Qcclp, Fccl_program_p): Extern them.
25589 (CHECK_CCL_PROGRAM): New macro.
25590
25591 * character.c, character.h, chartab.c: New files.
25592
25593 * charset.c: Mostly re-written. Move character and multibyte sequence
25594 handling codes to character.c.
25595
25596 * charset.h: Mostly re-written. Move character and multibyte sequence
25597 handling codes to character.h.
25598
25599 * coding.c, coding.h: Mostly re-written.
25600
25601 * composite.c: Include "character.h" instead of "charset.h".
25602 (CHAR_WIDTH): Move to character.h.
25603 (HASH_KEY, HASH_VALUE): Delete.
25604
25605 * composite.h (enum composition_method): Change order of enumeration
25606 symbols.
25607
25608 * data.c: Include "character.h" instead of "charset.h".
25609 (Faref): Call CHAR_TABLE_REF for a char table.
25610 (Faset): Call CHAR_TABLE_SET for a char table.
25611
25612 * dispextern.h (free_realized_face, check_face_attribytes)
25613 (generate_ascii_font): Extern them.
25614 (free_realized_multibyte_face): Delete extern.
25615
25616 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
25617 table structure.
25618
25619 * editfns.c: Include "character.h" instead of "charset.h".
25620 (Fchar_to_string): Always call CHAR_STRING.
25621
25622 * emacs.c (main): Call init_charset_once, init_charset,
25623 syms_of_chartab, and syms_of_character.
25624
25625 * fileio.c: Include "character.h" instead of "charset.h".
25626 (Finsert_file_contents): Big change for the new code-conversion API.
25627 (choose_write_coding_system, Fwrite_region): Likewise.
25628 (build_annotations_2): Delete.
25629 (e_write): Big change for the new code-conversion API.
25630
25631 * fns.c: Include "character.h" instead of "charset.h".
25632 (copy_sub_char_table): Move to chartab.c.
25633 (Fcopy_sequence): Call copy_char_table for a char table.
25634 (concat): Delete codes calling count_multibyte.
25635 (string_char_to_byte, string_byte_to_char): Adjust for the new
25636 multibyte form.
25637 (internal_equal): Adjust for the change of char table structure.
25638 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
25639 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
25640 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
25641 (char_table_translate, optimize_sub_char_table)
25642 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
25643 chartab.c.
25644 (char_table_ref_and_index): Delete.
25645 (HASH_KEY, HASH_VALUE): Move to lisp.h.
25646 (Fmd5): Call preferred_coding_system instead of accessing
25647 Vcoding_category_list. Adjust for the new code-conversion API.
25648 (syms_of_fns): Move defsubr for char table related functions to
25649 chartab.c.
25650
25651 * fontset.c: Mostly re-written.
25652
25653 * fontset.h (struct font_info): Change type of the member encoding_type.
25654 (enum FONT_SPEC_INDEX): New enum.
25655 (fontset_font_pattern, fs_load_font): Update prototype.
25656 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
25657
25658 * indent.c: Include "character.h" instead of "charset.h".
25659 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
25660
25661 * insdel.c: Include "character.h" instead of "charset.h".
25662 (copy_text): Don't refer to Vnonascii_translation_table.
25663 (insert_from_gap): New function.
25664
25665 * keyboard.c: Include "character.h" instead of "charset.h".
25666 (command_loop_1): Never call direct_output_forward_char before
25667 a non-ASCII character.
25668 (read_char): If Vkeyboard_translate_table is a char table, always
25669 translate a character.
25670
25671 * keymap.c: Include "character.h".
25672 (store_in_keymap): Handle the case that IDX is a cons.
25673 (Fdefine_key): Handle the case that KEY is a cons and the car part
25674 is also a cons (range).
25675 (push_key_description): Adjust for the new character code.
25676 (describe_vector): Call describe_char_table for a char table.
25677 (describe_char_table): New function.
25678
25679 * keymap.h (describe_char_table): Extern it.
25680
25681 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
25682 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
25683 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
25684 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
25685 Delete.
25686 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
25687 structure.
25688 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
25689 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
25690 (CHARTAB_SIZE_BITS_3): New macros.
25691 (chartab_size): Extern it.
25692 (struct Lisp_Char_Table): Re-design.
25693 (struct Lisp_Sub_Char_Table): New structure.
25694 (HASH_KEY, HASH_VALUE): Move from fns.c.
25695 (CHARACTERBITS): Define as 22.
25696 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
25697 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
25698 (GC_SUB_CHAR_TABLE_P): New macro.
25699 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
ef1b0ba7 25700 (code_convert_string_norecord): Delete extern.
aac0c6e3
MR
25701 (init_character_once, syms_of_character, init_charset)
25702 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
25703
25704 * lread.c: Include "character.h".
25705 (read_multibyte): New arg NBYTES.
25706 (read_escape): Change the meaning of returned *BYTEREP.
25707 (to_multibyte): Delete.
25708 (read1): Adjust the handling of char table and string.
25709
25710 * print.c: Include "character.h" instead of "charset.h".
25711 (print_string): Convert 8-bit raw bytes to octal form by
25712 string_escape_byte8.
25713 (print_object): Adjust for the new multibyte form. Print 8-bit
25714 raw bytes always in octal form. Handle sub char table correctly.
25715
25716 * process.c: Include "character.h" instead of "charset.h".
25717 (read_process_output, send_process): Adjust for the new
25718 code-conversion API.
25719
25720 * puresize.h (BASE_PURESIZE): Increase.
25721
25722 * regex.c: Include "character.h" instead of "charset.h".
25723 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
25724 (regex_compile): Accept a range whose starting and ending
25725 character have different leading bytes.
25726 (analyse_first): Adjust for the above change.
25727
25728 * search.c: Include "character.h" instead of "charset.h".
25729 (search_buffer, boyer_moore): Adjust for the new multibyte form.
25730 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
25731
25732 * syntax.c: Include "character.h" instead of "charset.h".
25733 (syntax_parent_lookup): Delete.
25734 (Fmodify_syntax_entry): Accept a cons as CHAR.
25735 (skip_chars): Adjust for the new multibyte form.
25736 (init_syntax_once): Call char_table_set_range instead of directly
25737 accessing the structure of a char table.
25738
25739 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
25740 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
25741 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
25742 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
25743
25744 * term.c: Include "buffer.h" and "character.h".
25745 (encode_terminal_code, write_glyphs): Adjust for the new
25746 code-conversion API.
25747 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
25748
25749 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
25750
25751 * xdisp.c: Include "character.h".
25752 (get_next_display_element): Adjust for the new multibyte form.
25753 (disp_char_vector): Adjust for the new char table structure.
25754 (decode_mode_spec_coding): Adjust for the new structure of
25755 coding system.
25756 (decode_mode_spec): Adjust for the new code-conversion API.
25757
25758 * xfaces.c: Include "character.h" instead of "charset.h".
25759 (load_face_font): Adjust for the change of choose_face_font and
25760 FS_LOAD_FONT.
25761 (generate_ascii_font): New function.
25762 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
25763 (set_font_frame_param): Adjust for the change of choose_face_font.
25764 (free_realized_face): Make it public.
25765 (free_realized_faces_for_fontset): Rename from
25766 free_realized_multibyte_face. Free also faces realized for ASCII.
25767 (choose_face_font): Change arguments. Adjust for the change of
25768 fontset_font_pattern and FS_LOAD_FONT.
25769
25770 * xfns.c: Include "character.h".
25771 (x_encode_text): Adjust for the new code-conversion API.
25772
25773 * xselect.c: Don't include "charset.h".
25774 (selection_data_to_lisp_data): Adjust for the new code conversion API.
25775
25776 * xterm.c: Include "character.h".
25777 (x_encode_char): New argument CHARSET. Change caller.
25778 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
25779 Call ENCODE_CHAR instead of SPLIT_CHAR.
25780 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
25781 CHAR_WIDTH instead of CHARSET_WIDTH.
25782 (XTread_socket): Adjust for the new code-conversion API.
25783 (x_new_font): Adjust for the change of FS_LOAD_FONT.
25784 (x_load_font): Adjust for the change of struct font.
25785
257862008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
25787
25788 * xfaces.c (face_at_buffer_position): Remove unused vars.
25789
257902008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
25791
25792 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
25793 Fix overflow checking.
25794
257952008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
25796
25797 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
25798 Cancel previous change.
25799
258002008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
25801
25802 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
25803 ccl->eight_bit_control. Fix check for buffer overflow.
25804 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
25805 (ccl_driver): Initialize extra_bytes to 0.
25806
258072008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
25808
25809 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
25810 return it ORed with ctrl_modifier.
25811
258122008-01-29 Miles Bader <miles@gnu.org>
25813
25814 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
25815
258162008-01-28 Jason Rumney <jasonr@gnu.org>
25817
25818 * w32.c (stat): Don't double check for networked drive.
25819
258202008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
25821
25822 * window.c (run_window_configuration_change_hook): New function.
25823 Code extracted from set_window_buffer. Set the selected frame.
25824 (set_window_buffer): Use it.
25825 * window.h (run_window_configuration_change_hook): Declare.
25826 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
25827
25828 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
25829
258302008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
25831
25832 * Makefile.in: Remove references to unused macros.
25833
258342008-01-26 Eli Zaretskii <eliz@gnu.org>
25835
25836 * w32.c (g_b_init_get_sid_sub_authority)
25837 (g_b_init_get_sid_sub_authority_count): New static variables.
25838 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
25839 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
25840 (init_user_info): Use them to retrieve uid and gid.
25841 Use 500/513, the Windows defaults, as Administrator's uid/gid.
25842 (fstat): Use pw_uid and pw_gid from the_passwd structure for
25843 st_uid and st_gid of the file.
25844
258452008-01-26 Jason Rumney <jasonr@gnu.org>
25846
25847 * w32.c (logon_network_drive): New function.
25848 (stat): Use it.
25849
258502008-01-26 Chong Yidong <cyd@stupidchicken.com>
25851
25852 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
25853 invisible text covered with an ellipsis.
25854
258552008-01-25 Richard Stallman <rms@gnu.org>
25856
25857 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
25858 jump back to beginning. Move some other initializations after that.
25859 (Qwindow_text_change_functions, Vwindow_text_change_functions):
25860 New variables.
25861 (syms_of_xdisp): Init them.
25862
25863 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
25864
25865 * buffer.c (reset_buffer_local_variables):
25866 Implement `permanent-local-hook'.
25867 (Qpermanent_local_hook): New variable.
25868 (syms_of_buffer): Init and staticpro it.
25869
258702008-01-25 Michael Albinus <michael.albinus@gmx.de>
25871
25872 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
25873
258742008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
25875
25876 * fns.c (Fclrhash): Return TABLE.
25877
258782008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25879
25880 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
25881 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
25882 is set even without positional changes.
25883 (x_scroll_bar_clear): Set bar->redraw_needed_p.
25884
25885 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
25886
258872008-01-23 Jason Rumney <jasonr@gnu.org>
25888
25889 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
25890
25891 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
25892 the unicode range available in MULE by locale-coding-system.
25893 Improve dbcs lead byte detection. Set event timestamp and modifiers
25894 earlier.
25895
258962008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25897
25898 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
25899 [MAC_OSX] (init_mac_osx_environment): Initialize it.
25900 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
25901 when used on child processes.
25902
259032008-01-21 Michael Albinus <michael.albinus@gmx.de>
25904
25905 * dbusbind.c (Fdbus_method_return_internal): Rename from
25906 Fdbus_method_return.
25907 (Fdbus_unregister_object): Move to dbus.el.
25908 (Fdbus_call_method, Fdbus_method_return_internal)
25909 (Fdbus_send_signal): Improve debug messages.
25910
259112008-01-20 Martin Rudalics <rudalics@gmx.at>
25912
25913 * undo.c (undo_inhibit_record_point): New variable.
25914 (syms_of_undo): Initialize it.
25915 (record_point): Don't record point when undo_inhibit_record_point
25916 is set.
25917
259182008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
25919
25920 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
25921
25922 * xdisp.c (Qauto_hscroll_mode): New var.
25923 (syms_of_xdisp): Initialize it.
25924 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
25925 window's buffer.
25926 (hscroll_windows): Don't check automatic_hscrolling_p here.
25927
25928 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
25929 vscroll if we're setting window-buffer to the value it already has.
25930
259312008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
25932
25933 * m/intel386.h: Remove references to XENIX.
25934
259352008-01-17 Andreas Schwab <schwab@suse.de>
25936
25937 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
25938 instead of HAVE_X86_64_LIB64_DIR.
25939 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
25940
259412008-01-17 Glenn Morris <rgm@gnu.org>
25942
25943 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
25944 to HAVE_X86_64_LIB64_DIR.
25945
259462008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
25947
25948 * s/irix3-3.h:
25949 * s/irix4-0.h:
25950 * s/386-ix.h:
25951 * s/domain.h:
25952 * s/hpux9-x11r4.h:
25953 * s/hpux9shxr4.h: Remove files for systems no longer supported.
25954
25955 * sysdep.c: Remove code containing references to symbols defined
25956 by unsupported systems.
25957
259582008-01-16 Glenn Morris <rgm@gnu.org>
25959
25960 * coding.c (select-safe-coding-system-function): Doc fix.
25961
259622008-01-15 Glenn Morris <rgm@gnu.org>
25963
25964 * config.in: Revert 2008-01-13 change: this is a generated file.
25965
259662008-01-13 Tom Tromey <tromey@redhat.com>
25967
25968 * lisp.h: Fix typo.
25969
259702008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
25971
25972 * m/sequent-ptx.h:
25973 * m/sequent.h:
25974 * s/ptx.h:
25975 * s/ptx4-2.h:
25976 * s/ptx4.h: Remove files for systems no longer supported.
25977
25978 * callproc.c (Fcall_process): Fix previous change.
25979
259802008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
25981
25982 * unexsunos4.c: Remove file, system not supported anymore.
25983
25984 * m/mips.h:
25985 * m/intel386.h:
25986 * callproc.c:
25987 * config.in:
25988 * ecrt0.c:
25989 * emacs.c:
25990 * fileio.c:
25991 * frame.c:
25992 * getpagesize.h:
25993 * keyboard.c:
25994 * lread.c:
25995 * process.c:
25996 * puresize.h:
25997 * sysdep.c:
25998 * systty.h:
25999 * syswait.h:
26000 * unexec.c:
26001 * xdisp.c:
26002 * alloc.c: Remove code containing references to symbols defined by
26003 unsupported systems.
26004
260052008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
26006
26007 * coding.c (detect_coding_mask): Fix previous change.
26008
260092008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
26010
26011 * coding.c (detect_coding_iso2022): New arg
26012 latin_extra_code_state. Allow Latin extra codes only
26013 when *latin_extra_code_state is nonzero.
26014 (detect_coding_mask): If there is a NULL byte, detect the encoding
26015 as UTF-16 or binary. If Latin extra codes exist, detect the
26016 encoding as ISO-2022 only when there's no other proper encoding is
26017 found.
26018
260192008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26020
26021 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
26022 #ifdef MAC_OS.
26023
260242008-01-08 Richard Stallman <rms@gnu.org>
26025
26026 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
26027
260282008-01-06 Nick Roberts <nickrob@snap.net.nz>
26029
26030 * keyboard.c (parse_menu_item): Don't enclose key bindings on
26031 menu bar in parentheses.
26032
260332008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
26034
26035 * m/7300.h:
26036 * m/acorn.h:
26037 * m/alliant-2800.h:
26038 * m/alliant.h:
26039 * m/alliant1.h:
26040 * m/alliant4.h:
26041 * m/altos.h:
26042 * m/amdahl.h:
26043 * m/apollo.h:
26044 * m/att3b.h:
26045 * m/aviion-intel.h:
26046 * m/aviion.h:
26047 * m/celerity.h:
26048 * m/clipper.h:
26049 * m/cnvrgnt.h:
26050 * m/convex.h:
26051 * m/cydra5.h:
26052 * m/delta88k.h:
26053 * m/dpx2.h:
26054 * m/dual.h:
26055 * m/elxsi.h:
26056 * m/f301.h:
26057 * m/gould-np1.h:
26058 * m/gould.h:
26059 * m/i860.h:
26060 * m/ibmps2-aix.h:
26061 * m/ibmrt-aix.h:
26062 * m/ibmrt.h:
26063 * m/irist.h:
26064 * m/is386.h:
26065 * m/isi-ov.h:
26066 * m/mega68.h:
26067 * m/mg1.h:
26068 * m/news-r6.h:
26069 * m/news-risc.h:
26070 * m/news.h:
26071 * m/nh3000.h:
26072 * m/nh4000.h:
26073 * m/ns16000.h:
26074 * m/ns32000.h:
26075 * m/nu.h:
26076 * m/orion.h:
26077 * m/orion105.h:
26078 * m/paragon.h:
26079 * m/pfa50.h:
26080 * m/plexus.h:
26081 * m/pyramid.h:
26082 * m/pyrmips.h:
26083 * m/sh3el.h:
26084 * m/sps7.h:
26085 * m/sr2k.h:
26086 * m/stride.h:
26087 * m/sun1.h:
26088 * m/sun2.h:
26089 * m/sun3-68881.h:
26090 * m/sun3-fpa.h:
26091 * m/sun3-soft.h:
26092 * m/sun3.h:
26093 * m/sun386.h:
26094 * m/symmetry.h:
26095 * m/tad68k.h:
26096 * m/tahoe.h:
26097 * m/targon31.h:
26098 * m/tek4300.h:
26099 * m/tekxd88.h:
26100 * m/tower32.h:
26101 * m/tower32v3.h:
26102 * m/ustation.h:
26103 * m/wicat.h:
26104 * m/xps100.h:
26105 * s/cxux.h:
26106 * s/cxux7.h:
26107 * s/dgux.h:
26108 * s/dgux4.h:
26109 * s/dgux5-4-3.h:
26110 * s/dgux5-4r2.h:
26111 * s/esix.h:
26112 * s/esix5r4.h:
26113 * s/hiuxmpp.h:
26114 * s/hiuxwe2.h:
26115 * s/iris3-5.h:
26116 * s/iris3-6.h:
26117 * s/isc2-2.h:
26118 * s/isc3-0.h:
26119 * s/isc4-0.h:
26120 * s/isc4-1.h:
26121 * s/newsos5.h:
26122 * s/newsos6.h:
26123 * s/osf1.h:
26124 * s/osf5-0.h:
26125 * s/riscix1-1.h:
26126 * s/riscix12.h:
26127 * s/sco4.h:
26128 * s/sco5.h:
26129 * s/sunos4-0.h:
26130 * s/sunos4-1.h:
26131 * s/sunos413.h:
26132 * s/sunos4shr.h:
26133 * s/umax.h:
26134 * s/unipl5-2.h:
26135 * s/xenix.h:
26136 * cxux-crt0.s:
26137 * unexapollo.c:
26138 * unexconvex.c:
26139 * unexenix.c:
26140 * unexsni.c: Remove files for systems no longer supported.
26141
26142 * m/intel386.h: Remove references to unsupported systems.
26143
26144 * w32.c (get_emacs_configuration): Remove reference to i860.
26145
26146 * sysdep.c: Remove dead code.
26147
261482008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
26149
26150 * s/rtu.h:
26151 * m/masscomp.h: Remove files. Platform is obsolete.
26152
261532008-01-04 Michael Albinus <michael.albinus@gmx.de>
26154
26155 * dbusbind.c (Fdbus_method_return): New function.
26156 (xd_read_message): Add the serial number to the event.
26157 (Fdbus_register_method): Activate the function.
26158
261592008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
26160
26161 * keyboard.c (read_key_sequence): Fix typo.
26162
261632008-01-03 Michael Albinus <michael.albinus@gmx.de>
26164
26165 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
26166 (xd_signature, xd_append_arg): Handle element type detection for
26167 empty arrays.
26168 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
26169 SDATA () calls; this must be solved more general.
26170 (Fdbus_register_signal): Use SBYTES instead of strlen.
26171
261722008-01-03 Magnus Henoch <magnus@zemdatav>
26173
26174 * dbusbind.c (xd_append_arg): Use unsigned char instead of
26175 unsigned int for byte values (necessary for big-endian platform).
26176 (Fdbus_call_method): Handle the case of no returned arguments.
26177
261782007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
26179
26180 * dbusbind.c (xd_read_message): Use non-static input_event struct.
26181
261822007-12-31 Magnus Henoch <mange@freemail.hu>
26183
26184 * dbusbind.c (xd_signature): Signature of variant is just "v".
26185
261862007-12-30 Michael Albinus <michael.albinus@gmx.de>
26187
26188 * dbusbind.c: Fix several errors and compiler warnings.
26189 Reported by Tom Tromey <tromey@redhat.com>.
26190 (XD_ERROR, XD_DEBUG_MESSAGE)
26191 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
26192 (xd_append_arg): Part for basic D-Bus types rewritten.
26193 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
26194 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
26195 appropriate.
26196 (xd_read_message): Return Qnil. Don't signal an error; it is not
26197 useful during event reading.
26198 (Fdbus_register_signal): Signal an error if the check for
26199 FUNCTIONP fails.
26200 (Fdbus_register_method): New function. The implementation is not
26201 complete, the call of the function signals an error therefore.
26202 (Fdbus_unregister_object): New function, renamed from
26203 Fdbus_unregister_signal. The initial check signals an error, if
26204 the object is not well formed.
26205
262062007-12-30 Richard Stallman <rms@gnu.org>
26207
26208 * textprop.c (get_char_property_and_overlay):
26209 Signal error if POSITION is out of range in a buffer.
26210
262112007-12-29 Martin Rudalics <rudalics@gmx.at>
26212
26213 * w32fns.c (Fx_create_frame): Make copy of frame parameters
26214 because the original parameters are in pure storage now.
26215
262162007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26217
26218 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
26219
262202007-12-22 Eli Zaretskii <eliz@gnu.org>
26221
26222 * callint.c (syms_of_callint) <command-history>: Add reference to
26223 history-length in the doc string.
26224
262252007-12-17 Jason Rumney <jasonr@gnu.org>
26226
26227 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
26228 before passing as wParam.
26229
262302007-12-22 Michael Albinus <michael.albinus@gmx.de>
26231
26232 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
26233 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
26234 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
26235 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
26236 as number.
26237 (Fdbus_call_method): Fix docstring.
26238
262392007-12-21 Michael Albinus <michael.albinus@gmx.de>
26240
26241 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
26242 New macros.
26243 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
26244 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
26245 Simplify.
26246 (xd_signature): New function.
26247 (xd_append_arg): Compute also signatures. Major rewrite.
26248 (xd_retrieve_arg): Make debug messages friendly.
26249 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
26250 Check for signatures of arguments.
26251
262522007-12-19 Michael Albinus <michael.albinus@gmx.de>
26253
26254 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
26255 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
26256 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
26257 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
26258 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
26259 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
26260 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
26261 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
26262 (xd_retrieve_value): Remove. Functionality included in ...
26263 (xd_append_arg): New function.
26264 (Fdbus_call_method, Fdbus_send_signal): Apply it.
26265
262662007-12-16 Michael Albinus <michael.albinus@gmx.de>
26267
26268 * dbusbind.c (top): Include <stdio.h>.
26269 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
26270 dbus_message_new_method_call and dbus_message_new_signal.
26271 (Fdbus_register_signal): Rename unique_name to uname.
26272 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
26273 non-existing unique name. Fix typos in matching rule. Return an
26274 object which is useful in Fdbus_unregister_signal.
26275 (Fdbus_unregister_signal): Reimplementation, in order to remove
26276 only the corresponding entry.
26277 (Vdbus_registered_functions_table): Change the order of entries.
26278 Apply these changes in xd_read_message and Fdbus_register_signal.
26279
262802007-12-16 Andreas Schwab <schwab@suse.de>
26281
26282 * fileio.c (Finsert_file_contents): Fix overflow check to not
26283 depend on undefined integer overflow.
26284
262852007-12-14 Jason Rumney <jasonr@gnu.org>
26286
26287 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
26288 for characters above 127.
26289
262902007-12-13 Jason Rumney <jasonr@gnu.org>
26291
26292 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
26293 before dereferencing array.
26294 (lookup_vk_code): Remove zero comparison.
26295
262962007-12-14 Michael Albinus <michael.albinus@gmx.de>
26297
26298 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
26299 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
26300 Use `unsigned int' instead of `uint'.
26301 (xd_read_message, Fdbus_register_signal): Split expressions into
26302 multiple lines before operators "&&" and "||", according to the
26303 GNU Coding Standards.
26304
263052007-12-14 Eli Zaretskii <eliz@gnu.org>
26306
26307 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
26308
263092007-12-12 Juri Linkov <juri@jurta.org>
26310
26311 * buffer.c (Frename_buffer): In interactive spec replace
26312 `read-buffer' with `read-string' that uses `buffer-name-history'
26313 as history, and the current buffer's name as default.
26314
263152007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
26316
26317 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
26318 manipulating the backtrace manually.
26319 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
26320 (struct backtrace, backtrace_list): Remove.
26321 (command_loop_1): Remove dead var `no_direct'.
26322
26323 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
26324 preserve non-built-in buffer-local variables.
26325 (Fkill_all_local_variables): Don't re-create&re-set permanent
26326 buffer-local variables.
26327
263282007-12-09 Juri Linkov <juri@jurta.org>
26329
26330 * buffer.c (Frename_buffer): Change interactive spec from "s" to
26331 Lisp code that uses `read-buffer' with current buffer as default.
26332
263332007-12-08 Michael Albinus <michael.albinus@gmx.de>
26334
26335 * dbusbind.c (xd_read_message): Generate an event for every
26336 registered handler. There might be several handlers registered
26337 for the same signal.
26338 (Fdbus_register_signal): Don't overwrite a registration for the
26339 same signal. Add a new registration if handlers are different.
26340 (Vdbus_registered_functions_table): Rework doc string.
26341
263422007-12-07 Michael Albinus <michael.albinus@gmx.de>
26343
26344 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
26345 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
26346 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
26347 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
26348 Unify argument lists.
26349 (xd_read_message, Fdbus_register_signal): Reorder and extend event
26350 arguments and hash table keys. Use unique name for service.
26351 (Fdbus_unregister_signal): Remove checks.
26352 (Vdbus_registered_functions_table): Fix doc string.
26353
263542007-12-05 Magnus Henoch <mange@freemail.hu>
26355
26356 * process.c (make_process): Initialize pty_flag to 0.
26357
263582007-12-05 Jason Rumney <jasonr@gnu.org>
26359
26360 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
26361 specified XBMs.
26362
263632007-12-05 Richard Stallman <rms@gnu.org>
26364
26365 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
26366
263672007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26368
26369 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
26370 New variable.
26371 (mac_try_close_socket) [MAC_OSX]: New function.
26372 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
26373 Update cfsockets_for_select. Replace invalid CFRunLoop source.
26374
26375 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
26376 Use mac_try_close_socket.
26377
263782007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26379
26380 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
26381 reloc_base.
26382 (copy_dysymtab): Compute relocation base here.
26383 (rebase_reloc_address) [__ppc64__]: New function.
26384 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
26385 changed.
26386
263872007-12-05 Jason Rumney <jasonr@gnu.org>
26388
26389 * w32proc.c (sys_spawnve): Quote args with wildcards.
26390
263912007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26392
26393 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
26394 __objc_* sections.
26395 (unrelocate) [_LP64]: Set relocation base to address of data segment.
26396
263972007-12-05 Michael Albinus <michael.albinus@gmx.de>
26398
26399 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
26400 Move check for Vdbus_registered_functions_table to
26401 xd_read_queued_messages.
26402 (xd_read_queued_messages): Protect xd_read_message calls by
26403 internal_condition_case_1.
26404
264052007-12-04 Michael Albinus <michael.albinus@gmx.de>
26406
26407 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
26408 Qdbus_system_bus and Qdbus_session_bus, respectively.
26409 (Vdbus_intern_symbols): Remove.
26410 (Vdbus_registered_functions_table): New hash table.
26411 (XD_SYMBOL_INTERN_SYMBOL): Remove.
26412 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
26413 Rewrite in order to manage registered functions by hash table
26414 Vdbus_registered_functions_table.
26415
264162007-12-03 Jan Djärv <jan.h.d@swipnet.se>
26417
26418 * xterm.c: Update URL to Window Manager Specification in comment.
26419
264202007-12-02 Michael Albinus <michael.albinus@gmx.de>
26421
26422 * config.in (HAVE_DBUS): Add.
26423
26424 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
26425 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
26426 (obj): Add $(DBUS_OBJ).
26427 (LIBES): Add $(DBUS_LIBS).
26428 (dbusbind.o): New target.
26429
26430 * dbusbind.c: New file.
26431
26432 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
26433
26434 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
26435 (Qdbus_event): New Lisp symbol.
26436 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
26437 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
b97439ce 26438 (keys_of_keyboard): Define dbus-event.
aac0c6e3
MR
26439
26440 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
26441
264422007-12-01 Richard Stallman <rms@gnu.org>
26443
26444 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
26445
264462007-11-30 Jason Rumney <jasonr@gnu.org>
26447
26448 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
26449 (w32con_reset_terminal_modes): Clear screen buffer.
26450 (w32_face_attributes): Don't use color indexes that are out of range.
26451 Only reverse the default colors.
26452
26453 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
26454 WINDOWSNT.
26455
26456 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
26457
264582007-11-29 Jason Rumney <jasonr@gnu.org>
26459
26460 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
26461 (w32_face_attributes): Use Vtty_defined_color_alist to determine
26462 if the terminal colors are initialized.
26463 (unspecified_fg, unspecified_bg): Remove unused declarations.
26464
264652007-11-29 Andreas Schwab <schwab@suse.de>
26466
26467 * keyboard.c (apply_modifiers): Fix typo.
26468
264692007-11-29 Richard Stallman <rms@gnu.org>
26470
26471 * keymap.c (Fcurrent_local_map): Doc fix.
26472
264732007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
26474
26475 * s/gnu-kfreebsd.h: New file.
26476
264772007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
26478
26479 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
26480 Don't cast redundantly.
26481
26482 * keyboard.c (KEY_TO_CHAR): New macro.
26483 (parse_modifiers, apply_modifiers): Accept integer arguments.
26484 (read_key_sequence): Use them to unify the "shift->unshift" mapping
26485 for chars and symbol keys.
26486 After doing such remapping, apply function-key-map again.
26487
264882007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
26489
26490 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
26491 compiled anymore.
26492
264932007-11-26 Andreas Schwab <schwab@suse.de>
26494
26495 * process.c (list_processes_1): Fix indentation level of the
26496 command column.
26497
264982007-11-23 Andreas Schwab <schwab@suse.de>
26499
26500 * editfns.c (Fformat): Handle %c specially since it requires the
26501 argument to be of type int.
26502
265032007-11-23 Markus Triska <markus.triska@gmx.at>
26504
26505 * emacs.c (main): Call init_editfns before init_process, since
26506 init_process sets Vprocess_connection_type depending on OS release.
26507
265082007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
26509
26510 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
26511 (find_symbol_value): Use do_symval_forwarding.
26512
26513 * data.c (set_internal): Set the value in the `cons-cell' (for
26514 Buffer_Local_values) not only for frame-local variables.
26515
265162007-11-22 Andreas Schwab <schwab@suse.de>
26517
26518 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
26519 values to sprintf.
26520 * keymap.c (Fsingle_key_description): Likewise.
26521 * print.c (print_object): Likewise.
26522
265232007-11-22 Jan Djärv <jan.h.d@swipnet.se>
26524
26525 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
26526 file for image is nil.
26527
265282007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
26529
26530 * term.c: Include stdarg.h.
26531 (fatal): Implement using varargs.
26532 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
26533
265342007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
26535
26536 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
26537 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
26538 Update call to buffer_slot_type_mismatch.
26539 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
26540 (buffer_slot_type_mismatch): Update.
26541 * buffer.c (buffer_local_types): Remove.
26542 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
26543 (defvar_per_buffer): Set the type in the buffer_objfwd.
26544
265452007-11-21 Jason Rumney <jasonr@gnu.org>
26546
26547 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
26548 CreateFileMapping returns NULL on failure.
26549
265502007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
26551
26552 * search.c (Fset_match_data): Remove the `evaporate' feature.
26553 (unwind_set_match_data): Don't use the `evaporate' feature.
26554
265552007-11-21 Jason Rumney <jasonr@gnu.org>
26556
26557 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
26558
26559 * w32console.c (w32con_write_glyphs): Remove unused variables.
26560
265612007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
26562
26563 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
26564
26565 * s/darwin.h (MULTI_KBOARD): Remove.
26566
26567 * macfns.c (x_create_tip_frame, Fx_create_frame)
26568 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
26569
265702007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
26571
26572 * buffer.c (Fbuffer_local_value): Remove redundant test.
26573 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
26574 than in `current-buffer' to match the comment.
26575 Do the swap using swap_in_global_binding.
26576
26577 * data.c (store_symval_forwarding, set_internal):
26578 * eval.c (specbind): Remove dead code.
26579
26580 * coding.c (detect_coding, Fupdate_coding_systems_internal):
26581 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
26582 Since we do not want to see internal Lisp_*fwd objects here.
26583
265842007-11-18 Jan Djärv <jan.h.d@swipnet.se>
26585
26586 * sysdep.c (init_system_name): Use getaddrinfo if available.
26587
26588 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
26589 (x_scroll_bar_note_movement): start, end, with, height in struct
26590 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
26591
265922007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
26593
26594 * puresize.h (BASE_PURESIZE): Increase to 1190000.
26595
265962007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
26597
26598 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
26599 This undoes Richard's change of 14-Oct-2002.
26600
26601 * alloc.c (allocate_other_vector):
26602 * lisp.h (allocate_other_vector): Remove.
26603
26604 * window.c (struct save_window_data): Move non-lisp data to the end
26605 and make it `int' rather than Lisp_Object.
26606 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
26607 Done wrap/unwrap integer values.
26608 (Fset_window_configuration, compare_window_configurations):
26609 Update use of fields to their new types.
26610
26611 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
26612 Turn integer fields into `int'. Merge x_window_low and x_window_high.
26613 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
26614 (SET_SCROLL_BAR_X_WINDOW): Remove.
26615 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
26616 Access the new x_window field directly.
26617 * xterm.c (x_scroll_bar_create): Use a pseudovector.
26618 Don't wrap/unwrap integers into Lisp_Objects.
26619 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
26620 (x_scroll_bar_report_motion):
26621 Don't wrap/unwrap integers into Lisp_Objects.
26622 (x_term_init): Use SDATA.
26623 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
26624 (x_scroll_bar_set_handle, x_scroll_bar_remove)
26625 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
26626 (x_scroll_bar_report_motion, x_scroll_bar_clear):
26627 * xfns.c (x_set_background_color):
26628 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
26629 Access the new x_window field directly.
26630
26631 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
26632 (allocate_pseudovector): Make non-static.
26633
26634 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
26635 (allocate_pseudovector): Declare.
26636 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
26637
266382007-11-15 Andreas Schwab <schwab@suse.de>
26639
26640 * editfns.c (Fformat): Correctly format EMACS_INT values.
26641 Also take precision into account when formatting an integer.
26642
26643 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
26644
266452007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
26646
26647 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
26648 (syms_of_keyboard): Defsubr it.
26649
26650 * data.c (swap_in_global_binding): Fix longstanding bug where
26651 store_symval_forwarding was not called with the right second argument,
26652 thus causing objfwd-ing from being dropped.
26653
266542007-11-14 Juanma Barranquero <lekktu@gmail.com>
26655
26656 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
26657 (Fx_display_pixel_height, Fx_display_planes)
26658 (Fx_display_color_cells, Fx_server_max_request_size)
26659 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
26660 (Fx_display_visual_class, Fx_display_save_under):
26661 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
26662 (Fx_display_pixel_height, Fx_display_planes)
26663 (Fx_display_color_cells, Fx_server_max_request_size)
26664 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
26665 (Fx_display_mm_height, Fx_display_mm_width)
26666 (Fx_display_backing_store, Fx_display_visual_class)
26667 (Fw32_select_font, Fx_display_save_under):
26668 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
26669 (Fx_display_pixel_height, Fx_display_planes)
26670 (Fx_display_color_cells, Fx_server_max_request_size)
26671 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
26672 (Fx_display_save_under): Fix typos in docstrings.
26673
266742007-11-14 Juanma Barranquero <lekktu@gmail.com>
26675
26676 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
26677 corresponding to deleted entries; they are an implementation detail.
26678 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
26679 Remove variables.
26680 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
26681 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
26682 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
26683 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
26684 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
26685 (Fw32_define_rgb_color, Fw32_load_color_file)
26686 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
26687 Fix typos in docstrings.
26688 (Fx_server_version): Reflow docstring.
26689 (Fw32_shell_execute): Doc fixes.
26690
266912007-11-13 Juanma Barranquero <lekktu@gmail.com>
26692
26693 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
26694 if w32_parse_hot_key returned nil.
26695
266962007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
26697
26698 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
26699
267002007-11-09 Jason Rumney <jasonr@gnu.org>
d6c952f8 26701
aac0c6e3
MR
26702 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
26703
26704 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
26705
26706 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
26707 Remove W32_SCROLL_BAR_CLICK_EVENT.
26708
26709 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
26710 Add MULTIMEDIA_KEY_EVENT.
26711
26712 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
26713 (lispy_multimedia_keys) [WINDOWSNT]: New array.
26714 (make_lispy_event) [WINDOWSNT]: Use it to translate
26715 MULTIMEDIA_KEY_EVENT.
26716
26717 * w32term.h (WM_APPCOMMAND): Define if not already.
26718 (GET_APPCOMMAND_LPARAM): Likewise.
26719
26720 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
26721 WM_APPCOMMAND.
26722
26723 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
26724 (syms_of_w32fns): Export and initialize it.
26725 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
26726
267272007-11-09 Chong Yidong <cyd@stupidchicken.com>
26728
26729 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
26730 twice.
26731
26732 * xdisp.c (handle_face_prop): Fix last change.
26733
267342007-11-09 Richard Stallman <rms@gnu.org>
26735
26736 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
26737 not just for after-strings and before-strings.
26738 Call face_for_overlay_string and pass the overlay to it.
26739 (handle_display_prop): Determine whether property came from an overlay.
26740 Pass OVERLAY arg to handle_single_display_spec.
26741 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
26742 (load_overlay_strings): Fill in it->string_overlays.
26743 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
26744
26745 * xfaces.c (face_for_overlay_string): Function renamed from
26746 face_at_buffer_position_no_overlays, and add arg OVERLAY.
26747
26748 * dispextern.h (struct it): New elt string_overlays.
26749 New elt from_overlay, also in stack.
26750 Rearrange a few elements.
26751 (face_for_overlay_string): Decl renamed from
26752 face_at_buffer_position_no_overlays, and add argument.
26753
267542007-11-09 Richard Stallman <rms@gnu.org>
26755
26756 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
26757 to get the base face for an overlay string.
26758
26759 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
26760
26761 * xfaces.c (face_at_buffer_position_no_overlays): New function.
26762
26763 * xdisp.c (handle_stop): Move some code out of loop.
26764
267652007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26766
26767 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
26768 Fix conversion from Lisp object to ATSUFontID.
26769
267702007-11-09 Jason Rumney <jasonr@gnu.org>
26771
26772 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
26773
267742007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26775
26776 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
26777 Don't assume regions are aligned to page boundary.
26778 (print_load_command_name): Add LC_UUID if defined.
26779
267802007-11-09 Richard Stallman <rms@gnu.org>
26781
26782 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
26783
267842007-11-07 Jason Rumney <jasonr@gnu.org>
26785
26786 * s/windows95.h: Remove.
26787
267882007-11-06 Jan Djärv <jan.h.d@swipnet.se>
26789
26790 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
26791 abort with a message on unhandled store_type values.
26792
267932007-11-01 Jan Djärv <jan.h.d@swipnet.se>
26794
26795 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
26796 Remove HAVE_X11R5 and HAVE_X11R4.
26797
267982007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
26799
26800 * Makefile.in: Remove references to sunfns.c and sunfns.o.
26801
268022007-11-01 Johan Bockgård <bojohan@gnu.org>
26803
26804 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
26805 Don't set s->stippled_p here, since it has already been set by
26806 x_set_glyph_string_gc from x_draw_glyph_string.
26807
268082007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
26809
26810 * sunfns.c: Remove file.
26811
26812 * m/sun386.h:
26813 * m/sun2.h:
26814 * m/sparc.h: Remove Sun windows code.
26815
268162007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
26817
26818 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
26819 (init_keyboard): Set current_kboard's window-system to nil.
26820 (tty_read_avail_input): Typo.
26821 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
26822
268232007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
26824
26825 * s/usg5-4.h:
26826 * s/usg5-3.h:
26827 * s/ptx.h:
26828 * m/is386.h:
26829 * m/ibmps2-aix.h:
26830 * Makefile.in: Remove all mentions of X10.
26831
26832 * dispnew.c (syms_of_display): Don't mention version 10.
26833
268342007-10-28 Juanma Barranquero <lekktu@gmail.com>
26835
26836 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
26837 ($(BLD)/abbrev.$(O)): Remove.
26838
268392007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
26840
26841 Rewrite abbrev.c in Elisp.
26842 * image.c (Qcount): Don't declare as extern.
26843 (syms_of_image): Initialize and staticpro `Qcount'.
26844 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
26845 * emacs.c (main): Don't call syms_of_abbrev.
26846 * Makefile.in (obj): Remove abbrev.o.
26847 (abbrev.o): Remove.
26848 * abbrev.c: Remove.
26849
268502007-10-26 Martin Rudalics <rudalics@gmx.at>
26851
26852 * window.c (window_min_size_2): Don't count header-line.
26853
268542007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
26855
26856 * frame.h (struct frame): Move all bit fields after the first bit
26857 field to take advantage of the available space. Group all the
26858 chars together to reduce wasted space due to padding.
26859
268602007-10-26 Juanma Barranquero <lekktu@gmail.com>
26861
26862 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
26863
26864 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
26865 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
26866 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
26867 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
26868 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
26869 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
26870 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
26871 (last_marked, mark_object_loop_halt): Make static.
26872
26873 * frame.c (syms_of_frame) <delete-frame-functions>:
26874 Fix typo in docstring.
26875
268762007-10-25 Juanma Barranquero <lekktu@gmail.com>
26877
26878 * w32.c (init_environment): Fix tiny memory leak.
26879 (w32_get_resource): Remove unused variable `ok'.
26880
268812007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
26882
26883 Make `window-system' into a keyboard-local variable (rather than
26884 frame-local as done originally by multi-tty).
26885
26886 * keyboard.h (struct kboard): Add Vwindow_system.
26887 * keyboard.c (init_kboard): Set a default for Vwindow_system.
26888 (mark_kboards): Mark Vwindow_system.
26889
26890 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
26891 (init_display): Don't set the obsolete `window-system' frame-param.
26892
26893 * xterm.c (x_term_init):
26894 * w32term.c (w32_create_terminal):
26895 * term.c (init_tty): Set Vwindow_system.
26896 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
26897 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
26898
26899 * xfns.c (Fx_create_frame, x_create_tip_frame):
26900 * w32fns.c (Fx_create_frame, x_create_tip_frame):
26901 * macfns.c (Fx_create_frame):
26902 Don't set the obsolete `window-system' frame-param.
26903
26904 * frame.h (Qwindow_system): Remove.
26905 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
26906 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
26907
269082007-10-24 Richard Stallman <rms@gnu.org>
26909
26910 * frame.c (x_figure_window_size): For fullscreen case,
26911 set USPosition | PPosition without clobbering rest of window_prompting.
26912
26913 * keyboard.c (Fcurrent_idle_time): Doc fix.
26914
26915 * print.c (Fwith_output_to_temp_buffer): Doc fix.
26916
269172007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
26918
26919 * process.c (unwind_request_sigio): Only define if __ultrix__.
26920
26921 * callproc.c (child_setup): Remove spurious *.
26922
26923 * lisp.h (Fget_text_property): Declare.
26924 (have_menus_p): Declare it here rather than in sys-dep header files.
26925 * macterm.h (have_menus_p):
26926 * msdos.h (have_menus_p):
26927 * xterm.h (have_menus_p): Remove.
26928
26929 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
26930 (Fmake_variable_frame_local): Just check the variable's const-ness
26931 rather than checking nil or t.
26932
269332007-10-22 Jason Rumney <jasonr@gnu.org>
26934
26935 * w32fns.c: Include math.h.
26936 (w32_abort): Declaration moved to nt/config.nt.
26937
26938 * s/ms-w32.h (HAVE_STDLIB_H): Define.
26939 (abort): Redefinition moved to nt/config.nt.
26940
26941 * m/windowsnt.h: Remove.
26942
269432007-10-22 Juanma Barranquero <lekktu@gmail.com>
26944
26945 * emacs.c (Fdump_emacs): Fix typo in message.
26946 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
26947 <installation-directory>: Reflow docstring.
26948
269492007-10-22 Juri Linkov <juri@jurta.org>
26950
26951 * minibuf.c: Allow minibuffer default to be a list of default values.
26952 With empty input use the first element of this list as returned default.
26953 (string_to_object)
26954 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
26955 (read_minibuf): If defalt is cons, set histstring to its car.
26956 (Fread_string): If default_value is cons, set val to its car.
26957 (Fread_buffer): If def is cons, use its car.
26958 (Fcompleting_read): If defalt is cons, set val to its car.
26959
269602007-10-21 Michael Albinus <michael.albinus@gmx.de>
26961
26962 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
26963
269642007-10-20 Juanma Barranquero <lekktu@gmail.com>
26965
26966 * doc.c (Fdocumentation): Check for advice in all cases.
26967
269682007-10-19 Chong Yidong <cyd@stupidchicken.com>
26969
26970 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
26971
269722007-10-19 Richard Stallman <rms@gnu.org>
26973
26974 * doc.c (Fdocumentation): Check for and handle an advised function.
26975
269762007-10-19 Juanma Barranquero <lekktu@gmail.com>
26977
26978 * process.c (Fset_process_filter): Doc fix.
26979
269802007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
26981
26982 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
26983 which caused key-translation-map to applied repeatedly (thus breaking
26984 double-mode).
26985
269862007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
26987
26988 * xselect.c (x_own_selection, x_handle_selection_clear)
26989 (x_clear_frame_selections):
26990 * w32menu.c (list_of_panes, list_of_items):
26991 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
26992 * textprop.c (validate_plist, interval_has_all_properties)
26993 (interval_has_some_properties, interval_has_some_properties_list)
26994 (add_properties, text_property_list):
26995 * process.c (Fget_buffer_process, list_processes_1, status_notify):
26996 * minibuf.c (Fassoc_string):
26997 * macselect.c (x_own_selection, x_clear_frame_selections)
26998 (Fx_disown_selection_internal):
26999 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
27000 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
27001
270022007-10-17 Chong Yidong <cyd@stupidchicken.com>
27003
27004 * process.c: Link to libs for calling res_init() if available.
27005 (Fmake_network_process): Call res_init() before getaddrinfo or
27006 gethostbyname, if possible.
27007
270082007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
27009
27010 * lread.c (read1): Set pvectype for char_tables.
27011
27012 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
27013 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
27014 Add type checks.
27015 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
27016
27017 * alloc.c (free_misc): Use XMISCTYPE.
27018 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
27019
270202007-10-17 Glenn Morris <rgm@gnu.org>
27021
27022 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
27023 (syms_of_minibuf): Add Qcompletion_ignore_case.
27024 * dired.c (Qcompletion_ignore_case): Change to external.
27025 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
27026 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
27027 (Fread_file_name): Use it rather than intern'ing.
27028
27029 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
27030 (Fread_coding_system): Ignore case of user input.
27031
270322007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27033
27034 * xdisp.c (handle_display_prop): Ignore display specs after
27035 replacing one when string text is being replaced.
27036 (handle_single_display_spec): Pretend as if characters with display
27037 property haven't been consumed only when buffer text is being replaced.
27038
270392007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
27040
27041 * xfns.c (Fx_create_frame, Fx_display_list):
27042 * window.c (window_fixed_size_p, enlarge_window)
27043 (shrink_window_lowest_first):
27044 * macterm.c (init_font_name_table):
27045 * macfns.c (Fx_create_frame, Fx_display_list):
27046 * lread.c (close_load_descs):
27047 * keyboard.c (read_char_x_menu_prompt):
27048 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
27049 * coding.c (code_convert_region_unwind): Test the type of an object
27050 rather than just !NILP before extracting data from it.
27051
27052 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
27053
27054 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
27055 (XMISCANY): New macro.
27056 (XMISCTYPE): Use it.
27057 (struct Lisp_Misc_Any): New type.
27058 (union Lisp_Misc): Use it.
27059 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
27060 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
27061 (find_symbol_value, set_internal, default_value, Fset_default)
27062 (Fmake_variable_buffer_local, Fmake_local_variable)
27063 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
27064 (Flocal_variable_if_set_p, Fvariable_binding_locus):
27065 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
27066 * alloc.c (allocate_buffer): Set the size and tag.
27067 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
27068 Use XMISCANY.
27069 (die): Follow the GNU convention for error messages.
27070 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
27071 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
27072 tag any more.
27073 (set_buffer_internal_1):
27074 * frame.c (store_frame_param):
27075 * eval.c (specbind):
27076 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
27077
27078 * doc.c (Fsnarf_documentation): Simplify.
27079
270802007-10-14 Juanma Barranquero <lekktu@gmail.com>
27081
27082 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
27083 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
27084
270852007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
27086
27087 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
27088
270892007-10-14 Juanma Barranquero <lekktu@gmail.com>
27090
27091 * eval.c (do_autoload): Don't save autoloads.
27092
27093 * data.c (Ffset): Save autoload of the function being set.
27094
270952007-10-07 John Paul Wallington <jpw@pobox.com>
27096
27097 * xfns.c (x_create_tip_frame): Set the `display-type' frame
27098 parameter before setting up faces.
27099
271002007-10-13 Eli Zaretskii <eliz@gnu.org>
27101
27102 * ccl.c (Fregister_code_conversion_map):
27103 * keyboard.c (append_tool_bar_item): Reformat last change.
27104
27105 * lisp.h (eabs): Rename from `abs'. All callers changed.
27106
271072007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
27108
27109 * buffer.c (add_overlay_mod_hooklist):
27110 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
27111 * fontset.c (make_fontset):
27112 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
27113 (append_tool_bar_item):
27114 * macmenu.c (grow_menu_items):
27115 * w32menu.c (grow_menu_items):
27116 * xmenu.c (grow_menu_items): Use larger_vector.
27117
271182007-10-13 Eli Zaretskii <eliz@gnu.org>
27119
27120 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
27121 selected frame'' on MSDOS).
27122
271232007-10-12 Martin Rudalics <rudalics@gmx.at>
27124
27125 * frame.c (Qexplicit_name): New variable.
27126 (x_report_frame_params): Report it in parameter alist.
27127 (syms_of_frame): Intern and staticpro it.
27128
271292007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
27130
27131 * macfns.c (x_create_tip_frame): Set terminal for frame.
27132
271332007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
27134
27135 * frame.c (Qenvironment): Remove.
27136 (syms_of_frame) <Qenvironment>: Don't initialize.
27137 (Fdelete_frame): Don't treat the `environment' param specially.
27138 * frame.h (Qenvironment): Don't declare.
27139 * callproc.c (set_initial_environment): Don't set unused frame param.
27140
27141 * frame.c (Fframe_with_environment): Remove.
27142 (syms_of_frame) <Sframe_with_environment>: Don't declare.
27143
27144 * lisp.h (Fframe_with_environment): Don't declare.
27145
271462007-10-10 Juanma Barranquero <lekktu@gmail.com>
27147
27148 * indent.c (indent_tabs_mode, last_known_column)
27149 (last_known_column_modified): Make static.
27150 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
27151
271522007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
27153
27154 * puresize.h (BASE_PURESIZE): Increase to 1170000.
27155
271562007-10-09 Jason Rumney <jasonr@gnu.org>
27157
27158 * w32term.c (x_set_window_size): Disable code that attempts to tell
27159 Lisp code about a size change before it actually happens.
27160
271612007-10-09 Richard Stallman <rms@gnu.org>
27162
27163 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
27164 return HANDLED_RETURN.
27165
271662007-10-08 Martin Rudalics <rudalics@gmx.at>
27167
27168 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
27169 when there's an unread command event.
27170
27171 * frame.c (focus_follows_mouse): Move here from frame.el to allow
27172 window autoselection act appropriately when leaving selected frame.
27173 (syms_of_frame): Initialize focus_follows_mouse.
27174 * frame.h (focus_follows_mouse): Extern it.
27175 * macterm.c (XTread_socket): When focus_follows_mouse is nil
27176 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
27177 * msdos.c (dos_rawgetc): Likewise.
27178 * w32term.c (w32_read_socket): Likewise.
27179 * xterm.c (handle_one_xevent): Likewise.
27180 * xdisp.c (syms_of_xdisp): In doc-string of
27181 mouse-autoselect-window mention focus-follows-mouse.
27182
271832007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27184
27185 * macterm.c (mac_load_query_font): Fix missing return value.
27186 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
27187 Add BLOCK_INPUT.
27188
271892007-10-08 Richard Stallman <rms@gnu.org>
27190
27191 * xdisp.c (get_window_cursor_type): Implement documented behavior
27192 for cursor-in-non-selected-windows = t.
27193
271942007-10-08 Jason Rumney <jasonr@gnu.org>
27195
27196 * w32.c (w32_get_resource): Always close registry keys.
27197
271982007-10-08 Jason Rumney <jasonr@gnu.org>
27199
27200 * makefile.w32-in (LIBS): Add COMCTL32.
27201
27202 * w32fns.c (globals_of_w32fns): Init common controls.
27203
272042007-10-08 Richard Stallman <rms@gnu.org>
27205
27206 * image.c (our_memory_buffer): Rename from omfib_buffer.
27207
272082007-10-08 Richard Stallman <rms@gnu.org>
27209
27210 * buffer.c (Foverlays_at): Doc fix.
27211
272122007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
27213
27214 * fns.c (Fplist_put): Preserve uneven tail data.
27215
272162007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
27217
27218 * termhooks.h (enum event_kind): Remove trailing comma.
27219
27220 * frame.h (enum): Remove trailing comma.
27221
272222007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
27223
27224 * w32proc.c (delete_child): Don't terminate threads of zombies.
27225
272262007-10-08 Martin Rudalics <rudalics@gmx.at>
27227
27228 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
27229
27230 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
27231 last-repeatable-command.
27232 (init_kboard): Initialize Vlast_repeatable_command.
27233 (command_loop_1): Set it to real_this_command unless that was
27234 bound to an input event.
27235 (mark_kboards): Mark it.
27236
272372007-10-08 Richard Stallman <rms@gnu.org>
27238
27239 * eval.c (condition-case): Doc fix.
27240
272412007-10-08 Masatake YAMATO <jet@gyve.org>
27242
27243 * xfaces.c (tty_supports_face_attributes_p): Fix code
27244 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
27245 was copied and not edited.
27246
272472007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
27248
27249 Add new `input-decode-map' keymap and use it for terminal
27250 escape sequences.
27251 * keyboard.h (struct kboard): Add Vinput_decode_map.
27252 Remove Vlocal_key_translation_map.
27253 * keyboard.c (read_key_sequence): Add support for input-decode-map.
27254 (init_kboard): Init input-decode-map.
27255 Replace local-key-translation-map back with key-translation-map.
27256 (syms_of_keyboard): Declare input-decode-map.
27257 Remove local-key-translation-map. Update docstrings.
27258 (mark_kboards): Mark Vinput_decode_map.
27259 Don't mark Vlocal_key_translation_map.
27260 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
27261 Replace local-key-translation-map back with key-translation-map.
27262 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
27263 Bind in input-decode-map rather than function-key-map.
27264
27265 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
27266 This was made redundant by the previous introduction of XSETPVECTYPE.
27267
272682007-10-09 Richard Stallman <rms@gnu.org>
27269
27270 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
27271
272722007-09-29 Richard Stallman <rms@gnu.org>
27273
27274 * eval.c (internal_condition_case_2, internal_condition_case_1)
27275 (internal_condition_case): Reenable abort if x_catching_errors ()
27276 to see if that really happens and why.
27277
272782007-10-06 Andreas Schwab <schwab@suse.de>
27279
27280 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
27281
272822007-10-04 Juanma Barranquero <lekktu@gmail.com>
27283
27284 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
27285
272862007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
27287
27288 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
27289
272902007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
27291
27292 * window.h (struct window):
27293 * window.c (struct save_window_data, struct saved_window):
27294 * termhooks.h (struct terminal):
27295 * process.h (struct Lisp_Process):
27296 * frame.h (struct frame):
27297 * buffer.h (struct buffer):
27298 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
27299 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
27300 The size field of (pseudo)vectors is now unsigned.
27301 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
27302
27303 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
27304 Turn `count' into an integer.
27305
27306 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
27307 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
27308 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
27309 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
27310 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
27311
27312 * alloc.c (allocate_pseudovector): New fun.
27313 (ALLOCATE_PSEUDOVECTOR): New macro.
27314 (allocate_window, allocate_terminal, allocate_frame)
27315 (allocate_process): Use it.
27316 (mark_vectorlike): New function.
27317 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
27318 (mark_terminals): Use it.
27319 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
27320 (Fmake_byte_code): Use XSETPVECTYPE.
27321
27322 * frame.c (Fframe_parameters): Minor simplification.
27323
27324 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
27325
27326 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
27327
27328 * buffer.c (Fget_buffer_create, init_buffer_once):
27329 * lread.c (defsubr):
27330 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
27331
27332 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
27333 defined differently in the m/*.h files.
27334 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
27335 (XSETPVECTYPE): New macro.
27336 (XSETPSEUDOVECTOR): Use it.
27337
27338 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
27339 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
27340
27341 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
27342 * lread.c (defvar_per_buffer):
27343 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
27344
27345 * window.c (candidate_window_p): Only consider as visible frames that
27346 are on the same terminal.
27347
27348 * m/ibms390x.h (MARKBIT): Remove unused macro.
27349
273502007-10-01 Juanma Barranquero <lekktu@gmail.com>
27351
27352 * lread.c (Fload): Fix typo in docstring.
27353
273542007-10-01 Michaël Cadilhac <michael@cadilhac.name>
27355
27356 * floatfns.c (Fexpt): Manually check for overflows, so that a power
27357 of a non-zero value can't yield zero.
27358
273592007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
27360
27361 * term.c (term_clear_mouse_face, term_mouse_highlight)
27362 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
27363
27364 * print.c (safe_debug_print): Use XHASH.
27365
27366 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
27367 Lisp elements such as tags.
27368 (XHASH): New macro.
27369 (EQ): Use it.
27370 (SREF, SSET, STRING_COPYIN): Use SDATA.
27371 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
27372
27373 * alloc.c (mark_terminal): Remove left-over declaration.
27374 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
27375 (allocate_vectorlike): Remove type argument. Adjust callers.
27376 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
27377 Only handle the one remaining MEM_TYPE_VECTORLIKE.
27378
27379 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
27380 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
27381 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
27382 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
27383 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
27384 Use them.
27385
27386 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
27387 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
27388 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
27389
273902007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
27391
27392 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
27393 loaded by default.
27394
273952007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
27396
27397 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
27398 on this tty.
27399 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
27400
27401 * term.c (mouse_face_window): Rename from Qmouse_face_window.
27402 Update all users.
27403 (handle_one_term_event): Use Gpm_DrawPointer.
27404 (Fgpm_mouse_start): Rename from Fterm_open_connection.
27405 Signal errors instead of returning nil. Always return nil.
27406 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
27407 Make it a noop if gpm-mouse was not activated.
27408 (syms_of_term): Update names.
27409
274102007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
27411
27412 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
27413 (init_sys_modes): Check that gpm_tty is the current tty.
27414
27415 * alloc.c (allocate_terminal): Set the vector size to only count the
27416 lisp fields. Initialize those to nil.
27417 (mark_object): Don't treat terminals specially.
27418 (mark_terminal): Remove.
27419 (mark_terminals): Use mark_object instead.
27420
27421 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
27422 the GC to the beginning.
27423
27424 * indent.h:
27425 * indent.c: Use EMACS_INT for ints coming from Elisp data.
27426
27427 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
27428
274292007-09-25 Jason Rumney <jasonr@gnu.org>
27430
27431 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
27432
27433 * w32console.c (create_w32cons_output): Remove.
27434
27435 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
27436
27437 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
27438 (reset_sys_modes): Use reset_terminal_modes_hook.
27439
274402007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
27441
27442 * eval.c (do_autoload): Don't output any message.
27443
274442007-09-24 Juri Linkov <juri@jurta.org>
27445
27446 * emacs.c (standard_args): Change priority of "--no-splash"
27447 from 40 to 3. Add "--no-desktop" with the same priority.
27448
274492007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
27450
27451 * alloc.c (gc_sweep): Check cons cell mark bits word by word
27452 and optimize the case where they are all 1.
27453
274542007-09-23 Johannes Weiner <hannes@saeurebad.de>
27455
27456 * lisp.h (abs): Define if not defined.
27457 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
27458 Don't define `abs', since it's defined in lisp.h.
27459
274602007-09-22 Eli Zaretskii <eliz@gnu.org>
27461
27462 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
27463 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
27464 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
27465 (init_tty): Use DEV_TTY instead of "/dev/tty".
27466 [WINDOWSNT]: No need to protect from NAME arg being null.
27467
274682007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
27469
27470 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
27471 up the tty state.
27472
274732007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
27474
27475 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
27476 (gpm_tty): Change its type.
27477 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
27478 (gpm_tty): Change its type and initialize it.
27479 (Fterm_open_connection): Check the frame is indeed a tty.
27480 Use the new gpm_tty.
27481 (Fterm_close_connection): Use the new gpm_tty.
27482 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
27483 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
27484
274852007-09-21 Juanma Barranquero <lekktu@gmail.com>
27486
27487 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
27488 underline_color, to draw strike-through.
27489
274902007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
27491
27492 * lisp.h (allocate_terminal): Declare.
27493
27494 * window.c (candidate_window_p): Consider frames that are being placed
27495 by the user as somewhere between visible and iconified.
27496 (window_loop): Prefer windows on the current frame.
27497 (Fselect_window): Move the use of select-frame to the beginning so we
27498 can just delegate all the work (it'll call us back anyway).
27499
27500 * frame.c (Qdisplay_environment_variable):
27501 * frame.h (Qdisplay_environment_variable): Delete.
27502
27503 * .gdbinit (xbacktrace): Print the arg's address rather than the value
27504 of the first arg, since that value may be a union.
27505
27506 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
27507 parameter rather than Qdisplay_environment_variable. If all else
27508 fails, look for DISPLAY in initial-environment.
27509
275102007-09-21 Glenn Morris <rgm@gnu.org>
27511
27512 * Makefile.in (emacstool): Remove target.
27513 (lisp, shortlisp): Remove termdev.elc.
27514
275152007-09-21 Markus Triska <markus.triska@gmx.at>
27516
27517 * xterm.c (x_delete_display): Compile session management conditionally.
27518
275192007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
27520
27521 * callproc.c (getenv_internal_1): New function.
27522 (getenv_internal): Use it.
27523 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
27524
27525 * terminal.c (get_terminal): Don't accept ints to represent terminals.
27526 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
27527 (Fset_terminal_parameter): Work with dead terminals as well.
27528 (Fmodify_terminal_parameters): Remove.
27529
27530 * terminal.c (get_terminal): Handle terminals.
27531 Make sure the terminal returned is live.
27532 (create_terminal): Use allocate_terminal.
27533 (mark_terminals): Move to alloc.c.
27534 (delete_terminal): Use terminal->name as liveness status.
27535 NULL out fields after freeing their contents.
27536 Don't deallocate the object.
27537 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
27538 rather than an int.
27539 (Fterminal_live_p): Accept non-integer arguments.
27540 (Fterminal_list): Return terminal objects rather than an ints.
27541
27542 * alloc.c (enum mem_type): New member for `terminal' objects.
27543 (allocate_terminal): New function.
27544 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
27545 Handle terminals.
27546 (mark_terminal): New fun.
27547 (mark_terminals): Move from terminal.c.
27548
27549 * term.c (get_tty_terminal): Don't treat output_initial specially.
27550 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
27551 (delete_tty): Use terminal->name as liveness status.
27552
27553 * termhooks.h (struct terminal): Make it into a pseudovector.
27554 Remove `deleted' replaced by checking `name's nullness.
27555
27556 * print.c (print_object): Handle terminals.
27557
27558 * lisp.h (enum pvec_type): New `terminal' pseudovector.
27559 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
27560
27561 * frame.c (make_terminal_frame):
27562 * keyboard.c (tty_read_avail_input):
27563 * w32term.c (x_delete_terminal):
27564 * xfns.c (Fx_create_frame, x_create_tip_frame):
27565 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
27566
275672007-09-20 Glenn Morris <rgm@gnu.org>
27568
27569 * process.c (Fmake_network_process): Doc fix.
27570
275712007-09-19 Jason Rumney <jasonr@gnu.org>
27572
27573 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
27574
275752007-09-19 Michaël Cadilhac <michael@cadilhac.name>
27576
27577 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
27578 Fix a C warning regarding variable constness.
27579
27580 * xterm.c (handle_one_xevent): Fix a C warning.
27581
275822007-09-18 Jason Rumney <jasonr@gnu.org>
27583
27584 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
27585
275862007-09-17 Jan Djärv <jan.h.d@swipnet.se>
27587
27588 * gtkutil.c (gdpy_def): New variable.
27589 (xg_initialize): Initialize gdpy_def.
27590 (xg_display_close): If no other display exists, set gdpy_def to a
27591 new connection.
27592
275932007-09-16 Jan Djärv <jan.h.d@swipnet.se>
27594
27595 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
27596 when we have no file name for the icon.
27597 (xg_tool_bar_expose_callback): Remove.
27598 (xg_create_tool_bar): Don't connect expose signal to
27599 xg_tool_bar_expose_callback.
27600 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
27601
276022007-09-16 Andreas Schwab <schwab@suse.de>
27603
27604 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
27605 values instead of zapping them.
27606
276072007-09-14 Glenn Morris <rgm@gnu.org>
27608
27609 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
27610 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
27611 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
27612 scope and rename to omfib_buffer for clarity.
27613 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
27614
276152007-09-14 Kenichi Handa <handa@m17n.org>
27616
27617 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
27618
276192007-09-13 Jason Rumney <jasonr@gnu.org>
27620
27621 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
27622
27623 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
27624
27625 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
27626 (mac_term_init): Call here instead, passing rif.
27627
276282007-09-13 Glenn Morris <rgm@gnu.org>
27629
27630 * s/hpux.h: No longer define `static' as nothing.
27631
276322007-09-13 Johan Bockgård <bojohan@gnu.org>
27633
27634 * callint.c (Fcall_interactively): Remove unused var `fun'.
27635
276362007-09-12 Romain Francoise <romain@orebokech.com>
27637
27638 * window.c (prefer_window_split_horizontally, display_buffer):
27639 Revert 2007-09-08 change.
27640
276412007-09-12 Glenn Morris <rgm@gnu.org>
27642
27643 * alloca.c: Remove file.
27644 * Makefile.in (alloca): Do not undef.
27645 (allocaobj, alloca.o): Remove.
27646 (otherobj): Remove allocaobj.
27647 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
27648 * regex.c (C_ALLOCA): Remove all references and code that was only
27649 used when this was defined.
27650 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
27651 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
27652 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
27653
27654 * Makefile.in (SOURCES, unlock, relock): Delete.
27655
27656 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
27657 (menu_grab_callback): All uses changed.
27658
27659 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
27660 (x_reply_selection_request): All uses changed.
27661
276622007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
27663
27664 * lread.c (load_warn_old_style_backquotes): Change message to look
27665 better when it appears in the middle of byte-compiler messages.
27666
276672007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
27668
27669 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
27670
27671 * xterm.c (x_create_terminal): Add comment.
27672
27673 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
27674
276752007-09-10 Richard Stallman <rms@gnu.org>
27676
27677 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
27678
276792007-09-10 Michaël Cadilhac <michael@cadilhac.name>
27680
27681 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
27682 (DEFUN): Document `intspec', use it instead of `prompt'.
27683
27684 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
27685
27686 * data.c (Finteractive_form): If the interactive specification starts
27687 with a `(', use it as a Lisp form.
27688
27689 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
27690 name and file modes.
27691
27692 * callint.c (Fcall_interactively): Comment fixes.
27693
276942007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
27695
27696 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
27697 and compiled functions.
27698
276992007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
27700
27701 * window.c (prefer_window_split_horizontally): New variable.
27702 (display_buffer): Consider splitting window horizontally depending
27703 on prefer_window_split_horizontally.
27704
277052007-09-08 Eli Zaretskii <eliz@gnu.org>
27706
27707 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
27708
277092007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
27710
27711 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
27712
27713 * frame.c (x_set_frame_parameters): Check number is positive before
27714 using XFASTINT.
27715
27716 * window.c (freeze_window_start): Don't presume selected_window holds
27717 a window object.
27718 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
27719
277202007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
27721
27722 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
27723
277242007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
27725
27726 * window.c (Vsplit_window_preferred_function): New var.
27727 (Fdisplay_buffer): Use it.
27728 (syms_of_window): Export, and initialize it.
27729
277302007-09-06 Pixel <pixel@mandriva.com> (tiny change)
27731
27732 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
27733
277342007-09-06 Glenn Morris <rgm@gnu.org>
27735
27736 * gtkutil.c (menu_grab_callback) <cnt>:
27737 * xselect.c (x_reply_selection_request) <cnt>: Move static
27738 variable to file scope.
27739
277402007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
27741
27742 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
27743 consistent values of selected_frame and selected_window.
27744
277452007-09-04 Jason Rumney <jasonr@gnu.org>
27746
27747 * w32console.c (initialize_w32_display): Zero unused hooks.
27748
277492007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
27750
27751 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
27752 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
27753
277542007-09-04 Jason Rumney <jasonr@gnu.org>
27755
27756 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
27757 in w32console.c. Set up input. Remove XXX comments that have been
27758 confirmed as correct.
27759
27760 * s/ms-w32.h (MULTI_KBOARD): Define.
27761
27762 * w32console.c (one_and_only_w32cons): Remove.
27763 (initialize_w32_display): Take terminal argument.
27764
27765 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
27766 initialize_w32_display.
27767 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
27768
27769 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
27770
27771 * keyboard.c (discard_mouse_events): Discard it.
27772 (make_lispy_event): Translate it to a lisp event.
27773 (lispy_wheel_names): Add wheel-left and right events.
27774 (syms_of_keyboard): Enlarge wheel_syms.
27775
27776 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
27777 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
27778
27779 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
27780
27781 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
27782 from WM_MOUSEHWHEEL.
27783 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
27784
27785 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
27786 terminal.
27787
27788 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
27789 keyboard for the terminal.
27790
277912007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
27792
27793 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
27794 (Vresume_tty_hook): Rename from Vresume_tty_functions.
27795 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
27796 and resume-tty-function to resume-tty-hook.
27797 (Fsuspend_tty, Fresume_tty): Use new names.
27798
277992007-09-02 Jan Djärv <jan.h.d@swipnet.se>
27800
27801 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
27802 if it starts with "n:".
27803
278042007-08-31 Jan Djärv <jan.h.d@swipnet.se>
27805
27806 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
27807
278082007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
27809
27810 * frame.h:
27811 * frame.c (Qterm_environment_variable): Remove.
27812 (syms_of_frame): Don't init and staticpro it.
27813
27814 * callproc.c (getenv_internal): Remove special case for $TERM.
27815
27816 * callproc.c (Vinitial_environment): New variable.
27817 (set_initial_environment): Initialize it.
27818 (syms_of_callproc): Declare it.
27819 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
27820 TERM under which a process runs is never related to the TERM in which
27821 Emacs is running.
27822
278232007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
27824
27825 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
27826 * s/darwin.h: ... do it here.
27827
278282007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
27829
27830 * lisp.h (set_initial_environment): Rename from set_global_environment.
27831
27832 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
27833 removed by mistake on the multi-tty branch.
27834
27835 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
27836 (Fmodify_frame_parameters): Return a value.
27837
27838 * image.c (png_load): Comment-out var only used in commented-out code.
27839
27840 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
27841 before passing it to mark_object.
27842
27843 * xfaces.c (internal_resolve_face_name): Return a value.
27844 (internal_resolve_face_name, resolve_face_name_error): Comment out.
27845
27846 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
27847 (x_icon): Comment-out var only used in commented-out code.
27848
278492007-08-29 Romain Francoise <romain@orebokech.com>
27850
27851 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
27852 QUIT hasn't been provided.
27853
278542007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
27855
27856 * callproc.c (child_setup, getenv_internal): Use the
27857 display-environment-variable and term-environment-variable frame params.
27858 (set_initial_environment): Initialise Vprocess_environment.
27859
27860 * config.in: Disable multi-keyboard support on a mac.
27861
27862 * frame.c (Qterm_environment_variable)
27863 (Qdisplay_environment_variable): New variables.
27864 (syms_of_frame): Intern and staticpro them.
27865 (Fmake_terminal_frame): Disable output method test.
27866
27867 * frame.h: Declare them here.
27868
27869 * macfns.c (x_set_mouse_color): Get rif from the frame.
27870 (x_set_tool_bar_lines): Don't use updating_frame.
27871 (mac_window): Add 2 new parameters for consistency with other systems.
27872 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
27873 frame parameters following what is done in X11 and w32. Don't use
27874 FRAME_MAC_DISPLAY_INFO.
27875 (Fx_open_connection, start_hourglass): Remove window-system check.
27876 (x_create_tip_frame): Get the keyboard from the terminal.
27877
27878 * macmenu.c: Reorder includes.
27879 (Fx_popup_menu): Use terminal specific mouse_position_hook.
27880
27881 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
27882 terminal parameter.
27883 (x_clear_frame): Add a frame parameter.
27884 (note_mouse_movement): Get rif from the frame.
27885 (mac_term_init): Initialize the terminal.
27886 (mac_initialize): Make static and move terminal initialization ...
27887 (mac_create_terminal): ... to this new function.
27888
27889 * macterm.h (struct mac_display_info): Add terminal.
27890 (mac_initialize): Delete declaration.
27891
27892 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
27893
27894 * sysdep.c: Comment out text after #endif.
27895
27896 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
27897 is defined. Better initialize ttys in windows. Use terminal
27898 specific mouse_position_hook.
27899
27900 * termhooks.h (union display_info): Add mac_display_info.
27901
27902 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
27903 Set the default minibuffer frame, window_system and the rest of the
27904 frame parameters following what is done in X11.
27905
27906 * w32term.c (w32_initialize): Make static.
27907
27908 * xselect.c (x_handle_selection_clear): Only access
27909 terminal->kboard when MULTI_KBOARD is defined.
27910
27911 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
27912 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
27913
279142007-08-29 Jason Rumney <jasonr@gnu.org>
27915
27916 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
27917 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
27918
27919 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
27920 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
27921
27922 * keyboard.c (restore_kboard_configuration): Only define when
27923 MULTI_KBOARD defined.
27924
27925 * makefile.w32-in: Update dependancies from Makefile.in.
27926 (OBJ1): Add terminal.$(O)
27927
27928 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
27929 Don't define function body.
27930 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
27931
27932 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
27933
27934 * w32.c (request_sigio, unrequest_sigio): Remove.
27935
27936 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
27937 (w32con_clear_frame, w32con_clear_end_of_line)
27938 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
27939 (w32con_delete_glyphs, w32con_set_terminal_window)
27940 (scroll_line, w32_sys_ring_bell): Add frame arg.
27941 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
27942 Add terminal arg.
27943 (PICK_FRAME): Remove.
27944 (w32con_write_glyphs): Use frame specific terminal coding.
27945 (one_and_only_w32cons): New global variable.
27946 (initialize_w32_display): Use it for storing hooks.
27947 (create_w32cons_output): New function.
27948
27949 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
27950 arg a frame.
27951
27952 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
27953 Set window_system.
27954 (x_set_tool_bar_lines): Don't use updating_frame.
27955 (Fx_create_frame): Set terminal and ref count.
27956 (Fx_open_connection): Remove window-system check.
27957
27958 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
27959
27960 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
27961 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
27962 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
27963 Add frame arg.
27964 (x_delete_terminal, w32_create_terminal): New functions.
27965 (w32_term_init): Create a terminal.
27966 (w32_initialize): Move terminal specific initialization to
27967 w32_create_terminal.
27968
27969 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
27970 (w32_clear_rect, w32_clear_area): Use background from frame.
27971 (w32_display_info): Add terminal.
27972 (w32_sys_ring_bell, x_delete_display): Declare here.
27973
27974 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
27975
27976 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
27977
279782007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
27979
27980 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
27981 Fix get_named_tty calls for the controlling tty.
27982
279832007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
27984
194d44e7 27985 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
aac0c6e3
MR
27986
279872007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
27988
27989 * term.c (tty_insert_glyphs): Add missing first parameter.
27990
279912007-08-29 Károly Lőrentey <karoly@lorentey.hu>
27992
27993 * buffer.c (Fbuffer_list, Fbury_buffer):
27994 Take frame->buried_buffer_list into account.
27995
27996 * cm.c (current_tty): New variable, for cmputc().
27997 (cmputc): Use it.
27998 (cmcheckmagic): Add tty parameter, look up terminal streams there.
27999 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
28000 (cmgoto): Add tty parameter. Pass it on to calccost().
28001 Use emacs_tputs() instead of tputs().
28002
28003 * cm.h (emacs_tputs): New macro to set current_tty, and then call
28004 tputs().
28005 (current_tty): New variable, for cmputc().
28006 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
28007
28008 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
28009 (internal_condition_case, internal_condition_case_1)
28010 (internal_condition_case_2): Don't abort when x_catching_errors.
28011
28012 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
28013 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
28014 prevent crashes caused by bogus longjmps in read_char.
28015
28016 * keymap.h (Fset_keymap_parent): Add EXFUN.
28017
28018 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
28019 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
28020 Remove redundant definition.
28021
28022 * macfns.c (x_set_mouse_color, x_make_gc):
28023 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28024
28025 * w32term.c (x_free_frame_resources):
28026 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28027 (w32_initialize): Use the accessor macros for terminal characteristics.
28028
28029 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
28030 Use the accessor macros for terminal characteristics.
28031 * msdos.c (internal_terminal_init): Use the accessor macros for
28032 terminal characteristics.
28033 (ScreenVisualBell, internal_terminal_init):
28034 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28035
28036 * termopts.h (no_redraw_on_reenter): Declare.
28037
28038 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
28039 (mark_terminals, mark_ttys): Declare.
28040 (Fgarbage_collect): Call them.
28041 (mark_object): Mark buried_buffer_list.
28042
28043 * prefix-args.c: Include stdlib.h for exit.
28044
28045 * syssignal.h: Add comment.
28046
28047 * indent.c: Include stdio.h.
28048
28049 * window.h (Vinitial_window_system): Declare.
28050 (Vwindow_system): Delete declaration.
28051
28052 * fontset.c (Finternal_char_font): Use FRAME_RIF.
28053
28054 * image.c (lookup_image): Don't initialize `c' until the xasserts
28055 have been run.
28056
28057 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
28058 FRAME_FOREGROUND_PIXEL.
28059
28060 * print.c (print_preprocess): Don't lose print_depth levels while
28061 iterating.
28062
28063 * widget.c (update_from_various_frame_slots):
28064 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28065
28066 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
28067 frames.
28068 (window_internal_height): Remove bogus make_number call.
28069 (init_window_once): Call make_terminal_frame with two zero parameters.
28070
28071 * fileio.c (Fread_file_name): Update comment.
28072
28073 * callint.c (Fcall_interactively):
28074 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
28075 Make sure it is correctly unwound.
28076
28077 * xsmfns.c (x_session_close): New function.
28078
28079 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
28080 Delete declarations.
28081
28082 * xterm.h: Remove declaration for x_fully_uncatch_errors.
28083 (x_output): Remove background_pixel and foreground_pixel fields.
28084 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
28085 (x_delete_device, x_session_close): Declare.
28086
28087 * lread.c: Include setjmp.h. Update declaration of `read_char'.
28088 (read_filtered_event): Call `read_char' with a local
28089 `wrong_kboard_jmpbuf'.
28090
28091 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
28092 Don't call single_kboard_state. Use FRAME_RIF.
28093
28094 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
28095 systems.
28096
28097 * lisp.h (set_process_environment): Rename to `set_global_environment'.
28098 (Fframe_with_environment, Fset_input_meta_mode)
28099 (Fset_quit_char): EXFUN.
28100 (x_create_device, tty_output, terminal, tty_display_info): Declare.
28101 (init_sys_modes, reset_sys_modes): Update prototypes.
28102 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
28103
28104 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
28105 Vlocal_key_translation_map, and Vkeyboard_translate_table.
28106 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
28107 Delete declarations.
28108 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
28109 (temporarily_switch_to_single_kboard, tty_read_avail_input):
28110 New declarations.
28111
28112 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
28113 already does that during init_display(). Call syms_of_keymap
28114 before syms_of_keyboard. Call `syms_of_terminal'.
28115 Call set_initial_environment, not set_process_environment.
28116 (shut_down_emacs): Call reset_all_sys_modes() instead of
28117 reset_sys_modes().
28118
28119 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
28120 (internal_resolve_face_name, resolve_face_name_error): New functions.
28121 (resolve_face_name): Protect against loops and errors thrown by Fget.
28122 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
28123 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
28124
28125 * scroll.c: Replace CURTTY() with local variables throughout the
28126 file (where applicable).
28127 (calculate_scrolling, calculate_direct_scrolling)
28128 (scrolling_1, scroll_cost): Use the accessor macros for terminal
28129 characteristics.
28130
28131 * keymap.c (Vfunction_key_map): Remove.
28132 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
28133 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
28134 (Vkey_translation_map): Remove.
28135 (syms_of_keymap): Remove DEFVAR for key-translation-map.
28136 (Fdescribe_buffer_bindings)
28137 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
28138 Update for terminal-local key-translation-map.
28139
28140 * Makefile.in (callproc.o): Update dependencies.
28141 (lisp, shortlisp): Add termdev.elc.
28142 (obj): Add terminal.o.
28143 (terminal.o): Add dependencies.
28144 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
28145 (data.o, fns.o): Add termhooks.h dependency.
28146 (SOME_MACHINE_LISP): Add dnd.elc.
28147 (minibuf.o): Fix typo.
28148 Update dependencies.
28149
28150 * data.c (do_symval_forwarding, store_symval_forwarding)
28151 (find_symbol_value): Use the selected frame's keyboard, not
28152 current_kboard.
28153
28154 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
28155 Vwindow_system.
28156
28157 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
28158 Fmenu_bar_open.
28159 (syms_of_xmenu): Update defsubr.
28160 (mouse_position_for_popup, Fx_popup_menu)
28161 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
28162 (set_frame_menubar, free_frame_menubar)
b97439ce 28163 (create_and_show_popup_menu, xmenu_show)
aac0c6e3
MR
28164 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
28165 an X frame.
28166
28167 * xselect.c (x_own_selection): Abort if not an X frame.
28168 (some_frame_on_display): Check if it is an X frame.
28169 (x_handle_selection_clear): Deal with MULTI_KBOARD.
28170
28171 * coding.c: Include frame.h and termhooks.h.
28172 (terminal_coding, keyboard_coding): Delete.
28173 (Fset_terminal_coding_system_internal)
28174 (Fset_keyboard_coding_system_internal)
28175 (Fkeyboard_coding_system)
28176 (Fterminal_coding_system): Add a terminal parameter.
28177 Get terminal_coding from the terminal.
28178 (init_coding_once): Don't call setup_coding_system here.
28179
28180 * dispextern.h (set_scroll_region, turn_off_insert)
28181 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
28182 (tty_clear_end_of_line, tty_setup_colors)
28183 (delete_tty, updating_frame)
28184 (produce_special_glyphs, produce_glyphs, write_glyphs)
28185 (insert_glyphs): Remove.
28186 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
28187 (tty_turn_off_highlight, get_tty_size): Add declaration.
28188 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
28189
28190 * frame.h (enum output_method): Add output_initial.
28191 (struct x_output): Delete.
28192 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
28193 Access foreground_pixel and background_pixel directly from the frame.
28194 (tty_display): Delete.
28195 (struct frame): Add buried_buffer_list, foreground_pixel,
28196 background_pixel and terminal. Delete kboard.
28197 (union output_data): Add tty.
28198 (FRAME_KBOARD): Get the kboard from the terminal.
28199 (FRAME_INITIAL_P): New macro.
28200 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
28201 (Qterm_environment_variable, Qdisplay_environment_variable)
28202 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
28203 New declarations.
28204
28205 * termchar.h (tty_output, tty_display_info): New structures.
28206 (tty_list): Declare.
28207 (FRAME_TTY, CURTTY): New macros.
28208 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
28209 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
28210 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
28211 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
28212
28213 * callproc.c: Include frame.h and termhooks.h, for terminal
28214 parameters.
28215 (add_env): New function.
28216 (child_setup): Use it.
28217 (child_setup, getenv_internal): Handle the new Vprocess_environment.
28218 (getenv_internal): Fix get_terminal_param call.
28219 (Fgetenv_internal, egetenv): Update doc.
28220 (syms_of_callproc): Initialize Vprocess_environment to nil.
28221 Register and initialize them. Remove obsolete defvars. Update doc
28222 strings.
28223 (child_setup): Handle Vlocal_environment_variables.
28224 (getenv_internal): Add terminal parameter.
28225 Handle Vlocal_environment_variables.
28226 (Fgetenv_internal): Add terminal parameter.
28227 (child_setup, getenv_internal, Fgetenv_internal): Store the local
28228 environment in a frame (not terminal) parameter. Update doc strings.
28229 (set_initial_environment): Rename from set_global_environment.
28230 Store Emacs environment in initial frame parameter.
28231
28232 * xdisp.c (redisplay_internal): Update references to
28233 `previous_terminal_frame'.
28234 (display_mode_line, Fformat_mode_line): Replace calls to
28235 `push_frame_kboard' with `push_kboard'.
28236 (get_glyph_string_clip_rects): Add extra parentheses and
28237 braces to prevent compiler warnings.
28238 (calc_pixel_width_or_height): Add xassert to check that the
28239 frame is alive. Don't call `lookup_image' on a termcap frame.
28240 (message2_nolog, message3_nolog, redisplay_internal)
28241 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
28242 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
28243 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
28244 (Fx_display_pixel_width, Fx_display_pixel_height)
28245 (Fx_display_planes, Fx_display_color_cells)
28246 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
28247 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
28248 (Fx_display_backing_store, Fx_display_visual_class)
28249 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
28250 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
28251
28252 * xfns.c (x_set_foreground_color x_set_background_color)
28253 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
28254 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28255 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
28256 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
28257 terminal that is being deleted.
28258 (Fx_create_frame): Use `store_frame_param' to set `window-system'
28259 frame parameter, and make sure it overrides any user-supplied setting.
28260 (Fx_close_connection, Fx_synchronize): Unify argument names with
28261 the rest of the DEFUNs.
28262
28263 * dispnew.c (Fsend_string_to_terminal): Update call to
28264 `get_tty_terminal'.
28265 (Fredraw_frame, Fsend_string_to_terminal)
28266 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
28267 FRAME_TERMCAP_P and FRAME_TTY.
28268 (window_change_signal): Don't believe width/height values that are
28269 impossibly small.
28270 (Vinitial_window_system): Rename from Vwindow_system.
28271 (termscript, Wcm, rif): Delete.
28272
28273 * termhooks.h (struct terminal): New struct containing the
28274 previously global text display hooks and new members NAME,
28275 DELETED and PARAM_ALIST.
28276 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
28277 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
28278 (FRAME_RIF): New macros.
28279 (get_terminal_param, get_device): New declarations.
28280 (termscript): Delete declaration.
28281
28282 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
28283 (XTflash, x_free_frame_resources, x_scroll_bar_create)
28284 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
28285 FRAME_FOREGROUND_PIXEL.
28286 (x_fully_uncatch_errors): Disable definition.
28287 (x_scroll_bar_expose): Fix reference to foreground pixel.
28288 (XTread_socket): Disable loop on all X displays.
28289 (x_delete_terminal): Don't set terminal->deleted and let
28290 delete_terminal delete the frames on the terminal.
28291 (x_delete_display): Doc update to reflect changes in
28292 delete_terminal.
28293 (x_display_info) <terminal>: Move member earlier in the struct.
28294 (deleting_tty): Remove old variable.
28295 (Fsuspend_tty): Call clear_tty_hooks.
28296 (Fresume_tty, init_tty): Call set_tty_hooks.
28297 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
28298 errors on X frames.
28299 (x_catch_errors_unwind): Abort if x_error_message is NULL.
28300 (handle_one_xevent): Initialize `f' to NULL.
28301 (x_delete_terminal, x_create_terminal): New functions.
28302 (XTset_terminal_modes, XTreset_terminal_modes)
28303 (XTread_socket, x_connection_closed, x_term_init)
28304 (x_term_init, x_delete_display): Add terminal parameter.
28305 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
28306 X connections.
28307
28308 * frame.c: Include termchar.h.
28309 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
28310 (Qwindow_system, Qenvironment, Qterm_environment_variable)
28311 (Qdisplay_environment_variable): New vars.
28312 (Fframep): Deal with output_initial.
28313 (Fframe-live-p): Doc fix.
28314 (Fwindow-system): New function.
28315 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
28316 (make_terminal_frame): Don't create frames on a terminal that is
28317 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28318 (store_frame_param): Check for found_for_frame before calling XFRAME.
28319 (Fmake_terminal_frame): Handle NULL tty names correctly.
28320 (syms_of_frame): Enhance doc string of `default-frame-alist'.
28321 (Fdelete_frame): Remove unused variable `count'. Don't allow other
28322 frames to refer to a deleted frame in their 'environment parameter.
28323 (Fframe_with_environment): New function.
28324 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
28325 (get_future_frame_param): New function.
28326 (Fmake_terminal_frame): Use it.
28327 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
28328
28329 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
28330 * sysdep.c (reset_sys_modes): Update for renames.
28331
28332 * keyboard.c (tty_read_avail_input): New function.
28333 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
28334 (syms_of_keyboard): Defsubr them.
28335 (Fset_input_meta_mode, Fset_quit_char): New functions.
28336 (Fset_input_mode): Split to above functions.
28337 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
28338 parameter. Use it in call to `read_char'.
28339 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
28340 Set wrong_kboard_jmpbuf correctly in recursive calls.
28341 Use current_kboard to access Vkeyboard_translate_table.
28342 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
28343 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
28344 Update longjmp invocations. Remember the original current_kboard,
28345 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
28346 changes it. Comment out unnecessary calls to
28347 `record_single_kboard_state' and `any_kboard_state'.
28348 Update recursive calls.
28349 (wrong_kboard_jmpbuf): Remove global variable.
28350 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
28351 Handle deleted interrupted_kboards correctly; that is a legal
28352 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
28353 and read_char calls. Abort if interrupted_kboard died in read_char.
28354 (any_kboard_state, single_kboard_state)
28355 (push_frame_kboard): Remove function.
28356 (pop_kboard): Switch out of single_kboard mode if the kboard has
28357 been deleted. Remove unused variable. Help debugging by not
28358 changing current_kboard unnecessarily. Set current_kboard to the
28359 kboard of the selected frame when the stored kboard object has
28360 been deleted before pop_kboard.
28361 (temporarily_switch_to_single_kboard): Change first parameter to a
28362 frame pointer. Throw an error when caller wants to change kboards
28363 while in single_kboard mode. Don't push_kboard if we weren't in
28364 single kboard state. Don't pop_kboard if we popped into any
28365 kboard state.
28366 (restore_kboard_configuration): Abort if pop_kboard changed the
28367 kboard in single_kboard mode. Call pop_kboard only after setting
28368 up single_kboard mode.
28369 (Frecursive_edit): Switch to single_kboard mode only in nested
28370 command loops.
28371 (cmd_error, command_loop, command_loop_1, timer_check):
28372 Comment out unnecessary call to `any_kboard_state' and
28373 `record_single_kboard_state'.
28374 (delete_kboard): Exit single_kboard mode if we have just deleted
28375 that kboard. Use FRAME_KBOARD.
28376 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
28377 `fatal_error_signal'.
28378 (record_single_kboard_state): Don't push_kboard if we weren't in
28379 single kboard state. Don't pop_kboard if we popped into any
28380 kboard state.
28381 (push_frame_kboard): Rename to push_kboard.
28382 (kbd_buffer_get_event): Use FRAME_TERMINAL.
28383 (read_avail_input): Read input from all terminals.
28384 (mark_kboards): Also mark Vkeyboard_translate_table.
28385 (kbd_buffer_store_event_hold): Simplify condition.
28386 (read_key_sequence): Reinitialize fkey and keytran at each replay.
28387 (Vkeyboard_translate_table): Move to struct kboard.
28388 (init_kboard): Initialize Vkeyboard_translate_table.
28389 (syms_of_keyboard): Use DEFVAR_KBOARD to define
28390 Vkeyboard_translate_table. Update doc strings. Update docs of
28391 local-function-key-map and function-key-map.
28392
28393 * terminal.c: New file.
28394
28395 * term.c: Include errno.h.
28396 (Vring_bell_function, device_list, initial_device)
28397 (next_device_id, ring_bell, update_begin, update_end)
28398 (set_terminal_window, cursor_to, raw_cursor_to)
28399 (clear_to_end, clear_frame, clear_end_of_line)
28400 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
28401 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
28402 (syms_of_term): Move their initialization to terminal.c.
28403 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
28404 (Ftty_display_color_cells)
28405 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
28406 (clear_tty_hooks, set_tty_hooks)
28407 (init_tty, maybe_fatal): New functions.
28408 (Ftty_type): Return nil if terminal is not on a tty instead of
28409 throwing an error. Doc update.
28410 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
28411 Doc update. Initialize new subrs and variables.
28412 (delete_tty): Use terminal->deleted.
28413 (tty_set_terminal_modes): Rename from set_terminal_modes.
28414 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
28415 (set_scroll_region): Rename to `tty_set_scroll_region'.
28416 (turn_on_insert): Rename to `tty_turn_on_insert'.
28417 (turn_off_insert): Rename to `tty_turn_off_insert'.
28418 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
28419 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
28420 (toggle_highligh): Rename to `tty_toggle_highlight'.
28421 (background_highlight): Rename to `tty_background_highlight'.
28422 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
28423 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
28424 (tty_set_scroll_region, tty_background_highlight)
28425 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
28426 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
28427 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
28428 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
28429 Add static modifier.
28430 (tty_reset_terminal_modes, tty_set_terminal_window)
28431 (tty_set_scroll_region, tty_background_highlight)
28432 (tty_highlight_if_desired, tty_cursor_to)
28433 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
28434 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
28435 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
28436 renames.
28437
284382007-08-28 Jan Djärv <jan.h.d@swipnet.se>
28439
28440 * keyboard.c: Qrtl is new.
28441 (parse_tool_bar_item): Handle :rtl keyword.
28442 (syms_of_keyboard): Intern :rtl keyword.
28443
28444 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
28445
28446 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
28447 so no Lisp code is executed.
28448 (file_for_image, find_rtl_image): New functions.
28449 (xg_get_image_for_pixmap): Use file_for_image.
28450 (update_frame_tool_bar): If direction is RTL, use RTL image if
28451 defined. Use Gtk stock images if defined.
28452
284532007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28454
28455 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
28456 for nonexistent or zero-width glyph in composition glyph.
28457
284582007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
28459
28460 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
28461
28462 * xdisp.c (Finvisible_p): New function.
28463 (syms_of_xdisp): defsubr it.
28464
284652007-08-24 Juanma Barranquero <lekktu@gmail.com>
28466
28467 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
28468 Doc fixes.
28469
284702007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28471
28472 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
28473
284742007-08-24 Martin Rudalics <rudalics@gmx.at>
28475
28476 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
28477 whether decoding has modified buffer contents.
28478
284792007-08-24 Jason Rumney <jasonr@gnu.org>
28480
28481 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
28482 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
28483 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
28484 (init_svg_functions) [HAVE_NTGUI]: New function.
28485 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
28486 (svg_load_image): Use them.
28487 (svg_load_image) [HAVE_NTGUI]: Implement background.
28488
284892007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28490
28491 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
28492 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
28493 (LIBX): Remove @RSVG_LIBS@.
28494 (LIBES): Add $(RSVG_LIBS).
28495
28496 * image.c (svg_load_image): Blend with specified background if exists.
28497 Use IMAGE_BACKGROUND. Add Mac OS Support.
28498
28499 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
28500 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
28501 Remove macros.
28502 [MAC_OSX] (socket_callback): Do nothing.
28503 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
28504 ReceiveNextEvent.
28505 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
28506 socket_callback.
28507 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
28508
285092007-08-22 Glenn Morris <rgm@gnu.org>
28510
28511 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
28512
285132007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
28514
28515 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
28516
28517 * image.c: Add support for SVG images. Some additional comments
28518 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
28519 (svg_image_p): New function to test for SVG image.
28520 (svg_load): New function to load SVG image.
28521 (svg_load_image): New function, helper for svg_load.
28522 (Qsvg): New Lisp_object.
28523 (svg_keyword_index): New enum.
28524 (svg_format): New static `image_keyword' struct.
28525 (svg_type): New static `image_type' struct.
28526 (librsvg/rsvg.h): Include it.
28527
285282007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
28529
28530 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
28531
285322007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
28533
28534 * lread.c (Qold_style_backquotes): New var.
28535 (syms_of_lread): Init and staticpro it.
28536 (load_warn_old_style_backquotes): New fun.
28537 (Fload): Use them to warn about old style backquotes.
28538 (end_of_file_error, Fload): Remove unused vars.
28539
28540 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
28541
28542 * lread.c (Vold_style_backquotes): New var.
28543 (syms_of_lread): Init and export it to Elisp.
28544 (read1): Set it when we find an old-style (back)quote.
28545
285462007-08-22 Jason Rumney <jasonr@gnu.org>
28547
28548 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
28549
285502007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
28551
28552 * puresize.h (BASE_PURESIZE): Increase to 1140000.
28553
285542007-08-19 Richard Stallman <rms@gnu.org>
28555
28556 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
28557
285582007-08-19 Andreas Schwab <schwab@suse.de>
28559
28560 * alloc.c (pure): Round PURESIZE up.
28561
285622007-08-17 Jan Djärv <jan.h.d@swipnet.se>
28563
28564 * xterm.c (handle_one_xevent): Remove check that mouse click is in
28565 active frame.
28566
285672007-08-16 Richard Stallman <rms@gnu.org>
28568
28569 * eval.c (Fcommandp): Add parens to clarify.
28570
28571 * minibuf.c (Fall_completions): Use enum for type of table.
28572
28573 * emacs.c (USAGE2): Improve text.
28574
285752007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
28576
28577 * term.c (tty_default_color_capabilities): Declare static
28578 variables in file scope, to avoid HPUX compiler problem.
28579
285802007-08-13 Jan Djärv <jan.h.d@swipnet.se>
28581
28582 * gtkutil.c (update_frame_tool_bar): Use -1 as index
28583 to gtk_toolbar_insert.
28584
285852007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
28586
28587 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
28588
28589 * insdel.c (reset_var_on_error): New fun.
28590 (signal_before_change, signal_after_change):
28591 Use it to reset (after|before)-change-functions to nil in case of error.
28592 Bind inhibit-modification-hooks to t.
28593 Don't bind (after|before)-change-functions to nil while they run.
28594
285952007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28596
28597 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
28598 filling pixmap with stippled background.
28599
286002007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28601
28602 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
28603 Don't use invisible frame as parent window for repositioning.
28604
286052007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
28606
28607 * print.c (new_backquote_output): Rename from old_backquote_output.
28608 (print): Inverse its logic (according to its name) so as to match the
28609 behavior of new_backquote_flag in lread.c.
28610
286112007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28612
28613 * gmalloc.c (posix_memalign): New function.
28614
28615 * macterm.c (frame_highlight, frame_unhighlight): Don't call
28616 ActivateControl/DeactivateControl here.
28617 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
28618 frame-notice-user-settings is non-nil.
28619 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
28620 for kEventParamFMFontStyle.
28621 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
28622 mac_pass_command_to_system and mac_pass_control_to_system here.
28623 (XTread_socket): Call ActivateControl/DeactivateControl here.
28624 (XTread_socket) [TARGET_API_MAC_CARBON]:
28625 Check mac_pass_command_to_system and mac_pass_control_to_system here.
28626 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
28627 for window repositioning.
28628
286292007-08-08 Glenn Morris <rgm@gnu.org>
28630
28631 * Replace `iff' in doc-strings and comments.
28632
286332007-08-07 Chong Yidong <cyd@stupidchicken.com>
28634
28635 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
28636
286372007-08-07 Martin Rudalics <rudalics@gmx.at>
28638
28639 * fileio.c (Finsert_file_contents): Run format-decode and
28640 after_insert_file_functions on entire buffer when REPLACE is
28641 non-nil and inhibit modification_hooks and point_motion_hooks.
28642 For consistency, run after_insert_file_functions iff something
28643 got inserted. Move signal_after_change and update_compositions
28644 after code running after_insert_file_functions. Make sure that
28645 undo_list doesn't record intermediate steps of the decoding process.
28646
286472007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28648
28649 * emacs.c (main)
28650 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
28651 Call malloc_enable_thread on interactive startup.
28652
28653 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
28654 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
28655 [USE_PTHREAD]: Conditionalize with it.
28656 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
28657 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
28658 New functions.
28659
286602007-08-06 Chong Yidong <cyd@stupidchicken.com>
28661
28662 * xdisp.c (redisplay_window): When restoring original buffer
28663 position, make sure it is still valid.
28664
28665 * image.c (png_load): Ignore png-supplied background color.
28666
286672007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28668
28669 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
28670 Use kCFAbsoluteTimeIntervalSince1970.
28671
28672 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
28673 New variable.
28674 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
28675 event loop should be quit.
28676 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
28677 Quit dialog event loop if quit_dialog_event_loop is set.
28678
28679 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
28680 (Selection): New typedef. Use instead of ScrapRef.
28681 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
28682 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
28683 (mac_clear_selection): Rename from clear_scrap.
28684 (get_flavor_type_from_symbol): New argument SEL and subsume function of
28685 scrap_has_target_type. All uses changed.
28686 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
28687 (mac_selection_has_target_p): New functions.
28688 (mac_put_selection_value): Rename from put_scrap_string.
28689 (mac_get_selection_value): Rename from get_scrap_string.
28690 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
28691 (put_scrap_private_timestamp, scrap_has_target_type)
28692 (get_scrap_private_timestamp): Remove functions.
28693 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
28694 (x_own_selection, x_get_local_selection):
28695 Use mac_valid_selection_value_p.
28696 (x_own_selection): Don't use put_scrap_private_timestamp.
28697 Record OWNERSHIP-INFO into Vselection_alist instead.
28698 (x_get_local_selection): Don't check type if request is local.
28699 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
28700 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
28701
287022007-08-04 Jan Djärv <jan.h.d@swipnet.se>
28703
28704 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
28705 add comment explaining why.
28706
287072007-08-03 Richard Stallman <rms@gnu.org>
28708
28709 * fileio.c (Fvisited_file_modtime): Use make_time.
28710
287112007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
28712
28713 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
28714 build.
28715
287162007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
28717
28718 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
28719
287202007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
28721
28722 * puresize.h (BASE_PURESIZE): Increase to 1130000.
28723
287242007-07-30 Richard Stallman <rms@gnu.org>
28725
28726 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
28727
287282007-07-29 Jan Djärv <jan.h.d@swipnet.se>
28729
28730 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
28731
287322007-07-28 Nick Roberts <nickrob@snap.net.nz>
28733
28734 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
28735 remote default-directory.
28736
28737 * buffer.c (mode-line-format): Update doc string.
28738
287392007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28740
28741 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
28742 scroll bar gap.
28743 (x_scroll_bar_create): Set bar->fringe_extended_p.
28744 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
28745 on frame edge. Check fringe background extension. Don't clear
28746 extended fringe background area.
28747
28748 * w32term.h (struct scroll_bar): New member fringe_extended_p.
28749 (w32_fill_area): Enclose multiple statements with do ... while (0).
28750
28751 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
28752 Extend fringe background to scroll bar gap.
28753 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
28754 Set bar->fringe_extended_p.
28755 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
28756 Put leftmost/rightmost scroll bars on frame edge. Check fringe
28757 background extension. Don't clear extended fringe background area.
28758
28759 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
28760 New member fringe_extended_p.
28761
287622007-07-25 Glenn Morris <rgm@gnu.org>
28763
28764 * Relicense all FSF files to GPLv3 or later.
28765
28766 * COPYING: Switch to GPLv3.
28767
287682007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
28769
28770 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
28771
28772 * data.c (Finteractive_form): Check for the presence of an
28773 `interactive-form' symbol property more thoroughly.
28774
28775 * data.c (Finteractive_form): Use an `interactive-form' property if
28776 present, analogous to the function-documentation property.
28777
287782007-07-24 Jason Rumney <jasonr@gnu.org>
28779
28780 * w32fns.c (x_real_positions): Get real position from OS instead of
28781 calculating it.
28782
287832007-07-23 Jason Rumney <jasonr@gnu.org>
28784
28785 * filelock.c (current_lock_owner): Allow for @ sign in username.
28786
287872007-07-22 Nick Roberts <nickrob@snap.net.nz>
28788
28789 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
28790 remote default-directory.
28791
28792 * buffer.c (mode-line-format): Describe above case in doc string.
28793
287942007-07-20 Eli Zaretskii <eliz@gnu.org>
28795
28796 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
28797 Define if not defined.
28798
287992007-07-18 Jason Rumney <jasonr@gnu.org>
28800
28801 * w32proc.c (w32_executable_type): Handle 64 bit executables.
28802
288032007-07-18 Richard Stallman <rms@gnu.org>
28804
28805 * data.c (Fsetq_default): Doc fix.
28806
28807 * eval.c (Fsetq): Doc fix.
28808
288092007-07-18 Juanma Barranquero <lekktu@gmail.com>
28810
28811 * coding.c (Ffind_operation_coding_system):
28812 * eval.c (For, Fand): Doc fixes.
28813 Reported by Johan Bockgård.
28814
288152007-07-18 Jan Djärv <jan.h.d@swipnet.se>
28816
28817 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
28818
28819 * xterm.h: Declare x_ewmh_activate_frame.
28820
28821 * xterm.c (x_ewmh_activate_frame): New function.
28822 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
28823
288242007-07-17 Martin Rudalics <rudalics@gmx.at>
28825
28826 * window.c (Fdisplay_buffer): If largest or LRU window is the
28827 only window, split it even if it is not eligible for splitting.
28828 This restores the original behavior broken by the 2007-07-15
28829 change.
28830
288312007-07-17 Glenn Morris <rgm@gnu.org>
28832
28833 * abbrev.c (abbrev_check_chars): New function.
28834 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
28835 Call abbrev_check_chars to check abbrev characters are word
28836 constituents. Doc fix.
28837
288382007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
28839
28840 * process.c (Fstart_process, Fmake_network_process)
28841 (read_process_output): Fix up last changes.
28842
288432007-07-16 Eli Zaretskii <eliz@gnu.org>
28844
28845 * makefile.w32-in (clean): Don't delete *~.
28846
288472007-07-16 Andreas Schwab <schwab@suse.de>
28848
28849 * window.c (Fdisplay_buffer): Use NILP.
28850 (Fset_window_scroll_bars): Likewise.
28851
288522007-07-15 Martin Rudalics <rudalics@gmx.at>
28853
28854 * window.c (window_min_size_2): New function.
28855 (window_min_size_1, size_window, Fdisplay_buffer)
28856 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
28857 windows without mode- or header-lines when window-min-height is
28858 too small.
28859 (size_window): Reset nodelete_p after testing it, following an
28860 earlier note by Kim F. Storm.
28861 (display_buffer): Do not set split_height_threshold to twice the
28862 value of window_min_height to avoid changing the value of a
28863 customizable variable. Rather explicitly check whether the
28864 height of the window that shall be splitted is at least as large
28865 as split_height_threshold.
28866 (Fwindow_full_width_p): New defun.
28867 (syms_of_window): Defsubr it.
28868
28869 * window.h: Add EXFUN for Fwindow_full_width_p.
28870
288712007-07-14 Jason Rumney <jasonr@gnu.org>
28872
28873 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
28874
288752007-07-14 Richard Stallman <rms@gnu.org>
28876
28877 * eval.c (maybe_call_debugger): New function.
28878 (find_handler_clause): Use maybe_call_debugger.
28879 Call it when the handler says `debug'.
28880 Eliminate DEBUGGER_VALUE_PTR.
28881 (Fsignal): Eliminate debugger_value.
28882 (Qdebug): New variable.
28883 (syms_of_eval): Initialize it.
28884
288852007-07-14 Juanma Barranquero <lekktu@gmail.com>
28886
28887 * eval.c (Fprogn):
28888 * keyboard.c (Ftrack_mouse):
28889 * print.c (Fwith_output_to_temp_buffer):
28890 * window.c (Fsave_window_excursion): Doc fix.
28891
288922007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
28893
28894 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
28895
288962007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
28897
28898 * process.h (struct Lisp_Process): Turn slots infd, outfd,
28899 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
28900 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
28901 read_output_delay, and read_output_skip from Lisp_Objects to ints.
28902 Remove unused encoding_carryover.
28903 * process.c: Adjust all functions accordingly.
28904
289052007-07-12 Richard Stallman <rms@gnu.org>
28906
28907 * term.c: Include unistd.h only if HAVE_UNISTD_H.
28908
289092007-07-11 Jason Rumney <jasonr@gnu.org>
28910
28911 * makefile.w32-in (LIBS): Include OLE32.
28912
28913 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
28914 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
28915
289162007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
28917
28918 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
28919 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
28920 from a Lisp_Object into a bare pointer.
28921 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
28922 Adjust the code correspondingly.
28923
28924 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
28925
28926 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
28927 (term_show_mouse_face): Remove unused var `j'.
28928 (handle_one_term_event): Remove unused vars `i' and `j'.
28929 Don't cast return value of ttyname since it's not necessary.
28930
289312007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
28932
28933 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
28934 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
28935
28936 * fns.c (map_char_table): Use an array of int for `indices' rather than
28937 an array of Lisp_Objects (which are only ever integers anyway).
28938 (Fmap_char_table): Update caller.
28939 * lisp.h: Update prototype.
28940 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
28941 * fontset.c (Ffontset_info):
28942 * casetab.c (set_case_table): Update callers.
28943
28944 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
28945
28946 * keymap.c (struct accessible_keymaps_data)
28947 (struct where_is_internal_data): New structures.
28948 (accessible_keymaps_1, where_is_internal_1): Use them to change
28949 interface to adhere to the one used by map_keymap.
28950 (Faccessible_keymaps, where_is_internal): Use map_keymap.
28951 (accessible_keymaps_char_table, where_is_internal_2): Remove.
28952
28953 * keymap.h (map_keymap_function_t): More informative prototype.
28954
289552007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
28956
28957 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
28958 (looking_at_1): Don't change search_regs and last_thing_searched
28959 if `inhibit-changing-match-data' is non-nil.
28960 (string_match_1, search_buffer, set_search_regs): Likewise.
28961 (syms_of_search): Add Lisp level definition for
28962 `inhibit-changing-match-data' and set it to nil.
28963 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
28964 start and end of the match, instead of using values in search_regs.
28965
289662007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
28967
28968 * minibuf.c (Fcompleting_read): New value `confirm-only'
28969 for `require-match'.
28970
289712007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
28972
28973 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
28974 part of the 2007-06-27 change to syms_of_fileio.
28975
289762007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28977
28978 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
28979 Check WINDOWP before using XWINDOW. Consolidate return statements.
28980
289812007-06-27 Richard Stallman <rms@gnu.org>
28982
28983 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
28984
289852007-06-27 Juanma Barranquero <lekktu@gmail.com>
28986
28987 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
28988
289892007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28990
28991 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
28992 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
28993 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
28994 (_free_internal, memalign): Use them.
28995 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
28996 Initialize to PTHREAD_MUTEX_INITIALIZER.
28997 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
28998 (morecore_nolock): Rename from morecore. All uses changed.
28999 Use only nolock versions of internal allocation functions.
29000 (_malloc_internal_nolock, _realloc_internal_nolock)
29001 (_free_internal_nolock): New functions created from
29002 _malloc_internal, _realloc_internal, and _free_internal.
29003 (_malloc_internal, _realloc_internal, _free_internal): Use them.
29004 Copy hook value to automatic variable before its use.
29005 (memalign): Copy hook value to automatic variable before its use.
29006
290072007-06-26 Kenichi Handa <handa@m17n.org>
29008
29009 * coding.c (Ffind_operation_coding_system): Docstring improved.
29010 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
29011
290122007-06-25 David Kastrup <dak@gnu.org>
29013
29014 * keymap.c (Fcurrent_active_maps): Add `position' argument.
29015 (Fwhere_is_internal): Adjust call to `current-active-maps' to
29016 cater for additional parameter.
29017
29018 * keymap.h: Adjust number of parameters to `current-active-maps'.
29019
29020 * doc.c (Fsubstitute_command_keys): Adjust call of
29021 `current-active-maps'.
29022
290232007-06-25 David Kastrup <dak@gnu.org>
29024
29025 * callint.c (Fcall_interactively): Make the parsing of interactive
29026 specs somewhat more readable.
29027
290282007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29029
29030 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
29031 to scroll bar gap also when bitmap fills fringe. Draw only foreground
29032 if extended background has already been filled.
29033
290342007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29035
29036 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
29037 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
29038
29039 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
29040 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
29041 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
29042 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
29043 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
29044 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
29045 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
29046 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
29047 Run timers during dialog popup.
29048 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
29049
290502007-06-21 Jason Rumney <jasonr@gnu.org>
29051
29052 * image.c (convert_mono_to_color_image): Swap fore and background.
29053
290542007-06-20 Jason Rumney <jasonr@gnu.org>
29055
29056 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
29057 (w32_free_bdf_font): Unmap memory not handle.
29058
290592007-06-20 Sam Steingold <sds@gnu.org>
29060
29061 * gmalloc.c (__morecore): Fix the declaration to comply with the
29062 definition.
29063
290642007-06-20 Juanma Barranquero <lekktu@gmail.com>
29065
29066 * w32term.c (w32_delete_display): Remove leftover declaration.
29067 (w32_define_cursor, w32_initialize): Make static.
29068
29069 * w32.c (_wsa_errlist): Fix typo in error message.
29070 (init_environment): Ignore any environment variable from the
29071 registry having a null value.
29072
290732007-06-20 Glenn Morris <rgm@gnu.org>
29074
29075 * Makefile.in (LIBGIF): Default to -lgif.
29076
290772007-06-17 Jason Rumney <jasonr@gnu.org>
29078
29079 * w32menu.c (add_menu_item): Don't use multibyte string functions on
29080 unicode strings.
29081
290822007-06-16 Juanma Barranquero <lekktu@gmail.com>
29083
29084 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
29085 Fix typo in docstring.
29086
290872007-06-16 Eli Zaretskii <eliz@gnu.org>
29088
29089 * w32menu.c (add_menu_item): Escape `&' characters in menu items
29090 and their keybindings.
29091
290922007-06-15 Chong Yidong <cyd@stupidchicken.com>
29093
29094 * composite.c (update_compositions): Fix last fix.
29095
290962007-06-14 Jason Rumney <jasonr@gnu.org>
29097
29098 * w32.c (get_process_times_fn): New function pointer.
29099 (globals_of_w32): Intialize it if present in kernel32.dll.
29100 (w32_get_internal_run_time): New function.
29101
29102 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
29103
291042007-06-14 Kenichi Handa <handa@etlken.m17n.org>
29105
29106 * composite.c (update_compositions): Check the validness of
29107 compositions.
29108
291092007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29110
29111 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
29112 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
29113
29114 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
29115 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
29116
29117 * macgui.h (USE_MAC_TOOLBAR): New define.
29118
29119 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
29120 Return immediately unless popup is activated.
29121
29122 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
29123 background to scroll bar gap.
29124 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
29125 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
29126 scroll bars on frame edge. Check fringe background extension.
29127 Don't clear extended fringe background area.
29128 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
29129 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
29130 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
29131 [USE_MAC_TOOLBAR]: New macros.
29132 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
29133 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
29134 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
29135 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
29136 [USE_MAC_TOOLBAR]: New functions.
29137 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
29138 manually if previous repositioning has failed.
29139 (mac_handle_keyboard_event): Use precomputed event kind.
29140 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
29141 as tool bar item click. Handle mouse movement over tool bar items.
29142
29143 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
29144 toolbar_win_gravity.
29145 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
29146 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
29147 Add externs.
29148
29149 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
29150 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
29151
291522007-06-14 Chong Yidong <cyd@stupidchicken.com>
29153
29154 * image.c (search_image_cache): Remove unused variable.
29155
291562007-06-13 Chong Yidong <cyd@stupidchicken.com>
29157
29158 * xfns.c, xmenu.c: Link to xaw3d if available.
29159
291602007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29161
29162 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
29163 frame_foreground and frame_background.
29164
29165 * image.c (lookup_image): Save frame foreground and background colors.
29166 (search_image_cache): Check if saved and current frame colors match.
29167
291682007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
29169
29170 * regex.c (regex_compile): Remove the `regnum' counter.
29171 Use bufp->re_nsub instead. Add support for \(?N:RE\).
29172
291732007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
29174
29175 * term.c: Include intervals.h to declare Fget_text_property.
29176
291772007-06-10 Jason Rumney <jasonr@gnu.org>
29178
29179 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
29180
291812007-06-08 Juanma Barranquero <lekktu@gmail.com>
29182
29183 * callint.c (Fcall_interactively):
29184 * editfns.c (Fdelete_and_extract_region):
29185 * fileio.c (Fread_file_name):
29186 * fns.c (Fmapconcat):
29187 * keyboard.c (cmd_error_internal):
29188 * keymap.c (Fkey_description):
29189 * lread.c (openp):
29190 * minibuf.c (read_minibuf):
29191 * search.c (wordify):
29192 * sunfns.c (sel_read):
29193 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
29194 * xfns.c (x_default_scroll_bar_color_parameter):
29195 * xmenu.c (menu_help_callback):
29196 * xselect.c (Fx_get_atom_name):
29197 * xterm.c (x_term_init): Use empty_unibyte_string.
29198
291992007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
29200
29201 * alloc.c (init_strings): Initialize canonical empty strings.
29202 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
29203 canonical empty string when the requested size is 0.
29204
29205 * emacs.c (empty_unibyte_string): Rename from empty_string.
29206 (empty_multibyte_string): New canonical empty string.
29207 (syms_of_emacs): Don't initialize empty_string.
29208
29209 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
29210 string, if appropriate.
29211 (empty_unibyte_string, empty_multibyte_string): New externs.
29212 (empty_string): Remove extern.
29213
29214 * lread.c (syms_of_lread): Use empty_unibyte_string.
29215
292162007-06-07 Jason Rumney <jasonr@gnu.org>
29217
29218 * s/ms-w32.h: Don't define HAVE_TZNAME.
29219
29220 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
29221
292222007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29223
29224 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
29225
29226 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
29227 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
29228
29229 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
29230 Don't call next handler.
29231 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
29232 Remove argument. Install handler to application.
29233 (set_frame_menubar): Don't change deep_p.
29234 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
29235 FRAME_OUTER_TO_INNER_DIFF_Y.
29236 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
29237 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
29238 [HAVE_DIALOGS]: New macros.
29239 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
29240 Use them.
29241 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
29242
29243 * macselect.c [MAC_OSX] (install_service_handler): Rename from
29244 init_service_handler. All callers changed. Return OSStatus value.
29245
29246 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
29247 All callers changed so as not to call SetPortWindowPort.
29248 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
29249 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
29250 mac_draw_string_common.
29251 (mac_draw_image_string_qd): Likewise.
29252 (mac_draw_string_common): Use them. Add INLINE.
29253 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
29254 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
29255 GetGlobalMouse.
29256 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
29257 and FRAME_OUTER_TO_INNER_DIFF_Y.
29258 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
29259 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
29260 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
29261 repositioning window to mac_handle_window_event.
29262 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
29263 saving window location to mac_handle_window_event
29264 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
29265 (install_menu_target_item_handler): Remove argument in extern.
29266 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
29267 Also accept command events.
29268 (do_keystroke): New function created from XTread_socket.
29269 (init_command_handler): Remove functions.
29270 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
29271 and save window location by kEventWindowShowing and kEventWindowHiding
29272 handlers here. Don't call next handler for window state change and
29273 focus events.
29274 (mac_handle_application_event, mac_handle_keyboard_event)
29275 [TARGET_API_MAC_CARBON]: New functions.
29276 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
29277 kEventWindowShowing and kEventWindowHiding events. Move installation
29278 of mouse, font, text input and menu target item handlers to
29279 install_application_handler.
29280 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
29281 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
29282 New function.
29283 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
29284 Register it.
29285 (XTread_socket) [TARGET_API_MAC_CARBON]:
29286 Consolidate SendEventToEventTarget calls.
29287 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
29288 Move application activation handler to mac_handle_application_event.
29289 Move keyboard handler to mac_handle_keyboard_event.
29290 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
29291 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
29292 init_command_handler. Call install_application_handler.
29293
29294 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
29295 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
29296
292972007-06-07 Glenn Morris <rgm@gnu.org>
29298
29299 * emacs.c (main): Use `emacs-copyright' in --version output.
29300
293012007-06-06 Chong Yidong <cyd@stupidchicken.com>
29302
29303 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
29304
293052007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29306
29307 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
29308
29309 * macgui.h: Replace WindowPtr with WindowRef.
29310
29311 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
29312 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
29313 Replace ControlHandle with ControlRef.
29314 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
29315
29316 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
29317 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
29318 Replace ControlHandle with ControlRef.
29319 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
29320 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
29321
29322 * macterm.h (struct scroll_bar): Rename member control_handle_low
29323 and control_handle_high to control_ref_low and control_ref_high.
29324 All uses changed.
29325 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
29326 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
29327 respectively. All uses changed.
29328 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
29329 (install_window_handler, remove_window_handler): Replace WindowPtr
29330 with WindowRef in externs.
29331
293322007-06-05 Juanma Barranquero <lekktu@gmail.com>
29333
29334 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
29335
293362007-06-03 Nick Roberts <nickrob@snap.net.nz>
29337
29338 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
29339
29340 * frame.c (Fmouse_position, Fmouse_pixel_position):
29341 Condition on HAVE_GPM too.
29342
29343 * term.c (term_mouse_highlight): Remove unused variables.
29344 (Fterm_open_connection): Set gpm_zerobased to 1.
29345 (term_mouse_movement, term_mouse_click, handle_one_term_event):
29346 Use zero based co-ordinates.
29347 (handle_one_term_event): Report a drag as mouse movement too.
29348
29349 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
29350
293512007-06-03 Chong Yidong <cyd@stupidchicken.com>
29352
29353 * image.c (search_image_cache): New function. Require background
29354 color match if background color is unspecified in the image spec.
29355 (uncache_image, lookup_image): Use it.
29356
293572007-06-01 Juanma Barranquero <lekktu@gmail.com>
29358
29359 * window.c (Fshrink_window): Reflow docstring.
29360
293612007-06-02 Chong Yidong <cyd@stupidchicken.com>
29362
29363 * Version 22.1 released.
29364
293652007-06-01 Richard Stallman <rms@gnu.org>
29366
29367 * xfns.c (x_encode_text): Add GCPRO.
29368
293692007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29370
29371 * xfns.c (x_set_name_internal): Save encoded name before
29372 x_encode_text in case string data is relocated.
29373
293742007-05-31 Richard Stallman <rms@gnu.org>
29375
29376 * buffer.c (syms_of_buffer): Doc fix.
29377
293782007-05-30 Nick Roberts <nickrob@snap.net.nz>
29379
29380 * sysdep.c (init_sys_modes): Add rather than replace with
29381 O_NONBLOCK.
29382
29383 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
29384 term_mouse_moveto.
29385
29386 * termhooks.h (term_mouse_moveto): New extern.
29387
29388 * term.c (mouse_face_window): Rename...
29389 (Qmouse_face_window): ...to this.
29390 (term_show_mouse_face, term_clear_mouse_face)
29391 (term_mouse_highlight): Use Qmouse_face_window.
29392 (term_mouse_moveto): New function.
29393 (term_mouse_position): Make it work.
29394 (syms_of_term): Uncomment assignment to mouse_position_hook.
29395 Staticpro Qmouse_face_window.
29396
293972007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29398
29399 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
29400 around current_column call.
29401
294022007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
29403
29404 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
29405 * xdisp.c (next_element_from_buffer):
29406 * window.c (delete_window):
29407 * term.c (term_mouse_highlight):
29408 * msdos.c (getdefdir):
29409 * macterm.c (mac_create_bitmap_from_bitmap_data)
29410 (init_font_name_table):
29411 * fns.c (Fsxhash):
29412 * data.c (Fmake_local_variable):
29413 * ccl.c (ccl_driver): Likewise.
29414
294152007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29416
29417 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
29418 Call mac_wakeup_from_rne on window size change.
29419
294202007-05-25 Chong Yidong <cyd@stupidchicken.com>
29421
29422 * image.c (uncache_image): Fix typo.
29423
294242007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
29425
29426 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
29427
294282007-05-22 Richard Stallman <rms@gnu.org>
29429
29430 * xterm.c (x_connection_closed): Remove NO_RETURN.
29431
294322007-05-22 Martin Rudalics <rudalics@gmx.at>
29433
29434 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
29435
294362007-05-21 Chong Yidong <cyd@stupidchicken.com>
29437
29438 * image.c (uncache_image): New function.
29439 (Fimage_refresh): New function.
29440
294412007-05-20 Jan Djärv <jan.h.d@swipnet.se>
29442
29443 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
29444
294452007-05-20 Nick Roberts <nickrob@snap.net.nz>
29446
29447 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
29448 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
29449
294502007-05-20 Nick Roberts <nickrob@snap.net.nz>
29451
29452 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
29453 conditional on [HAVE_GPM_H].
29454
294552007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
29456
29457 * syntax.c (skip_chars): Update syntax-table only after we checked that
29458 the new location is valid.
29459
294602007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29461
29462 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
29463 mac_get_window_bounds.
29464
294652007-05-20 Nick Roberts <nickrob@snap.net.nz>
29466
29467 * Makefile.in (LIBGPM): Allow it to be set from configure.
29468 If set then link Emacs with it.
29469
29470 * config.in: Regenerate.
29471
29472 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
29473 New externs.
29474
29475 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
29476 Include gpm.h.
29477 (handle_one_term_event, term_gpm): New externs.
29478
29479 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
29480 and allow it to be interrupted by SIGIO.
29481
29482 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
29483 (wait_reading_process_output): Wait on gpm_fd too.
29484 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
29485 (add_gpm_wait_descriptor_called_flag): New variable.
29486 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
29487
29488 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
29489 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
29490 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
29491 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
29492 (make_lispy_event): Add case GPM_CLICK_EVENT.
29493 (read_avail_input): Handle mouse input.
29494
29495 * term.c (write_glyphs_with_face): New function.
29496 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
29497 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
29498 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
29499 (mouse_face_face_id, term_gpm, pos_x, pos_y)
29500 (last_mouse_x, last_mouse_y): New variables.
29501 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
29502 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
29503 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
29504 (Fterm_close_connection): New functions.
29505 (term_init): Initialise mouse_face_window.
29506
295072007-05-19 Chong Yidong <cyd@stupidchicken.com>
29508
29509 * xdisp.c (redisplay_window): If first window line is a
29510 continuation line, recompute the new window start instead of
29511 recentering.
29512
295132007-05-18 Glenn Morris <rgm@gnu.org>
29514
29515 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
29516 Suggested by Alfred M. Szmidt <ams@gnu.org>.
29517
295182007-05-17 Glenn Morris <rgm@gnu.org>
29519
29520 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
29521
295222007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29523
29524 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
29525 dead key repeat and up events.
29526
295272007-05-14 Chong Yidong <cyd@stupidchicken.com>
29528
29529 * image.c (pbm_load): Check image size for monochrome pbm.
29530
295312007-05-13 Chong Yidong <cyd@stupidchicken.com>
29532
29533 * xterm.c (XTread_socket): Revert last change.
29534
295352007-05-12 Chong Yidong <cyd@stupidchicken.com>
29536
29537 * image.c (pbm_load): Correctly check image size for greyscale pbm.
29538
29539 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
29540
295412007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
29542
29543 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
29544 mixup (YAILOM).
29545
295462007-05-07 Andreas Schwab <schwab@suse.de>
29547
29548 * keymap.c (Flookup_key): Fix typo in last change.
29549
295502007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
29551
29552 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
29553 mapping for unibyte strings.
29554
295552007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29556
29557 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
29558 (Fx_popup_dialog) [MAC_OSX]: Likewise.
29559
295602007-04-29 Richard Stallman <rms@gnu.org>
29561
29562 * insdel.c (replace_range): For undo, record insertion first.
29563
295642007-04-29 Andreas Schwab <schwab@suse.de>
29565
29566 * lisp.h (VECSIZE): Use OFFSETOF.
29567
295682007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29569
29570 * xdisp.c (try_window_reusing_current_matrix): Fix number of
29571 disabled lines.
29572
295732007-04-28 Richard Stallman <rms@gnu.org>
29574
29575 * lread.c (read_escape): In a string, \s is always space.
29576
295772007-04-27 Jan Djärv <jan.h.d@swipnet.se>
29578
29579 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
29580
29581 * gtkutil.c (xg_update_menubar, create_menus): Create empty
29582 submenu for menu bar items.
29583
29584See ChangeLog.10 for earlier changes.
29585
29586;; Local Variables:
29587;; coding: utf-8
aac0c6e3
MR
29588;; End:
29589
e9bffc61
GM
29590 Copyright (C) 2007, 2008, 2009, 2010, 2011
29591 Free Software Foundation, Inc.
aac0c6e3
MR
29592
29593 This file is part of GNU Emacs.
29594
29595 GNU Emacs is free software: you can redistribute it and/or modify
29596 it under the terms of the GNU General Public License as published by
29597 the Free Software Foundation, either version 3 of the License, or
29598 (at your option) any later version.
29599
29600 GNU Emacs is distributed in the hope that it will be useful,
29601 but WITHOUT ANY WARRANTY; without even the implied warranty of
29602 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29603 GNU General Public License for more details.
29604
29605 You should have received a copy of the GNU General Public License
29606 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.