* fileio.c (Fdelete_file): Pass TRASH arg to handler call.
[bpt/emacs.git] / src / ChangeLog
1 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
2
3 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
4
5 2010-05-28 Kenichi Handa <handa@m17n.org>
6
7 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
8 Don't sheck SPEC if it is nil.
9 (font_list_entities): Call font_delete_unmatched if
10 Vface_ignored_fonts is non-nil.
11
12 2010-05-28 Glenn Morris <rgm@gnu.org>
13
14 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
15
16 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
17
18 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
19 whether to trash.
20 (internal_delete_file, Frename_file): Callers changed.
21 (delete_by_moving_to_trash): Doc fix.
22 (Fdelete_directory_internal): Don't move to trash.
23
24 * callproc.c (delete_temp_file):
25 * buffer.c (Fkill_buffer): Callers changed.
26
27 * lisp.h: Update prototype.
28
29 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
30
31 * xdisp.c (redisplay_window): After redisplay, check if point is
32 still valid before setting it (Bug#6177).
33
34 2010-05-27 Glenn Morris <rgm@gnu.org>
35
36 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
37 Convert comments to Makefile format.
38
39 * Makefile.in (bootstrap-clean): No more Makefile.c.
40
41 2010-05-26 Glenn Morris <rgm@gnu.org>
42
43 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
44 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
45
46 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
47 Remove.
48 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
49
50 2010-05-26 Kenichi Handa <handa@m17n.org>
51
52 * composite.c (composition_compute_stop_pos): Fix condition for
53 backward scanning.
54
55 2010-05-25 Glenn Morris <rgm@gnu.org>
56
57 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
58 Move before TEMACS_LDFLAGS.
59 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
60 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
61
62 * Makefile.in (NOT_C_CODE): No longer define.
63 (config.h): No longer include.
64
65 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
66 variables it may reference.
67
68 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
69 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
70
71 2010-05-25 Kenichi Handa <handa@m17n.org>
72
73 * dispextern.h (struct composition_it): New members rule_idx and
74 charpos.
75
76 * xdisp.c (set_iterator_to_next): While scanning backward, assume
77 that the character positions of IT point the last character of the
78 current grapheme cluster.
79 (next_element_from_composition): Don't change character positions
80 of IT.
81 (append_composite_glyph): Set glyph->charpos to
82 it->cmp_it.charpos.
83
84 * composite.c (autocmp_chars): Change the first argument to RULE,
85 and try composition with RULE only.
86 (composition_compute_stop_pos): Record the index number of the
87 composition rule in CMP_IT->rule_idx.
88 (composition_reseat_it): Call autocmp_chars repeatedly until the
89 correct rule of the composition is found.
90 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
91 is at the last character of the current grapheme cluster when
92 CMP_IT->reversed_p is nonzero.
93
94 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
95
96 * editfns.c (Fbyte_to_string): New function.
97
98 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
99
100 * process.c (Fmake_network_process): Set :host to nil if it's not used.
101 Suggested by Masatake YAMATO <yamato@redhat.com>.
102
103 2010-05-23 Eli Zaretskii <eliz@gnu.org>
104
105 * dispextern.h (init_iterator): Sync prototype with changed definition.
106
107 2010-05-19 Eli Zaretskii <eliz@gnu.org>
108
109 Redesign and reimplement bidi-aware edge positions of glyph rows.
110
111 * dispextern.h (struct glyph_row): New members minpos and maxpos.
112 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
113 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
114 and maxpos members instead of start.pos and end.pos, respectively.
115
116 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
117 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
118 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
119 (try_window_reusing_current_matrix, try_window_id):
120 Use ROW->minpos rather than ROW->start.pos.
121 (init_from_display_pos, init_iterator): Use EMACS_INT for
122 character and byte positions.
123 (find_row_edges): Rename from find_row_end. Accept additional
124 arguments for minimum and maximum buffer positions seen by
125 display_line for this row. Don't use iterator to find the
126 position following the maximum one; instead, increment the
127 position found by display_line directly. Fix logic; eol_pos
128 should be tested before the rest. Handle the case of characters
129 delivered from display vector (bug#6036). Fix tests related to
130 it->method. Handle the truncated_on_right_p rows.
131 (RECORD_MAX_MIN_POS): New macro.
132 (display_line): Use it to record the minimum and maximum buffer
133 positions for glyphs in the row being assembled. Record the
134 position of the newline that terminates the line. If word wrap is
135 in effect, restore minimum and maximum positions seen up to the
136 wrap point, when iterator returns to it.
137 (try_window_reusing_current_matrix): Give up if in bidi-reordered
138 row and cursor not already at point. Restore original pre-bidi
139 code for unidirectional buffers.
140
141 * dispnew.c (increment_row_positions, check_matrix_invariants):
142 Increment and check row->start.pos and row->end.pos, in addition
143 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
144
145 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
146 Display truncated_on_left_p and truncated_on_right_p flags.
147 Formatting fixes.
148 (pmtxrows): Display the ordinal number of each row. Don't display
149 rows beyond the last one.
150
151 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
152 it is not copied by bidi_copy_it.
153
154 2010-05-22 Eli Zaretskii <eliz@gnu.org>
155
156 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
157 (Bug#6237)
158
159 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
160
161 * image.c (Fimage_flush): Rename from image-refresh.
162
163 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
164
165 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
166 just one window.
167
168 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
169 (clear_image_cache): If the number of cached images is unusually
170 large, decrease the cache eviction delay (Bug#6230).
171
172 2010-05-21 Glenn Morris <rgm@gnu.org>
173
174 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
175 Move these rules to ns.mk.
176 * ns.mk: New file.
177
178 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
179
180 * Makefile.in (CANNOT_DUMP): New, set by configure.
181 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
182
183 2010-05-20 Juri Linkov <juri@jurta.org>
184
185 * fileio.c (Fdelete_file): Change interative spec to use
186 `read-file-name' like in `find-file-read-args' where the default
187 value is `default-directory' instead of `buffer-file-name'.
188 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
189
190 2010-05-20 Kevin Ryde <user42@zip.com.au>
191
192 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
193 (Voverriding_terminal_local_map, Vsystem_key_alist)
194 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
195
196 2010-05-20 Glenn Morris <rgm@gnu.org>
197
198 * Makefile.in (DEPDIR): New constant.
199 (DEPFLAGS): Set with configure, not cpp.
200 (MKDEPDIR): New, set by configure.
201 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
202 (clean): Use $DEPDIR.
203 (deps_frag): Include from configure.
204 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
205 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
206
207 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state): Fix
208 reallocation of the cache. (Bug#6210)
209
210 2010-05-19 Glenn Morris <rgm@gnu.org>
211
212 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
213
214 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
215 (GNULIB_VAR): Remove.
216 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
217
218 * m/ibms390x.h (LINKER):
219 * m/macppc.h (LINKER) [GNU_LINUX]:
220 * s/aix4-2.h (ORDINARY_LINK):
221 * s/cygwin.h (LINKER):
222 * s/darwin.h (ORDINARY_LINK):
223 * s/gnu.h (ORDINARY_LINK):
224 * s/netbsd.h (LINKER):
225 * s/usg5-4.h (ORDINARY_LINK):
226 Move to configure.
227
228 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
229
230 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
231
232 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
233 prevent stack overflow if number of arguments is too large
234 (Bug#6214).
235
236 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
237
238 * charset.c (load_charset_map_from_file): Don't call close after fclose.
239
240 2010-05-18 Glenn Morris <rgm@gnu.org>
241
242 * s/gnu-linux.h: Combine two conditionals.
243
244 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
245 $(POST_ALLOC_OBJ).
246
247 * Makefile.in (RALLOC_OBJ): New, set by configure.
248 (rallocobj): Replace with the previous variable.
249 (otherobj): Use $RALLOC_OBJ.
250
251 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
252 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
253
254 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
255 (gmallocobj, vmlimitobj): Replace with previous two variables.
256 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
257
258 2010-05-17 Glenn Morris <rgm@gnu.org>
259
260 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
261 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
262
263 2010-05-16 Glenn Morris <rgm@gnu.org>
264
265 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
266
267 * Makefile.in (clean): Get rid of HAVE_NS conditional.
268
269 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
270 trailing "/".
271
272 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
273 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
274
275 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
276 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
277 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
278 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
279 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
280
281 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
282 Remove ${STARTFLAGS}, nothing ever sets it.
283
284 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
285
286 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
287
288 2010-05-16 Glenn Morris <rgm@gnu.org>
289
290 * Makefile.in (LIBX_BASE): Always define.
291
292 * Makefile.in (LIBX_OTHER): Move out of cpp section.
293
294 * Makefile.in (LIBXT): Always define.
295
296 2010-05-15 Glenn Morris <rgm@gnu.org>
297
298 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
299
300 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
301 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
302
303 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
304
305 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
306 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
307
308 * emacs.c (main): Initialize initial-environment and
309 process-environment before generating from env, not after.
310
311 Handle --version reasonably in CANNOT_DUMP configuration.
312 * emacs.c (emacs_version, emacs_copyright): New string variables.
313 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
314 (syms_of_emacs): Defvar them, and initialize them from the C
315 string variables.
316 (main): If initialization hasn't been done, print initial version
317 info from the C strings, instead of starting an interactive session.
318
319 2010-05-15 Eli Zaretskii <eliz@gnu.org>
320
321 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
322 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
323 (bidi_paragraph_init): Remove redundant assertion that we are at
324 the beginning of a line after call to bidi_find_paragraph_start.
325
326 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
327 (syms_of_xdisp): Defsubr it.
328
329 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
330
331 * Makefile.in: Fix MSDOS-related comments.
332
333 2010-05-15 Glenn Morris <rgm@gnu.org>
334
335 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
336 (really-lwlib, really-oldXMenu): Always define.
337 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
338
339 * Makefile.in: Simplify cpp conditional.
340
341 * Makefile.in (${ns_appdir}): Simplify using umask.
342
343 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
344
345 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
346
347 * eval.c (specbind): Remove left-over duplicate test.
348 Disallow let-binding frame-local vars. Add comment.
349
350 2010-05-14 Eli Zaretskii <eliz@gnu.org>
351
352 Make the cache of bidi iterator states dynamically allocated.
353 * bidi.c (bidi_cache_shrink): New function.
354 (bidi_init_it): Call it.
355 (bidi_cache_iterator_state): Enlarge the cache if needed.
356
357 * bidi.c (bidi_move_to_visually_next): Rename from
358 bidi_get_next_char_visually. All callers changed.
359
360 2010-05-14 Kenichi Handa <handa@m17n.org>
361
362 * dispextern.h (struct composition_it): New member reversed_p.
363
364 * composite.c (composition_compute_stop_pos): Search backward if
365 ENDPOS < CHARPOS.
366 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
367 Set CMP_IT->reversed_p.
368 (composition_update_it): Pay attention to CMP_IT->reversed_p.
369
370 * xdisp.c (set_iterator_to_next):
371 Call composition_compute_stop_pos with negative ENDPOS if we are
372 scanning backward. Call composition_compute_stop_pos if scan
373 direction is changed.
374 (next_element_from_buffer): Call composition_compute_stop_pos with
375 negative ENDPOS if we are scanning backward.
376 (next_element_from_composition): Pay attention to
377 IT->cmp_it.reversed_p.
378
379 2010-05-14 Kenichi Handa <handa@m17n.org>
380
381 * font.c (font_range): Return the range for the font found at first.
382
383 2010-05-14 Glenn Morris <rgm@gnu.org>
384
385 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
386
387 * Makefile.in (mktime, X11, register): Move undefs to configure.
388
389 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
390 (MSDOS_X_OBJ): New variable.
391 (MSDOS_SUPPORT_REAL): New constant.
392 (MSDOS_SUPPORT): Set as a variable, not with cpp.
393 (obj): Use MSDOS_X_OBJ.
394 (lisp): Use MSDOS_SUPPORT as a variable.
395
396 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
397 (GPM_MOUSE_SUPPORT): Now it's a constant.
398 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
399 not cpp.
400
401 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
402 (ns_appresdir): Remove, unused.
403
404 * Makefile.in (SHELL): Move outside cpp section.
405
406 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
407
408 2010-05-13 Glenn Morris <rgm@gnu.org>
409
410 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
411 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
412
413 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
414 HAVE_WINDOW_SYSTEM must be too.
415
416 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
417 (lisp): Remove WINNT_SUPPORT.
418
419 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
420 Let configure set these variables (to empty) in this case as well.
421
422 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
423 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
424
425 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
426 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
427 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
428 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
429 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
430 the values output by configure.
431 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
432
433 2010-05-12 Glenn Morris <rgm@gnu.org>
434
435 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
436 (LINKER_WAS_SPECIFIED): Remove.
437
438 * Makefile.in (LIB_GCC): Set using configure, not cpp.
439 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
440 * m/arm.h (LIB_GCC) [GNU_LINUX]:
441 * s/cygwin.h (LIB_GCC):
442 * s/freebsd.h (LIB_GCC):
443 * s/gnu-linux.h (LIB_GCC):
444 * s/msdos.h (LIB_GCC):
445 * s/netbsd.h (LIB_GCC):
446 Move to configure.
447
448 2010-05-11 Karel Klic <kklic@redhat.com>
449
450 * ftfont.c: Fix incorrect parentheses of #if condition for
451 definining M17N_FLT_USE_NEW_FEATURE.
452
453 2010-05-11 Glenn Morris <rgm@gnu.org>
454
455 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
456 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
457
458 2010-05-10 Eli Zaretskii <eliz@gnu.org>
459
460 * xdisp.c (init_iterator): Don't turn on bidi reordering in
461 unibyte buffers. See
462 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
463
464 2010-05-10 Glenn Morris <rgm@gnu.org>
465
466 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
467 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
468 (LIBES): Use LIBS_SYSTEM as a variable.
469 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
470 * s/aix4-2.h (LIBS_SYSTEM):
471 * s/freebsd.h (LIBS_SYSTEM):
472 * s/hpux10-20.h (LIBS_SYSTEM):
473 * s/sol2-6.h (LIBS_SYSTEM):
474 * s/unixware.h (LIBS_SYSTEM):
475 Move to configure.
476
477 * s/aix4-2.h (MAIL_USE_LOCKF):
478 * s/bsd-common.h (MAIL_USE_FLOCK):
479 * s/darwin.h (MAIL_USE_FLOCK):
480 * s/gnu-linux.h (MAIL_USE_FLOCK):
481 * s/irix6-5.h (MAIL_USE_FLOCK):
482 * s/template.h (MAIL_USE_FLOCK):
483 Move to configure.
484
485 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
486
487 * Version 23.2 released.
488
489 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
490
491 * composite.c (autocmp_chars): Save point as marker before calling
492 auto-composition-function (Bug#5984).
493
494 * lisp.h (restore_point_unwind): Add prototype.
495
496 * fileio.c (restore_point_unwind): Remove static attribute.
497
498 2010-05-08 Kenichi Handa <handa@m17n.org>
499
500 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
501 new feature of libotf and m17n-flt.
502 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
503 Call OTF_check_features even if no specific feature is given.
504 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
505 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
506 that OUT is NULL. Use OTF_drive_gsub_with_log and
507 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
508 OTF_drive_gpos.
509 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
510 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
511 Setup mflt_enable_new_feature and mflt_try_otf.
512
513 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
514
515 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
516
517 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
518 box and toolbar (Bug #6139).
519 (xg_create_tool_bar): Remove comment (Bug #6139).
520 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
521 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
522
523 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
524
525 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
526 Update dependencies.
527
528 2010-05-08 Eli Zaretskii <eliz@gnu.org>
529
530 * fringe.c (update_window_fringes): Set up truncation bitmaps for
531 R2L lines.
532
533 2010-05-08 Glenn Morris <rgm@gnu.org>
534
535 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
536
537 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
538 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
539 (termcapobj): Replace with TERMCAP_OBJ.
540 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
541 (LIBES): Use LIBS_TERMCAP as a variable.
542
543 * s/freebsd.h (osreldate.h): No longer include, since this file
544 does not use __FreeBSD_version any more.
545
546 * s/aix4-2.h (TERMINFO):
547 * s/cygwin.h (TERMINFO):
548 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
549 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
550 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
551 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
552 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
553 * s/irix6-5.h (TERMINFO):
554 * s/netbsd.h (LIBS_TERMCAP):
555 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
556 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
557 * s/usg5-4.h (TERMINFO):
558 Move to configure.
559
560 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
561
562 * eval.c (unbind_to): Don't unbind a local binding into the global
563 binding when the local binding disappeared. Inversely, don't unbind
564 a global binding into a newly created local binding.
565 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
566 can specify the frame to use, when applicable. Adjust callers.
567
568 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
569 Stefan Monnier <monnier@iro.umontreal.ca>
570
571 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
572
573 2010-05-07 Eli Zaretskii <eliz@gnu.org>
574
575 * w32fns.c: Include w32.h.
576 (Fw32_shell_execute): Decode the error message before passing it
577 to `error'. (Bug#6126)
578
579 * msdos.c (dos_set_window_size):
580 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
581 instead of `XSYMBOL (foo)->value'.
582
583 2010-05-07 Eli Zaretskii <eliz@gnu.org>
584
585 Fix the MS-DOS build, broken by autoconfiscation.
586
587 * Makefile.in: Don't use Make-style comments past the "start of
588 cpp stuff" line.
589 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
590
591 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
592 edited directly by msdos/sed1v2.inp).
593
594 2010-05-07 Glenn Morris <rgm@gnu.org>
595
596 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
597 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
598 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
599 move out of cpp section.
600 * s/freebsd.h (LD_SWITCH_SYSTEM):
601 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
602 * s/netbsd.h (LD_SWITCH_SYSTEM):
603 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
604
605 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
606
607 Define LIB_STANDARD and START_FILES using autoconf.
608 * s/usg5-4.h (LIB_STANDARD):
609 * s/netbsd.h (START_FILES):
610 * s/irix6-5.h (LIB_STANDARD):
611 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
612 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
613 * s/freebsd.h (START_FILES):
614 * s/darwin.h (START_FILES):
615 * s/cygwin.h (START_FILES):
616 * s/aix4-2.h (LIB_STANDARD):
617 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
618 * Makefile.in (STARTFILES): Rename to START_FILES, define using
619 autoconf, not cpp.
620
621 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
622
623 Remove NEED_BSDTTY and NEED_UNISTD_H.
624 * s/hpux10-20.h (NEED_BSDTTY): Remove.
625 * s/aix4-2.h (NEED_UNISTD_H): Remove.
626 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
627 <sys/ptyio.h> and <unistd.h>.
628
629 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
630
631 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
632 * s/gnu.h (START_FILES): Remove empty definition.
633
634 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
635
636 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
637
638 2010-05-06 Glenn Morris <rgm@gnu.org>
639
640 * Makefile.in (CPP, LN_S): Remove unused variables.
641
642 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
643
644 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
645
646 2010-05-05 Lawrence Mitchell <wence@gmx.li>
647
648 * m/sparc.h: Fix typo in earlier change.
649
650 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
651
652 Misc tweaks.
653 * eval.c (Fdefvaralias): Remove unintended nested if.
654 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
655
656 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
657
658 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
659
660 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
661
662 Remove BSD_PGRPS.
663 * s/bsd-common.h (BSD_PGRPS): Remove undef.
664 * s/gnu-linux.h (BSD_PGRPS): Remove.
665 * term.c (dissociate_if_controlling_tty):
666 * sysdep.c (narrow_foreground_group, widen_foreground_group)
667 (init_sys_modes, reset_sys_modes):
668 * emacs.c (main):
669 * callproc.c (Fcall_process, child_setup): Remove code depending
670 on BSD_PGRPS.
671
672 Remove POSIX_SIGNALS.
673 * s/usg5-4.h (POSIX_SIGNALS):
674 * s/netbsd.h (POSIX_SIGNALS):
675 * s/msdos.h (POSIX_SIGNALS):
676 * s/ms-w32.h (POSIX_SIGNALS):
677 * s/hpux11.h (POSIX_SIGNALS):
678 * s/gnu.h (POSIX_SIGNALS):
679 * s/gnu-linux.h (POSIX_SIGNALS):
680 * s/freebsd.h (POSIX_SIGNALS):
681 * s/darwin.h (POSIX_SIGNALS):
682 * s/cygwin.h (POSIX_SIGNALS):
683 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
684 * s/unixware.h:
685 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
686 * process.c (create_process):
687 * syssignal.h:
688 * sysdep.c (wait_for_termination, init_signals):
689 * process.c (create_process):
690 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
691 remove all code that assumes the contrary.
692
693 2010-05-04 Glenn Morris <rgm@gnu.org>
694
695 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
696 variable.
697 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
698 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
699 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
700 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
701 LD_SWITCH_SYSTEM_tmp.
702 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
703 New variables, set by configure.
704
705 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
706 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
707 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
708 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
709 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
710
711 * s/aix4-2.h (C_SWITCH_SYSTEM):
712 * m/alpha.h (C_SWITCH_MACHINE):
713 Move to configure.in.
714 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
715 New variables, set by configure.
716 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
717 $c_switch_machine and $c_switch_system.
718
719 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
720
721 * s/hpux10-20.h (LIB_STANDARD): New definition.
722 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
723 on it, not used anymore.
724
725 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
726
727 * eval.c (internal_condition_case_n): Rename from
728 internal_condition_case_2.
729 (internal_condition_case_2): New function.
730
731 * xdisp.c (safe_call): Use internal_condition_case_n.
732
733 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
734 (internal_delete_file, Frename_file): Callers changed.
735
736 * buffer.c (Fkill_buffer):
737 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
738
739 * lisp.h: Update prototypes.
740
741 2010-05-03 Glenn Morris <rgm@gnu.org>
742
743 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
744 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
745 (LIBXT): Set with configure, not cpp.
746 (LIBX): Remove.
747 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
748
749 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
750
751 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
752 The FreeBSD is not needed, the default works, Solaris version is
753 not needed, and the remaining case is not supported by configure.
754
755 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
756
757 * xsmfns.c (CHDIR_OPT): New define.
758 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
759 restarting emacs.
760
761 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
762 shut_down_emacs.
763
764 * emacs.c (USAGE1): Mention --chdir.
765 (main): Handle --chdir.
766 (standard_args): Add --chdir.
767 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
768 #5552).
769
770 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
771
772 Remove LD_SWITCH_MACHINE.
773 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
774 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
775
776 Clean up IRIX code.
777 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
778 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
779
780 Clean up AIX code.
781 * m/ibmrs6000.inp: Remove file, unused.
782 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
783 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
784 definition ...
785 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
786
787 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
788 unused.
789
790 2010-05-01 Eli Zaretskii <eliz@gnu.org>
791
792 Emulate POSIX_SIGNALS on MS-Windows.
793
794 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
795 (SIG_SETMASK, SIG_UNBLOCK): Define.
796
797 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
798 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
799 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
800
801 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
802 New stubs.
803
804 Miscellaneous fixes of bidi display.
805
806 * xdisp.c (find_row_end): New function, refactored from display_line.
807 (display_line): Use it.
808 (extend_face_to_end_of_line): In almost-filled rows, extend only
809 if the row is R2L and not continued.
810 (display_line): Fix prepending of truncation glyphs to R2L rows.
811 Preserve overlay and string info in row->end.
812 (insert_left_trunc_glyphs): Support addition of left truncation
813 glyphs to R2L rows.
814 (set_cursor_from_row): Don't place cursor on the vertical border
815 glyph between adjacent windows. Fix a crash when a display string
816 is continued to the next line. Don't return zero if cursor was
817 found by `cursor' property of a display string.
818 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
819 test for that explicitly.
820
821 2010-05-01 Glenn Morris <rgm@gnu.org>
822
823 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
824 for clarity.
825 (OTHER_OBJ): Remove.
826 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
827 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
828
829 2010-05-01 Karel Klíč <kklic@redhat.com>
830
831 * fileio.c (Ffile_selinux_context): Context functions may return null.
832
833 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
834
835 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
836
837 2010-04-30 Glenn Morris <rgm@gnu.org>
838
839 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
840 (OTHER_OBJ): Define as a separate variable, for clarity.
841
842 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
843
844 * xsettings.c: include limits.h and update file comment.
845
846 2010-04-30 Glenn Morris <rgm@gnu.org>
847
848 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
849 Set with configure, not cpp.
850 (LIBW): Remove, replace with $TOOLKIT_LIBW.
851
852 * Makefile.in (mallocobj): Remove.
853 (otherobj): Simplify using @OTHER_OBJ@.
854
855 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
856 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
857 Don't bother making nsgui.h dependency platform-specific.
858
859 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
860
861 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
862
863 * process.c (read_process_output, exec_sentinel): Don't burp if the
864 sentinel/filter kills the current buffer (bug#6060).
865
866 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
867 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
868 Remove unused var `args'.
869 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
870 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
871 * doc.c (store_function_docstring): Use XSETCAR.
872
873 2010-04-28 Glenn Morris <rgm@gnu.org>
874
875 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
876 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
877
878 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
879
880 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
881 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
882
883 * Makefile.in (FONT_OBJ): New, set by configure.
884 (FONT_DRIVERS): Use $FONT_OBJ.
885
886 * Makefile.in (LIBXMU): Set with configure, not cpp.
887 * s/aix4-2.h (LIBXMU):
888 * s/hpux10-20.h (LIBXMU):
889 Remove definition, now set in configure.
890
891 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
892
893 * m/amdx86-64.h [i386]: Move this test to configure.in.
894
895 2010-04-27 Glenn Morris <rgm@gnu.org>
896
897 * Makefile.in (LIBXTR6): Set with configure, not cpp.
898 * s/unixware.h (NEED_LIBW): Remove definition.
899
900 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
901 (TOOLKIT_LIBW): New, set by configure.
902 (@X_TOOLKIT_TYPE@): No longer define it.
903
904 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
905 (MOTIF_LIBW): Set with configure, not cpp.
906 * s/aix4-2.h (LIB_MOTIF):
907 * s/gnu-linux.h (LIB_MOTIF):
908 * s/unixware.h (LIB_MOTIF): Move to configure.in.
909
910 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
911
912 Reduce CPP usage.
913 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
914 (obj): Use autoconf for unexec instead of cpp.
915 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE): Remove
916 definitions and undefs. Inline definitions in the only user.
917 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
918
919 2010-04-27 Glenn Morris <rgm@gnu.org>
920
921 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
922 since the defaults (set by the system file) are fine in most cases.
923 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
924 * m/ibms390x.h (START_FILES, LIB_STANDARD):
925 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
926 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
927 Remove definitions, since they are set correctly in s/gnu-linux.h.
928 * s/freebsd.h (START_FILES, LIB_STANDARD):
929 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
930 * s/hpux10-20.h (START_FILES):
931 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
932 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
933
934 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
935 (MOTIF_LIBW): Use $LIBXP.
936 (otherobj): Use $WIDGET_OBJ.
937
938 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
939
940 * Makefile.in (LIBS_MACHINE): Remove, unused.
941
942 Use autoconf instead of cpp for LIB_MATH.
943 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
944 * s/cygwin.h (LIB_MATH): Likewise.
945 * Makefile.in (LIB_MATH): Do not define with cpp.
946 (LIBES): Use autoconf for LIB_MATH.
947
948 2010-04-26 Kenichi Handa <handa@m17n.org>
949
950 * composite.c (Ffind_composition_internal): Fix the return value
951 for an automatic composition.
952
953 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
954
955 Remove all NO_ARG_ARRAY uses.
956 * fns.c (concat2, concat3, nconc2):
957 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
958 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
959 * m/xtensa.h (NO_ARG_ARRAY):
960 * m/template.h (NO_ARG_ARRAY):
961 * m/sparc.h (NO_ARG_ARRAY):
962 * m/sh3.h (NO_ARG_ARRAY):
963 * m/mips.h (NO_ARG_ARRAY):
964 * m/macppc.h (NO_ARG_ARRAY):
965 * m/iris4d.h (NO_ARG_ARRAY):
966 * m/intel386.h (NO_ARG_ARRAY):
967 * m/ibms390x.h (NO_ARG_ARRAY):
968 * m/ibms390.h (NO_ARG_ARRAY):
969 * m/ibmrs6000.h (NO_ARG_ARRAY):
970 * m/ia64.h (NO_ARG_ARRAY):
971 * m/hp800.h (NO_ARG_ARRAY):
972 * m/arm.h (NO_ARG_ARRAY):
973 * m/amdx86-64.h (NO_ARG_ARRAY):
974 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
975
976 2010-04-25 Eli Zaretskii <eliz@gnu.org>
977
978 * xdisp.c (display_line): Don't assume 2nd call to
979 get_next_display_element cannot return zero. (Bug#6030)
980 (iterate_out_of_display_property): New function, body from pop_it.
981 (pop_it): Use it.
982
983 2010-04-24 Glenn Morris <rgm@gnu.org>
984
985 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
986 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
987 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
988 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
989
990 2010-04-24 Eli Zaretskii <eliz@gnu.org>
991
992 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
993 use `get_next_display_element' and `set_iterator_to_next' to
994 advance to the next character, when looking for the character that
995 begins the next row.
996
997 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
998 definition of "struct Lisp_Symbol".
999
1000 2010-04-24 Glenn Morris <rgm@gnu.org>
1001
1002 * Makefile.in (CRT_DIR): New variable, set by configure.
1003 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
1004 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
1005
1006 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1007
1008 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
1009
1010 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
1011
1012 Remove redundant flags.
1013 * s/freebsd.h (C_SWITCH_SYSTEM):
1014 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
1015 * s/netbsd.h (C_SWITCH_SYSTEM):
1016 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
1017 of these.
1018
1019 Simplify m/intel386.h.
1020 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
1021 user: ecrt0.c.
1022 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
1023 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
1024 the only user: s/unixware.h.
1025 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
1026 from m/intel386.h.
1027 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Definitions
1028 moved here from m/intel386.h.
1029
1030 * m/mips.h: Remove #if 0 code.
1031
1032 2010-04-23 Eli Zaretskii <eliz@gnu.org>
1033
1034 Fix display of composed characters from L2R scripts in bidi buffers.
1035 * xdisp.c (set_iterator_to_next, next_element_from_composition):
1036 After advancing IT past the composition, resync the bidi iterator
1037 with IT's position. (Bug#5977)
1038
1039 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1040
1041 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
1042 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
1043
1044 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1045
1046 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
1047
1048 2010-04-23 Eli Zaretskii <eliz@gnu.org>
1049
1050 Support `display' text properties and overlay strings in bidi buffers.
1051 * xdisp.c (pop_it): When the stack is popped after displaying
1052 from a string, bidi-iterate to exit from the text portion covered
1053 by the `display' property or overlay. (Bug#5988, bug#5920)
1054
1055 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1056
1057 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
1058 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
1059
1060 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
1061 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
1062
1063 Simplify STARTFILES definition.
1064 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
1065 relying on Makefile.in to define it.
1066 * s/cygwin.h (START_FILES): Likewise.
1067 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
1068
1069 Clean up Solaris code.
1070 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
1071 (LIB_MOTIF): Remove, configure takes care of this.
1072 (NOT_USING_MOTIF): Remove, unused.
1073 * xrdb.c: Remove #if 0-ed #include.
1074 (SYSV): Remove conditional for old SysV.
1075 * sysdep.c (closedir): Remove conditional code for Solaris,
1076 Solaris has closedir.
1077
1078 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
1079
1080 * xsettings.c (read_and_apply_settings): Check if current_font is
1081 NULL before strcmp (Bug#6001).
1082
1083 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
1084
1085 Clean up HP-UX files.
1086 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
1087 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
1088 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
1089 * s/hpux10-20.h: ... to the only user, here.
1090
1091 2010-04-21 Eli Zaretskii <eliz@gnu.org>
1092
1093 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
1094 use buffer-local values of paragraph-start and paragraph-separate.
1095 <paragraph_start_re, paragraph_separate_re>: Rename from
1096 fallback_paragraph_start_re and fallback_paragraph_separate_re.
1097 (Bug#5992)
1098
1099 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
1100
1101 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
1102 current_tool_bar_style are new.
1103 (store_config_changed_event): Rename from store_font_changed_event.
1104 (XSETTINGS_TOOL_BAR_STYLE): New define.
1105 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
1106 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
1107 HAVE_XFT.
1108 (something_changedCB): store_font_changed_event is now
1109 store_config_changed_event
1110 (parse_settings): Rename from parse_xft_settings. Read
1111 non-xft xsettings outside #ifdef HAVE_XFT.
1112 (read_settings): Renamed from read_xft_settings.
1113 (apply_xft_settings): Take current settings as parameter. Do not
1114 call read_(xft)_settings.
1115 (read_and_apply_settings): New function.
1116 (xft_settings_event): Do non-xft stuff out of HAVE_XFT. Call
1117 read_and_apply_settings if there are settings to be read.
1118 (init_xsettings): Renamed from init_xfd_settings.
1119 Call read_and_apply_settings unconditionally.
1120 (xsettings_initialize): Call init_xsettings.
1121 (Ftool_bar_get_system_style): New function.
1122 (syms_of_xsettings): Define Qmonospace_font_name and
1123 Qtool_bar_style. Initialize current_tool_bar_style to nil.
1124 defsubr Stool_bar_get_system_style. Fprovide on
1125 dynamic-setting.
1126 Move misplaced HAVE_GCONF
1127
1128 * xsettings.h (Ftool_bar_get_system_style): Declare.
1129
1130 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
1131 Qtext, Qboth, Qboth_horiz are new.
1132 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
1133 Vtool_bar_style, tool_bar_max_label_size.
1134
1135 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
1136
1137 * keyboard.c: QClabel is new.
1138 (parse_tool_bar_item): Take out QClabel from tool bar items.
1139 Try to construct a label if ther is no QClabel.
1140 (syms_of_keyboard): Intern :label as QClabel.
1141
1142 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
1143 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
1144 New.
1145
1146 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
1147 dynamic-setting.el.
1148
1149 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
1150 (xg_make_tool_item, xg_show_toolbar_item): New function.
1151 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
1152 Call xg_make_tool_item to make a tool bar item.
1153 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
1154
1155 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
1156 into account for toolbars.
1157
1158 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
1159
1160 * data.c (make_blv): Declarations before code (Bug#5993).
1161
1162 2010-04-21 Glenn Morris <rgm@gnu.org>
1163
1164 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
1165 Define using autoconf, not cpp.
1166 (LIBXSM): New variable, set by autoconf.
1167 (LIBXT): Use $LIBXSM.
1168
1169 2010-04-21 Dan Nicolaescu <local_user@dannlt>
1170
1171 Remove NOMULTIPLEJOBS, unused.
1172 * s/template.h (NOMULTIPLEJOBS):
1173 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
1174
1175 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
1176 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
1177 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
1178 detects -znocombreloc and passes it to the linker
1179 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
1180
1181 2010-04-21 Glenn Morris <rgm@gnu.org>
1182
1183 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
1184
1185 2010-04-21 Karel Klíč <kklic@redhat.com>
1186
1187 * Makefile.in (LIBSELINUX_LIBS): New.
1188 (LIBES): Add $LIBSELINUX_LIBS.
1189 * eval.c, lisp.h (call7): New function.
1190 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
1191 (Ffile_selinux_context, Fset_file_selinux_context):
1192 New functions.
1193 (Fcopy_file): New parameter preserve-selinux-context.
1194 (Frename_file): Preserve selinux context when renaming by copy-file.
1195
1196 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
1197 Eli Zaretskii <eliz@gnu.org>
1198
1199 Don't depend on cm.c or termcap.c on Windows, use stubs.
1200 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
1201 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
1202 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
1203 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
1204 (sys_tputs, sys_tgetstr): New stubs.
1205 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
1206 (tputs, tgetstr): New; define to sys_*.
1207
1208 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
1209
1210 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
1211
1212 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1213
1214 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
1215 Just signal a warning rather than an error when inside a let.
1216 (Fmake_variable_frame_local): Add the same test.
1217
1218 * font.c (syms_of_font): Make the style table vars read-only.
1219
1220 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
1221 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
1222
1223 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
1224
1225 2010-04-20 Eli Zaretskii <eliz@gnu.org>
1226
1227 Fix R2L paragraph display on TTY.
1228
1229 * xdisp.c (unproduce_glyphs): New function.
1230 (display_line): Use it when produced glyphs are discarded from R2L
1231 glyph rows.
1232 (append_composite_glyph): In R2L rows, prepend the glyph rather
1233 than appending it.
1234
1235 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
1236 rather than append it. Set up the resolved_level and bidi_type
1237 attributes of the appended glyph.
1238 (produce_special_glyphs): Mirror the backslash continuation
1239 character in R2L lines.
1240
1241 Implement display of R2L paragraphs in GUI sessions.
1242
1243 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
1244 append_stretch_glyph.
1245 (set_cursor_from_row) <cursor_x>: Remove unused variable. Fix
1246 off-by-one error in computing x at end of text in the row.
1247 (append_stretch_glyph): In reversed row, prepend the glyph rather
1248 than append it. Set resolved_level and bidi_type of the glyph.
1249 (extend_face_to_end_of_line): If the row is reversed, prepend a
1250 stretch glyph whose width is such that the rightmost glyph will be
1251 drawn at the right margin of the window. Fix off-by-one error on
1252 TTY frames in testing whether a line needs face extension. Fix
1253 face extension at ZV. If this is the last glyph row, use
1254 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
1255 region face.
1256 (set_cursor_from_row, display_line): Use
1257 MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
1258 row->continuation_lines_width.
1259 (next_element_from_buffer): Don't call bidi_paragraph_init if we
1260 are at ZV. Fixes a crash when reseated to ZV by
1261 try_window_reusing_current_matrix.
1262 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
1263 which happens with R2L glyph rows. Fixes a crash when inserting a
1264 character at end of an R2L line.
1265 (set_cursor_from_row): Don't be fooled by truncated rows: don't
1266 treat them as having zero-width characters. Improve comments.
1267 Don't reverse pos_before and pos_after for reversed glyph rows.
1268 Set cursor.x to negative value when the cursor might be on the
1269 left fringe.
1270 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
1271 left fringe, not the right one.
1272 (notice_overwritten_cursor, draw_phys_cursor_glyph)
1273 (erase_phys_cursor): For reversed cursor_row, support cursor on
1274 the left fringe.
1275
1276 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
1277 of continuation indicators on the fringes.
1278 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
1279 left fringe.
1280
1281 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
1282 draw cursor on the left fringe.
1283
1284 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
1285 cursor on the left fringe.
1286
1287 * dispnew.c (update_text_area): Handle reversed desired rows when
1288 the cursor is on the left fringe.
1289 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
1290 below, not by 0, for when the cursor is on the left fringe.
1291
1292 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
1293
1294 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
1295 widget is a scrollbar.
1296
1297 2010-04-20 Kenichi Handa <handa@m17n.org>
1298
1299 * charset.c (char_charset): Consider Vcharset_non_preferred_head
1300 only when the arg CHARSET_LIST is nil.
1301
1302 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1303
1304 Make variable forwarding explicit rather the using special values.
1305 Basically, this makes the structure of buffer-local values and object
1306 forwarding explicit in the type of Lisp_Symbols rather than use
1307 special Lisp_Objects for that. This tends to lead to slightly more
1308 verbose code, but is more C-like, simpler, and makes it easier to make
1309 sure we handled all cases, among other things by letting the compiler
1310 help us check it.
1311 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
1312 Removing forwarding objects.
1313 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
1314 (struct Lisp_Symbol): Make the various forms of variable-forwarding
1315 explicit rather than hiding them inside Lisp_Object "values".
1316 (XFWDTYPE): New macro.
1317 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
1318 (XBUFFER_LOCAL_VALUE): Remove.
1319 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
1320 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
1321 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
1322 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
1323 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
1324 Remove the Lisp_Misc_* header.
1325 (struct Lisp_Buffer_Local_Value): Redefine.
1326 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
1327 (struct Lisp_Misc_Any): Add filler to get the right size.
1328 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
1329 Lisp_Intfwd.
1330 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
1331 (DEFVAR_KBOARD): Allocate a forwarding object.
1332 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
1333 (let_shadows_global_binding_p): New function.
1334 (union Lisp_Val_Fwd): New type.
1335 (make_blv): New function.
1336 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
1337 (store_symval_forwarding, swap_in_global_binding, Fboundp)
1338 (swap_in_symval_forwarding, find_symbol_value, Fset)
1339 (let_shadows_buffer_binding_p, set_internal, default_value)
1340 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
1341 (Fkill_local_variable, Fmake_variable_frame_local)
1342 (Flocal_variable_p, Flocal_variable_if_set_p)
1343 (Fvariable_binding_locus):
1344 * xdisp.c (select_frame_for_redisplay):
1345 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
1346 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
1347 * frame.c (store_frame_param):
1348 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
1349 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
1350 value structure.
1351 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
1352 (clone_per_buffer_values): Only adjust markers into the current buffer.
1353 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
1354 (Fbuffer_local_value, set_buffer_internal_1)
1355 (swap_out_buffer_local_variables):
1356 Adapt to the new symbol value structure.
1357 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
1358 (defvar_per_buffer): Take a new arg for the fwd object.
1359 (buffer_lisp_local_variables): Return a proper alist (different fix
1360 for bug#4138).
1361 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
1362 (Fgarbage_collect): Don't handle buffer_defaults specially.
1363 (mark_object): Handle new symbol value structure rather than the old
1364 special Lisp_Misc_* objects.
1365 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
1366 * term.c (set_tty_color_mode):
1367 * bidi.c (bidi_initialize): Don't access the ->value field directly.
1368 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
1369 a buffer_local_flags.
1370 * print.c (print_object): Get rid of impossible forwarding objects.
1371
1372 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1373
1374 * bidi.c (bidi_get_type, bidi_get_category)
1375 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
1376 (bidi_type_of_next_char, bidi_level_of_next_char):
1377 Declare static. Use `INLINE' rather than `inline'.
1378
1379 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
1380
1381 * dired.c (Ffile_attributes): Fix typo in docstring.
1382
1383 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
1384
1385 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
1386 NSInteger (Bug#5811).
1387
1388 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1389
1390 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
1391 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
1392
1393 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1394
1395 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
1396
1397 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
1398
1399 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
1400 terminal frames (Bug#5837).
1401
1402 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1403
1404 * .gdbinit (xsubchartable): New command.
1405
1406 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1407
1408 * xdisp.c (display_line): Don't write beyond the last glyph row in
1409 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
1410 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
1411 and
1412 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
1413
1414 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1415
1416 * alloc.c (Fpurecopy): Hash-cons if requested.
1417 (syms_of_alloc): Update purify-flag docstring.
1418
1419 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
1420
1421 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
1422 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
1423
1424 2010-04-17 Eli Zaretskii <eliz@gnu.org>
1425
1426 Fix a crash when an NSM character is inserted at BEGV.
1427
1428 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
1429 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
1430 NEUTRAL_B or UNKNOWN_BT.
1431
1432 2010-04-16 Eli Zaretskii <eliz@gnu.org>
1433
1434 * xdisp.c (set_cursor_from_row): Don't consider possibility of
1435 other rows with cursor unless they are different from this row and
1436 this row is part of a continued line. (Bug#5943)
1437
1438 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
1439
1440 * s/freebsd.h: Restore osreldate.h include.
1441 Suggested by Naohiro Aota.
1442
1443 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
1444
1445 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
1446
1447 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
1448
1449 * s/cygwin.h: Avoid linking against static libgcc.
1450
1451 2010-04-15 Juri Linkov <juri@jurta.org>
1452
1453 * window.c: Add Qscroll_command.
1454 Remove Vscroll_preserve_screen_position_commands.
1455 (window_scroll_pixel_based, window_scroll_line_based): Check the
1456 `scroll-command' property on the last command instead of searching
1457 the last command in Vscroll_preserve_screen_position_commands.
1458 (syms_of_window): Initialize and staticpro `Qscroll_command'.
1459 Put Qscroll_command property on Qscroll_up and Qscroll_down.
1460 (scroll-preserve-screen-position): Doc fix.
1461 (Vscroll_preserve_screen_position_commands): Remove variable.
1462
1463 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
1464
1465 * xdisp.c (message): Do not use NO_ARG_ARRAY.
1466
1467 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
1468
1469 Reduce cpp use in Makefile.in.
1470 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
1471 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
1472 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
1473 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
1474 (CRT0_COMPILE): Remove, inline it in the only user.
1475
1476 2010-04-14 Juri Linkov <juri@jurta.org>
1477
1478 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
1479 `scroll-up-command' and `M-v' from `scroll-down' to
1480 `scroll-down-command'.
1481
1482 2010-04-14 Juri Linkov <juri@jurta.org>
1483
1484 * window.c (Vscroll_preserve_screen_position_commands): New variable
1485 with the default value as the list of Qscroll_down and Qscroll_up.
1486 (window_scroll_pixel_based, window_scroll_line_based): Search the
1487 last command in the list Vscroll_preserve_screen_position_commands
1488 instead of comparing with Qscroll_up and Qscroll_down.
1489
1490 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
1491
1492 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
1493 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
1494 does that.
1495
1496 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
1497 to zero.
1498
1499 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
1500
1501 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
1502
1503 Try to solve the problem of spurious EOF chars in long lines of text
1504 sent to interactive subprocesses.
1505 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
1506 (system_process_attributes): Remove unused var `ttotal'.
1507 * process.c (send_process): Don't bother breaking long line with EOF
1508 chars when talking to ttys any more.
1509 (wait_reading_process_output): Output a warning when called in such
1510 a way that it could block without being interruptible.
1511
1512 Try to detect file modification within the same second.
1513 * buffer.h (struct buffer): New field modtime_size.
1514 * buffer.c (reset_buffer): Initialize it.
1515 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
1516 (Fverify_visited_file_modtime): Check it.
1517 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
1518 (Fset_visited_file_modtime): Set (or clear) it.
1519
1520 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1521
1522 * process.c (status_notify): Remove unused var `ro'.
1523
1524 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
1525
1526 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
1527 more than one visual (Bug#5938).
1528
1529 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
1530
1531 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
1532 Undefine.
1533
1534 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
1535
1536 Remove C_SWITCH_SYSTEM_TEMACS.
1537 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
1538 (malloc, realloc, free): Use emacs, not temacs for conditional
1539 definition.
1540
1541 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
1542 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
1543
1544 Use autoconf, not cpp for some variables.
1545 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
1546 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
1547 (ALL_CFLAGS): Use them as make variables.
1548 (really-lwlib, really-oldXMenu): Do not pass them.
1549
1550 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
1551
1552 * xmenu.c (apply_systemfont_to_dialog): New.
1553 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
1554
1555 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1556
1557 * process.c (exec_sentinel): Preserve current-buffer.
1558
1559 * process.c (read_process_output): Move the save-current-buffer to
1560 apply to both the filter and the non-filter branches.
1561
1562 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
1563
1564 * s/msdos.h (UNEXEC): New definition.
1565
1566 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1567
1568 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
1569 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
1570
1571 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
1572 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
1573 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
1574 TRY_WINDOW_CHECK_MARGINS.
1575
1576 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
1577 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
1578 width only when it is for padding.
1579
1580 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
1581
1582 * xfns.c (Fx_show_tip): Call try_window in a loop until
1583 fonts_changed_p is zero (Bug#2423).
1584
1585 2010-04-08 Eli Zaretskii <eliz@gnu.org>
1586
1587 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
1588 the end of TEXT_AREA. (Bug#5856)
1589
1590 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
1591
1592 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
1593 HAVE_GCONF.
1594
1595 2010-04-08 Eli Zaretskii <eliz@gnu.org>
1596
1597 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
1598 prev.orig_type, for resolving type of NSM. (Bug#5858)
1599
1600 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
1601
1602 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
1603 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
1604 in current_font.
1605 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
1606 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
1607 New functions.
1608 (syms_of_xsettings): Initialize current_font.
1609 defsubr Sfont_get_system_normal_font.
1610
1611 * xsettings.h (Ffont_get_system_normal_font,
1612 xsettings_get_system_normal_font): Declare.
1613
1614 * xfns.c (extern xlwmenu_default_font): Remove.
1615 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
1616 to xlwmenu.c.
1617
1618 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
1619 menu items in UTF-8.
1620
1621 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
1622 (apply_systemfont_to_menu): New function.
1623 (set_frame_menubar, create_and_show_popup_menu): Call
1624 apply_systemfont_to_menu.
1625
1626 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
1627
1628 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
1629 FRAME_LINE_TO_PIXEL_Y.
1630
1631 * xterm.c (x_set_window_size_1): Don't add border_width/height to
1632 pixelwidth/height.
1633
1634 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
1635
1636 Simplify code for HP machines.
1637 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
1638 for GNU_LINUX, not needed.
1639 (UNEXEC, NEED_BSDTTY): Move definitions...
1640 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
1641
1642 * m/iris4d.h (UNEXEC): Move definition ...
1643 * s/irix6-5.h (UNEXEC): ... here.
1644
1645 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
1646
1647 * xfns.c (set_machine_and_pid_properties): New function.
1648 (Fx_create_frame): Call set_machine_and_pid_properties.
1649
1650 2010-04-03 Eli Zaretskii <eliz@gnu.org>
1651
1652 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char): Check
1653 bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
1654 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
1655
1656 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
1657 in this function. (Bug#5703)
1658
1659 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
1660
1661 * nsterm.h: Fix last change.
1662
1663 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
1664
1665 * m/intel386.h (NO_REMAP): Move definition ...
1666 * s/msdos.h (NO_REMAP): ... here.
1667
1668 * m/vax.h (CRT0_DUMMIES): Remove, unused.
1669
1670 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
1671 used on those platforms.
1672
1673 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
1674
1675 Remove extern errno declarations.
1676 * xterm.c:
1677 * xrdb.c:
1678 * w32term.c:
1679 * unexec.c:
1680 * unexaix.c:
1681 * sysdep.c:
1682 * process.c:
1683 * lread.c:
1684 * keyboard.c:
1685 * floatfns.c:
1686 * filelock.c:
1687 * fileio.c:
1688 * emacs.c (main):
1689 * ecrt0.c:
1690 * dispnew.c:
1691 * callproc.c:
1692 * buffer.c: Remove errno extern declarations.
1693 * s/netbsd.h (NEED_ERRNO): Remove.
1694
1695 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
1696
1697 Remove all uses of LIBX11_SYSTEM.
1698 * Makefile.in (LIBX11_SYSTEM): Remove.
1699 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
1700 instead.
1701
1702 2010-04-01 Eli Zaretskii <eliz@gnu.org>
1703
1704 Remove support for DJGPP v1.x (bug#5813).
1705
1706 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
1707 * s/msdos.h:
1708 * unexec.c (make_hdr, copy_text_and_data):
1709 * sysdep.c (wait_for_termination, sys_subshell):
1710 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
1711 (IT_set_terminal_modes, __write, _rename, gethostname)
1712 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
1713 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
1714 the value of __DJGPP__.
1715 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
1716 compatibility code.
1717 * lread.c:
1718 * gmalloc.c (memalign):
1719 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
1720 * emacs.c (main):
1721 * dosfns.c (init_dosfns):
1722 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
1723
1724 2010-04-01 Eli Zaretskii <eliz@gnu.org>
1725
1726 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
1727 string with `cursor' property comes from an `after-string'
1728 overlay. (Bug#5816)
1729
1730 2010-04-01 Glenn Morris <rgm@gnu.org>
1731
1732 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
1733 Define as Makefile variables.
1734 (LIBX): Use above variables rather than directly using autoconf.
1735
1736 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
1737
1738 Clean up BSD_SYSTEM use.
1739 * xterm.c:
1740 * process.c:
1741 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
1742 for including <sys/ioctl.h>.
1743 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
1744 code is only used for MSDOS.
1745
1746 2010-03-31 Juri Linkov <juri@jurta.org>
1747
1748 * image.c: Add `Qextension_data'.
1749 (syms_of_image): Initialize and staticpro `Qextension_data'.
1750 (Fimage_metadata): Rename from `Fimage_extension_data'.
1751 (gif_load): Put GIF extension data to the property
1752 `Qextension_data'.
1753
1754 2010-04-05 Chong Yidong <cyd@stupidchicken.com>
1755
1756 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
1757 terminal frames (Bug#5837).
1758
1759 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1760
1761 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
1762 * nsterm.h: Fix prototype.
1763
1764 2010-03-31 Eli Zaretskii <eliz@gnu.org>
1765
1766 * xdisp.c (highlight_trailing_whitespace): Support highlight of
1767 trailing whitespace in right-to-left rows.
1768
1769 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1770
1771 Get rid of the direct_output optimizations.
1772 * keyboard.c (nonundocount): Remove extern declaration.
1773 (command_loop_1): Remove brittle optimisation for cheap and
1774 common operations.
1775 * xdisp.c (redisplay_internal): Don't bother checking
1776 redisplay_performed_directly_p any more.
1777 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
1778 any more.
1779 * dispnew.c (redisplay_performed_directly_p)
1780 (direct_output_for_insert, direct_output_forward_char):
1781 * dispextern.h (redisplay_performed_directly_p)
1782 (direct_output_for_insert, direct_output_forward_char): Remove.
1783 * cmds.c (nonundocount): Make it static.
1784
1785 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
1786
1787 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
1788
1789 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
1790
1791 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
1792 invisible (Bug#5766).
1793
1794 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
1795
1796 * xdisp.c (x_consider_frame_title, update_window_cursor):
1797 Remove HAVE_NS conditionals.
1798 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
1799
1800 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
1801 filename for the title.
1802 (ns_set_doc_edited): Do nothing if the selected window is a
1803 minibuffer window.
1804
1805 * nsterm.h: Add prototypes for ns_set_name_as_filename and
1806 ns_set_doc_edited.
1807
1808 * nsterm.m: Remove unneeded prototype.
1809
1810 2010-03-31 Glenn Morris <rgm@gnu.org>
1811
1812 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
1813 in the DOC file. (Bug#5336)
1814
1815 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1816
1817 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
1818
1819 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1820
1821 * window.c (keys_of_window): Remove redundant/overridden bindings.
1822
1823 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1824
1825 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
1826 Restore original behavior when the iterator is not bidi_p.
1827
1828 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
1829
1830 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
1831
1832 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1833
1834 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
1835 are outside the range of cached character positions.
1836
1837 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
1838
1839 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
1840
1841 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1842
1843 Initial support for bidirectional editing.
1844
1845 * Makefile.in (obj): Include bidi.o.
1846 (bidi.o): New target.
1847
1848 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
1849 ($(BLD)/bidi.$(O)): New target.
1850
1851 * bidi.c: New file.
1852
1853 * buffer.h (struct buffer): New members bidi_display_reordering
1854 and bidi_paragraph_direction.
1855
1856 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
1857 and bidi_paragraph_direction.
1858 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
1859 and bidi-paragraph-direction.
1860 (Fbuffer_swap_text): Swap the values of
1861 bidi_display_reordering and bidi_paragraph_direction.
1862
1863 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
1864 (bidi_type_t, bidi_dir_t): New types.
1865 (bidi_saved_info, bidi_stack, bidi_it): New structures.
1866 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
1867 prev_stop, base_level_stop, and eol_pos.
1868 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
1869 (IT_STACK_SIZE): Enlarge to 5.
1870 (struct glyph_row): New member reversed_p.
1871 <string_buffer_position>: Update prototype.
1872 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
1873 glyph_row if bidi_it.paragraph_dir == R2L.
1874 (struct glyph): New members resolved_level and bidi_type.
1875
1876 * dispnew.c (direct_output_forward_char): Give up if we need bidi
1877 processing or buffer's direction is right-to-left.
1878 (prepare_desired_row): Preserve the reversed_p flag.
1879 (row_equal_p): Compare the reversed_p attributes as well.
1880
1881 * xdisp.c (init_iterator): Initialize it->bidi_p. Call
1882 bidi_init_it and set it->paragraph_embedding from the current
1883 buffer's value of bidi_paragraph_direction.
1884 (reseat_1): Initialize bidi_it.first_elt.
1885 (set_iterator_to_next, next_element_from_buffer): Use the value of
1886 paragraph_embedding to determine the paragraph direction.
1887 (set_iterator_to_next): Under bidi reordering, call
1888 bidi_get_next_char_visually. Call bidi_paragraph_init if the
1889 new_paragraph flag is set in the bidi iterator.
1890 (next_element_from_buffer): If bidi_it.first_elt is set,
1891 initialize paragraph direction and find the first character to
1892 display in the visual order. If reseated to a middle of a line,
1893 prime the bidi iterator starting at the line's beginning. Handle
1894 the situation where we overstepped stop_charpos due to
1895 non-linearity of the bidi iteration. Likewise for when we back up
1896 beyond the previous stop_charpos. When moving across stop_charpos,
1897 record it in prev_stop.
1898 (display_line): Set row->end and it->start for the next row to the
1899 next character in logical order. Always extend reversed_p rows to
1900 the end of line, even if they end at ZV. Copy the reversed_p flag
1901 to the next glyph row. Keep calling set_cursor_from_row for
1902 bidi-reordered rows even if we already have a possible candidate
1903 for cursor position. Set row_end after all the row's glyphs have
1904 been produced, by looping over the glyphs. Record the position
1905 after EOL in it->eol_pos, and use it to set end_pos of the last
1906 row produced for a continued line.
1907 <Qright_to_left, Qleft_to_right>: New variables.
1908 (syms_of_xdisp): Initialize and staticpro them.
1909 (string_buffer_position_lim): New function.
1910 (string_buffer_position): Most of code moved to
1911 string_buffer_position_lim. Last argument and return value are
1912 now EMACS_INT; all callers changed.
1913 (set_cursor_from_row): Rewritten to support bidirectional text and
1914 reversed glyph rows.
1915 (text_outside_line_unchanged_p, try_window_id): Disable
1916 optimizations if we are reordering bidirectional text and the
1917 paragraph direction can be affected by the change.
1918 (append_glyph, append_composite_glyph)
1919 (produce_image_glyph, append_stretch_glyph): Set the
1920 resolved_level and bidi_type members of each glyph.
1921 (append_glyph): If the glyph row is reversed, prepend the glyph
1922 rather than appending it.
1923 (handle_stop_backwards): New function.
1924 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
1925 (reseat): call handle_stop_backwards to recompute prev_stop and
1926 base_level_stop for the new position.
1927 (handle_invisible_prop): Under bidi iteration, skip invisible text
1928 using bidi_get_next_char_visually. If we are `reseat'ed, init the
1929 paragraph direction. Update IT->prev_stop after skipping
1930 invisible text.
1931 (move_it_in_display_line_to): New variables prev_method
1932 and prev_pos. Compare for strict equality in
1933 BUFFER_POS_REACHED_P.
1934 (try_cursor_movement): Examine all the candidate rows that occlude
1935 point, to return the best match. If rows are bidi-reordered
1936 and point moved backwards, back up to the row that is not a
1937 continuation line, and start looking for a suitable row from
1938 there.
1939
1940 * term.c (append_glyph): Reverse glyphs by pre-pending them,
1941 rather than appending, if the glyph_row's reversed_p flag is set.
1942 Set the resolved_level and bidi_type members of each glyph.
1943
1944 * .gdbinit (pbiditype): New command.
1945 (pgx): Use it to display bidi level and type of the glyph.
1946 (pitx): Display some bidi information about the iterator.
1947 (prowlims, pmtxrows): New commands.
1948
1949 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
1950
1951 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
1952 * s/usg5-4.h (LIBS_DEBUG):
1953 * s/irix6-5.h (C_DEBUG_SWITCH):
1954 * s/gnu-linux.h (LIBS_DEBUG):
1955 * s/darwin.h (LIBS_DEBUG):
1956 * s/bsd-common.h (LIBS_DEBUG):
1957 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
1958 * m/iris4d.h (LIBS_DEBUG):
1959 * m/hp800.h (LIBS_DEBUG): Remove definitions.
1960
1961 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
1962 (LIBS_DEBUG): Remove definition.
1963
1964 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
1965
1966 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
1967 Windows.
1968
1969 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1970
1971 * process.c (Fmake_network_process): Don't call turn_on_atimers around
1972 `connect' (Bug#5723).
1973
1974 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
1975
1976 * process.c (Fmake_network_process): Call `select' for interrupted
1977 `connect' rather than creating new socket (Bug#5173).
1978
1979 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
1980
1981 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
1982
1983 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
1984
1985 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
1986
1987 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1988
1989 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
1990 XLoadQueryFont.
1991
1992 2010-03-24 Kenichi Handa <handa@m17n.org>
1993
1994 * coding.c (decode_coding_ccl): Fix previous change for the
1995 multibyte case.
1996 (encode_coding_ccl): Don't setup ccl program here. Fix for the
1997 case that the output buffer is fullfilled.
1998 (encode_coding): Setup ccl program here.
1999
2000 2010-03-24 Andreas Politz <politza@fh-trier.de> (tiny change)
2001
2002 * editfns.c (Fformat): Account for string precision when computing
2003 field width (Bug#5710).
2004
2005 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
2006
2007 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
2008
2009 Simplify LIBS_MACHINE definitions.
2010 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
2011 * m/iris4d.h (LIBS_MACHINE): Likewise.
2012 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
2013 * s/aix4-2.h (LIBS_SYSTEM): ... here.
2014 * s/netbsd.h: Remove commented out code.
2015
2016 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
2017
2018 Remove dead code dealing with POSIX_SIGNALS.
2019 * atimer.c (set_alarm): Remove dead code, all USG systems define
2020 POSIX_SIGNALS.
2021 * data.c (arith_error): Likewise.
2022 * keyboard.c (input_available_signal, handle_user_signal)
2023 (interrupt_signal): Likewise.
2024 * process.c (sigchld_handler): Likewise.
2025 (create_process): Remove if 0 code. Remove HPUX conditional when
2026 !defined (POSIX_SIGNALS), it cannot be true.
2027 * syssignal.h: Remove USG5_4 and USG conditionals when
2028 !POSIX_SIGNALS, they cannot be true.
2029
2030 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
2031 NO_SOCK_SIGIO, not used anymore.
2032
2033 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
2034
2035 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
2036 support vax on BSDs.
2037
2038 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
2039 * s/aix4-2.h (ORDINARY_LINK): ... here.
2040
2041 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
2042
2043 * Makefile.in (abs_builddir): Define.
2044 (bootstrap_exe): Use it.
2045 (VPATH): Use $(srcdir) instead of @srcdir@.
2046
2047 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2048
2049 * Makefile.in (bootstrap_exe): Use an absolute name.
2050
2051 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2052
2053 Remove support for old GNU/Linux using libc version 5.
2054 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
2055 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
2056
2057 Consolidate redundant definitions in s/bsd-common.h.
2058 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2059 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2060 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
2061 doing it in all files that include this one.
2062 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2063 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2064 (LDAV_SYMBOL, KERNEL_FILE): Remove.
2065 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2066 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2067 (LDAV_SYMBOL, KERNEL_FILE): Remove.
2068 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2069 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2070 (LDAV_SYMBOL, KERNEL_FILE): Remove.
2071
2072 Consolidate redundant definitions.
2073 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
2074 it's undefined in all files that include this one.
2075 (POSIX_SIGNALS): Define here instead of doing it in all files that
2076 include this one.
2077 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
2078 (POSIX_SIGNALS): Do not define.
2079 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
2080 (POSIX_SIGNALS): Do not define.
2081 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
2082 (POSIX_SIGNALS): Do not define.
2083
2084 Remove support for old UNIX System V systems.
2085 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
2086 * s/usg-5-4-2.h: Remove.
2087
2088 Remove support for Solaris on PPC and for old versions.
2089 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
2090 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
2091 that cancel each other.
2092 * s/sol2-3.h:
2093 * s/sol2-4.h:
2094 * s/sol2-5.h: Remove.
2095 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
2096 (NO_REMAP): Remove, unused.
2097 (UNEXEC): Move definition ...
2098 * s/aix4-2.h (UNEXEC): ... here.
2099
2100 * s/openbsd.h: Remove support for non-ELF and for systems that do
2101 not support shared libraries.
2102 * s/netbsd.h:
2103 * s/freebsd.h: Likewise.
2104
2105 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2106
2107 Remove non-working support for lynxos 3.0.
2108 * s/lynxos.h: Remove file.
2109
2110 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
2111 COFF_BSD_SYMBOLS, nothing defines it anymore.
2112
2113 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2114
2115 Remove obsolete uses of HAVE_SHM.
2116 * emacs.c (standard_args):
2117 (Fdump_emacs):
2118 (syms_of_emacs): Remove code depending on HAVE_SHM.
2119
2120 * alloc.c: Remove HAVE_SHM dependent definition.
2121
2122 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
2123
2124 2010-03-18 Glenn Morris <rgm@gnu.org>
2125
2126 * emacs.c (USAGE4): Hard-code bug address.
2127 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
2128 (bug_reporting_address): Remove.
2129 (main): Don't call bug_reporting_address.
2130
2131 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
2132 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
2133
2134 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
2135
2136 * xfns.c (Fx_create_frame):
2137 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
2138 on left.
2139
2140 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
2141
2142 * editfns.c (Fformat): Account for string precision when computing
2143 field width (Bug#5710).
2144
2145 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
2146
2147 * xfns.c (Fx_create_frame): Set default to Qright.
2148
2149 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
2150 all window systems.
2151
2152 2010-03-12 Eli Zaretskii <eliz@gnu.org>
2153
2154 These changes remove termcap.c from the build on Posix platforms.
2155 * Makefile.in (termcapobj): Move termcap.o from here...
2156 (MSDOS_OBJ): ...to here.
2157 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
2158 now identical to when LIBS_TERMCAP is defined.
2159
2160 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
2161
2162 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
2163
2164 * config.in: Regenerated. (See top-level ChangeLog.)
2165
2166 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
2167
2168 * Branch for 23.2.
2169
2170 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
2171
2172 Cleanup setup of gl_state in various parts of the code.
2173 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
2174 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
2175 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
2176 (skip_chars):
2177 * regex.c (regex_compile): Use it.
2178 (re_compile_pattern): Don't set gl_state.current_syntax_table since
2179 it's now set in regex_compile when/if we need it.
2180
2181 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
2182
2183 Make it possible to C-g in a tight bytecode loop again (bug#5680).
2184 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
2185 (QUIT): Use it to consolidate code and remove redundancy.
2186 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
2187
2188 * regex.c (regex_compile): Setup gl_state as well.
2189
2190 * syntax.c (skip_chars): Setup gl_state (bug#3823).
2191 (in_classes): Use CONSP before XCAR/XCDR.
2192
2193 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
2194
2195 * keymap.c (Fwhere_is_internal): Use Fequal to compare
2196 definitions, so that keyboard macros are correctly handled
2197 (Bug#5481).
2198
2199 2010-03-02 Eli Zaretskii <eliz@gnu.org>
2200
2201 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
2202 text that could be relocated inside the call to emacs_mule_char.
2203 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
2204 (CODING_DECODE_CHAR): Add a comment describing its purpose.
2205
2206 2010-03-02 Kenichi Handa <handa@m17n.org>
2207
2208 * character.c (parse_str_as_multibyte): Fix handling of the
2209 multibyte form of raw-bytes.
2210 (str_as_multibyte): Likewise.
2211
2212 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
2213 form of raw-bytes.
2214
2215 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
2216
2217 * charset.c (load_charset_map_from_file)
2218 (load_charset_map_from_vector): Zero out allocated
2219 charset_map_entries before using them.
2220
2221 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
2222
2223 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
2224
2225 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
2226
2227 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
2228 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
2229
2230 2010-02-26 Kenichi Handa <handa@m17n.org>
2231
2232 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
2233
2234 * xdisp.c (reseat_to_string): Fix previous change.
2235
2236 2010-02-26 David Reitter <david.reitter@gmail.com>
2237
2238 * nsfont.m (nsfont_draw): ns_antialias_text should be a
2239 Lisp_Object (Bug#4736).
2240
2241 2010-02-25 Kenichi Handa <handa@m17n.org>
2242
2243 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
2244
2245 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
2246
2247 * xterm.c (XTflash): Move declarations before statements.
2248
2249 * gtkutil.c (xg_get_gdk_display): Remove (unused).
2250 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
2251 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
2252 (xg_create_tool_bar): Remove unused variables.
2253 (x_wm_set_size_hint): Move declarations before statements.
2254 (xg_create_frame_widgets): Remove variable grav,
2255
2256 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
2257
2258 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
2259
2260 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2261
2262 * term.c (fatal): Add a final \n if needed (bug#5596).
2263
2264 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
2265
2266 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
2267
2268 2010-02-18 Glenn Morris <rgm@gnu.org>
2269
2270 * callint.c (Finteractive): Doc fix.
2271
2272 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
2273
2274 * coding.c (record_conversion_result):
2275 Handle CODING_RESULT_INSUFFICIENT_DST.
2276 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
2277 memory allocation error.
2278
2279 2010-02-17 Kenichi Handa <handa@m17n.org>
2280
2281 * coding.c (decode_coding_ccl): Don't setup ccl program here.
2282 Fix for the case that the output buffer is fullfilled.
2283 (decode_coding): Setup ccl program here. Keep looping when the
2284 decoder stopped because the output buffer is
2285 fullfilled (bug#5534).
2286
2287 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
2288
2289 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
2290
2291 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
2292 bug #5571.
2293 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
2294 overdrawn.
2295
2296 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
2297
2298 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
2299 doing_interact here.
2300 (ice_connection_closed): New function.
2301 (x_session_check_input, smc_die_CB, ice_io_error_handler)
2302 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
2303 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
2304 returns I/O error.
2305 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
2306 bug #5512.
2307
2308 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
2309
2310 * nsfont.m (nsfont_open): The system's value for the font descent
2311 is negative, so round it down to avoid clipping.
2312
2313 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
2314
2315 * charset.c (load_charset_map_from_file)
2316 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
2317 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
2318
2319 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
2320
2321 * charset.c (load_charset_map_from_file): Allocate large
2322 charset_map_entries structure on the heap rather than the stack.
2323 (Bug#5526).
2324
2325 2010-01-31 Kenichi Handa <handa@m17n.org>
2326
2327 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
2328 size in NAME is invalid, return -1 (Bug#5396).
2329
2330 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
2331
2332 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
2333 <deactivated@gmail.com> (Bug#3605).
2334
2335 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
2336
2337 * fileio.c (Frename_file): Correctly rename symlinks to
2338 directories (Bug#5496).
2339
2340 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
2341
2342 * nsterm.m (ns_ring_bell): Handle visible bell like X.
2343
2344 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
2345
2346 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
2347
2348 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
2349
2350 * frame.c (DEFAULT_ROWS): Change default to 35.
2351
2352 * xfns.c (x_default_font_parameter): Change default XFT font to
2353 monospace-10 (Bug#3643).
2354
2355 2010-01-29 Eli Zaretskii <eliz@gnu.org>
2356
2357 * w32inevt.c (key_event): Remove unnecessary comparison of
2358 event->uChar.AsciiChar with 128.
2359
2360 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
2361
2362 * fileio.c (Frename_file): Fix last change (Bug#5487).
2363
2364 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
2365
2366 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
2367
2368 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
2369
2370 * xfns.c (Fx_create_frame): Remove window size matching code from
2371 2010-01-15.
2372 (x_get_current_desktop, x_get_desktop_workarea): Remove
2373
2374 2010-01-27 Jason Rumney <jasonr@gnu.org>
2375
2376 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
2377 (key_event): Use unicode for characters 128 and higher (Bug#4567).
2378
2379 2010-01-27 Kenichi Handa <handa@m17n.org>
2380
2381 * regex.c (analyse_first): Fix setting of fastmap for unibyte
2382 pattern string (Bug#4209).
2383
2384 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
2385
2386 * fileio.c (Frename_file): Call copy-directory and
2387 delete-directory for directories, in order to handle cross-device
2388 renaming (Bug#3353).
2389
2390 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
2391
2392 * xfns.c (Fx_create_frame): If frame height is too big, try
2393 sizes 24 and 10. Bug #3643.
2394
2395 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
2396
2397 Try and fix bug#788, hopefully for real this time.
2398 * keymap.c (shadow_lookup): Add `remap' arg.
2399 (describe_map, describe_vector): Update calls to shadow_lookup.
2400 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
2401 `remapped' so this flag is applicable to `sequence'. Be careful to
2402 perform remapping during shadow_lookup check of remapped_sequences.
2403
2404 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
2405
2406 * image.c (png_load): Use png_sig_cmp instead of the obsolete
2407 png_check_sig, which has been removed in libpng 1.4.
2408
2409 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
2410
2411 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
2412 lacks this header file).
2413
2414 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2415
2416 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
2417 as in Emacs 22.
2418
2419 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2420
2421 * lisp.h (make_pure_string): String pointer arg now points to const.
2422
2423 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
2424 args now point to const.
2425
2426 2010-01-22 Eli Zaretskii <eliz@gnu.org>
2427
2428 * lread.c (Fload): Don't treat files without .elc extension as
2429 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
2430 them. (bug#5303)
2431
2432 2010-01-20 Kenichi Handa <handa@m17n.org>
2433
2434 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
2435 treat the source as actual byte sequence.
2436
2437 2010-01-19 Alan Mackenzie <acm@muc.de>
2438
2439 Fix spurious before-change-functions invocation from (insert ?\n).
2440 * textprop.c (set_text_properties): Rename parameter
2441 `signal_after_change_p' to `coherent_change_p', and make the
2442 invocation of `modify_region' conditional on it.
2443
2444 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
2445
2446 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
2447 for debug purpose.
2448 (syms_of_xsettings): Declare xft-settings.
2449
2450 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
2451
2452 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
2453
2454 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2455
2456 * xterm.c (event_handler_gdk): Block input (Bug#5037).
2457
2458 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
2459
2460 * emacs.c (standard_args): Adjust arg priorities to reflect how
2461 they are processed in startup.el.
2462
2463 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
2464
2465 * Makefile.in (lisp, shortlisp): Update.
2466
2467 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2468
2469 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
2470 code, link the new kboard into all_kboard before running Lisp code,
2471 and protect the new terminal with GCPRO (Bug#5365).
2472 (x_term_init): Remove unused var `atom'.
2473 (x_delete_display, x_delete_terminal): Remove unused var `i'.
2474
2475 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
2476
2477 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
2478 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
2479 to find out usable size of the desktop. Don't make frames larger than
2480 this. Bug #3643.
2481
2482 2010-01-15 Kenichi Handa <handa@m17n.org>
2483
2484 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
2485
2486 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
2487
2488 * nsterm.m (Qnone): Define.
2489
2490 * nsfns.m (Qnone): Move definition to nsterm.m.
2491
2492 2010-01-14 Kenichi Handa <handa@m17n.org>
2493
2494 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
2495 systems.
2496
2497 2010-01-14 Kenichi Handa <handa@m17n.org>
2498
2499 Make auto-composition work on all buffers even if they are
2500 fundamental mode.
2501
2502 * composite.c (Vauto_composition_mode): New variable.
2503 (composition_compute_stop_pos): Check Vauto_composition_mode
2504 instead of Vauto_composition_function.
2505 (composition_adjust_point, Ffind_composition_internal): Likewise.
2506 (syms_of_composite): Declare Lisp variable
2507 "auto-composition-mode" here.
2508
2509 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
2510
2511 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
2512 during call to vendor-specific-keysyms (Bug#5365).
2513
2514 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2515
2516 * keyboard.c (input_available_signal) [SYNC_INPUT]:
2517 Call SIGNAL_THREAD_CHECK (Bug#5333).
2518
2519 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
2520 Call SIGNAL_THREAD_CHECK.
2521
2522 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2523
2524 Try to fix bug#5314. This is probably not the final word, tho.
2525 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
2526 recent-auto-save-p as a side-effect.
2527 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
2528 * buffer.c (Fkill_buffer, reset_buffer):
2529 * editfns.c (Fsubst_char_in_region):
2530 * fileio.c (Finsert_file_contents, Fdo_auto_save)
2531 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
2532
2533 2010-01-13 Kenichi Handa <handa@m17n.org>
2534
2535 Display buffer name, etc. in mode line by composing correctly.
2536
2537 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
2538 STRING is not nil.
2539 (display_mode_element): Adjust for the change of
2540 decode_mode_spec and display_line.
2541 (decode_mode_spec): Change arg MULTIBYTE to STRING.
2542 (display_string): Handle the case that STRING is non-null and
2543 LISP_STRING is not nil.
2544
2545 * xterm.c (x_draw_composite_glyph_string_foreground):
2546 Pay attention to s->face->overstrike.
2547
2548 * composite.c (composition_reseat_it): Don't check PT if STRING is
2549 non nil.
2550
2551 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2552
2553 * keyboard.c (read_char): Don't apply previous change when current
2554 buffer is unchanged by command execution.
2555
2556 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
2557
2558 * keyboard.c (read_char): Return after executing from special map.
2559
2560 2010-01-12 Glenn Morris <rgm@gnu.org>
2561
2562 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
2563 bug-gnu-emacs rather than emacs-pretest-bug.
2564
2565 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
2566
2567 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
2568 initializing the Lisp variables that depend on them.
2569
2570 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2571
2572 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
2573 Clear areas that will not be updated after change of menu bar lines.
2574 Clear the menu bar window's current matrix when the window gets empty.
2575
2576 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2577
2578 * intervals.h, textprop.c (extend_property_ranges): Return value
2579 and args changed. Discard properties that begin at or after the
2580 new end (Bug#5306).
2581
2582 * editfns.c (Fformat): Caller changed.
2583
2584 * nsterm.m (ns_set_default_prefs): Delete function.
2585 (syms_of_nsterm): Initialize ns_command_modifier,
2586 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
2587 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
2588
2589 * xdisp.c (pos_visible_p): Check for invisible text at the correct
2590 position (Bug#4040).
2591
2592 2010-01-09 Eli Zaretskii <eliz@gnu.org>
2593
2594 * editfns.c (Ffloat_time): Doc fix.
2595
2596 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
2597
2598 * xfns.c (Fx_create_frame): Don't create frame larger than display
2599 by default bug#3643.
2600
2601 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2602
2603 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
2604 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
2605 windows above internal border.
2606
2607 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
2608 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
2609 windows above internal border.
2610
2611 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
2612 tool bar windows specially.
2613
2614 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
2615
2616 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
2617 specially.
2618 (XTflash): Take account of menu bar height.
2619
2620 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
2621 specially.
2622
2623 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
2624
2625 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
2626 also be true before we can return early (bug #5339).
2627
2628 2010-01-06 David Reitter <david.reitter@gmail.com>
2629
2630 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
2631 (Fns_display_usable_bounds): Rewrite, computing bounds properly
2632 (Bug#3233).
2633
2634 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
2635
2636 * font.c (font_open_entity): Enable chache and call cached_font_ok
2637 for the driver if defined.
2638 (QCuser_spec): New symbol.
2639 (font_spec_from_name): Save name as user-spec.
2640 (font_load_for_lface): Keep user-spec instead of name.
2641 (font_open_by_name): Save name as user-spec.
2642 (syms_of_font): Initialize QCuser_spec.
2643 (font_clear_prop): Clear name if it exists in font (bug#5157).
2644
2645 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
2646 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
2647 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
2648
2649 * font.h (struct font_driver): Add cached_font_ok.
2650
2651 * xterm.c (x_clear_frame): Queue draw for scroll bars.
2652
2653 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
2654
2655 * xterm.c (x_new_font): Move code for setting rows/cols before
2656 resizing ...
2657 (x_set_window_size): ... to here. Bug #2568.
2658
2659 * gtkutil.c (xg_clear_under_internal_border): New function.
2660 (xg_frame_resized, xg_frame_set_char_size):
2661 Call xg_clear_under_internal_border.
2662 (xg_update_scrollbar_pos): Clear under old scroll bar position.
2663
2664 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
2665
2666 * keyboard.c (read_key_sequence): Catch keyboard switch after
2667 making a new tty frame (Bug#5095).
2668
2669 2010-01-05 Kenichi Handa <handa@m17n.org>
2670
2671 * fontset.c (fontset_find_font): Fix getting the frame pointer.
2672
2673 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
2674
2675 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
2676 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
2677 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
2678
2679 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
2680
2681 * dbusbind.c (xd_add_watch): Improve debug message.
2682 (xd_remove_watch): Improve debug message. If DATA is the session
2683 bus, unset D-Bus session environment.
2684 (Fdbus_init_bus): Pass the bus as argument to
2685 dbus_connection_set_watch_functions. (Bug#5283)
2686
2687 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
2688
2689 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
2690
2691 * lread.c (syms_of_lread): Make it clearer that these are the
2692 names of loaded files (Bug#5068).
2693
2694 * eval.c (run_hook_with_args): Handle the case where the global
2695 value has the obsolete single-function form (Bug#5026).
2696
2697 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
2698
2699 * minibuf.c (Fall_completions): Minor optimization.
2700
2701 2009-12-26 Eli Zaretskii <eliz@gnu.org>
2702
2703 * .gdbinit (pgx): Fix display of composite glyphs.
2704 Display cmp.from and cmp.to as well.
2705 (pitx): Fix last change.
2706
2707 2009-12-25 Kenichi Handa <handa@m17n.org>
2708
2709 * composite.h (composition_adjust_point): Update prototype.
2710
2711 * composite.c (composition_reseat_it): Don't make a composition
2712 spanning over point.
2713 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
2714 composable characters.
2715 (composition_adjust_point): New arg NEW_PT. Callers changed.
2716
2717 * keyboard.c (command_loop_1): Force redisplay if the last point
2718 was within a composition.
2719 (adjust_point_for_property): Don't adjust point for automatic
2720 composition when called after buffer modification.
2721
2722 2009-12-19 Eli Zaretskii <eliz@gnu.org>
2723
2724 * .gdbinit (pitx): Don't use enum names, use their values.
2725 Remove reference to non-existing value GET_FROM_COMPOSITION.
2726 (pgx): Don't use enum names, use their values.
2727 (pitmethod): New helper command.
2728 (pitx): Use it to display iteration method.
2729 (pgrowit): New command.
2730
2731 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
2732
2733 Update dependencies in Makefile.in.
2734
2735 * Makefile.in (alloc.o): Depend on termhooks.h.
2736 (atimer.o): Depend on blockinput.h.
2737 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
2738 and frame.h.
2739 (callint.o): Depend on systime.h, coding.h, and composite.h.
2740 (callproc.o): Depend on buffer.h.
2741 (casefiddle.o): Don't depend on charset.h.
2742 (casetab.o): Depend on character.h.
2743 (ccl.o): Depend on composite.h.
2744 (chartab.o): Depend on ccl.h.
2745 (cm.o): Depend on dispextern.h.
2746 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
2747 (coding.o): Don't depend on $(INTERVALS_H).
2748 (composite.o): Don't depend on dispextern.h explicitly (it's in
2749 $(INTERVALS_H)). Depend on ccl.h.
2750 (data.o): Depend on systime.h, coding.h, composite.h,
2751 dispextern.h, font.h, and ccl.h.
2752 (dired.o): Depend on composite.h.
2753 (dispnew.o): Depend on coding.h. Don't depend explicitly on
2754 composite.h (it's in $(INTERVALS_H)).
2755 (doc.o): Depend on systime.h, coding.h, and composite.h.
2756 (editfns.o): Don't depend explicitly on dispextern.h.
2757 (emacs.o): Depend on frame.h and coding.h.
2758 (eval.o): Depend on coding.h, composite.h, and xterm.h.
2759 (fileio.o): Depend on frame.h and commands.h. Don't depend
2760 explicitly on dispextern.h.
2761 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
2762 composite.h.
2763 (fns.o): Don't depend on termhooks.h.
2764 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
2765 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
2766 coding.h, $(INTERVALS_H), window.h, xterm.h.
2767 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
2768 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
2769 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
2770 fontset.h, ccl.h, and ftfont.h.
2771 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
2772 (gtkutil.o): Depend on dispextern.h and composite.h.
2773 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
2774 termhooks.h, and ccl.h.
2775 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
2776 (intervals.o): Depend on systime.h and coding.h.
2777 (keyboard.o): Depend on composite.h and coding.h.
2778 (keymap.o): Depend on coding.h and frame.h.
2779 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
2780 (macros.o): Depend on systime.h, coding.h, and composite.h.
2781 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
2782 and atimer.h.
2783 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
2784 dispextern.h explicitly.
2785 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
2786 Don't depend explicitly on dispextern.h and composite.h.
2787 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
2788 (regex.o): Don't depend on charset.h.
2789 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
2790 (search.o): Don't depend explicitly on composite.h.
2791 (sound.o): Depend on atimer.h and systime.h.
2792 (syntax.o): Don't depend explicitly on composite.h.
2793 (sysdep.o): Depend on coding.h and composite.h.
2794 (term.o): Depend on xterm.h and buffer.h.
2795 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
2796 (textprop.o): Don't depend on dispextern.h explicitly.
2797 (undo.o): Depend on dispextern.h.
2798 (window.o): Depend on coding.h and termhooks.h. Don't depend on
2799 dispextern.h and composite.h explicitly.
2800 (xdisp.o): Depend on ccl.h.
2801 (xfaces.o): Depend on coding.h and ccl.h.
2802 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
2803 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
2804 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
2805 ftfont.h.
2806 (xgselect.o): New dependency.
2807 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
2808 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
2809 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
2810 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
2811 (xsmfns.o): Depend on frame.h and dispextern.h.
2812 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
2813 sysselect.h.
2814
2815 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
2816
2817 * font.c (Fclear_font_cache): Pass correct cache argument to
2818 font_clear_cache.
2819
2820 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
2821
2822 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
2823 twice.
2824
2825 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
2826
2827 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
2828 calling file-remote-p. Reported by Jim Meyering.
2829
2830 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
2831
2832 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
2833 avoid compiler warnings. (Bug #5217)
2834
2835 2009-12-14 Kenichi Handa <handa@m17n.org>
2836
2837 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
2838 in 8-bit encoding.
2839
2840 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
2841
2842 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
2843 tooltip windows.
2844
2845 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
2846
2847 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
2848 Xatom_net_window_type.
2849
2850 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
2851 Xatom_net_window_type.
2852
2853 * xterm.c (my_log_handler): New function.
2854 (x_term_init): Set my_log_handler as log handler during gtk_init
2855 so we can filter out buggy messages. (Bug #5120).
2856
2857 * xterm.c (xg_scroll_callback): Parameter list changed,
2858 use parameter GtkScrollType to determine scroll/line/page.
2859 Only allow dragging if a button < 4 is grabbed (bug #5177).
2860 (xg_end_scroll_callback): New function.
2861 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
2862 xg_create_scroll_bar.
2863
2864 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
2865 (scroll_end_callback): Remove.
2866 (xg_create_scroll_bar): Add parameter end_callback, bind it to
2867 button-release-event. Replace value-changed event with change-value,
2868 bug #5177,
2869 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
2870 bug #5177.
2871
2872 * gtkutil.h (XG_LAST_SB_DATA): Remove.
2873 (xg_create_scroll_bar): Add GCallback end_callback.
2874
2875 * xftfont.c (QClcdfilter): New variable.
2876 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
2877 (syms_of_xftfont): Initialize QClcdfilter.
2878
2879 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
2880
2881 * xsettings.c (struct xsettings): Add member seen.
2882 (parse_xft_settings): Update member seen with what we have read.
2883 Return non-zero if Xft-settings have been parsed, 0 otherwise.
2884 (apply_xft_settings): Only update Xft settings with what member seen
2885 indicates as new.
2886
2887 2009-12-12 Eli Zaretskii <eliz@gnu.org>
2888
2889 * dispextern.h (struct text_pos): Use EMACS_INT;
2890 (struct glyph): Use EMACS_INT for charpos.
2891 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
2892 region_beg_charpos, region_end_charpos,
2893 redisplay_end_trigger_charpos, and also for
2894 iterator_stack_entry.end_charpos and
2895 iterator_stack_entry.stop_charpos.
2896
2897 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
2898
2899 * gtkutil.c (scroll_end_callback): New function (bug #5177).
2900 (xg_create_scroll_bar): Call scroll_end_callback on button release
2901 event (bug #5177).
2902 (xg_event_is_for_scrollbar): != replaced with ==.
2903
2904 2009-12-12 Kenichi Handa <handa@m17n.org>
2905
2906 * ftfont.c (struct ftfont_info): New member matrix.
2907 (ftfont_open): Setup xftfont_info->matrix.
2908 (MFLTFontFT): New member matrix.
2909 (FLOOR, CEIL, ROUND): New macros.
2910 (ftfont_get_metrics): Handle matrix transformation.
2911 (ftfont_shape_by_flt): New arg matrix. Callers changed.
2912
2913 * xftfont.c (struct xftfont_info): New member matrix.
2914 (xftfont_open): Setup xftfont_info->matrix.
2915
2916 2009-12-10 Kenichi Handa <handa@m17n.org>
2917
2918 * xdisp.c (append_space_for_newline): Consider face-remapping.
2919
2920 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
2921
2922 * xsettings.c: Include "keyboard.h".
2923
2924 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
2925
2926 Fix implicit function declarations.
2927 * cmds.c: Include "frame.h".
2928 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
2929 * frame.h: Move declaration of delete_frame outside of
2930 HAVE_WINDOW_SYSTEM.
2931
2932 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
2933
2934 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
2935
2936 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
2937 GTK builds.
2938
2939 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
2940
2941 * unexelf.c (unexec): Don't search for .data twice.
2942
2943 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
2944
2945 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
2946 if push failed.
2947 (handle_line_prefix): Set avoid_cursor_p here. Check return value
2948 of push_display_prop (Bug#5000).
2949
2950 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
2951 value of font_list_entities (Bug#5085).
2952
2953 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
2954
2955 Fix `string-to-number' to deal consistently with integers and floats.
2956 * lread.c (isfloat_string): New argument ignore_trailing to accept all
2957 trailing characters, not just whitespace.
2958 (read1): Pass new arg 0 to keep old behavior.
2959 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
2960 trailing chars, as it is already done for integers. Doc fixes.
2961 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
2962
2963 2009-12-04 Eli Zaretskii <eliz@gnu.org>
2964
2965 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
2966 Delete unused enumeration value.
2967
2968 2009-12-03 Eli Zaretskii <eliz@gnu.org>
2969
2970 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
2971
2972 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
2973
2974 * process.c (Fmake_network_process): Fix up the tests for
2975 "connectionless socket", so they DTRT for seqpacket sockets as well.
2976
2977 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
2978
2979 * process.c (Qseqpacket): New symbol.
2980 (HAVE_SEQPACKET): New macro.
2981 (Fmake_network_process): Accept new :type `seqpacket'.
2982 (init_process): Add `seqpacket' feature when applicable.
2983 (syms_of_process): Initialize Qseqpacket.
2984
2985 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2986
2987 * font.c (font_load_for_lface, font_open_by_name): Don't store name
2988 if entity is Qnil.
2989
2990 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
2991
2992 * print.c (print_preprocess): Preprocess the key_and_value table of
2993 hashtables, even tho they're "hidden" (bug#5082).
2994
2995 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
2996
2997 * frame.c (frame_make_pointer_invisible)
2998 (frame_make_pointer_visible): Declare f before statements.
2999
3000 2009-11-28 Eli Zaretskii <eliz@gnu.org>
3001
3002 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
3003 omitted dependencies on lisp.h.
3004
3005 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
3006
3007 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
3008 is NULL.
3009
3010 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
3011
3012 * frame.c (frame_make_pointer_invisible)
3013 (frame_make_pointer_visible): Just return if there isn't any selected
3014 frame.
3015
3016 * search.c (simple_search): Remove warning by making *p const.
3017
3018 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
3019
3020 * xdisp.c (power_letter): Remove duplicate const.
3021
3022 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
3023
3024 * term.c (delete_tty): Remove check for last terminal (bug#4970).
3025
3026 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
3027 defaults (bug #5025).
3028
3029 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
3030
3031 * insdel.c (adjust_markers_for_delete): Move it in the
3032 right direction! (bug#4803)
3033
3034 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3035
3036 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
3037
3038 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
3039
3040 2009-11-24 Glenn Morris <rgm@gnu.org>
3041
3042 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
3043
3044 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
3045
3046 * Makefile.in: Must create deps for ecrt0.o in its rule.
3047
3048 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
3049 because that is what Gtk+ font dialog understands.
3050
3051 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
3052 of Fcopy_sequence.
3053 (font_open_by_name): Put name given into QCname for font-object returned.
3054
3055 * frame.c (x_set_font): Save original font name as frame parameter
3056 font-parameter.
3057
3058 * xsettings.c (set_default_xft_settings): New function.
3059 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
3060 is found.
3061
3062 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
3063
3064 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
3065 searching backwards through multibyte buffer.
3066
3067 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
3068
3069 * xterm.c: #include xgselect.h.
3070 (x_initialize): Call xgselect_initialize.
3071
3072 * xsettings.c (something_changedCB): C++ comments => C comments.
3073 (init_gconf): Do not deal with any GLib file descriptors, xg_select
3074 does that now.
3075
3076 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
3077 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
3078 (scroll_bar_button_cb): Remove.
3079 (create_menus): C++ comments => C comments. Don't bind grab-notify
3080 event.
3081 (xg_create_scroll_bar): Don't bind button-press-event and
3082 button-release-event.
3083
3084 * process.c: Include xgselect.h if defined (USE_GTK) ||
3085 defined (HAVE_GCONF).
3086 (wait_reading_process_output): Call xg_select for the same condition.
3087
3088 * xgselect.c (xg_select): New function to better integrate with
3089 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
3090
3091 * xgselect.h: New file, declare xg_select, xgselect_initialize.
3092
3093 * Makefile.in (XOBJ): Add xgselect.o.
3094
3095 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
3096
3097 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
3098 Remove ignored second argument. All callers changed.
3099 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
3100 (RE_STRING_CHAR_AND_LENGTH): Likewise.
3101 * xdisp.c (string_char_and_length): Likewise.
3102
3103 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
3104
3105 * xterm.c (x_new_font):
3106 * print.c (print_object):
3107 * cmds.c (Fself_insert_command): Move declarations before statements.
3108
3109 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
3110
3111 * s/cygwin.h: Remove unneeded linker flags.
3112
3113 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
3114
3115 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
3116
3117 * xsettings.h: Declare xsettings_get_system_font.
3118
3119 * xsettings.c (xsettings_get_system_font): New function.
3120 (init_gconf): No use initiating gconf unless we have Xft also.
3121 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
3122 HAVE_GCONF.
3123
3124 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
3125 add a blank entry so it doesn't collapse into nothing.
3126
3127 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3128
3129 * lread.c (Funintern): Comment out last change.
3130
3131 2009-11-19 Richard Stallman <rms@gnu.org>
3132
3133 * lread.c (Funintern): Error if symbol is t or nil.
3134
3135 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3136
3137 * insdel.c (make_gap_larger): Don't make as many assumptions about the
3138 representation of Lisp integers.
3139 Reported by MJ Chan <mjchan.inbox@gmail.com>.
3140
3141 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
3142
3143 * lisp.h: Remove declaration of Ffont_get_system_font.
3144 * xfns.c: Move include of "xsettings.h".
3145 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
3146
3147 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
3148
3149 * xsettings.c (something_changedCB, Ffont_get_system_font):
3150 Check use_system_font.
3151 (syms_of_xsettings): DEFVAR font-use-system-font.
3152
3153 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
3154
3155 * xfns.c (x_default_font_parameter): Remove dead assignment.
3156
3157 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
3158
3159 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
3160
3161 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
3162 not have FC_LCD_*. #define them if not there.
3163
3164 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
3165
3166 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
3167
3168 * xterm.c (handle_one_xevent): Call xft_settings_event for
3169 ClientMessage, PropertyNotify and DestroyNotify.
3170 (x_term_init): If we have XFT, get DPI from Xft.dpi.
3171 Call xsettings_initialize.
3172
3173 * xftfont.c (xftfont_fix_match): New function.
3174 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
3175 Call xftfont_fix_match after XftFontMatch.
3176
3177 * xfont.c (xfont_driver): Initialize all members.
3178
3179 * xfns.c (x_default_font_parameter):
3180 Try font from Ffont_get_system_font.
3181 Do not get font from x_default_parameter if we got one from
3182 Ffont_get_system_font.
3183 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
3184
3185 * w32font.c (w32font_driver): Initialize all members.
3186
3187 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
3188
3189 * lisp.h: Declare syms_of_xsettings.
3190
3191 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
3192 Handle CONFIG_CHANGED_EVENT.
3193
3194 * ftfont.c (ftfont_filter_properties): New function.
3195
3196 * frame.c (x_set_font): Remove unused variable lval.
3197
3198 * font.h (struct font_driver): Add filter_properties.
3199
3200 * font.c (font_put_extra): Don't return if val is nil, it means
3201 boolean option is off.
3202 (font_parse_fcname): Collect all extra properties in extra_props
3203 and call filter_properties for all drivers with extra_props and
3204 font as parameter.
3205 (font_open_entity): Do not use cache, it does not pick up new
3206 fontconfig settings like hinting.
3207 (font_load_for_lface): If spec had a name in it, store it in entity.
3208
3209 * emacs.c (main): Call syms_of_xsettings
3210
3211 * config.in: HAVE_GCONF is new.
3212
3213 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
3214 xsettings.o is new.
3215
3216 2009-11-17 Kenichi Handa <handa@m17n.org>
3217
3218 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
3219 back to the default font in case that no suitable font is found.
3220
3221 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3222
3223 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
3224 Suggested by Chad Brown <yandros@mit.edu>.
3225 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
3226
3227 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
3228
3229 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
3230
3231 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
3232
3233 * Makefile.in: Ignore errors from mkdir when creating deps directory.
3234
3235 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
3236
3237 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
3238 has a parent.
3239
3240 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
3241 dependency files in deps/. Include those files into Makefile.
3242
3243 * config.in: Generated (AUTO_DEPEND).
3244
3245 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
3246
3247 * dbusbind.c (Vdbus_registered_objects_table): Rename from
3248 Vdbus_registered_functions_table, because it contains also
3249 properties. Fix docstring.
3250 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
3251
3252 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3253
3254 * alloc.c (mark_object): Don't reprocess marked strings.
3255 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
3256 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
3257
3258 2009-11-13 Kenichi Handa <handa@m17n.org>
3259
3260 * category.c (word_boundary_p): Adjust for the change of the
3261 semantics of Vword_combining_categories.
3262 (Vword_combining_categories): Describe the slight change of the
3263 semantics.
3264
3265 2009-11-13 Eli Zaretskii <eliz@gnu.org>
3266
3267 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
3268
3269 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
3270
3271 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
3272
3273 * xdisp.c (syms_of_xdisp): Fix typo in last change.
3274
3275 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
3276
3277 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
3278
3279 2009-11-11 David Reitter <david.reitter@gmail.com>
3280
3281 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
3282 variables to fix 2009-11-09 change.
3283
3284 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
3285
3286 * process.c (ifflag_def): Make flag_sym constant.
3287 (Fnetwork_interface_info): Use a constant pointer.
3288 (ifflag_table):
3289 * xfns.c (cursor_bits):
3290 * xdisp.c (power_letter):
3291 * termcap.c (speeds, esctab):
3292 * sysdep.c (baud_convert):
3293 * keyboard.c (lispy_accent_codes, modifier_names):
3294 * image.c (xbm_format, xpm_format, pbm_format, png_format)
3295 (jpeg_format, tiff_format, gif_format, svg_format)
3296 (interlace_start, interlace_increment, gs_format):
3297 * gtkutil.c (separator_names):
3298 * fringe.c (swap_nibble):
3299 * fns.c (base64_value_to_char, base64_char_to_value):
3300 * fileio.c (make_temp_name_tbl):
3301 * coding.c (suffixes): Make constant.
3302
3303 * frame.c (make_initial_frame):
3304 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
3305 build_string.
3306 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
3307
3308 * s/freebsd.h:
3309 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
3310
3311 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
3312 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
3313
3314 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
3315 * xterm.c (syms_of_xterm):
3316 * xfaces.c (syms_of_xfaces):
3317 * xdisp.c (syms_of_xdisp):
3318 * lread.c (syms_of_lread):
3319 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
3320 build_string.
3321
3322 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
3323
3324 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3325
3326 * fns.c (Fplist_get): Merge the active and the commented out code.
3327
3328 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
3329
3330 * keyboard.h: Declare timer_check.
3331
3332 * keyboard.c (timer_check_2): New function that does what the old
3333 timer_check did.
3334 (timer_check): Call timer_check_2 until -1 or a non-zero time is
3335 returned, i.e. don't return -1 with timers pending.
3336
3337 * process.c: Remove extern declaration of timer_check.
3338
3339 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
3340 even if timer_check returned -1.
3341
3342 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
3343 xg_dialog_data.
3344 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
3345 the event loop.
3346 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
3347 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
3348 Destroy the dialog after xg_dialog_run.
3349
3350 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3351
3352 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
3353
3354 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
3355
3356 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
3357
3358 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
3359
3360 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
3361
3362 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3363
3364 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
3365 w32menu.c, and nsmenu.m.
3366 Simplify the obsolete case where position is nil.
3367 (cleanup_popup_menu): New function, moved from nsmenu.m.
3368 (struct skp): Remove slot `notreal'.
3369 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
3370 adjust callers.
3371 (single_menu_item): Adjust call to parse_menu_item.
3372 (syms_of_menu): Defsubr x-popup-menu.
3373 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
3374 (keymap_panes): Don't export any more.
3375 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
3376 (xmenu_show): Declare.
3377 * keyboard.c (parse_menu_item): Remove arg `notreal'.
3378 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
3379 * keyboard.h (parse_menu_item): Update declaration.
3380 * xmenu.c (Fx_popup_menu): Remove.
3381 (syms_of_xmenu): Don't defsubr x-popup-menu.
3382 * w32menu.c (Fx_popup_menu): Remove.
3383 (syms_of_w32menu): Don't defsubr x-popup-menu.
3384 * nsmenu.m (cleanup_popup_menu): Remove.
3385 (ns_menu_show): Rename from ns_popup_menu and remove all the code
3386 moved to menu.c's Fx_popup_menu.
3387 (Fx_popup_menu): Remove.
3388 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
3389 menu_items (it's done in menu.c already).
3390
3391 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3392
3393 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
3394 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
3395
3396 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
3397
3398 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
3399 xmenu_show. Hide any tooltip before opening a menu.
3400 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
3401 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
3402
3403 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
3404
3405 Let integers use up 2 tags to give them one extra bit and thus double
3406 their range.
3407 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
3408 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
3409 New macros.
3410 (enum Lisp_Type): Use them. Give explicit values.
3411 (Lisp_Type_Limit): Remove.
3412 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
3413 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
3414 Pay attention to USE_2_TAGS_FOR_INTS.
3415 (INTEGERP): Use LISP_INT_TAG_P.
3416 * fns.c (internal_equal): Simplify the default case.
3417 (sxhash): Use case_Lisp_Int.
3418 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
3419 any more.
3420 (Ftype_of): Use case_Lisp_Int.
3421 (store_symval_forwarding): Take into account the fact that Ints can
3422 now have more than one tag.
3423 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
3424 buffer_slot_type_mismatch):
3425 * xfaces.c (face_attr_equal_p):
3426 * print.c (print_object):
3427 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
3428 Use case_Lisp_Int.
3429
3430 2009-11-06 Eli Zaretskii <eliz@gnu.org>
3431
3432 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
3433
3434 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
3435 warning.
3436
3437 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
3438
3439 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
3440
3441 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
3442
3443 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
3444 ButtonPressRelease and MotionNotify (bug#4870).
3445
3446 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
3447
3448 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
3449
3450 * xterm.c (syms_of_xterm):
3451 * xselect.c (syms_of_xselect):
3452 * xmenu.c (syms_of_xmenu):
3453 * xfns.c (syms_of_xfns):
3454 * xfaces.c (syms_of_xfaces):
3455 * xdisp.c (syms_of_xdisp):
3456 * window.c (syms_of_window):
3457 * w32fns.c (syms_of_w32fns):
3458 * undo.c (syms_of_undo):
3459 * textprop.c (syms_of_textprop):
3460 * terminal.c (syms_of_terminal):
3461 * syntax.c (syms_of_syntax):
3462 * sound.c (syms_of_sound):
3463 * search.c (syms_of_search):
3464 * print.c (syms_of_print):
3465 * minibuf.c (syms_of_minibuf):
3466 * macros.c (syms_of_macros):
3467 * keymap.c (syms_of_keymap, initial_define_key)
3468 (initial_define_lispy_key):
3469 * keyboard.c (syms_of_keyboard):
3470 * insdel.c (syms_of_insdel):
3471 * image.c (syms_of_image):
3472 * fringe.c (syms_of_fringe):
3473 * frame.c (syms_of_frame):
3474 * fontset.c (syms_of_fontset):
3475 * fns.c (syms_of_fns):
3476 * fns.c (syms_of_fns):
3477 * fileio.c (syms_of_fileio):
3478 * fileio.c (syms_of_fileio):
3479 * eval.c (syms_of_eval):
3480 * doc.c (syms_of_doc):
3481 * dispnew.c (syms_of_display):
3482 * dired.c (syms_of_dired):
3483 * dbusbind.c (syms_of_dbusbind):
3484 * data.c (syms_of_data):
3485 * composite.c (syms_of_composite):
3486 * coding.c (syms_of_coding):
3487 * cmds.c (syms_of_cmds):
3488 * charset.c (define_charset_internal, syms_of_character):
3489 * ccl.c (syms_of_ccl):
3490 * category.c (syms_of_category, init_category_once):
3491 * casetab.c (syms_of_casetab):
3492 * casefiddle.c (syms_of_casefiddle):
3493 * callint.c (syms_of_callint):
3494 * bytecode.c (syms_of_bytecode):
3495 * buffer.c (keys_of_buffer, syms_of_buffer):
3496 * alloc.c (syms_of_alloc):
3497 * process.c (syms_of_process, init_process):
3498 * lread.c (syms_of_lread, init_obarray):
3499 * font.c (build_style_table):
3500 * emacs.c (syms_of_emacs, main): Replace calls to intern with
3501 intern_c_string, calls to make_pure_string with
3502 make_pure_c_string. Use pure_cons instead of Fcons.
3503
3504 * process.c (socket_options): Make it const.
3505 (set_socket_option, init_process): Use a const pointer.
3506
3507 * lread.c (intern_c_string): New function.
3508 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
3509 (defvar_int): Uset it. Make the name const char*.
3510
3511 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
3512 (defvar_int): Update prototypes.
3513 (DEFUN, EXFUN): Support for prototypes is now required.
3514 (intern_c_string): New prototype.
3515 (struct Lisp_Subr): Make symbol_name constant.
3516
3517 * font.c (struct table_entry): Remove unused member. Make NAMES
3518 constant.
3519 (weight_table, slant_table, width_table): Make constant.
3520
3521 * emacs.c (struct standard_args): Make name and longname constant.
3522
3523 * character.h (DEFSYM): Use intern_c_string.
3524
3525 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
3526
3527 * alloc.c (make_pure_c_string): New function.
3528
3529 * eval.c (Fautoload): Purecopy all arguments.
3530
3531 2009-11-05 Kenichi Handa <handa@m17n.org>
3532
3533 * fileio.c (Finsert_file_contents): Be sure set coding-system of
3534 the buffer in case of replace.
3535
3536 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
3537
3538 * puresize.h (BASE_PURESIZE): Increase to 1620000.
3539
3540 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
3541
3542 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
3543 when applicable (bug#4851).
3544
3545 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
3546 (P_): Support for prototypes is now required.
3547
3548 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
3549
3550 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
3551 (Bug#4827).
3552
3553 2009-10-30 Eli Zaretskii <eliz@gnu.org>
3554
3555 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
3556
3557 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
3558
3559 * puresize.h (BASE_PURESIZE): Increase to 1470000.
3560
3561 * lread.c (Fload): Purecopy the file name when building
3562 Vpreloaded_file_list.
3563
3564 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
3565
3566 * w32fns.c (syms_of_w32fns): Change default value of
3567 w32-scroll-lock-modifier to nil. (Bug#2827)
3568
3569 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
3570
3571 * minibuf.c (Fall_completions): Fix typos in docstring.
3572
3573 2009-10-26 Andreas Schwab <schwab@redhat.com>
3574
3575 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
3576
3577 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
3578
3579 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
3580 For delta < 0, skip check that only makes sense when the mini-window
3581 is going to be enlarged. (Bug#4534)
3582
3583 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
3584
3585 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
3586 string in menu maps (Bug#4471).
3587
3588 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
3589
3590 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
3591 FRAME_NS_VIEW on terminal frames (Bug#4765).
3592
3593 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
3594
3595 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
3596 DBUS_TYPE_UINTnn separately to get proper sign extension.
3597
3598 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
3599 can properly handle unsigned types.
3600 (make_uid, make_gid): Remove.
3601
3602 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
3603 types again.
3604
3605 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
3606 (system_process_attributes): Likewise.
3607
3608 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
3609
3610 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
3611
3612 * eval.c (Fautoload): Purecopy the filename. Simplify.
3613
3614 * category.c (Fdefine_category): Purecopy docstring.
3615
3616 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
3617
3618 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
3619
3620 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
3621
3622 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
3623
3624 * window.c (Fwindow_edges, Fwindow_pixel_edges)
3625 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
3626 (Bug#4775).
3627
3628 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3629
3630 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
3631 (init_fileio_once):
3632 * lisp.h (init_fileio_once): Remove.
3633 * emacs.c (main): Don't call init_fileio_once.
3634
3635 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
3636
3637 * puresize.h (BASE_PURESIZE): Increase to 1430000.
3638
3639 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
3640
3641 * doprnt.c (doprnt): Fix overflow check.
3642
3643 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
3644
3645 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
3646
3647 * xterm.h (x_wait_for_event): Declare it.
3648
3649 * xterm.c (pending_event_wait): New variable.
3650 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
3651 see pending_event_wait.eventtype.
3652 (handle_one_xevent): Don't change gravity when parent changes.
3653 (x_new_font): Call change_frame_size with new rows/columns before we
3654 try to resize the frame.
3655 (x_wait_for_event): New function.
3656 (x_set_window_size_1): Don't change gravity unless change_gravity
3657 is set.
3658 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
3659 don't change frame size, instead wait for the ConfigureNotify.
3660 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
3661 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
3662 (x_initialize): Initialize pending_event_wait.
3663
3664 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
3665 size.
3666
3667 * widget.c (EmacsFrameSetValues): Add comment.
3668 (EmacsFrameSetCharSize): Just call x_set_window_size.
3669
3670 * gtkutil.c (xg_frame_set_char_size): Flush events and call
3671 x_wait_for_event.
3672 (flush_and_sync): Remove again.
3673 (xg_get_font_name): Suggest monospace if no previous font is known.
3674
3675 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
3676
3677 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
3678 8th bit, since that only made sense in the ASCII world (bug#4751).
3679
3680 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3681
3682 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
3683 processing pending events when event is filtered for input method.
3684 (Bug#3681)
3685
3686 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
3687
3688 * fns.c: Add #endif accidentally removed in previous change.
3689
3690 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
3691
3692 * fns.c: Remove code for unsupported system: MAC_OS.
3693 * image.c: Likewise. Include setjmp.h.
3694
3695 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
3696
3697 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
3698 pixel -1 (bug #4742).
3699
3700 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
3701
3702 * process.c (create_pty): Remove conditionals for no longer
3703 supported systems: UNIPLUS and RTU.
3704
3705 * xterm.c:
3706 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
3707
3708 * alloc.c: Do not define struct catchtag.
3709 * eval.c: Move struct catchtag definition ...
3710 * lisp.h: ... here.
3711
3712 * image.c: Move png.h #include earlier to avoid warnings.
3713
3714 * xterm.c:
3715 * xsmfns.c:
3716 * xselect.c:
3717 * xrdb.c:
3718 * xmenu.c:
3719 * xftfont.c:
3720 * xfont.c:
3721 * xfns.c:
3722 * xfaces.c:
3723 * xdisp.c:
3724 * window.c:
3725 * widget.c:
3726 * w32xfns.c:
3727 * w32uniscribe.c:
3728 * w32term.c:
3729 * w32select.c:
3730 * w32reg.c:
3731 * w32proc.c:
3732 * w32menu.c:
3733 * w32inevt.c:
3734 * w32heap.c:
3735 * w32font.c:
3736 * w32fns.c:
3737 * w32console.c:
3738 * w32.c:
3739 * w16select.c:
3740 * vm-limit.c:
3741 * unexsol.c:
3742 * unexec.c:
3743 * unexcw.c:
3744 * unexaix.c:
3745 * undo.c:
3746 * tparam.c:
3747 * textprop.c:
3748 * terminfo.c:
3749 * terminal.c:
3750 * termcap.c:
3751 * term.c:
3752 * syntax.c:
3753 * sound.c:
3754 * sheap.c:
3755 * search.c:
3756 * scroll.c:
3757 * region-cache.c:
3758 * regex.c:
3759 * ralloc.c:
3760 * process.c:
3761 * print.c:
3762 * nsterm.m:
3763 * nsselect.m:
3764 * nsmenu.m:
3765 * nsimage.m:
3766 * nsfont.m:
3767 * nsfns.m:
3768 * msdos.c:
3769 * minibuf.c:
3770 * menu.c:
3771 * marker.c:
3772 * macros.c:
3773 * keymap.c:
3774 * keyboard.c:
3775 * intervals.c:
3776 * insdel.c:
3777 * indent.c:
3778 * gtkutil.c:
3779 * ftxfont.c:
3780 * ftfont.c:
3781 * fringe.c:
3782 * frame.c:
3783 * fontset.c:
3784 * font.c:
3785 * fns.c:
3786 * floatfns.c:
3787 * filelock.c:
3788 * fileio.c:
3789 * emacs.c:
3790 * editfns.c:
3791 * dosfns.c:
3792 * doprnt.c:
3793 * doc.c:
3794 * dispnew.c:
3795 * dired.c:
3796 * dbusbind.c:
3797 * data.c:
3798 * composite.c:
3799 * coding.c:
3800 * cmds.c:
3801 * cm.c:
3802 * chartab.c:
3803 * charset.c:
3804 * character.c:
3805 * ccl.c:
3806 * category.c:
3807 * casetab.c:
3808 * casefiddle.c:
3809 * callproc.c:
3810 * callint.c:
3811 * bytecode.c:
3812 * buffer.c:
3813 * atimer.c: Include setjmp.h. (Bug#4643)
3814
3815 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
3816
3817 Remove leftover table unibyte_to_multibyte_table.
3818 * character.c (unibyte_to_multibyte_table): Remove.
3819 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
3820 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
3821 * character.h (UNIBYTE_TO_CHAR): New macro.
3822 (MAKE_CHAR_MULTIBYTE): Use it.
3823 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
3824 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
3825 (message_dolog, set_message_1):
3826 * search.c (Freplace_match):
3827 * editfns.c (Fcompare_buffer_substrings):
3828 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
3829 (concat):
3830 * insdel.c (copy_text, count_size_as_multibyte):
3831 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
3832 * term.c (produce_glyphs):
3833 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
3834 * regex.c (RE_CHAR_TO_MULTIBYTE):
3835 * cmds.c (internal_self_insert):
3836 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
3837
3838 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
3839
3840 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
3841
3842 * puresize.h (BASE_PURESIZE): Increase to 1310000.
3843
3844 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
3845
3846 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
3847
3848 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
3849
3850 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
3851 still needed under Tiger.
3852
3853 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
3854
3855 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
3856 __Apple__.
3857
3858 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
3859
3860 2009-10-15 Kenichi Handa <handa@m17n.org>
3861
3862 * print.c (print_object): Escape a symbol like "2E10" too.
3863
3864 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
3865
3866 Cleanups and changes for 64-bit compile under Snow Leopard.
3867 Based on suggestions by Erik Charlebois.
3868
3869 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
3870
3871 * nsfont.m (ns_char_width): Replace deprecated call.
3872 (ns_findfonts, nsfont_list_family): Use long format in printf, and
3873 cast argument.
3874 (nsfont_open): Use ns_char_width() everywhere.
3875 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
3876
3877 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
3878
3879 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
3880 where appropriate.
3881
3882 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
3883 where appropriate.
3884 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
3885 Use stringWithUTF8String.
3886 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
3887
3888 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
3889 Add formal protocol mention to inheritance.
3890 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
3891
3892 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
3893 Fix printf format.
3894 (ns_query_color): Use CGFloat where appropriate.
3895 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
3896 (EmacsScroller-mouseDown:): Use long format in printf, and cast
3897 argument.
3898
3899 * config.in (NS_HAVE_NSINTEGER): Drop.
3900
3901 * dbusbind.c (dbus-method-return-internal)
3902 (dbus-method-error-internal): Use long format in printf, and cast
3903 argument.
3904
3905 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
3906 in printf, and cast argument.
3907
3908 * process.c (list_processes_1): Use long format in printf, and
3909 cast argument.
3910
3911 2009-10-11 Glenn Morris <rgm@gnu.org>
3912
3913 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
3914
3915 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
3916
3917 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
3918 menu bar with a small width so it doesn't enlarge the frame.
3919
3920 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
3921
3922 * fontset.c (Fset_fontset_font): Fix typos in error messages.
3923
3924 2009-10-06 Glenn Morris <rgm@gnu.org>
3925
3926 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
3927 SOME_MACHINE_LISP (this enters indirectly via DOC).
3928
3929 2009-10-05 Eli Zaretskii <eliz@gnu.org>
3930
3931 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
3932
3933 2009-10-04 Eli Zaretskii <eliz@gnu.org>
3934
3935 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
3936 Doc fix.
3937
3938 2009-10-03 Martin Rudalics <rudalics@gmx.at>
3939
3940 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
3941
3942 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
3943
3944 * lisp.h (Qdelete_directory_internal): Remove, because it is not
3945 used anymore outside fileio.c.
3946
3947 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
3948
3949 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
3950
3951 * lisp.h (Qdelete_directory_internal):
3952 Declare, instead of Qdelete_directory.
3953
3954 * w32fns.c (Fsystem_move_file_to_trash): Use it.
3955
3956 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
3957
3958 * eval.c (Fcalled_interactively_p): Add `kind' argument.
3959
3960 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
3961
3962 * fileio.c (Fdelete_directory_internal): Rename from
3963 Fdelete_directory. It is not a command anymore. It has no file
3964 name handler.
3965
3966 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
3967
3968 * xdisp.c (get_next_display_element): Use an enum in last change.
3969
3970 2009-09-28 Kenichi Handa <handa@m17n.org>
3971
3972 * xdisp.c (get_next_display_element): Pay attention to
3973 unibyte_display_via_language_environment in handling
3974 Vnobreak_char_display.
3975
3976 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
3977
3978 * nsterm.h (ns_app_name): New extern variable.
3979
3980 * nsterm.m (ns_app_name): New variable.
3981 (ns_term_init): Set and use it.
3982 (ns_term_shutdown): Use it.
3983
3984 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
3985 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
3986
3987 * nsfns.m (ns_set_name_iconic, ns_set_name)
3988 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
3989 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
3990
3991 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
3992 Remove double-casting in client_data comparison.
3993
3994 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3995
3996 * keyboard.c (make_lispy_event): Remember last wheel direction.
3997 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
3998
3999 2009-09-26 Glenn Morris <rgm@gnu.org>
4000
4001 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
4002 internal.elc. Add term/pc-win.elc.
4003 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
4004 term/x-win.elc.
4005 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
4006 term/w32-win.elc.
4007 (NS_SUPPORT): New.
4008 (lisp): Add NS_SUPPORT.
4009 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
4010
4011 2009-09-25 David Reitter <david.reitter@gmail.com>
4012
4013 * nsmenu.m (EmacsMenu-clear): Recognize application menu
4014 on Mac OS X 10.6+ (bug#4513).
4015
4016 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
4017
4018 * frame.c (xrdb_get_resource): Return nil for empty string resources;
4019 some parts of Emacs code (like font selection) don't grok them.
4020 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
4021
4022 2009-09-24 Andreas Schwab <schwab@redhat.com>
4023
4024 * coding.c (decode_coding_iso_2022): Fix operator precedence.
4025
4026 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
4027
4028 * dired.c (Fdirectory_files): Fix typo in docstring.
4029
4030 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
4031
4032 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
4033 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
4034 (EmacsScroller-setPosition:portion:whole:): Remove -display call
4035 under GNUstep.
4036 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
4037
4038 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
4039 glyph advancement.
4040
4041 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
4042
4043 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
4044 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
4045
4046 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
4047 deleted (bug #4492).
4048
4049 * nsfont.m (Vns_reg_to_script): New lisp variable.
4050 (syms_of_nsfont): Declare it.
4051 (ns_registry_to_script): New function.
4052 (ns_get_req_script): Call it.
4053 (ns_findfonts): Don't give up on non-unicode registry.
4054
4055 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
4056
4057 2009-09-20 Tom Tromey <tromey@redhat.com>
4058
4059 * eval.c (find_handler_clause): Make stack-trace-on-error work in
4060 batch mode (bug#4228).
4061
4062 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
4063
4064 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
4065 carefully. (Bug #4339)
4066
4067 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
4068
4069 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
4070
4071 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
4072
4073 * emacs.c (inhibit_x_resources): Update doc string for NS.
4074 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
4075 legacy code for -NXHost. Fix error printf in daemon case.
4076
4077 * nsterm.h (ns_no_defaults): Remove.
4078
4079 * nsterm.m (ns_no_defaults): Remove.
4080 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
4081 (ns_use_qd_smoothing): Remove legacy variable.
4082 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
4083 don't update the NSWindow itself.
4084 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
4085 state detection and store user rect ourselves. (Bug #3581)
4086
4087 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
4088 ns_use_qd_smoothing.
4089
4090 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
4091 platform versions. Drop support for emacs-20-style face specs.
4092 (x-close-connection): Drop PSFlush() under OS X.
4093 (x-focus-frame): Activate the app first. (Bug #4180)
4094
4095 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
4096
4097 * emacs.c (inhibit_x_resources): New variable.
4098 (main) [HAVE_NS]: Don't process --quick command line option.
4099 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
4100
4101 * lisp.h (inhibit_x_resources): Declare it extern.
4102
4103 * w32reg.c (x_get_string_resource):
4104 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
4105
4106 2009-09-17 Eli Zaretskii <eliz@gnu.org>
4107
4108 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
4109 Add lisp/term/internal.elc.
4110
4111 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4112
4113 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
4114 (bug#4461).
4115
4116 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
4117
4118 * puresize.h (BASE_PURESIZE): Increase to 1290000.
4119
4120 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
4121 (OBJECTS_MACHINE): Remove, unused.
4122
4123 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
4124
4125 * frame.c (x_get_resource_string): Remove unused.
4126
4127 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
4128
4129 * xterm.c (x_new_font): Call change_frame_size before calling
4130 x_set_window_size, in case frame size won't change.
4131
4132 * frame.c (x_set_font): Remove dead code.
4133
4134 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
4135
4136 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
4137
4138 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4139
4140 * lread.c (Fload): Don't output a message after loading an obsolete
4141 package any more (done in Lisp now).
4142
4143 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
4144
4145 * fns.c (syms_of_fns): Doc fix (Bug#4227).
4146
4147 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4148
4149 * keymap.c (Fwhere_is_internal): Use nconc2.
4150
4151 2009-09-11 Alan Mackenzie <acm@muc.de>
4152
4153 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
4154 batch mode.
4155
4156 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
4157
4158 * xdisp.c (display_mode_element): Detect cycles.
4159
4160 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4161
4162 * keymap.c (where_is_internal): Don't erroneously return nil right after
4163 filling the cache.
4164 (where_is_internal_1): Fix up typo.
4165
4166 2009-09-11 Glenn Morris <rgm@gnu.org>
4167
4168 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
4169 share a common doc-string.
4170
4171 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4172
4173 * keymap.c (get_keymap): Return the actual keymap symbol rather than
4174 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
4175
4176 * keymap.c (QCadvertised_binding): New constant.
4177 (syms_of_keymap): Initialize it.
4178 (Fwhere_is_internal): Try and use bindings from :advertised-binding
4179 if applicable.
4180
4181 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
4182
4183 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
4184 (parse_menu_item): Streamline since bindings are recomputed all the
4185 time anyway. Don't bother checking Vdefine_key_rebound_commands any
4186 more and don't support lmenu's menu-alias any more either.
4187
4188 * keymap.c (where_is_internal_data): Make noindirect a boolean.
4189 (where_is_internal): Strip it down to only traverse the keymaps.
4190 Move the cache handling from Fwhere_is_internal to here.
4191 (Fwhere_is_internal): Move the handling of remapping and the choice of
4192 the best binding from where_is_internal to here.
4193 Unify the cached/noncached paths, so remapping is also handled
4194 correctly when the cache is used, and so the cache can be used to
4195 speed up remap-handling when applicable.
4196 Give preference to non-remapped bindings.
4197 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
4198 non-remapped bindings.
4199 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
4200 command remapping.
4201
4202 * xdisp.c (display_mode_element): Move list length limit from 50 to
4203 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
4204
4205 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
4206
4207 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
4208
4209 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
4210
4211 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
4212 (Bug#4334)
4213
4214 * keymap.c (where_is_internal): Filter out shadowed remappings.
4215 Assume that where_is_internal returns unshadowed bindings to simplify
4216 the code and get rid of the gotos. Use ASIZE.
4217
4218 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
4219
4220 * xterm.c (x_focus_changed): If we get a focusout and pointer
4221 is invisible, make it visible.
4222
4223 * xterm.h: Remove condition for declaration of
4224 x_*_window_to_frame.
4225
4226 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
4227
4228 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
4229 initial terminal as well.
4230
4231 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
4232
4233 * xterm.h: Rename x_non_menubar_window_to_frame to
4234 x_menubar_window_to_frame.
4235
4236 * xterm.c: Remove declarations also in xterm.h.
4237 (XTmouse_position): Do not return valid positions
4238 for clicks in the menubar and the toolbar for Gtk+.
4239
4240 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
4241 if the widget for the event has the same top level as a frame,
4242 return the frame.
4243 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
4244 internal windows, bug #4122.
4245 (x_non_menubar_window_to_frame): Remove.
4246
4247 2009-09-02 Glenn Morris <rgm@gnu.org>
4248
4249 * buffer.c (default-major-mode): Move most of the doc from here...
4250 (major-mode): ... to here.
4251
4252 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
4253
4254 * process.c (wait_reading_process_output): Keep the descriptor
4255 when pty is used by a non-child process, e.g., in I/O buffer of
4256 GDB this allows inferior to be restarted.
4257
4258 2009-08-29 Eli Zaretskii <eliz@gnu.org>
4259
4260 * xdisp.c (redisplay_internal): Remove redundant test and collapse
4261 both branches into one.
4262
4263 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
4264
4265 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
4266 (main): Use enable-multibyte-characters rather than
4267 default-enable-multibyte-characters. Output a warning message when
4268 running a unibyte session.
4269
4270 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4271
4272 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
4273 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
4274 (copy_data_segment): Also copy __program_vars section.
4275 (copy_dyld_info) [LC_DYLD_INFO]: New function.
4276 (dump_it) [LC_DYLD_INFO]: Use it.
4277
4278 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
4279
4280 2009-08-28 Eli Zaretskii <eliz@gnu.org>
4281
4282 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
4283 $(SRC)/buildobj.h.
4284 (buildobj.h): Renamed from $(SRC)/buildobj.h.
4285 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
4286 $(SRC)/buildobj.h.
4287 (clean): Add buildobj.h.
4288
4289 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
4290
4291 * print.c (print_object): Set escapeflag to 1 when printing
4292 hashtable keys and values.
4293
4294 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
4295
4296 * lread.c (read_integer): Use doubles (and potentially return a float
4297 number) as we do in string-to-number.
4298 (read1): Use strtol to read integers, signal errors on strtol's
4299 overflow and use floats if strtol's output is too large for
4300 Elisp integers.
4301
4302 2009-08-27 Eli Zaretskii <eliz@gnu.org>
4303
4304 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
4305 (make-buildobj-SH): Fix last change.
4306 (SRC): Move to before where it's first used.
4307
4308 2009-08-27 Kenichi Handa <handa@m17n.org>
4309
4310 * process.c (send_process): Use encode_coding_object instead of
4311 encode_coding_string to perform eol-conversion even if the string
4312 is unibyte.
4313
4314 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
4315 character.
4316
4317 * cmds.c (Fself_insert_command): Avoid unnecessay
4318 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
4319
4320 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
4321
4322 * callproc.c (Fcall_process): Remove always true #if.
4323
4324 * lisp.h: Replace #if 0 code for checking with text pointing to
4325 the --enable-checking configure flag.
4326
4327 * emacs.c (main): Mention the --enable-profiling configure flag
4328 instead of using CFLAGS.
4329
4330 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
4331
4332 * Makefile.in (buildobj.h): New target.
4333 (doc.o): Depend on it.
4334 (temacs${EXEEXT}): Don't generate buildobj.lst.
4335 (mostlyclean): Delete buildobj.h, not buildobj.lst.
4336 * makefile.w32-in ($(SRC)/buildobj.h): New target.
4337 ($(BLD)/doc.$(O)): Depend on it.
4338 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
4339 provided by Eli Zaretskii.)
4340 ($(TEMACS)): Don't generate buildobj.lst.
4341 * doc.c: Include buildobj.h.
4342 (buildobj): New static variable.
4343 (Fsnarf_documentation): Use it, instead of opening and reading
4344 buildobj.lst.
4345
4346 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
4347
4348 * dbusbind.c (Fdbus_call_method)
4349 (Fdbus_call_method_asynchronously): Use English numeric format for
4350 timeout values in doc string.
4351
4352 2009-08-25 Kenichi Handa <handa@m17n.org>
4353
4354 * alloc.c (mark_char_table): New function.
4355 (mark_object): Use mark_char_table for a char-table.
4356
4357 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
4358 (CHAR_TABLE_REF): Use it.
4359
4360 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
4361
4362 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
4363 before invoking the newly build emacs to check for load-path
4364 shadowing.
4365
4366 2009-08-22 Glenn Morris <rgm@gnu.org>
4367
4368 * Makefile.in (bootstrap_exe): New variable.
4369 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
4370 Use ${bootstrap_exe}.
4371
4372 2009-08-22 Eli Zaretskii <eliz@gnu.org>
4373
4374 * coding.h (encode_coding_string): Don't encode unibyte strings.
4375 (Bug#4047)
4376
4377 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
4378
4379 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
4380
4381 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
4382 intended as hotfix only.
4383 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
4384
4385 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
4386
4387 * nsterm.m (ns_get_color): Update documentation properly for last
4388 change, and clean up loose ends in the code left by it. Fix
4389 longstanding bug with 16-bit hex parsing, and add support for
4390 yet another X11 format (rgb:r/g/b) for compatibility.
4391 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
4392 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
4393
4394 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
4395
4396 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
4397
4398 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
4399
4400 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
4401 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
4402 (xd_initialize, xd_pending_messages): Check, whether
4403 $DBUS_SESSION_BUS_ADDRESS is set.
4404
4405 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4406
4407 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
4408
4409 * nsterm.m (ns_get_color): Remove incompatible color formats again.
4410
4411 2009-08-20 Glenn Morris <rgm@gnu.org>
4412
4413 * emacs.c (system-type): Doc fix.
4414
4415 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
4416
4417 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
4418 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
4419
4420 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
4421
4422 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
4423 New functions.
4424 (xd_initialize): Revert change from 2009-08-16.
4425
4426 2009-08-18 Kenichi Handa <handa@m17n.org>
4427
4428 * fontset.c (Ffontset_font): If a nil element is found in a
4429 font-group vector, return nil.
4430
4431 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
4432
4433 * process.c (status_notify): Don't perform redisplay.
4434 (Fdelete_process, list_processes_1, process_send_signal):
4435 Expliticly perform redisplay.
4436 (wait_reading_process_output): Always check process status, but
4437 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
4438
4439 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
4440
4441 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
4442 (XFLOAT_INIT): New macro for storing a float value.
4443 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
4444 * fns.c (sxhash): Copy out the value of a float in order to
4445 examine its bytes.
4446 * dbusbind.c (xd_append_arg): Likewise.
4447
4448 * emacs.c (main): Don't call syms_of_data twice.
4449
4450 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
4451
4452 * dbusbind.c (xd_initialize): Add connection file descriptor to
4453 input_wait_mask, in order to let select() detect, whether a new
4454 message has been arrived.
4455 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
4456
4457 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
4458
4459 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
4460 New functions.
4461
4462 * lisp.h (xd_pending_messages): Declare.
4463
4464 * keyboard.c (readable_events): Call xd_pending_messages.
4465
4466 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
4467
4468 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
4469
4470 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
4471
4472 * buffer.c (set_buffer_internal_1)
4473 (swap_out_buffer_local_variables): Check for unbound local
4474 variables (Bug#4138).
4475
4476 2009-08-14 Eli Zaretskii <eliz@gnu.org>
4477
4478 * process.c (create_pty): Fix last change.
4479
4480 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
4481
4482 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
4483 (xbm_load_image): Caller changed.
4484 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
4485
4486 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
4487
4488 * process.c (create_pty): New function.
4489 (Fstart_process): Use it to allow Emacs to just associate a pty
4490 with the buffer. See associated change in gdb-mi.el.
4491 (list_processes_1): Deal with no program name.
4492 (start_process_unwind): Use pid == -2 to mean no process.
4493
4494 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4495
4496 * cmds.c (nonundocount): New global variable.
4497 (keys_of_cmds): Initialize it.
4498 (Fself_insert_command): Use it to combine upto 20 sequential chars
4499 into a single undo entry, just like the Qself_insert_command code in
4500 keyboard.c does.
4501 Call frame_make_pointer_invisible, also like the Qself_insert_command
4502 code in keyboard.c does.
4503 * keyboard.c (command_loop_1): Use the new global nonundocount rather
4504 than its own local replacement for it.
4505
4506 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
4507
4508 * fns.c (concat): Don't re-set string length to its current value.
4509
4510 * coding.h (decode_coding_string, encode_coding_string):
4511 Use SBYTES macro.
4512
4513 * doprnt.c (doprnt_lisp): Delete unused function.
4514 (doprnt): Merge with doprnt1, discarding lispstrings code.
4515 * lisp.h (doprnt_lisp): Don't declare.
4516
4517 2009-08-07 Juri Linkov <juri@jurta.org>
4518
4519 * puresize.h (BASE_PURESIZE): Increase to 1270000.
4520
4521 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
4522
4523 * print.c (syms_of_print): Undo previous change.
4524
4525 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
4526
4527 * lread.c (read1, syms_of_lread): Read hashtables back from the
4528 readable format.
4529
4530 * print.c (print_preprocess, print_object): Print hashtables fully
4531 and readably.
4532 (syms_of_print): Provide 'hashtable-print-readable.
4533
4534 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
4535
4536 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
4537 no family set.
4538 (nsfont_open): Handle case when entity has no family.
4539
4540 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
4541
4542 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
4543 element, not a list, for match case.
4544
4545 2009-07-28 Kenichi Handa <handa@m17n.org>
4546
4547 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
4548 rigidly.
4549
4550 * xfont.c (xfont_list_pattern): Don't ignore the return value of
4551 font_parse_xlfd. Check font properties more rigidly.
4552
4553 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
4554
4555 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
4556 bsd-common.h.
4557
4558 2009-07-27 Kenichi Handa <handa@m17n.org>
4559
4560 * xfaces.c (face_with_height): Call font_clear_prop.
4561
4562 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
4563
4564 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
4565
4566 * xterm.c (x_term_init): Use Qx.
4567
4568 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
4569
4570 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
4571 (ns_get_color): Revert 2009-07-16 change.
4572
4573 2009-07-25 Eli Zaretskii <eliz@gnu.org>
4574
4575 * lread.c (syms_of_lread) <force_load_messages>: New variable.
4576 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
4577
4578 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
4579
4580 * coding.h (decode_coding_string, encode_coding_string):
4581 Use SCHARS macro.
4582
4583 * lread.c: Rewrite 2009-07-21 changes.
4584 (load_depth): Delete.
4585 (Qload_in_progress): New variable.
4586 (load_unwind): Don't reference load_depth or load_in_progress.
4587 (Fload): Likewise; specbind Qload_in_progress instead.
4588 (init_lread): Don't initialize load_depth.
4589 (syms_of_lread): Initialize and protect Qload_in_progress.
4590
4591 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
4592
4593 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
4594
4595 2009-07-23 Yavor Doganov <yavor@gnu.org>
4596
4597 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
4598
4599 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
4600
4601 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
4602 Bugs 3792, 3720, 2402.
4603 (ns_lookup_indexed_color): Check for bad index.
4604 (ns_index_color): Init unused slot to 0.
4605 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
4606 Bug 3714, possibly 3082.
4607
4608 2009-07-22 Jason Rumney <jasonr@gnu.org>
4609
4610 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
4611 Position IME window at cursor (Bug#2570).
4612 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
4613 (globals_of_w32fns): Dynamically load functions required above.
4614
4615 * w32term.c (w32_draw_window_cursor): Send message to reposition
4616 any IME window.
4617
4618 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
4619
4620 * fileio.c: Revert 2009-07-16 changes.
4621 (Vauto_save_include_big_deletions): New variable.
4622 (Fdo_auto_save): Disable auto-save only if
4623 auto-save-include-big-deletions is nil.
4624
4625 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
4626
4627 * xdisp.c (move_it_to): For continued lines ending in a tab, take
4628 the overflowed pixels into account (Bug#3879).
4629
4630 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
4631
4632 * lread.c (load_depth): New variable.
4633 (Fload, load_unwind, init_lread): Set it to the load recursion
4634 depth; set load_in_progress as a simple boolean based on the
4635 current load_depth. (Bug#3892)
4636
4637 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
4638
4639 * nsfont.m (ns_has_attribute): Remove.
4640 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
4641
4642 2009-07-18 Juri Linkov <juri@jurta.org>
4643
4644 * process.c (Fset_process_query_on_exit_flag): Mention killing
4645 a buffer in docstring.
4646
4647 2009-07-17 Kenichi Handa <handa@m17n.org>
4648
4649 * casetab.c (shuffle): Fix the logic of setting up the cycle.
4650
4651 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4652
4653 * nsfns.m (Fns_set_alpha): Remove function.
4654 (syms_of_nsfns): Don't defsubr it.
4655
4656 * nsterm.m (ns_get_color): Remove incompatible color formats.
4657 (ns_color_to_lisp): Generate #rrggbb color format string.
4658
4659 2009-07-16 Richard Stallman <rms@gnu.org>
4660
4661 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
4662 (Fset_buffer_auto_saved): Handle save_length = -2.
4663
4664 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
4665
4666 * xterm.c (Qx_gtk_map_stock): New var.
4667
4668 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
4669 of calling intern each time.
4670
4671 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4672
4673 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
4674 does tiling.
4675
4676 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
4677
4678 2009-07-14 Kenichi Handa <handa@m17n.org>
4679
4680 * font.c (font_vconcat_entity_vectors): New function.
4681 (struct font_sort_data): New member font_driver_preference.
4682 (font_compare): Check font_driver_preference.
4683 (font_sort_entities): The format of the first argument changed.
4684 (font_delete_unmatched): Likewise.
4685 (font_list_entities): The return type changed.
4686 (font_select_entity): The format of the second argument changed.
4687 (font_find_for_lface): Adjuste for the above changes.
4688 Don't suppress the checking of C even if the repertory supports it.
4689 (Flist_fonts): Adjust for the above changes.
4690
4691 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
4692 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
4693 Reject a font who has adstyle property that is different from a
4694 langname derived from registry property.
4695 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
4696
4697 2009-07-13 Eli Zaretskii <eliz@gnu.org>
4698
4699 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
4700 local copy of dirfilename.
4701
4702 2009-07-13 Kenichi Handa <handa@m17n.org>
4703
4704 * chartab.c (sub_char_table_ref_and_range): Fix the range check
4705 against max_char.
4706
4707 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
4708 calling XSYMBOL (sym).
4709
4710 2009-07-11 Eli Zaretskii <eliz@gnu.org>
4711
4712 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
4713 New function.
4714 (directory_files_internal) [WINDOWSNT]:
4715 Bind w32-get-true-file-attributes to either t or nil, depending whether
4716 the filesystem of the directory is fast or slow.
4717
4718 * w32.c (logon_network_drive): Don't assume PATH is an absolute
4719 file name.
4720 (is_slow_fs): New function.
4721 (stat): Use it to determine whether to issue more system calls to
4722 get accurate file attributes, when w32-get-true-file-attributes is
4723 `local'.
4724
4725 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
4726
4727 * xfns.c (Fx_select_font): Remember last font selected in
4728 x_last_font_name and use that the next time. Also try the frame
4729 parameter font-parameter as default to the font dialog.
4730
4731 2009-07-10 Kenichi Handa <handa@m17n.org>
4732
4733 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
4734
4735 2009-07-09 Eli Zaretskii <eliz@gnu.org>
4736
4737 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
4738
4739 * w32.c (stat): Treat UNC file names as residing on remote
4740 drives. (Bug#3542)
4741
4742 2009-07-09 Kenichi Handa <handa@m17n.org>
4743
4744 * fontset.c (fontset_find_font): Fix previous change.
4745
4746 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
4747
4748 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
4749 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
4750 error flag.
4751
4752 2009-07-08 Kenichi Handa <handa@m17n.org>
4753
4754 * fontset.c (fontset_find_font): Fix the logic of handling
4755 charset_matched.
4756 (font_for_char): Delete unused var.
4757 (generate_ascii_font_name): Delete it.
4758
4759 * coding.h (JIS_TO_SJIS2): Fix the code range check.
4760
4761 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
4762 (encode_coding_sjis): Fix the code range check.
4763
4764 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
4765
4766 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
4767 (Fexpand_file_name): Copy string data properly (Bug#3772).
4768
4769 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
4770
4771 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
4772 first MapNotify.
4773
4774 2009-07-07 Kenichi Handa <handa@m17n.org>
4775
4776 * character.h (unibyte_has_multibyte_table): Delete extern.
4777 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
4778
4779 * charset.c (Fset_charset_priority): Update charset_unibyte.
4780 (syms_of_charset): Initialize charset_unibyte.
4781
4782 * character.c (unibyte_has_multibyte_table): Delete it.
4783 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
4784 charset_unibyte.
4785 (multibyte_char_to_unibyte_safe): Likewise.
4786 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
4787
4788 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
4789 (x_produce_glyphs): Likewise.
4790
4791 * .gdbinit (xcharset): Fix the treating $arg0.
4792
4793 2009-07-04 Eli Zaretskii <eliz@gnu.org>
4794
4795 Emulation of `getloadavg' on MS-Windows.
4796 * w32.c: Include float.h.
4797 (g_b_init_get_native_system_info, g_b_init_get_system_times)
4798 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
4799 (get_native_system_info, get_system_times): New functions.
4800 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
4801 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
4802 (globals_of_w32): Initialize g_b_init_get_native_system_info,
4803 g_b_init_get_system_times, and num_of_processors.
4804
4805 2009-07-03 Jason Rumney <jasonr@gnu.org>
4806
4807 * w32term.c (w32_initialize): Use standard types.
4808
4809 2009-07-03 Eli Zaretskii <eliz@gnu.org>
4810
4811 * dired.c (Ffile_attributes): Decode user and group names by the
4812 locale's encoding. (Bug#3443)
4813
4814 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
4815
4816 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
4817 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
4818
4819 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
4820
4821 * term.c (init_tty): Remove spurious #ifdef.
4822
4823 * m/mips.h: Mention this file is also used for netbsd.
4824 * m/pmax.h: Remove file.
4825
4826 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
4827
4828 * xterm.h (struct x_display_info): Add invisible_cursor.
4829 (struct x_output): Add current_cursor.
4830
4831 * xterm.c (XTtoggle_invisible_pointer): New function.
4832 (x_define_frame_cursor): Don't define cursor if invisible or the
4833 same as before. Set current_cursor.
4834 (x_create_terminal): Set toggle_invisible_pointer_hook.
4835
4836 * xfns.c (make_invisible_cursor): New function.
4837 (x_set_mouse_color): Call make_invisible_cursor.
4838 Set current_cursor.
4839 (x_window): Set current_cursor.
4840
4841 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
4842
4843 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
4844 inserting a character.
4845 (read_avail_input): Call frame_make_pointer_visible.
4846
4847 * frame.c (Vmake_pointer_invisible): New variable.
4848 (frame_make_pointer_invisible, frame_make_pointer_visible):
4849 New functions.
4850 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
4851
4852 * frame.h: Declare frame_make_pointer_invisible and
4853 frame_make_pointer_visible.
4854 (struct frame): Add pointer_invisible.
4855
4856 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
4857
4858 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
4859 frame isn't visible.
4860 (xg_frame_resized): If width/height is -1, get size of window
4861 from X server.
4862
4863 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
4864 for MapNotify.
4865
4866 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
4867 here or call change_frame_size. Just call flush_and_sync.
4868 (flush_and_sync): Reintroduce.
4869
4870 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
4871
4872 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
4873
4874 * xterm.c (x_handle_net_wm_state): Also look for sticky.
4875 (x_term_init): Initialize Xatom_net_wm_state_sticky.
4876
4877 * frame.h: Declare Qsticky.
4878
4879 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
4880
4881 * nsfns.m (ns_frame_parm_handlers): Ditto.
4882
4883 * frame.c: Declare Qsticky.
4884 (frame_parms): Add sticky.
4885
4886 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
4887
4888 * xterm.h: Declare x_set_sticky.
4889
4890 * xterm.c (x_set_sticky): New function.
4891
4892 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
4893 (xg_tool_bar_menu_proxy): Attach enter/leave events to
4894 xg_tool_bar_proxy_help_callback.
4895
4896 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
4897
4898 * frame.c: Qmaximized is new.
4899 (x_set_frame_parameters): Do not handle fullscreen specially.
4900 Only set width and height if explicitly set.
4901 (x_set_fullscreen): Handle Qmaximized.
4902 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
4903 (syms_of_frame): Initialize Qmaximized.
4904
4905 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
4906 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
4907
4908 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
4909 for Expose event. Add call to x_check_fullscreen for MapNotify event.
4910 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
4911 set gravity to NorthWestGravity when USE_GTK.
4912 (set_wm_state): New function.
4913 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
4914 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
4915 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
4916 or the case when no window manager is running. That means remove calls
4917 to x_real_positions and x_fullscreen_adjust.
4918
4919 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
4920 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
4921 flush_and_sync.
4922 (xg_height_changed): New function.
4923 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
4924 and gtk_window_set_policy. Set frame gravity after parsing the
4925 geometry string.
4926 (xg_update_frame_menubar, free_frame_menubar)
4927 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
4928 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
4929 Remove calls to xg_frame_set_char_size.
4930
4931 2009-07-01 Kenichi Handa <handa@m17n.org>
4932
4933 * keyboard.c (decode_keyboard_code): New function.
4934 (tty_read_avail_input): Decode the input bytes if necessary.
4935
4936 * coding.c (setup_coding_system):
4937 Initialize coding->carryover_bytes to 0.
4938 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
4939 use Qno_conversion.
4940
4941 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4942
4943 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
4944
4945 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
4946
4947 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
4948
4949 2009-06-30 Jason Rumney <jasonr@gnu.org>
4950
4951 * w32term.c (w32_initialize): Use GetModuleHandle for library that
4952 is already loaded.
4953 Set user model ID if supported (bug#1849).
4954
4955 2009-06-29 Jim Meyering <meyering@redhat.com>
4956
4957 Remove useless if-before-xfree test.
4958 * nsfont.m (nsfont_close): Remove useless test.
4959 * term.c (delete_tty): Likewise.
4960 * w32.c (system_process_attributes): Likewise.
4961 * w32font.c (w32font_close): Likewise.
4962 * xfaces.c (x_free_gc): Likewise.
4963 * xselect.c (buffer): Likewise.
4964
4965 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
4966
4967 * process.c (send_process): Keep decoded string in a local
4968 variable and protect it from GC. (Bug#3521)
4969
4970 2009-06-28 Eli Zaretskii <eliz@gnu.org>
4971
4972 * term.c (create_tty_output) [MSDOS]: #ifdef away.
4973 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
4974
4975 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
4976
4977 * xdisp.c (start_display, handle_face_prop)
4978 (move_it_vertically_backward, cursor_row_fully_visible_p)
4979 (redisplay_window, try_window_id, produce_image_glyph):
4980 Delete some #ifdef-ed out code chunks that are now obsolete.
4981
4982 * xterm.c (x_update_window_begin, x_new_focus_frame)
4983 (x_scroll_bar_handle_click, handle_one_xevent)
4984 (handle_one_xevent, XTread_socket, x_focus_on_frame)
4985 (x_make_frame_visible, x_make_frame_invisible)
4986 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
4987 code chunks that are now obsolete.
4988
4989 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
4990
4991 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
4992 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
4993 for hours, when optimzation is enabled.
4994 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
4995 (xd_read_message): Make them static.
4996
4997 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
4998
4999 * term.c (turn_on_face): Allow simultaneously bold and dim
5000 terminal faces (Bug#3530).
5001
5002 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
5003
5004 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
5005
5006 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
5007 truncation glyphs (Bug#3686).
5008
5009 2009-06-27 Glenn Morris <rgm@gnu.org>
5010
5011 * m/pmax.h: Restore file, with only netbsd portions.
5012
5013 2009-06-26 David Reitter <david.reitter@gmail.com>
5014
5015 * nsterm.m (keydown): Avoid infinite loop.
5016
5017 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
5018
5019 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
5020 the arg FORCE_SYMBOL.
5021
5022 2009-06-25 Kenichi Handa <handa@m17n.org>
5023
5024 * fontset.c (fontset_find_font): When a usable rfont_def is found
5025 in a fallback font-group, make it the first element of the group.
5026
5027 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
5028
5029 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
5030
5031 2009-06-24 Kenichi Handa <handa@m17n.org>
5032
5033 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
5034 set for C.
5035 (fontset_font): Record the availability of a font for C both in
5036 the realized fontsets of the current one and the default one.
5037
5038 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
5039
5040 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
5041 conditional, it is always defined on AIX.
5042
5043 2009-06-23 Miles Bader <miles@gnu.org>
5044
5045 * window.c (Vrecenter_redisplay): New variable.
5046 (syms_of_window): Initialize it.
5047 (Qtty): New extern declaration.
5048 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
5049
5050 2009-06-23 Jim Meyering <meyering@redhat.com>
5051
5052 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
5053 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
5054 pointer dereferences are guaranteed to be valid.
5055
5056 2009-06-23 Kenichi Handa <handa@m17n.org>
5057
5058 * emacs.c (main): Call init_font ().
5059
5060 * font.h (Vfont_log): Extern it.
5061 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
5062
5063 * font.c (font_sort_entities, font_list_entities)
5064 (font_matching_entity, font_open_entity)
5065 (font_close_object): Change font_add_log to FONT_ADD_LOG.
5066 (Vfont_log): Delete static.
5067 (font_log_env_checked): Delete this variable.
5068 (font_add_log): Don't check font_log_env_checked.
5069 (font_deferred_log): Check Vfont_log.
5070 (init_font): New function.
5071
5072 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
5073
5074 * w32font.c: Change font_add_log to FONT_ADD_LOG.
5075
5076 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
5077
5078 * xfont.c: Change font_add_log to FONT_ADD_LOG.
5079
5080 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
5081 (face_for_char): Don't call font_deferred_log here.
5082 (font_for_char): Likewise.
5083
5084 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
5085
5086 * w32term.c (x_draw_glyph_string): Use the glyph string's width
5087 rather than its background_width for drawing the overline and
5088 underline (Bug#489).
5089
5090 * xterm.c (x_draw_glyph_string): Use the glyph string's width
5091 rather than its background_width for drawing the overline and
5092 underline (Bug#489).
5093 (xg_default_icon_file): New variable.
5094 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
5095 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
5096
5097 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
5098 (load_overlay_strings): Remove externs.
5099 (fast_find_position): Function deleted.
5100 (mouse_face_from_buffer_pos): New function, based on
5101 fast_find_position. Correctly handle before-strings,
5102 display-strings, and after-strings (Bug#1220).
5103 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
5104
5105 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
5106
5107 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
5108 (move_it_in_display_line_to, move_it_in_display_line_to)
5109 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
5110
5111 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
5112
5113 * Branch for 23.1.
5114
5115 2009-06-21 Jason Rumney <jasonr@gnu.org>
5116
5117 * w32term.c (keyboard_codepage): New static variable.
5118 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
5119 (w32_read_socket) [WM_CHAR]: Use it to decode character
5120 input (bug#3237).
5121 (w32_initialize): Initialize it.
5122 (codepage_for_locale): New function.
5123
5124 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
5125
5126 * process.c (status_message): Pass Faset index argument as a lisp
5127 object, so as to work with USE_LISP_UNION_TYPE.
5128
5129 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5130
5131 * coding.c (Ffind_coding_systems_region_internal):
5132 Cache checked characters.
5133
5134 2009-06-18 Kenichi Handa <handa@m17n.org>
5135
5136 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
5137
5138 2009-06-18 Andreas Schwab <aschwab@redhat.com>
5139
5140 * xdisp.c (redisplay_internal): Check that the frame is still
5141 live after redisplay of its windows.
5142 (redisplay_windows): Check that the window is still live.
5143
5144 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
5145
5146 * coding.c (detect_coding_utf_16): Fix previous change.
5147
5148 2009-06-16 Kenichi Handa <handa@m17n.org>
5149
5150 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
5151 UTF-16 by checking the dispersion of Eth and Oth bytes.
5152
5153 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
5154
5155 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
5156
5157 2009-06-15 Kenichi Handa <handa@m17n.org>
5158
5159 * process.c (status_message): Fix previous change. Be sure to
5160 decode a localized string.
5161
5162 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5163
5164 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
5165 add comment explaining why.
5166
5167 2009-06-14 Sidney Markowitz <sidney@sidney.com>
5168
5169 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
5170
5171 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
5172
5173 * nsfont.m (ns_attribute_value): Remove.
5174 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
5175 (ns_has_attribute): Shrink the normal range.
5176 (ns_findfonts): Don't worry about requested spec in determining
5177 need for synthItal.
5178 (ns_get_covering_families): Retain scriptToFamilies.
5179
5180 2009-06-14 Seiji Zenitani <zenitani@mac.com>
5181
5182 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
5183
5184 2009-06-11 Kenichi Handa <handa@m17n.org>
5185
5186 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
5187 overhang for the static composition case.
5188
5189 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5190
5191 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
5192 overhang for the automatic composition case.
5193
5194 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
5195 composition case.
5196
5197 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
5198
5199 * xdisp.c (get_next_display_element): When handling wrap-prefix
5200 and line-prefix, treat \n as a control character (bug#3502).
5201
5202 2009-06-10 Kenichi Handa <handa@m17n.org>
5203
5204 * font.c (font_parse_family_registry): Fix for one-char foundry.
5205 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
5206
5207 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
5208
5209 * process.c (status_message): Fix handling of multibyte signal
5210 string (Bug#3499).
5211
5212 2009-06-09 Jim Meyering <meyering@redhat.com>
5213
5214 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
5215 color name is missing.
5216
5217 2009-06-09 Kenichi Handa <handa@m17n.org>
5218
5219 * charset.c (Fmap_charset_chars): In docstring, state clearly that
5220 FROM-CODE and TO-CODE are codepoints of CHARSET.
5221
5222 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
5223
5224 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
5225
5226 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
5227
5228 Changes to support :script/:lang/:otf in NS font driver.
5229 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
5230 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
5231 indicate not part of font driver interface, and change callers.
5232 (ns_get_family): Remove pointless null check.
5233 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
5234 ns_spec_to_descriptor, ns_descriptor_to_entity.
5235 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
5236 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
5237 (ns_spec_to_descriptor, ns_descriptor_to_entity)
5238 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
5239 (ns_get_req_script, ns_accumulate_script_ranges)
5240 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
5241 New functions.
5242 (nsfont_list, nsfont_match): Use ns_findfonts.
5243 (nsfont_open): Use font descriptor instead of traits.
5244 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
5245 (dump_glyphstring): Rename to ns_dump_glyphstring.
5246
5247 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
5248
5249 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
5250
5251 * fontset.c (fontset_from_font): Remove NS-specific code.
5252
5253 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
5254
5255 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
5256 nonactive windows.
5257
5258 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
5259
5260 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
5261
5262 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
5263
5264 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
5265
5266 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
5267
5268 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
5269 account for the overflowing of newlines into the last glyph on the
5270 display line (Bug#3482).
5271
5272 2009-06-05 David Reitter <david.reitter@gmail.com>
5273
5274 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
5275 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
5276 Fns_selection_exists_p, Fns_selection_owner_p.
5277
5278 2009-06-03 Jason Rumney <jasonr@gnu.org>
5279
5280 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
5281 available. (Bug#3379)
5282
5283 2009-05-29 Kenichi Handa <handa@m17n.org>
5284
5285 * coding.c (get_translation_table):
5286 Check Venable_character_translation.
5287
5288 2009-05-26 David Reitter <david.reitter@gmail.com>
5289
5290 * nsterm.m (ns_raise_frame): Only raise frame if visible.
5291 (x_make_frame_visible): Move frame to front rather than calling
5292 ns_raise_frame().
5293 (keyDown:): Do not swallow events that aren't re-sent if frame
5294 isn't key window.
5295 (drawRect:): Do not set visibility/iconified flags because
5296 drawRect may be called by NSView even if the frame is hidden.
5297
5298 * nsfns.m (Fx_create_frame): Follow other ports in
5299 determining visibility; default to t. Ensure async_visible is set.
5300
5301 2009-05-23 Eli Zaretskii <eliz@gnu.org>
5302
5303 * dired.c (Ffile_attributes): Doc fix.
5304
5305 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
5306
5307 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
5308
5309 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
5310
5311 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
5312 and xfont_scratch_props.
5313 (syms_of_xfont): Do it here instead.
5314 (xfont_find_ccl_program): Delete, unused.
5315 (xfont_open): Delete unused var `i'.
5316
5317 2009-05-21 Kenichi Handa <handa@m17n.org>
5318
5319 * fontset.c (Qlatin): Don't make it static.
5320
5321 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
5322 New functions.
5323 (xfont_scripts_cache, xfont_scratch_props): New variables.
5324 (Qlatin, Vscalable_fonts_allowed): Extern it.
5325 (xfont_list_pattern): Argument changed. Callers changed.
5326 Check Vscalable_fonts_allowed. Check the support of a script.
5327 (xfont_list): Don't reject a font spec with :script property.
5328 (xfont_has_char): Fix setting of encoding.
5329 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
5330 xfont_scratch_props.
5331
5332 2009-05-19 Kenichi Handa <handa@m17n.org>
5333
5334 * font.c (font_sort_entities): Rename from font_sort_entites.
5335 Callers changed.
5336
5337 2009-05-18 Kenichi Handa <handa@m17n.org>
5338
5339 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
5340
5341 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
5342
5343 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
5344 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
5345
5346 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5347
5348 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
5349 (x_delete_terminal): Dissociate resource database from display and
5350 then call XrmDestroyDatabase before closing display.
5351
5352 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
5353
5354 * nsterm.m (ns_read_socket): Remove unused variable.
5355 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
5356 whether selected frame is viable before raising it (based on patch
5357 by David Reitter), and improve commentary.
5358 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
5359
5360 2009-05-15 Kenichi Handa <handa@m17n.org>
5361
5362 * font.c (Ffont_spec): Check arguments.
5363
5364 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
5365
5366 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
5367 weight when testing attributes (Bug#3282).
5368
5369 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5370
5371 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
5372 what we expect to get in the next ConfigureNotify event.
5373
5374 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
5375 before Xft one (Bug#1696).
5376
5377 2009-05-07 David Reitter <david.reitter@gmail.com>
5378
5379 * nsfns.m (Fx_display_planes): Compute bitplanes using
5380 NSBitsPerPixelFromDepth (Bug#3207).
5381
5382 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
5383
5384 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
5385
5386 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
5387
5388 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
5389
5390 2009-05-07 David Reitter <david.reitter@gmail.com>
5391
5392 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
5393 Respect mouse face background.
5394
5395 2009-05-07 David Reitter <david.reitter@gmail.com>
5396
5397 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
5398 Mouse movement/highlight: bracket drawing operations
5399 in ns_update_begin and ns_update_end.
5400
5401 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5402
5403 * nsfns.m (ns_get_screen): Rewrite.
5404 Don't presume selected-frame is of type `ns'.
5405
5406 * font.c (font_update_drivers): Sanity fallback to avoid disabling
5407 all drivers.
5408
5409 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
5410
5411 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5412
5413 * keyboard.h (add_user_signal): Fix typo in extern.
5414
5415 * lisp.h (add_user_signal): Remove extern.
5416
5417 * unexelf.c (unexec): Consider a section to precede the .bss section
5418 if its addresses overlap that of .bss.
5419 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
5420 instead of dumping process.
5421
5422 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5423
5424 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
5425
5426 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
5427
5428 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
5429
5430 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
5431
5432 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
5433 any statements.
5434
5435 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
5436
5437 * process.c (read_process_output): Make sure the current buffer is
5438 always restored.
5439
5440 * coding.c (record_conversion_result): Don't modify
5441 Vlast_code_conversion_error for successful result.
5442 (alloc_destination): Don't clobber conversion result. (Bug#1650)
5443
5444 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5445
5446 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
5447 (load_charset_map): Remove unnecessary code.
5448
5449 2009-04-30 David Reitter <david.reitter@gmail.com>
5450
5451 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
5452 through f24.
5453
5454 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
5455
5456 * xfaces.c (face_at_buffer_position): New arg base_face_id.
5457
5458 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
5459 face_at_buffer_position.
5460 (face_before_or_after_it_pos, get_next_display_element)
5461 (note_mouse_highlight): Update face_at_buffer_position call.
5462
5463 * term.c (term_mouse_highlight):
5464 * msdos.c (IT_note_mouse_highlight):
5465 * fontset.c (Finternal_char_font):
5466 * font.c (font_at, font_range): Update face_at_buffer_position call.
5467
5468 * dispextern.h (face_at_buffer_position): Update prototype.
5469
5470 2009-04-30 Kenichi Handa <handa@m17n.org>
5471
5472 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
5473
5474 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
5475
5476 * callproc.c (Fcall_process): Fix GC protection. Make sure
5477 current buffer is always restored.
5478
5479 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5480
5481 * atimer.c (init_atimer): Also clear stopped_atimers.
5482
5483 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
5484
5485 * process.c (create_process): Clean up merger residues of
5486 2008-07-17 change.
5487
5488 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
5489
5490 * lread.c (Vread_circle): New variable.
5491 (read1): Disable recursive read if Vread_circle is nil.
5492
5493 2009-04-29 Kenichi Handa <handa@m17n.org>
5494
5495 * fontset.h (set_default_ascii_font): Delete extern.
5496
5497 * fontset.c (set_default_ascii_font): Delete this unused function.
5498
5499 * frame.c (x_set_font): When ARG is a font-object, check if the
5500 font-object matches with the ASCII font-spec of the frame's
5501 fontset. If not, create a new fontset for the frame. (Bug #3075)
5502
5503 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
5504
5505 * fns.c (Flocale_info): Protect vector from GC during decoding.
5506
5507 * process.c (Fstart_process): Protect argv strings from GC during
5508 encoding.
5509
5510 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
5511
5512 * sysdep.c: Include <ctype.h>.
5513
5514 2009-04-27 David Reitter <david.reitter@gmail.com>
5515
5516 * nsfont.m (nsfont_open): Remove unused variable shrink.
5517 Remove commented-out code.
5518
5519 2009-04-26 Johan Bockgård <bojohan@gnu.org>
5520
5521 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
5522
5523 2009-04-25 Jason Rumney <jasonr@gnu.org>
5524
5525 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
5526
5527 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5528
5529 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
5530 Swap bytes in short integer if fringe bitmap width > 8.
5531
5532 2009-04-23 Kenichi Handa <handa@m17n.org>
5533
5534 * xfaces.c (Fx_list_fonts): If a font size is specified in
5535 PATTERN, set it in returned scalable fonts.
5536
5537 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
5538
5539 * keyboard.c (Fset_input_meta_mode): Doc fix.
5540
5541 * dispnew.c (Fsend_string_to_terminal): Doc fix.
5542
5543 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
5544
5545 * coding.c (Fterminal_coding_system): Doc fix.
5546
5547 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
5548 (Fx_display_pixel_height, Fx_display_planes)
5549 (Fx_display_color_cells, Fx_server_max_request_size)
5550 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
5551 (Fx_display_mm_height, Fx_display_mm_width)
5552 (Fx_display_backing_store, Fx_display_visual_class)
5553 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
5554 Doc fixes, replacing "terminal id" with "terminal object".
5555 (check_x_display_info): Handle terminal objects instead of
5556 terminal ids.
5557
5558 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
5559 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
5560 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
5561 Doc fixes, replacing "terminal id" with "terminal object".
5562
5563 2009-04-21 Kenichi Handa <handa@m17n.org>
5564
5565 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
5566 (font_score): Check AVGWIDTH too.
5567
5568 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
5569 worst case.
5570 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
5571 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
5572
5573 2009-04-19 Jason Rumney <jasonr@gnu.org>
5574
5575 The following changes fix Bug#3005 for wide glyphs on each platform,
5576 without reintroducing Bug#1258 for stretch glyphs.
5577
5578 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
5579 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
5580 get_phys_cursor_geometry.
5581
5582 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
5583 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
5584 using get_phys_cursor_geometry.
5585
5586 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
5587 correctly calculated.
5588
5589 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
5590
5591 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
5592 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
5593 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
5594 is deprecated.
5595
5596 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
5597
5598 * font.c (font_put_frame_data): Use xfree instead of free.
5599
5600 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
5601
5602 * w32font.c (Qja, Qko): Remove declarations.
5603 (syms_of_w32font): Don't DEFSYM them.
5604
5605 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
5606
5607 * font.c (Qja, Qko): Move definitions here from ftfont.c.
5608
5609 * font.h (Qja, Qko): Extern them.
5610
5611 * ftfont.c (Qja, Qko): Remove declarations.
5612
5613 * xfont.c (Qja, Qko): Remove declarations.
5614
5615 2009-04-17 Kenichi Handa <handa@m17n.org>
5616
5617 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
5618 string from a vector to handle Latin-1 characters correctly.
5619
5620 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
5621 entity even if the cache hits.
5622
5623 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
5624
5625 * search.c (boyer_moore): Use zero as marker value for a possible
5626 match instead of depending on overflow behavior. (Bug#2844)
5627
5628 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
5629 * lisp.h: Adjust prototypes.
5630
5631 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
5632
5633 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
5634 change (Bug#3003).
5635
5636 2009-04-16 Kenichi Handa <handa@m17n.org>
5637
5638 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
5639
5640 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
5641 adstyle.
5642
5643 * ftfont.c (Qja, Qko): Don't make them static.
5644 (enum ftfont_cache_for): New enum.
5645 (fc_charset_table): Undo the previous change.
5646 (ftfont_get_latin1_charset): Delete it.
5647 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
5648 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
5649 non-scarable font, try to get AVERAGE_WIDTH.
5650 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
5651 Change ft_face_cache from a list of a hash-table. Don't check
5652 `ja' and `ko' adstyle here.
5653 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
5654 FTFONT_CACHE_FOR_CHARET.
5655 (ftfont_get_charset): Undo the previous change.
5656 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
5657 (ftfont_close): Likewise.
5658 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
5659
5660 * font.c (font_sort_entites): Change the meaning of the arg
5661 BEST-ONLY. Don't optimize for VEC of lenght 1.
5662 (font_select_entity): Just return the value of font_sort_entites.
5663
5664 * xfaces.c (merge_face_vectors): Reflect font properties in
5665 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
5666 font_clear_prop if a face attribute doesn't change.
5667
5668 * charset.h (charset_ksc5601): Extern it.
5669
5670 * charset.c (charset_ksc5601): New variable.
5671 (Fdefine_charset_internal): Set charset_ksc5601.
5672 (init_charset_once): Initialize charset_ksc5601 to -1.
5673
5674 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
5675
5676 * fileio.c (history_delete_duplicates): Remove unused declaration.
5677
5678 * callint.c (history_delete_duplicates): New declaration.
5679 (Fcall_interactively): Remove command history duplicates when
5680 history_delete_duplicates is true.
5681
5682 2009-04-14 Eli Zaretskii <eliz@gnu.org>
5683
5684 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
5685
5686 2009-04-14 Kenichi Handa <handa@m17n.org>
5687
5688 * font.c (Ffont_info): Fix docstring. Fix the second element of
5689 the returned value (bug#2949).
5690
5691 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
5692
5693 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
5694
5695 2009-04-14 Kenichi Handa <handa@m17n.org>
5696
5697 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
5698 encoding charset is ascii_compatible.
5699
5700 * charset.c (Fdefine_charset_internal): Make charset
5701 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
5702 code_offset is 0, and covers all ASCII characters.
5703
5704 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5705
5706 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
5707 (ns_string_to_pasteboard_internal):
5708 * nsmenu.m (process_dialog):
5709 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
5710 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
5711 * lisp.h (Fx_load_color_file): Declare.
5712
5713 2009-04-13 Kenichi Handa <handa@m17n.org>
5714
5715 * font.c (font_delete_unmatched): Preserve the order of list elements.
5716 (font_select_entity): Suppress the code to optimize for the same
5717 kind of fonts.
5718 (font_load_for_lface): Get a font that supports at least ASCII
5719 characters.
5720
5721 * ftfont.c (Qja, Qko): New variables.
5722 (fc_charset_table): Delete uniquifier data for iso8859-1.
5723 (ftfont_get_latin1_charset): New function.
5724 (get_adstyle_property): New function.
5725 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
5726 bitmap fonts.
5727 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
5728 Delete iso-8859-1 range from the charset of fonts whose adstyle is
5729 `ko' or `ja'.
5730 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
5731 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
5732 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
5733 property.
5734 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
5735 (syms_of_ftfont): DEFSYM Qja and Qko.
5736
5737 2009-04-09 Kenichi Handa <handa@m17n.org>
5738
5739 * charset.c (map_charset_chars): For a charset of `superset'
5740 method, fix calculation of code range.
5741
5742 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
5743 from the list of extra properties.
5744 (font_clear_prop): Be sure to delete `:name' font property.
5745
5746 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5747
5748 * dispnew.c (redraw_overlapping_rows): Fix detection of
5749 overlapping for topmost and bottommost rows.
5750
5751 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
5752
5753 2009-04-06 Jason Rumney <jasonr@gnu.org>
5754
5755 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
5756
5757 2009-04-06 Kenichi Handa <handa@m17n.org>
5758
5759 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
5760
5761 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
5762
5763 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5764
5765 * ftfont.c (ftfont_open): Fix checking of the return value of
5766 FT_Load_Char. Fix setting font->underline_thickness.
5767
5768 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
5769
5770 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
5771 (Fterminal_parameters, Fterminal_parameter)
5772 (Fset_terminal_parameter): In doc string, refer to terminal
5773 objects rather than terminal ids.
5774
5775 2009-04-04 Eli Zaretskii <eliz@gnu.org>
5776
5777 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
5778 ret_lim_data. (Bug#2867)
5779
5780 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
5781
5782 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
5783 so they don't get wider than the window, matching 2006-01-23
5784 change to the partner function in xdisp.c (Bug#2800).
5785
5786 2009-04-03 Kenichi Handa <handa@m17n.org>
5787
5788 * print.c (print_object): Make each lowest sub_char_table start a
5789 new line (Bug#2866).
5790
5791 2009-04-02 Kenichi Handa <handa@m17n.org>
5792
5793 * fontset.c (fontset_font): Record no-font when a fontset
5794 explicitly tells not to try another font-specs.
5795
5796 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
5797
5798 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
5799
5800 2009-03-30 Kenichi Handa <handa@m17n.org>
5801
5802 * fontset.c (fontset_from_font): Specify only registry in a
5803 font-spec for all characters supported by that registry.
5804
5805 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
5806 even if HAVE_M17N_FLT is not defined.
5807
5808 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
5809
5810 * ftfont.c: Conditionalize prototyping and use of
5811 ftfont_variation_glyphs.
5812
5813 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
5814
5815 * frame.c (delete_frame): Work around compiler bug.
5816
5817 * editfns.c (general_insert_function): Adjust to insdel.c changes.
5818 * insdel.c (prepare_to_modify_buffer, signal_before_change):
5819 Some more EMACS_INT.
5820 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
5821
5822 * xdisp.c (dump_glyph): Fix typo.
5823
5824 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
5825 (adjust_markers_gap_motion, adjust_markers_for_delete)
5826 (adjust_markers_for_insert, adjust_point)
5827 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
5828 (make_gap, copy_text, count_size_as_multibyte, insert)
5829 (insert_and_inherit, insert_before_markers)
5830 (insert_before_markers_and_inherit, insert_1)
5831 (count_combining_before, count_combining_after, insert_1_both)
5832 (insert_from_string, insert_from_string_before_markers)
5833 (insert_from_string_1, insert_from_gap, insert_from_buffer)
5834 (insert_from_buffer_1, adjust_after_replace)
5835 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
5836 (replace_range_2, del_range, del_range_1, del_range_byte)
5837 (del_range_both, del_range_2, modify_region)
5838 (prepare_to_modify_buffer, signal_before_change)
5839 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
5840 for buffer positions and sizes.
5841 * lisp.h: Adjust prototypes accordingly.
5842
5843 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
5844 (non_regular_inserted, non_regular_nbytes, read_non_regular)
5845 (Finsert_file_contents): Use EMACS_INT for buffer positions.
5846
5847 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
5848
5849 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
5850
5851 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
5852 lines and columns so we keep the same pixel height and width.
5853
5854 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
5855 the property _NET_WM_STATE has changed.
5856 (x_handle_net_wm_state): New function to update frame parameter
5857 fullscreen.
5858 (x_term_init): Initialize atoms for _NET_WM_STATE.
5859
5860 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
5861
5862 2009-03-27 Kevin Ryde <user42@zip.com.au>
5863
5864 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
5865 Gpm_GetEvent as an error that justifies closing the filedescriptor.
5866 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
5867 (Fgpm_mouse_stop): Pass that new parameter.
5868 * termhooks.h (close_gpm): Adjust prototype.
5869
5870 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
5871
5872 * lisp.h (Fx_focus_frame): Declare.
5873
5874 * callint.c (Fcall_interactively): For '^' just delegate the work to
5875 handle-shift-selection.
5876 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
5877
5878 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
5879
5880 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
5881
5882 * data.c (Qinteractive_form): New variable.
5883 (Finteractive_form): Use it.
5884
5885 * eval.c (Fcommandp): Use Qinteractive_form.
5886
5887 2009-03-24 Jason Rumney <jasonr@gnu.org>
5888
5889 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
5890 Calculate total size precisely. Decode environment variables
5891 before substituting. (Bug#38)
5892
5893 2009-03-24 Kenichi Handa <handa@m17n.org>
5894
5895 * font.c (find_font_encoding): Return Qnil for unsupported
5896 encoding (Bug#2722).
5897
5898 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
5899
5900 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
5901 that gdpy is set.
5902
5903 2009-03-22 Alan Mackenzie <acm@muc.de>
5904
5905 * callint.c (Finteractive): Clarify the doc string - even
5906 promptless elements need \n separators.
5907
5908 2009-03-22 Jason Rumney <jasonr@gnu.org>
5909
5910 * w32term.c (syms_of_w32term): Doc fix for
5911 x-use-underline-position-properties.
5912
5913 2009-03-21 Eli Zaretskii <eliz@gnu.org>
5914
5915 * w32.c (getpwuid): Change argument type to unsigned.
5916 (struct w32_id): Change type of `rid' member to unsigned.
5917 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
5918 argument ID to unsigned. All callers changed.
5919 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
5920
5921 2009-03-20 Eli Zaretskii <eliz@gnu.org>
5922
5923 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
5924 negative, produce a float value.
5925
5926 * dired.c (make_uid, make_gid): New functions.
5927 (Ffile_attributes): Use them to avoid negative UID and GID.
5928
5929 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
5930
5931 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
5932 (syms_of_keyboard) <command-hook-internal, input-method-function>:
5933 Fix typos in docstrings.
5934
5935 2009-03-19 Kenichi Handa <handa@m17n.org>
5936
5937 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
5938 changed, use font_load_for_lface to get a new font object.
5939 Call free_realized_fontset after handling ASCII font change.
5940
5941 * frame.c (x_set_font): Handle the case that ARG is a cons.
5942
5943 2009-03-19 Glenn Morris <rgm@gnu.org>
5944
5945 * fileio.c (Fsubstitute_in_file_name): Doc fix.
5946
5947 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
5948
5949 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
5950
5951 2009-03-19 Kenichi Handa <handa@m17n.org>
5952
5953 * charset.c (load_charset_map_from_file): When a mapfile can't be
5954 loaded, signal an error.
5955
5956 2009-03-18 Eli Zaretskii <eliz@gnu.org>
5957
5958 * dired.c (Ffile_attributes): Make sure UID and GID are always
5959 positive, even if the value is too large for a positive EMACS_INT.
5960 Doc fix.
5961
5962 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
5963
5964 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5965
5966 * xmenu.c (xdialog_show): Move Fredisplay call ...
5967 (Fx_popup_dialog): ... here.
5968
5969 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
5970
5971 * dired.c (file_name_completion): Disable the first optimization just
5972 installed, since it is not implemented correctly.
5973
5974 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
5975
5976 * dired.c (file_name_completion): Check completion-ignored-extensions
5977 only if the entry can affect bestmatch.
5978 Stop the search early, as Ftry_completion already does.
5979
5980 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
5981
5982 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
5983
5984 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
5985
5986 * keyboard.c (parse_menu_item): Don't display remappings as menu
5987 equivalent bindings (Bug#788).
5988
5989 2009-03-15 Jason Rumney <jasonr@gnu.org>
5990
5991 * w32term.h (WM_EMACS_PAINT): New message.
5992 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
5993 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
5994 before passing to lisp thread. (Bug#950)
5995
5996 2009-03-14 David Reitter <david.reitter@gmail.com>
5997
5998 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
5999 variable as it was never reset.
6000 (ns_term_init): Remove initialization of Lisp-settable defaults
6001 and ns_expand_space.
6002 (-setPanelFromDefaultValues): Remove ns_expand_space.
6003 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
6004 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
6005 i.e. no additional spacing, similar to Carbon port.
6006
6007 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
6008 * nsfns.m (ns-popup-prefs-panel): Remove.
6009
6010 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
6011
6012 * sound.c (alsa_configure): Remove call to deprecated
6013 snd_pcm_sw_params_set_xfer_align.
6014
6015 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
6016
6017 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
6018 after clicking in a detached tool bar.
6019 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
6020
6021 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
6022
6023 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
6024 int/Lisp_Object mixup).
6025
6026 2009-03-13 Kenichi Handa <handa@m17n.org>
6027
6028 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
6029 Handle NAME nil and t correctly. Callers changed.
6030 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
6031 (set_fontset_font): Change ARG to a vector. Handle range_list in
6032 ARG correctly.
6033 (Fset_fontset_font): Fix the case that TARGET is both a script
6034 name and charset name. Adjust the arg to set_fontset_font for
6035 the above change.
6036 (fontset_from_font): Fix previous change.
6037 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
6038 entry. If FONTSET is the default fontset, don't set the extra
6039 slot of the returning char-table.
6040
6041 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
6042
6043 * nsfns.m (Fx_close_connection): Doc fix.
6044 (Fns_do_applescript): Reflow docstring.
6045 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
6046 (Fx_display_pixel_width, Fx_display_pixel_height)
6047 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
6048 Fix typos in docstrings.
6049 (Fns_set_alpha): Fix typos in error messages.
6050
6051 2009-03-12 David Reitter <david.reitter@gmail.com>
6052
6053 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
6054 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
6055 were used for such events.
6056
6057 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
6058 (toggleToolbar, performDragOperation, runHelp): Use it.
6059
6060 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
6061 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
6062
6063 2009-03-11 Kenichi Handa <handa@m17n.org>
6064
6065 * font.h (font_open_by_spec): Extern it.
6066
6067 * font.c (font_open_by_spec): New function.
6068 (font_open_by_name): Use font_open_by_spec.
6069
6070 * frame.c (x_set_font): When ARG is a font-object, don't alter the
6071 fontset of the frame.
6072
6073 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
6074 modify the default font of frames that use this fontset.
6075 (num_auto_fontsets): New variable.
6076 (fontset_from_font): Use num_auto_fontsets to decide a fontset
6077 name. Be sure to set FONTSET_ASCII to the correct font name.
6078 (update_auto_fontset_alist): New function.
6079
6080 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
6081
6082 * makefile.w32-in: Update dependencies.
6083
6084 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
6085
6086 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
6087
6088 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
6089
6090 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
6091
6092 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
6093
6094 * lread.c (Feval_buffer): Doc fix.
6095
6096 2009-03-09 Kenichi Handa <handa@m17n.org>
6097
6098 * charset.c (Qfile_name_handler_alist): Extern it.
6099 (load_charset_map_from_file): Temporarily bind
6100 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
6101
6102 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
6103
6104 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
6105 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
6106
6107 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
6108
6109 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
6110 (x_set_window_size): Change back to calculated method of setting
6111 toolbar height under Cocoa. (Bug#2546)
6112 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
6113 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
6114
6115 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
6116
6117 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
6118 accelerator in parens under GNUstep.
6119
6120 2009-03-06 Kenichi Handa <handa@m17n.org>
6121
6122 These changes are to detect incorrect composition sequence without
6123 looking ahead the source. (Bug#2370)
6124
6125 * coding.h: Include "composite.h".
6126 (enum compisition_state): New enum.
6127 (struct compisition_status): New struct.
6128 (struct iso_2022_spec): New member cmp_status.
6129 (struct emacs_mule_spec): New struct.
6130 (struct coding_system): New members ctext_extended_segment_len and
6131 embedded_utf_8. Change the union member
6132 spec.emacs_mule_full_support to spec.emacs_mule.
6133
6134 * coding.c (CODING_ISO_CMP_STATUS): New macro.
6135 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
6136 (MAX_ANNOTATION_LENGTH): Define to 5.
6137 (ADD_COMPOSITION_DATA): New arg nbytes.
6138 (emacs_mule_char): New arg cmp_status.
6139 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
6140 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
6141 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
6142 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
6143 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
6144 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
6145 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
6146 (EMACS_MULE_COMPOSITION_END): New macro.
6147 (emacs_mule_finish_composition): New function.
6148 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
6149 (decode_coding_emacs_mule): Avoid long looking ahead while
6150 handling composition.
6151 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
6152 (ENCODE_COMPOSITION_RULE): New macro.
6153 (finish_composition): New function.
6154 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
6155 (DECODE_COMPOSITION_START): New implementation.
6156 (DECODE_COMPOSITION_END): Likewise.
6157 (STORE_COMPOSITION_RULE): New macro.
6158 (decode_coding_iso_2022): Avoid long looking ahead while handling
6159 composition, CTEXT extended segment, and embedded UTF-8.
6160 (setup_coding_system): For a coding of type iso-2022, reset
6161 CODING_ISO_EXTSEGMENT_LEN (coding) and
6162 CODING_ISO_EMBEDDED_UTF_8 (coding).
6163 (get_translation): Delete arguments last_block, from_nchars,
6164 to_nchars. Callers changed.
6165 (produce_chars): Don't modify charbuf. Adjusted for the change of
6166 get_translation.
6167 (produce_composition): Adjust for the new annotation sequence.
6168 (handle_composition_annotation): Likewise.
6169 (consume_chars): Adjust for the change of get_translation.
6170
6171 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
6172
6173 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
6174
6175 2009-03-05 Kenichi Handa <handa@m17n.org>
6176
6177 * font.c (font_select_entity): New function.
6178 (font_find_for_lface): Use font_select_entity to select a font.
6179
6180 * fontset.c (fontset_find_font): If a font found without
6181 restricting to the characters C doesn't support C, try to find a
6182 font with C restriction.
6183
6184 2009-03-04 Nikolaj Schumacher <me@nschum.de>
6185
6186 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
6187
6188 2009-03-04 Jason Rumney <jasonr@gnu.org>
6189
6190 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
6191 characters that have already been read. (Bug#2569)
6192
6193 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
6194 Log an error message if check_image_size failed.
6195 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
6196 (gs_load): Mention max-image-size in size error message. (Bug#2560)
6197
6198 2009-03-02 Eli Zaretskii <eliz@gnu.org>
6199
6200 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
6201 when decoding process output.
6202
6203 2009-03-01 Richard M Stallman <rms@gnu.org>
6204
6205 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
6206
6207 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
6208
6209 2009-02-28 Eli Zaretskii <eliz@gnu.org>
6210
6211 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
6212 (decode_coding_emacs_mule, decode_coding_iso_2022)
6213 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6214 (decode_coding_raw_text, decode_coding_charset)
6215 (setup_coding_system, decode_eol, decode_coding, consume_chars):
6216 Honor inhibit-eol-conversion. (Bug #2186)
6217
6218 2009-02-28 Jason Rumney <jasonr@gnu.org>
6219
6220 * coding.c (detect_coding_charset): If not checking latin extra,
6221 fail on characters between 0x80 and 0xA0. (Bug#2354)
6222
6223 2009-02-28 Eli Zaretskii <eliz@gnu.org>
6224
6225 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
6226 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
6227
6228 2009-02-27 Glenn Morris <rgm@gnu.org>
6229
6230 * callint.c (Finteractive): Doc fix.
6231
6232 2009-02-27 Kenichi Handa <handa@m17n.org>
6233
6234 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
6235
6236 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
6237
6238 * font.c (font_style_to_value): Set value for unknown symbols to
6239 100 instead of 255.
6240 (weight_table, slant_table, width_table): Treat "unspecified" as
6241 the default value.
6242
6243 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
6244
6245 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
6246
6247 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
6248
6249 * lread.c (Fload): Stop checking Vloads_in_progress and signal
6250 error as soon as a recursive load is detected.
6251
6252 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
6253
6254 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
6255 before caching.
6256
6257 2009-02-24 Kenichi Handa <handa@m17n.org>
6258
6259 * fontset.c (fontset_find_font): Fix the condition for checking
6260 unavailable font.
6261
6262 2009-02-24 Glenn Morris <rgm@gnu.org>
6263
6264 * xfaces.c (Finternal_set_font_selection_order): Remove leading
6265 whitespace that confuses documentation.
6266
6267 2009-02-23 Miles Bader <miles@gnu.org>
6268
6269 * process.c (Flist_system_processes, Fprocess_attributes)
6270 (syms_of_process): Rename `system-process-attributes' to
6271 `process-attributes'.
6272
6273 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
6274
6275 * coding.h (struct coding_system): Make safe_charsets a pointer to
6276 unsigned char.
6277 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
6278 being 255.
6279 (SAFE_CHARSET_P): Likewise.
6280 (setup_iso_safe_charsets): Properly setup safe_charsets.
6281 (Fdefine_coding_system_internal): Likewise.
6282 (setup_coding_system): Likewise. Remove unneeded casts.
6283 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
6284 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
6285 unneeded casts.
6286
6287 * insdel.c (del_range_2): Don't modify gap contents when called
6288 from decode_coding_object. (Bug#1809)
6289
6290 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
6291
6292 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
6293 Qfont_object.
6294 (Ftype_of): Recognize font objects.
6295
6296 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
6297
6298 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
6299 moved to data.c.
6300
6301 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
6302
6303 * nsterm.m (x_make_frame_invisible): Unset async_visible,
6304 async_iconified. Based on a patch by Christian Lynbech
6305 <christian.lynbech@tieto.com>.
6306 (EmacsView-windowDidMiniaturize:): Unset async_visible.
6307
6308 2009-02-20 Glenn Morris <rgm@gnu.org>
6309
6310 * syntax.c (Fskip_chars_forward): Fix doc typo.
6311
6312 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
6313
6314 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
6315
6316 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
6317
6318 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
6319
6320 2009-02-19 Kenichi Handa <handa@m17n.org>
6321
6322 * coding.c (detect_coding): Preserve coding->mode.
6323 Don't overflow coding->carryover. (Bug#2370)
6324
6325 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
6326
6327 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
6328
6329 2009-02-18 Kenichi Handa <handa@m17n.org>
6330
6331 * font.c (font_check_otf_features): Fix handling of `nil' element.
6332 (Ffont_spec): Describe :lang and :otf in the docstring.
6333
6334 2009-02-16 Andreas Schwab <schwab@suse.de>
6335
6336 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
6337 string.
6338
6339 2009-02-16 Kenichi Handa <handa@m17n.org>
6340
6341 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
6342 (Bug#1723)
6343
6344 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
6345
6346 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
6347
6348 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
6349 (handle_line_prefix): Suppress wrapping of wrap prefixes.
6350
6351 2009-02-14 Eli Zaretskii <eliz@gnu.org>
6352
6353 * msdos.c (MAX_SCREEN_BUF): New macro.
6354 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
6355 Encode the entire run of glyphs sharing the same face, instead of
6356 doing that one glyph at a time (fixes a bug with displaying
6357 double-size characters).
6358
6359 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
6360
6361 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
6362
6363 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
6364 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
6365 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
6366
6367 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
6368 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
6369
6370 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
6371
6372 * keyboard.c (adjust_point_for_property): Allow stopping between two
6373 invisible areas.
6374
6375 2009-02-12 Jason Rumney <jasonr@gnu.org>
6376
6377 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
6378 (add_font_entity_to_list): Call check_face_name even when family
6379 is unspecified.
6380
6381 * w32term.c (x_display_pixel_height, x_display_pixel_width):
6382 Release DC when finished. Use NULL window to refer to desktop.
6383 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
6384
6385 * w32font.c (add_font_entity_to_list): Fix check for substituted
6386 raster fonts. (Bug#2219)
6387
6388 2009-02-12 Kenichi Handa <handa@m17n.org>
6389
6390 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
6391 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
6392 (autocmp_chars): Use fast_looking_at. Don't compose more
6393 characters than MAX_COMPOSITION_COMPONENTS.
6394 (find_automatic_composition): While looking forward and backward,
6395 check static composition. Fix where to stop looking forward.
6396 (composition_adjust_point): Fix checking of static composition.
6397 (Fcomposition_get_gstring): Pay attention to
6398 MAX_COMPOSITION_COMPONENTS.
6399
6400 * lisp.h (fast_looking_at): Extern it.
6401
6402 * search.c (fast_looking_at): New function.
6403
6404 * term.c (encode_terminal_code): Adjust for the change of
6405 <struct glyph>.u.cmp.to.
6406 (append_composite_glyph): Likewise.
6407
6408 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
6409 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
6410 composition.
6411 (append_composite_glyph): Adjust for the change of
6412 <strcut glyph>.u.cmp.to.
6413
6414 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
6415
6416 * casetab.c (init_casetab_once):
6417 * coding.c (ALLOC_CONVERSION_WORK_AREA):
6418 * font.c (font_update_lface):
6419 * fontset.c (Fnew_fontset):
6420 * ftfont.c (ftfont_drive_otf):
6421 * xfont.c (xfont_open):
6422 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
6423
6424 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6425
6426 * fileio.c (Fwrite_region): !NILP -> CONSP.
6427
6428 2009-02-10 Andreas Schwab <schwab@suse.de>
6429
6430 * process.c (send_process): Properly relocate pointer into data
6431 when using encoded data. (Bug#2272)
6432
6433 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
6434
6435 * coding.c (detect_coding_charset): Fix previous change.
6436
6437 2009-02-08 Jason Rumney <jasonr@gnu.org>
6438
6439 * w32fns.c (w32_hide_hourglass): Handle case where frame
6440 disappeared while hourglass was displayed. (Bug #2193)
6441
6442 2009-02-07 Andreas Schwab <schwab@suse.de>
6443
6444 * unexelf.c (unexec): Fix error message.
6445
6446 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
6447
6448 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
6449 when modal window is active. (Bug #2152)
6450 (applicationShouldTerminate:): Remove now-unneeded while loop
6451 around NSRunAlertPanel.
6452
6453 * nsmenu.m (popupSession): New file-global variable.
6454 (pop_down_menu): End the popupSession before closing dialog.
6455 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
6456 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
6457 don't query NSApp for events (just sleep instead).
6458
6459 2009-02-07 Eli Zaretskii <eliz@gnu.org>
6460
6461 * coding.c (syms_of_coding) <translation-table-for-input>:
6462 Modify doc string to discourage use for character code unification.
6463
6464 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6465
6466 * atimer.c (run_timers): Update pending_atimers.
6467
6468 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
6469
6470 * image.c (svg_load_image): Fix last change.
6471
6472 * xfns.c (Fx_create_frame): Signal an error if no font is
6473 found (Bug#2147).
6474
6475 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
6476
6477 * character.c (syms_of_character) <script-representative-chars>:
6478 Fix typo in docstring.
6479
6480 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
6481
6482 * nsmenu.m (pop_down_menu): New function.
6483 (ns_popup_dialog): Call it on unwind.
6484 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
6485 call timer_check() (Bug#2154).
6486 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
6487 handling_signal is set.
6488 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
6489
6490 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
6491
6492 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
6493
6494 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
6495
6496 * keyboard.c (poll_for_input_1, handle_async_input):
6497 Set handling_signal under HAVE_NS.
6498
6499 2009-02-04 Glenn Morris <rgm@gnu.org>
6500
6501 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
6502
6503 2009-02-04 Kenichi Handa <handa@m17n.org>
6504
6505 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
6506
6507 * charset.c (Fchar_charset): New optional arg restriction.
6508
6509 * coding.h (coding_system_charset_list): Extern it.
6510
6511 * coding.c (coding_system_charset_list): New function.
6512
6513 * composite.c: Include coding.h and termhooks.h.
6514 (composition_gstring_p): Fix for the terminal case.
6515 (composition_gstring_width): Likewise.
6516 (fill_gstring_body): Likewise.
6517 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
6518 the frame.
6519 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
6520 is within a composition.
6521 (Fcomposition_get_gstring): Fix the terminal case.
6522
6523 * term.c (encode_terminal_code): Fix handling of composition.
6524 (produce_composite_glyph): For static composition, get pixel_width
6525 from struct composition.
6526
6527 2009-02-02 Andreas Schwab <schwab@suse.de>
6528
6529 * unexelf.c (unexec): Handle unaligned bss offset.
6530
6531 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6532
6533 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
6534 XT,w32read_socket changes to ns_read_socket.
6535
6536 * keyboard.c (handle_interrupt): Don't call
6537 quit_throw_to_read_char() under NS.
6538
6539 * blockinput.h: Remove NS-specific code.
6540
6541 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
6542
6543 * dispnew.c (window_change_signal): Don't try to get the size of a
6544 suspended tty frame.
6545 * term.c (Fresume_tty): Resize if the size has changed while the
6546 tty was suspended.
6547
6548 * alloc.c (mark_stack): Properly conditionalize previous change.
6549
6550 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
6551
6552 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
6553 * w32term.c (w32_read_socket) [SYNC_INPUT]:
6554 Remove; this code is not used on Windows.
6555
6556 2009-01-30 Eli Zaretskii <eliz@gnu.org>
6557
6558 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
6559 EOLs that also has stray ^M characters.
6560
6561 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
6562
6563 * atimer.c (run_timers, alarm_signal_handler):
6564 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
6565 * w32inevt.c (w32_console_read_socket):
6566 * w32term.c (w32_read_socket):
6567 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
6568
6569 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
6570
6571 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
6572 Initialize it as a relative filename pattern.
6573 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
6574 (Fcall_process_region): Simplify temp file creation using
6575 temporary-file-directory.
6576
6577 2009-01-29 Eli Zaretskii <eliz@gnu.org>
6578
6579 * msdos.c: Rename pending_signals to msdos_pending_signals.
6580 (sig_suspender, sigprocmask): Adjust.
6581
6582 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
6583
6584 * keyboard.c (pending_signals): New var.
6585 (poll_for_input, input_available_signal, init_keyboard): Set it.
6586 (process_pending_signals): New function.
6587
6588 * lisp.h (QUIT): Check pending_signals instead of
6589 interrupt_input_pending. Use process_pending_signals.
6590
6591 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
6592
6593 * process.c (wait_reading_process_output): Use process_pending_signals.
6594
6595 * sysdep.c (emacs_write): Use process_pending_signals.
6596
6597 * xterm.c (XTread_socket): Update pending_signals.
6598
6599 * w32term.c (w32_read_socket): Update pending_signals.
6600
6601 * w32inevt.c (w32_console_read_socket): Update pending_signals.
6602
6603 2009-01-29 Kenichi Handa <handa@m17n.org>
6604
6605 * xftfont.c (xftfont_has_char): New function.
6606 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
6607
6608 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
6609
6610 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
6611 under GNUstep.
6612 (ns_query_color): New declaration.
6613
6614 * nsterm.m (ns_confirm_quit): New variable.
6615 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
6616 (EmacsApp-applicationShouldTerminate:): Use it.
6617 (EmacsPrefsController): Let user set it.
6618 (ns_query_color): New function.
6619 (ns_defined_color): Use it.
6620 (ns_initialize): Drop.
6621 (ns_term_init): Add two lines from ns_initialize(), and set
6622 input_interrupt_mode to nil.
6623
6624 * image.c (svg_load_image): Don't right-shift background RGB when
6625 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
6626
6627 2009-01-28 Kenichi Handa <handa@m17n.org>
6628
6629 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
6630 (fontset_get_font_group): Remember that no font-group is specified
6631 for C.
6632
6633 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
6634
6635 * fns.c (concat): Check for string overflow (bug#1787).
6636
6637 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
6638 Quadruple undo limits (bug#1501).
6639
6640 2009-01-27 Kenichi Handa <handa@m17n.org>
6641
6642 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
6643 directly use GT_Get_Char_index.
6644
6645 * xftfont.c (struct xftfont_info): New member `index'.
6646
6647 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
6648 (Ffontset_font): Adjust for the change of fontset entry.
6649
6650 2009-01-26 Kenichi Handa <handa@m17n.org>
6651
6652 * fontset.c (fontset_find_font): Fix handling of non-cons return
6653 value of fontset_get_font_group.
6654 (fontset_font): Revert last change.
6655
6656 2009-01-26 Jason Rumney <jasonr@gnu.org>
6657
6658 * w32font.c (w32font_list_internal): Return quickly if registry is
6659 unknown. Simplify final return.
6660 (add_font_entity_to_list): Break complex logic down into more
6661 manageable chunks. Move unknown registry check to
6662 w32font_list_internal.
6663
6664 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
6665
6666 Changes to remove Feval calls from GUI under NS.
6667
6668 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
6669 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
6670 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
6671
6672 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
6673 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
6674 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
6675 instead of NON_ASCII_KEYSTROKE_EVENT.
6676 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
6677 (EmacsApp-applicationShouldTerminate:): Query user.
6678 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
6679 instead of Feval.
6680
6681 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
6682
6683 * keyboard.c (kbd_buffer_get_event): Check for it.
6684 (keys_of_keyboard): Define lispy keys for
6685 ns-put/unput-working-text.
6686
6687 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
6688 versions.
6689 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
6690
6691 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
6692
6693 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
6694 setting current_buffer directly. (Bug#2044)
6695
6696 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
6697
6698 * fontset.c (fontset_font): If we know there is no font, don't do
6699 any work. (Bug#1952, bug#1990).
6700
6701 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
6702
6703 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
6704
6705 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
6706 (ns_no_defaults): New declaration.
6707 (main): Use it.
6708
6709 * nsterm.h (ns_no_defaults): New declaration.
6710
6711 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
6712
6713 * nsterm.m (ns_no_defaults): New variable.
6714 (ns_initialize): Don't read defaults when ns_no_defaults.
6715 (EmacsView-readSelectionFromPasteboard:)
6716 (writeSelectionToPasteboard:types:): New stubbed-out methods for
6717 NSServicesRequests protocol. (Bug#1435)
6718 (ns_dumpglyphs_stretch): New function.
6719 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
6720 of 2008-11-15 to other terms. (Bug#615)
6721
6722 * nsimage.m (setPixmapData:): Set to ignore image DPI.
6723
6724 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
6725
6726 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
6727 call for Sparc64.
6728
6729 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
6730
6731 * nsfns.m:
6732 * nsgui.h:
6733 * nsmenu.m:
6734 * nsselect.m:
6735 * nsterm.h:
6736 * nsterm.m: Remove '23' comments that indicated code added during
6737 update from emacs-20 -> emacs-23.
6738
6739 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
6740
6741 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
6742 ns_alternate_modifier. (Bug#1217)
6743
6744 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
6745 Display all shortcuts, including those w/o super modifier.
6746
6747 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
6748
6749 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
6750
6751 * fileio.c (Vwrite_region_post_annotation_function)
6752 (Vwrite_region_annotation_buffers): New vars.
6753 (build_annotations_unwind): Just reset
6754 Vwrite_region_annotation_buffers.
6755 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
6756 Call write-region-post-annotation-function.
6757 (build_annotations): Add to Vwrite_region_annotation_buffers if
6758 buffer changes.
6759
6760 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
6761
6762 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
6763 Tiger.
6764 * nsfns.m (ns_do_applescript):
6765 Conditionalize typeUTF16ExternalRepresentation on Tiger.
6766
6767 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
6768
6769 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
6770
6771 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
6772
6773 * nsmenu.m (NSMENUPROFILE): Change #if style.
6774
6775 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
6776
6777 * nsterm.m (x_set_frame_alpha): Add prototype.
6778 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
6779 handle Ctrl-tab. (Bug#1841)
6780 (ns_get_color): Use unsigned long long for scanned hex string value.
6781 (ns_term_shutdown): Abort on non SIGTERM signals.
6782 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
6783 (EmacsPrefsController-setPanelFromDefaultValues): New function.
6784 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
6785 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
6786 (ns_defined_color): Fix settings of the XColor variable fields:
6787 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
6788
6789 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
6790 DPI. (Bug#1316)
6791 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
6792 values in onTiger section.
6793
6794 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
6795
6796 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
6797 Check return value of font_spec_from_name.
6798 (Fx_list_fonts): Doc fix. (Bug#1951)
6799
6800 * font.c (font_spec_from_name): Return Qnil if font name could not
6801 be parsed.
6802 (font_parse_name): Treat a `?' character as part of an XLFD.
6803
6804 * fns.c (Fsubstring): Doc fix.
6805
6806 2009-01-19 Kenichi Handa <handa@m17n.org>
6807
6808 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
6809 (ftfont_list): Likewise.
6810
6811 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
6812
6813 * dbusbind.c (Fdbus_register_signal):
6814 * process.c (conv_sockaddr_to_lisp):
6815 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
6816
6817 * callproc.c (Fgetenv_internal): Doc fix.
6818
6819 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
6820
6821 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
6822 it is not even used.
6823
6824 2009-01-16 Glenn Morris <rgm@gnu.org>
6825
6826 * font.c (Ffont_variation_glyphs): Silence compiler.
6827
6828 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
6829
6830 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
6831 Reported by David Robinow <drobinow@gmail.com>.
6832
6833 2009-01-15 Kenichi Handa <handa@m17n.org>
6834
6835 * coding.c (detect_coding_system): Fix handling of null_byte_found.
6836
6837 2009-01-14 Jason Rumney <jasonr@gnu.org>
6838
6839 * frame.c (x_set_font): Always store a font to the font parameter,
6840 never a fontset. (Bug#1562)
6841
6842 2009-01-14 Kenichi Handa <handa@m17n.org>
6843
6844 * coding.c (TWO_MORE_BYTES): New macro.
6845 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
6846
6847 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
6848
6849 * font.c (font_clear_prop): If clearing the family, clear the font
6850 width index too.
6851
6852 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
6853
6854 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
6855
6856 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
6857 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
6858 functions, use sizeof.
6859
6860 2009-01-12 Martin Rudalics <rudalics@gmx.at>
6861
6862 * keyboard.c (read_char): Fix case where last_nonmenu_event
6863 returned a bad value with submenus. (Bug#447)
6864
6865 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
6866
6867 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
6868 family, clear the font width index too.
6869
6870 2009-01-11 Jason Rumney <jasonr@gnu.org>
6871
6872 * keyboard.c (cmd_error_internal): Exit when errors occur before
6873 frame creation and not in daemon mode. (Bug#1836)
6874
6875 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
6876
6877 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
6878 of a display vector, backtrack.
6879 (try_window_reusing_current_matrix): Check glyph type before
6880 referencing charpos member.
6881
6882 2009-01-10 Eli Zaretskii <eliz@gnu.org>
6883
6884 Fix Bug #876:
6885
6886 * coding.c (inhibit_null_byte_detection): New variable.
6887 (detect_coding, detect_coding_system): Don't pay attention to null
6888 bytes if inhibit_null_byte_detection is non-zero.
6889 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
6890 <inhibit-iso-escape-detection>: Doc fix.
6891
6892 2009-01-09 Jason Rumney <jasonr@gnu.org>
6893
6894 * w32font.c (add_font_entity_to_list): Don't report unknown
6895 Windows charset as any unrecognized registry. (Bug#1548)
6896 Only report Unicode Plane 2 fonts as unicode-sip.
6897
6898 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
6899
6900 * xfaces.c (Fx_font_family_list): Delete function.
6901 Move compatibility version to faces.el.
6902
6903 * font.c (Ffont_family_list): Return a list of strings, not symbols.
6904
6905 2009-01-09 Martin Rudalics <rudalics@gmx.at>
6906
6907 * frame.c (x_set_frame_parameters): Remember requested value for
6908 fullscreen before it's reset by the parameter handler.
6909
6910 2009-01-09 Glenn Morris <rgm@gnu.org>
6911
6912 * keyboard.c (last_command_char): For clarity, rename to...
6913 (last_command_event): ... and update all users.
6914 (last_input_char): For clarity, rename to...
6915 (last_input_event): ... and update all users.
6916 (last-command-char, last-input-char): Move to subr.el as aliases.
6917 * cmds.c, commands.h: Update for last_command_char rename.
6918
6919 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
6920
6921 * font.c (font_open_for_lface): Handle unspecified height attribute.
6922
6923 2009-01-08 Jason Rumney <jasonr@gnu.org>
6924
6925 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
6926 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
6927 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
6928 Don't declare.
6929 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
6930 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
6931
6932 2009-01-07 Kenichi Handa <handa@m17n.org>
6933
6934 * fileio.c (Finsert_file_contents): In the case of replace,
6935 remember the coding system used for decoding in
6936 coding_system (Bug#1039).
6937
6938 * coding.c (decode_coding_utf_8): Check byte_after_cr before
6939 breaking the loop. (Bug#870)
6940 (decode_coding_utf_16, decode_coding_emacs_mule)
6941 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6942 (decode_coding_charset): Likewise.
6943
6944 2009-01-05 Martin Rudalics <rudalics@gmx.at>
6945
6946 * frame.c (x_set_frame_parameters): Make sure height (width) get
6947 applied when fullwidth (fullheight) is set. (Bug#1522)
6948
6949 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
6950
6951 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
6952 (utc_base): Declare as ULONGLONG, not long double.
6953 (convert_time_raw): Delete.
6954 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
6955 (initialize_utc_base): New function.
6956 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
6957 (convert_from_time_t): Use initialize_utc_base; compute result with
6958 64-bit arithmetic.
6959 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
6960
6961 2009-01-03 Eli Zaretskii <eliz@gnu.org>
6962
6963 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
6964 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
6965 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
6966 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
6967 [!subprocesses]: Define.
6968 (syms_of_process) [!subprocesses]: Intern and staticpro them.
6969 (Flist_system_processes, Fsystem_process_attributes)
6970 [!subprocesses]: Call list_system_processes and
6971 system_process_attributes instead of returning Qnil.
6972
6973 * dosfns.c (system_process_attributes, list_system_processes):
6974 New functions.
6975
6976 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
6977
6978 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
6979 Don't use the default (no-op) implementation.
6980
6981 2009-01-03 Jason Rumney <jasonr@gnu.org>
6982
6983 * keyboard.c (parse_modifiers_uncached): Wheel events are
6984 clicks (bug#687).
6985
6986 * w32term.c (x_query_colors, x_query_color): New functions.
6987
6988 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
6989 (svg_load_image): Cast returned pointers from dynamically loaded
6990 functions. Eliminate W32 specific code.
6991
6992 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
6993
6994 * nsfns.m (x_set_foreground_color, x_set_background_color)
6995 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
6996 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
6997 x_ prefix instead of ns_. Update references.
6998 (syms_of_nsfns): Add a FIXME comment.
6999
7000 * nsterm.m (x_set_cursor_type): New prototype.
7001 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
7002
7003 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
7004 for Solaris instead of incorrectly providing Qutime and Qcutime.
7005
7006 2009-01-02 Eli Zaretskii <eliz@gnu.org>
7007
7008 * w32.c (process_times): Compute sum of utime and stime.
7009 (system_process_attributes): Add Qtime to the alist.
7010
7011 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
7012 and add them to the alist.
7013
7014 * process.c (top level) <Qtime, Qctime>: New variables.
7015 (syms_of_process): staticpro them.
7016 (Fsystem_process_attributes): Add their documentation to the doc
7017 string.
7018
7019 * process.h: Declare Qtime and Qctime.
7020
7021 2009-01-02 Jason Rumney <jasonr@gnu.org>
7022
7023 * image.c (Qgobject): New symbol.
7024 (syms_of_image): Initialize it.
7025 (init_svg_functions): Load some functions from gobject library.
7026
7027 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
7028
7029 * frame.c (make_terminal_frame): Remove redundant code and useless
7030 block.
7031
7032 2009-01-01 Andreas Schwab <schwab@suse.de>
7033
7034 * process.c (conv_sockaddr_to_lisp): Add workaround for
7035 getsockname bug on BSD.
7036
7037 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
7038
7039 * xfns.c (x_create_tip_frame): Set border width of the X window.
7040
7041 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
7042
7043 2009-01-01 Jason Rumney <jasonr@gnu.org>
7044
7045 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
7046 Don't block input, as per earlier xterm.c changes.
7047
7048 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
7049
7050 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
7051 (ns_appkit_version_int): New function.
7052 (x-server-version): Use ns_appkit_version_int and follow 21+
7053 convention of returning 3 integers.
7054
7055 2008-12-30 Kenichi Handa <handa@m17n.org>
7056
7057 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
7058 (CHAR_SURROGATE_PAIR_P): New macro.
7059
7060 * font.h (struct font_driver): New member get_variation_glyphs.
7061
7062 * font.c (font_range): Don't require a font for a variation selector.
7063 (Ffont_variation_glyphs): New function.
7064 (syms_of_font): Defsubr it.
7065
7066 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
7067 ftfont_variation_glyphs.
7068 (setup_otf_gstring): New function.
7069 (ftfont_drive_otf): Use it.
7070 (ftfont_shape_by_flt): Handle variation selector.
7071 (ftfont_variation_glyphs): New function.
7072
7073 2008-12-30 Martin Rudalics <rudalics@gmx.at>
7074
7075 * frame.c (Vemacs_iconified): Remove.
7076
7077 2008-12-30 Jason Rumney <jasonr@gnu.org>
7078
7079 * frame.c (store_frame_param, x_get_arg): Enable newer code on
7080 WINDOWSNT too, as related changes have already been synced. (Bug#117)
7081
7082 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
7083
7084 * indent.c (Fvertical_motion): Don't advance iterator if we have
7085 reseated to the desired position.
7086
7087 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
7088 checking for pos match.
7089
7090 2008-12-30 Kenichi Handa <handa@m17n.org>
7091
7092 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
7093 just get the low 8-bit of the code.
7094
7095 * font.c (font_intern_prop): Validate str as multibyte.
7096
7097 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
7098
7099 * dispextern.h (struct face): Move lface and hash from the middle
7100 of bitfields.
7101
7102 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
7103
7104 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
7105
7106 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
7107 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
7108 instead of intervals.h.
7109
7110 2008-12-26 Andreas Schwab <schwab@suse.de>
7111
7112 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
7113 cons.
7114
7115 2008-12-26 Martin Rudalics <rudalics@gmx.at>
7116
7117 * textprop.c (Qminibuffer_prompt): New variable.
7118 (syms_of_textprop): Initialize it.
7119 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
7120 in minibuffer-prompt face. (Bug#1662)
7121
7122 2008-12-25 Jason Rumney <jasonr@gnu.org>
7123
7124 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
7125
7126 2008-12-24 Jason Rumney <jasonr@gnu.org>
7127
7128 * ralloc.c (r_alloc_reset_variable): New function.
7129
7130 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
7131 record of what points where. (Bug#716)
7132
7133 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
7134
7135 * minibuf.c (read_minibuf): Follow the non-interactive case when
7136 running as a daemon, before detaching.
7137
7138 2008-12-22 Andreas Schwab <schwab@suse.de>
7139
7140 * buffer.c (init_buffer): Use realloc instead of xrealloc.
7141 * gtkutil.c (free_widget_value): Use xfree instead of free.
7142
7143 2008-12-22 Martin Rudalics <rudalics@gmx.at>
7144
7145 * frame.c (delete_frame): New function derived from
7146 Fdelete_frame to handle Qnoelisp value for FORCE argument.
7147 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
7148 (Fdelete_frame): Call delete_frame. Remove line from doc-string
7149 saying that FORCE non-nil doesn't run `delete-frame-functions'.
7150 * frame.h: Extern delete_frame.
7151 * window.c (window_loop):
7152 * terminal.c (delete_terminal):
7153 * xterm.c (x_connection_closed):
7154 * xfns.c (Fx_hide_tip):
7155 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
7156
7157 2008-12-21 Jason Rumney <jasonr@gnu.org>
7158
7159 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
7160 when character maps to .notdef character.
7161
7162 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
7163
7164 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
7165
7166 2008-12-20 Jason Rumney <jasonr@gnu.org>
7167
7168 * frame.c (Fmake_terminal_frame): Raise an error when called from
7169 a graphical frame on Windows. (Bug#1325)
7170
7171 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
7172
7173 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
7174
7175 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
7176
7177 * minibuf.c (Fread_buffer): Doc fix.
7178
7179 2008-12-20 Jason Rumney <jasonr@gnu.org>
7180
7181 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
7182 server name in UNC paths. (Bug#719)
7183
7184 * coding.c (decode_coding): Clear chars_at_source flag when using
7185 charbuf. (Bug#1035)
7186
7187 2008-12-19 Daniel Engeler <engeler@gmail.com>
7188
7189 * sysdep.c (serial_configure): Fix typo.
7190
7191 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
7192
7193 * sysdep.c: Include alloca.h.
7194 (system_process_attributes): Add implementation for Solaris.
7195
7196 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
7197
7198 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
7199
7200 Reorganize implementation of Flist_system_processes and
7201 Fsystem_process_attributes. No functional changes.
7202 * process.c: Don't #include pwd.h, grp.h and limits.h.
7203 (Flist_system_processes): Just call list_system_processes.
7204 (Fsystem_process_attributes): Just call system_process_attributes.
7205 (procfs_list_system_processes, time_from_jiffies)
7206 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
7207 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
7208
7209 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
7210 (list_system_processes): Rename from
7211 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
7212 Provide a do nothing implementation.
7213 (system_process_attributes): Rename from
7214 procfs_list_system_processes.
7215 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
7216 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
7217
7218 * w32.c (list_system_processes): Rename from
7219 w32_list_system_processes.
7220 (system_process_attributes): Rename from
7221 w32_system_process_attributes.
7222
7223 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
7224
7225 * process.h (w32_list_system_processes)
7226 (w32_system_process_attributes): Remove.
7227 (list_system_processes, system_process_attributes):
7228 New prototypes.
7229
7230 2008-12-19 Kenichi Handa <handa@m17n.org>
7231
7232 * xfont.c (xfont_decode_coding_xlfd): New function.
7233 (xfont_encode_coding_xlfd): New function.
7234 (xfont_list_pattern): Decode XLFD by iso-8859-1.
7235 (xfont_list): Decode and encode XLFD by iso-8859-1.
7236 (xfont_match): Likewise.
7237 (xfont_list_family): Likewise.
7238 (xfont_open): Likewise.
7239
7240 * ftfont.c (ftfont_open): Generate a multibyte string if given
7241 names are utf-8.
7242
7243 * xftfont.c (xftfont_open): Generate a multibyte string if given
7244 names are utf-8.
7245
7246 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
7247
7248 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
7249 changed.
7250 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
7251 clicked on a detached tool bar button.
7252
7253 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
7254
7255 * emacs.c (main): Print and error and exit when no data is read
7256 from the pipe.
7257
7258 2008-12-17 Jason Rumney <jasonr@gnu.org>
7259
7260 * w32font.c (w32font_has_char): Always return -1.
7261
7262 2008-12-16 Kenichi Handa <handa@m17n.org>
7263
7264 * font.c (font_open_entity): Fix previous change.
7265
7266 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
7267
7268 * process.c: Include <limits.h>.
7269
7270 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
7271
7272 * font.c (font_update_drivers): Fix mistake in reconstructing the
7273 driver list.
7274
7275 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
7276
7277 * font.c (font_clear_cache): Fix format of font cache data.
7278
7279 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
7280
7281 * xftfont.c (xftfont_open): Free Xft font pattern if
7282 XftFontOpenPattern fails.
7283
7284 * xterm.c (x_free_frame_resources): Remove extraneous call to
7285 free_frame_faces.
7286
7287 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7288
7289 * xterm.c (x_delete_display): Move xim_close_dpy call to
7290 x_delete_terminal.
7291 (x_delete_terminal): Call xim_close_dpy.
7292
7293 2008-12-13 Jason Rumney <jasonr@gnu.org>
7294
7295 * w32font.c (intern_font_name): New function.
7296 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
7297 (w32font_open_internal, Fx_select_font): Decode font name.
7298 (fill_in_logfont, list_all_matching_fonts): Encode font name.
7299
7300 * w32font.h (intern_font_name): Declare new function.
7301
7302 * w32uniscribe.c (add_opentype_font_name_to_list):
7303 Use intern_font_name.
7304
7305 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7306
7307 * frame.c (Fdelete_frame): Call free_font_driver_list.
7308
7309 * font.c (free_font_driver_list): Implement missing function.
7310
7311 * w32term.c (w32_term_init): Don't initialize the image cache
7312 here; it will be done in init_frame_faces.
7313
7314 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
7315 (struct x_display_info): Remove unused member null_pixel. New
7316 member xim_callback_data.
7317
7318 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
7319 (xim_initialize): Save pointer to callback function data.
7320 (xim_close_dpy): Free callback function data. Call XCloseIM,
7321 reverting 2008-11-04 change by David Smith.
7322 (x_term_init): Don't initialize the image cache here; it will be
7323 done in init_frame_faces. Remove ancient "null_pixel" cruft.
7324 (x_delete_display): Free x_dnd_atoms member.
7325
7326 2008-12-13 Kenichi Handa <handa@m17n.org>
7327
7328 * font.c (font_rescale_ratio): Moved from xfaces.c.
7329 Argument type changed. Handle a font-spec too.
7330 (font_score): Check Vface_font_rescale_alist.
7331 (font_open_entity): Likewise. (Bug#1547)
7332
7333 * xfaces.c (font_rescale_ratio): Moved to font.c.
7334
7335 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7336
7337 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
7338
7339 2008-12-12 Jason Rumney <jasonr@gnu.org>
7340
7341 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
7342 Vwindow_system_version to the real w32 major version.
7343
7344 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
7345
7346 * term.c (init_tty): Move setting the terminal name before the
7347 potential user: maybe_fatal.
7348
7349 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
7350
7351 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
7352 all callers changed. Call free_frame_faces to free the face cache.
7353
7354 2008-12-11 Jason Rumney <jasonr@gnu.org>
7355
7356 * w32font.c (fill_in_logfont): Don't assume symbol script means
7357 SYMBOL_CHARSET. (Bug#547)
7358
7359 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
7360 size for surrogates. (Bug#1096, bug#872)
7361
7362 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7363
7364 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
7365
7366 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7367
7368 * process.c (Fsystem_process_attributes, syms_of_process):
7369 Fix typo in name of Ssystem_process_attributes.
7370 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
7371
7372 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7373
7374 * syntax.c (Fmodify_syntax_entry): Doc fix.
7375
7376 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
7377
7378 * font.c (Ffont_spec): Move usage to end of docstring.
7379
7380 2008-12-10 Jason Rumney <jasonr@gnu.org>
7381
7382 * w32font.c (Qcham): New symbol.
7383 (font_supported_scripts): Add cham, and comments for other new
7384 scripts in bitfield from OpenType spec.
7385 (add_font_entity_to_list): Limit unicode-sip fonts to those that
7386 contain characters beyond the bmp.
7387
7388 2008-12-10 Kenichi Handa <handa@m17n.org>
7389
7390 * ftfont.c (fc_charset_table): Add "unicode-sip".
7391 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
7392 Qunicode_sip.
7393
7394 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
7395
7396 * coding.c (QCdefault_char): Rename from QCdefalut_char.
7397 (Fcoding_system_put): Use QCdefault_char.
7398 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
7399
7400 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
7401
7402 * xftfont.c (syms_of_xftfont): Fix typo.
7403
7404 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
7405
7406 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
7407
7408 * emacs.c (main): Close daemon_pipe on exec.
7409
7410 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
7411
7412 * termchar.h (struct tty): New members termcap_term_buffer and
7413 termcap_strings_buffer.
7414
7415 * term.c (encode_terminal_code): Free any previous memory blocks
7416 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
7417 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
7418 All callers changed.
7419 (init_tty): Store termcap data and string buffers in new struct
7420 tty members termcap_term_buffer and termcap_strings_buffer.
7421 (delete_tty): Free them.
7422 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
7423
7424 2008-12-07 Seiji Zenitani <zenitani@mac.com>
7425
7426 * nsfns.m (ns_set_background_color): Remove code duplication.
7427 It was a substitute for face-transparency on OS X 10.3.
7428
7429 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
7430
7431 * coding.c (make_conversion_work_buffer): Disable buffer
7432 modification hooks in the work buffer.
7433
7434 2008-12-05 Eli Zaretskii <eliz@gnu.org>
7435
7436 * process.c (procfs_system_process_attributes): If `nread' has a
7437 negative value, assign zero to it.
7438
7439 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
7440
7441 * eval.c (Vdebug_on_error): Doc fix.
7442
7443 2008-12-05 Kenichi Handa <handa@m17n.org>
7444
7445 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
7446 second character is a combining character.
7447
7448 2008-12-05 Eli Zaretskii <eliz@gnu.org>
7449
7450 * process.c (procfs_system_process_attributes): Don't use cmd,
7451 cmdsize, and q without initializing them first.
7452
7453 2008-12-04 Jason Rumney <jasonr@gnu.org>
7454
7455 * w32font.c (w32font_draw): Initialize orig_clip before getting
7456 it, and delete it when finished.
7457
7458 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
7459
7460 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
7461 case when running as a daemon before detaching.
7462
7463 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
7464
7465 * w32.c (init_environment): Don't unload library shell32.dll.
7466
7467 2008-12-03 Kenichi Handa <handa@m17n.org>
7468
7469 * font.c (font_at): Set `multibyte' at first.
7470
7471 * coding.c (decode_coding_charset): Check type of an element of
7472 vector VALIDS.
7473 (encode_coding_emacs_mule): Be sure to set `code'.
7474
7475 * fontset.c (face_for_char): Handle invalid charset property correctly.
7476 (font_for_char): Likewise.
7477
7478 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
7479
7480 * font.c (Fopen_font): Compute pixel size correctly.
7481 (font_update_lface): Handle fonts with corrupted size specs,
7482 i.e. non-int and non-float.
7483
7484 * ftfont.c (ftfont_match): Initialize entity variable.
7485 (ftfont_resolve_generic_family): Avoid using uninitialized var.
7486 (ftfont_list_family): Initialize list var earlier.
7487
7488 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
7489
7490 * xterm.c (x_draw_glyph_string): Fall back on
7491 underline_minimum_offset for underline position.
7492
7493 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
7494
7495 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
7496
7497 * character.c (c_string_width): Specify the type for LEN.
7498
7499 2008-12-03 Kenichi Handa <handa@m17n.org>
7500
7501 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
7502 (decode_coding_utf_8): Likewise.
7503 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
7504 (produce_chars): Initialize consumed_chars to 0.
7505
7506 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
7507
7508 * keyboard.c (make_lispy_position): Only use PT if the selected
7509 window is current.
7510
7511 2008-12-02 Andreas Schwab <schwab@suse.de>
7512
7513 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
7514
7515 * doprnt.c (doprnt1): Fix size of charbuf.
7516
7517 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
7518
7519 * keyboard.c (timer_check): Revert last change.
7520
7521 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
7522
7523 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
7524
7525 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
7526
7527 * makefile.w32-in: Update dependencies.
7528 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
7529
7530 2008-12-01 Andreas Schwab <schwab@suse.de>
7531
7532 * font.c (register_font_driver): Use xmalloc.
7533 (font_put_frame_data): Likewise.
7534
7535 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
7536
7537 * xfaces.c (realize_x_face): Make abort condition clearer.
7538
7539 * gtkutil.c (update_frame_tool_bar): Initialize variable.
7540
7541 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
7542
7543 * keyboard.c (timer_check): After a timer runs, ensure that the
7544 selected window's buffer is current.
7545
7546 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
7547
7548 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
7549 It was accidentally restored by the Unicode merge.
7550
7551 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
7552
7553 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
7554
7555 * w32proc.c: Include "coding.h".
7556 (Fw32_short_file_name): Encode filename passed to Windows API.
7557 (Fw32_long_file_name): Encode filename passed to Windows API and
7558 decode back the result. (Bug#1433)
7559
7560 2008-11-29 Kenichi Handa <handa@m17n.org>
7561
7562 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
7563 not before accessing it.
7564
7565 * charset.c (Fdefine_charset_internal): After calculating
7566 min_char, max_char, and fastmap, copy the charset structure again.
7567 (encode_char): Fix the previous change.
7568
7569 2008-11-28 Seiji Zenitani <zenitani@mac.com>
7570
7571 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
7572
7573 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
7574
7575 * nsterm.m (x_set_frame_alpha): New function.
7576
7577 2008-11-27 Eli Zaretskii <eliz@gnu.org>
7578
7579 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
7580
7581 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
7582
7583 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
7584 pointer to check_face_name.
7585
7586 2008-11-27 Kenichi Handa <handa@m17n.org>
7587
7588 * category.h (SET_CATEGORY_SET): Call set_category_set.
7589 (set_category_set): Extern it.
7590
7591 * category.c (hash_get_category_set): New function.
7592 (Fmodify_category_entry): Adjusted for the change of
7593 char_table_ref_and_range. Call hash_get_category_set to get a
7594 category set to store in the table.
7595
7596 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
7597 Funify_charset.
7598
7599 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
7600 (DECODE_CHAR): Check if the decoder vector is ready.
7601 (ENCODE_CHAR): Check if the encoder char-table is ready.
7602 (maybe_unify_char): Extern it.
7603
7604 * charset.c (Vchar_unified_charset_table): Delete it.
7605 (inhibit_load_charset_map): New variable.
7606 (temp_charset_work): New variable.
7607 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
7608 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
7609 New macros.
7610 (load_charset_map): Meaning of control_flag changed. If
7611 inhibit_load_charset_map is nonzero, setup a table in
7612 temp_charset_work.
7613 (load_charset): New argument control_flag.
7614 (map_charset_for_dump): New function.
7615 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
7616 map_charset_for_dump.
7617 (Fdefine_charset_internal): If the charset method is MAP, load
7618 mapping tables by calling load_charset.
7619 (Funify_charset): Don't load a mapping table but directly set
7620 Vchar_unify_table.
7621 (maybe_unify_char): New function.
7622 (decode_char): Don't handle the deleted method MAP_DEFERRED.
7623 Handle the case of inhibit_load_charset_map being nonzero.
7624 (encode_char): Don't handle the deleted method MAP_DEFERRED.
7625 Handle the case of inhibit_load_charset_map being nonzero.
7626 (Fclear_charset_maps): Just free temp_charset_work.
7627 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
7628 variable.
7629
7630 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
7631 change of char_table_ref_and_range.
7632 (char_table_ref_and_range): Change the meaning of argument FROM
7633 and TO. Now the caller must provide initial values for *FROM
7634 and *TO.
7635
7636 * fontset.c (fontset_add): Adjusted for the change of
7637 char_table_ref_and_range.
7638 (fontset_get_font_group): Likewise.
7639 (Ffontset_info): Likewise.
7640
7641 * keymap.c (describe_vector): Adjusted for the change of
7642 char_table_ref_and_range. For char-table, put boundary between
7643 non-ASCII and 8-bit characters.
7644
7645 * print.c (print_object): For bool-vector, delete unnecessary
7646 check of ASCII_BYTE_P.
7647
7648 2008-11-26 Jason Rumney <jasonr@gnu.org>
7649
7650 * w32font.c (w32font_open_internal): Don't include external
7651 leading in font height. (Bug#879)
7652
7653 2008-11-26 Glenn Morris <rgm@gnu.org>
7654
7655 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
7656 redefinition with ifdef. (Bug#1383)
7657
7658 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
7659
7660 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
7661
7662 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
7663
7664 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
7665 New EmacsView methods.
7666 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
7667 Fixes bug #1048,1357,1414.
7668
7669 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
7670
7671 Fix bug #1362.
7672 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
7673 is not an indexed color.
7674 * nsterm.m (free_indexed_color): Add argument checking.
7675 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
7676
7677 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
7678
7679 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
7680 Document confirm-after-completion value for
7681 minibuffer-completion-confirm.
7682
7683 2008-11-24 Jason Rumney <jasonr@gnu.org>
7684
7685 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
7686 warning.
7687
7688 2008-11-23 Jason Rumney <jasonr@gnu.org>
7689
7690 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
7691 restored before returning.
7692
7693 * w32font.c (check_face_name): New function.
7694 (add_font_entity_to_list): Use it to filter out common substituted
7695 fonts. (Bug#642)
7696
7697 2008-11-22 Martin Rudalics <rudalics@gmx.at>
7698
7699 * buffer.c (Fswitch_to_buffer): Reword and mention new option
7700 confirm-nonexistent-file-or-buffer in doc-string.
7701
7702 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7703
7704 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
7705 Fix copy/paste typo. Add checks.
7706
7707 2008-11-21 Kenichi Handa <handa@m17n.org>
7708
7709 * coding.c (detect_coding_iso_2022): Reject invalid composition
7710 sequence.
7711 (DECODE_COMPOSITION_START): If the current source is the last
7712 block, and the current composition doesn't end, regard this
7713 sequence as invalid.
7714 (decode_coding_iso_2022): Handle invalid composition sequence.
7715
7716 2008-11-20 Martin Rudalics <rudalics@gmx.at>
7717
7718 * window.c (coordinates_in_window): Don't return
7719 ON_VERTICAL_BORDER for the rightmost position of a mode/header
7720 line when the window is not the rightmost one. (Bug#1372)
7721
7722 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
7723
7724 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
7725
7726 2008-11-15 Eli Zaretskii <eliz@gnu.org>
7727
7728 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
7729 and bright_bg if noninteractive is non-zero.
7730
7731 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7732
7733 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
7734 x_draw_glyph_string_background.
7735
7736 * w32term.c (x_draw_glyph_string): Likewise.
7737
7738 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
7739
7740 * xterm.c (x_draw_glyph_string): Stop drawing the background of
7741 the next glyph string once past the overhang width.
7742
7743 * nsterm.m (ns_draw_glyph_string): Likewise.
7744
7745 * w32term.c (x_draw_glyph_string): Likewise.
7746
7747 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
7748
7749 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
7750 double file close.
7751
7752 2008-11-14 Martin Rudalics <rudalics@gmx.at>
7753
7754 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
7755 dedicated status of window before attempting to display another
7756 buffer in it.
7757
7758 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
7759
7760 * msdos.c (Fmsdos_long_file_names):
7761 (syms_of_msdos) <dos-unsupported-char-glyph>:
7762 * dosfns.c (Fint86): Fix typos in docstrings.
7763
7764 2008-11-14 Eli Zaretskii <eliz@gnu.org>
7765
7766 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
7767
7768 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
7769
7770 * puresize.h (BASE_PURESIZE): Increase to 1260000.
7771
7772 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
7773
7774 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
7775
7776 * frame.h: Negative alpha means "don't touch".
7777
7778 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
7779
7780 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
7781
7782 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
7783
7784 * hftctl.c:
7785 * chpdef.h:
7786 * acldef.h: Remove files used only for systems no longer supported.
7787
7788 * Makefile.in: Fix .o alphabetical ordering.
7789 (hftctl.o): Remove dependency, file removed.
7790 (keymap.o, print.o): Depend on charset.h.
7791
7792 2008-11-10 Kenichi Handa <handa@m17n.org>
7793
7794 * character.c (Fget_byte): Fix and make it faster for unibyte target.
7795
7796 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
7797
7798 * dired.c (file_name_completion): If completion_ignore_case is
7799 enabled, ignore case when checking completion-regexp-list.
7800
7801 2008-11-08 Eli Zaretskii <eliz@gnu.org>
7802
7803 * vm-limit.c (get_lim_data): Fix last change.
7804
7805 2008-11-08 Kenichi Handa <handa@m17n.org>
7806
7807 * character.c (Fget_byte): New function.
7808 (syms_of_character): Defsubr Fget_byte.
7809
7810 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
7811
7812 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
7813 cursor position is valid after scrolling.
7814
7815 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
7816
7817 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
7818
7819 2008-11-06 Glenn Morris <rgm@gnu.org>
7820
7821 * xterm.c (handle_one_xevent): Don't let popup menus cause
7822 mouse-autoselect-window related window switching. (Bug#1261)
7823
7824 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
7825
7826 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
7827
7828 2008-11-04 Andreas Schwab <schwab@suse.de>
7829
7830 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
7831
7832 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
7833
7834 * xfns.c (Fx_wm_set_size_hint): New function.
7835
7836 2008-11-03 Martin Rudalics <rudalics@gmx.at>
7837
7838 * textprop.c (Fprevious_single_char_property_change): Return 0
7839 when there's no change in a string. (Bug#1301)
7840
7841 2008-11-02 Martin Rudalics <rudalics@gmx.at>
7842
7843 * frame.c (do_switch_frame): New argument NORECORD passed to
7844 Fselect_window.
7845 (Fselect_frame): New argument NORECORD passed to
7846 do_switch_frame.
7847 (Fset_frame_selected_window): New argument NORECORD passed to
7848 Fselect_frame.
7849 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
7850 in call of do_switch_frame.
7851 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
7852 Handle NORECORD argument in call of Fselect_frame.
7853 * lisp.h (do_switch_frame, Fselect_frame)
7854 (Fset_frame_selected_window): Adjust declarations.
7855 * window.c (select_frame_norecord): New function.
7856 (run_window_configuration_change_hook): Use it and call
7857 Fselect_frame with NORECORD set.
7858 (Fselect_window): Pass NORECORD to Fselect_frame.
7859 (Fset_window_configuration): Handle NORECORD argument in call of
7860 do_switch_frame.
7861 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
7862 Fset_frame_selected_window.
7863 * keyboard.c (command_loop_1): Handle NORECORD in call of
7864 Fselect_frame (currently ifdefd).
7865
7866 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
7867
7868 * emacs.c (USAGE2): Untabify.
7869
7870 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
7871
7872 * composite.c (fill_gstring_header): Fix copy/paste typo.
7873
7874 2008-10-31 Martin Rudalics <rudalics@gmx.at>
7875
7876 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
7877 (Fother_window): Rename argument and rewrite doc-string.
7878 (select_window_norecord): Fix return value. (Bug#1276)
7879
7880 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
7881
7882 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
7883 new frames overriding foreground for tooltips. Based on similar patch
7884 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
7885
7886 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
7887
7888 * emacs.c (Fdaemon_initialized): Initialize nfd.
7889
7890 2008-10-29 Martin Rudalics <rudalics@gmx.at>
7891
7892 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
7893 (Fwindow_text_height): Clarify doc-strings.
7894 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
7895 doc-string of window-scroll-functions.
7896
7897 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
7898
7899 * category.c (syms_of_category): Fix typo in docstring.
7900
7901 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
7902
7903 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
7904 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
7905 Fix typos in docstrings.
7906
7907 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
7908
7909 * emacs.c (daemon_pipe): Make non-static.
7910 (IS_DAEMON): Move definition ...
7911 * lisp.h (IS_DAEMON): ... here.
7912 (daemon_pipe): Declare.
7913 (is_daemon): Remove.
7914 * dispnew.c (init_display): Use IS_DAEMON.
7915
7916 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7917
7918 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
7919 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
7920
7921 * emacs.c (is_daemon): Remove.
7922 (main): Don't set is_daemon.
7923 (IS_DAEMON): New macro.
7924 (Fdaemonp, Fdaemon_initialized): Use it.
7925 (Fdaemon_initialized): Write a char into the pipe to make sure the
7926 parent exits.
7927 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
7928
7929 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
7930
7931 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
7932 over-sized glyph, draw it with the default glyph width.
7933
7934 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
7935 glyph, draw it with the default glyph width.
7936
7937 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
7938 glyph, draw it with the default glyph width.
7939
7940 * xdisp.c (try_scrolling): When computing the distance from the
7941 scroll margin to PT, try moving some distance past the window
7942 bottom before giving up.
7943
7944 2008-10-27 Martin Rudalics <rudalics@gmx.at>
7945
7946 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
7947 (Fset_window_buffer): Explain in doc-string that a window can be
7948 "strongly" dedicated to its buffer.
7949
7950 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
7951
7952 * emacs.c (daemon_name): New variable.
7953 (main): Deal with --daemon=SERVER_NAME.
7954 (Fdaemonp): Return a name if one was passed to --daemon.
7955
7956 2008-10-26 Romain Francoise <romain@orebokech.com>
7957
7958 * emacs.c (daemon_pipe): New variable.
7959 (main): Create a pipe before forking, make the parent exit only after
7960 the child has closed its end of the pipe. Move closing the
7961 descriptors ...
7962 (Fdaemon_initialized): ... here. New function.
7963
7964 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
7965
7966 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
7967 the previous unoptimized table.
7968
7969 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
7970 the distinction between non-nil and non-t value of `dedicated'.
7971
7972 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
7973
7974 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
7975 read_char_minibuf_menu_text is large enough to hold the menu string.
7976
7977 2008-10-25 Martin Rudalics <rudalics@gmx.at>
7978
7979 * window.c (Fget_buffer_window, Fdelete_windows_on)
7980 (Freplace_buffer_in_windows): Make buffer argument optional and
7981 rename to buffer_or_name.
7982
7983 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
7984
7985 * xdisp.c (handle_single_display_spec, handle_display_prop):
7986 Undo 2005-05-16 change.
7987 (handle_stop): Pop iterator if it's loaded with an empty string.
7988 (get_overlay_strings_1): Don't save iterator if it's loaded with
7989 an empty string (bug#1201).
7990
7991 2008-10-24 Kenichi Handa <handa@m17n.org>
7992
7993 * ftfont.c (ftfont_otf_features): Fix previous change.
7994 (ftfont_otf_capability): Check FeatureList.FeatureCount before
7995 calling ftfont_otf_features.
7996
7997 2008-10-24 Kenichi Handa <handa@m17n.org>
7998
7999 * font.c (font_match_p): Fix for the case that a vector of
8000 characters is in script-representative-chars.
8001
8002 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
8003
8004 * dbusbind.c (xd_in_read_queued_messages): New variable.
8005 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
8006 (xd_read_queued_messages): Catch Qdbus_error from the macros.
8007 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
8008 macro. (Bug#1186)
8009
8010 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
8011
8012 * s/sol2-10.h: New file.
8013
8014 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
8015
8016 * xdisp.c (fill_glyph_string): Fix typo in source (though the
8017 poor beast has survived 9+ years and the jump from xterm.c!).
8018
8019 2008-10-23 Martin Rudalics <rudalics@gmx.at>
8020
8021 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
8022 Reword doc-string.
8023 (Fbury_buffer): In doc-string say what happens to the buffer's window.
8024
8025 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
8026
8027 * character.c (syms_of_character) <script-representative-chars>:
8028 <unicode-category-table>: Doc fixes.
8029
8030 2008-10-23 Noah Friedman <friedman@splode.com>
8031
8032 * coding.c (make_conversion_work_buffer): Check that
8033 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
8034 Fget_buffer_create.
8035
8036 2008-10-23 Kenichi Handa <handa@m17n.org>
8037
8038 * font.c (font_add_log): Check the values of extra properties.
8039
8040 2008-10-22 Martin Rudalics <rudalics@gmx.at>
8041
8042 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
8043 Reword doc-string.
8044 (Fset_window_parameter): Use NILP.
8045 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
8046 (Frecenter): Use "selected" instead of "current" window in doc-strings.
8047
8048 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
8049
8050 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
8051
8052 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8053
8054 * nsfns.m (ns_appkit_version): New function.
8055 (x-server-version): Use it.
8056 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
8057 (x-server-vendor): Don't check_ns().
8058
8059 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
8060
8061 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
8062
8063 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
8064 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
8065
8066 2008-10-22 Kenichi Handa <handa@m17n.org>
8067
8068 * syntax.c (scan_words): Call word_boundary_p instead of comparing
8069 scripts.
8070
8071 * category.c (word_boundary_p): Check scripts instead of charset.
8072 Handle nil value in word-separating-categories and
8073 word-combining-categories.
8074 (syms_of_category): Fix docstrings of word-separating-categories
8075 and word-combining-categories.
8076
8077 2008-10-21 Eli Zaretskii <eliz@gnu.org>
8078
8079 * coding.c (Fencode_coding_region, Fdecode_coding_region)
8080 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
8081
8082 2008-10-21 Martin Rudalics <rudalics@gmx.at>
8083
8084 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
8085 Rename arg "buffer" to "buffer_or_name".
8086 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
8087 it optional.
8088 (no_switch_window): Remove since the return value is not used.
8089 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
8090 Consider window as dedicated when Fwindow_dedicated_p returns a
8091 non-nil value.
8092 * lisp.h: Remove prototype for no_switch_window.
8093
8094 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
8095
8096 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
8097 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
8098
8099 2008-10-21 Kenichi Handa <handa@m17n.org>
8100
8101 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
8102 check Vlatin_extra_code_table.
8103
8104 2008-10-20 Eli Zaretskii <eliz@gnu.org>
8105
8106 * fileio.c (Fset_file_modes): Doc fix.
8107
8108 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
8109
8110 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
8111 in arrays.
8112
8113 2008-10-19 Martin Rudalics <rudalics@gmx.at>
8114
8115 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
8116 Mention kill-buffer in doc-string.
8117 (Fset_window_buffer): Reinsert tem check removed in last commit.
8118 (Fenlarge_window, Fshrink_window): Have argument names and
8119 doc-string follow Elisp manual more closely.
8120
8121 2008-10-18 Eli Zaretskii <eliz@gnu.org>
8122
8123 * fileio.c (Fset_file_modes): Doc fix.
8124
8125 2008-10-18 Martin Rudalics <rudalics@gmx.at>
8126
8127 * window.c (Fwindow_width, Fset_window_start)
8128 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
8129 (Fdelete_windows_on, Freplace_buffer_in_windows):
8130 Make doc-strings follow code and Elisp manual more closely.
8131 (Fwindow_dedicated_p): Make window argument optional.
8132 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
8133 (Fset_window_buffer): Respect any non-nil dedicated value for
8134 window. Rename "buffer" argument to "buffer_or_name".
8135
8136 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
8137
8138 * m/sh3.h: New file, machine description for SuperH.
8139
8140 2008-10-17 Martin Rudalics <rudalics@gmx.at>
8141
8142 * window.c (Fsplit_window): Rename arg horflag to horizontal.
8143
8144 2008-10-17 Kenichi Handa <handa@m17n.org>
8145
8146 * ftfont.c (ftfont_otf_features): Fix indexing
8147 gsub_gpos->FeatureList.Feature. Check the validity of indices.
8148
8149 2008-10-16 Magnus Henoch <mange@freemail.hu>
8150
8151 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
8152 (Fdbus_call_method_asynchronously): Ditto.
8153 This change makes C-h f display the argument list.
8154
8155 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
8156
8157 * fileio.c (Fexpand_file_name): Doc fix.
8158
8159 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
8160 of :foreground and :background equivalent to unspecified (20.x
8161 compatibility).
8162
8163 2008-10-15 Eli Zaretskii <eliz@gnu.org>
8164
8165 * buffer.c (syms_of_buffer): Doc fix.
8166
8167 2008-10-14 Kenichi Handa <handa@m17n.org>
8168
8169 * font.c (font_clear_prop): When clearing font width, clear the
8170 average width field too.
8171
8172 2008-10-12 Andreas Schwab <schwab@suse.de>
8173
8174 * ftfont.c (ftfont_shape_by_flt): Make static.
8175 * ftfont.h (ftfont_shape_by_flt): Don't declare.
8176
8177 * font.c: Don't include <m17n-flt.h>.
8178
8179 2008-10-10 Eli Zaretskii <eliz@gnu.org>
8180
8181 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
8182
8183 2008-10-09 Eli Zaretskii <eliz@gnu.org>
8184
8185 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
8186 away code.
8187
8188 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
8189
8190 * dispnew.c (update_text_area): Avoid looping due to large glyph
8191 overhangs (bug#1070).
8192
8193 2008-10-09 Kenichi Handa <handa@m17n.org>
8194
8195 * fontset.c (face_for_char): If face->fontset is negative, just
8196 return ascii_face.
8197
8198 * font.c (font_delete_unmatched): Fix previous change.
8199 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
8200
8201 2008-10-09 Martin Rudalics <rudalics@gmx.at>
8202
8203 * frame.c (Fraise_frame): On text-only terminals select frame in
8204 order to make it visible. (Bug#1061)
8205
8206 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
8207
8208 * fontset.c (fontset_find_font): Check frame validity.
8209
8210 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
8211
8212 * gtkutil.c (xg_display_open): Reset default display if none exists.
8213 (xg_display_close): Allow Emacs to close all displays (bug#985).
8214
8215 2008-10-06 Andreas Schwab <schwab@suse.de>
8216
8217 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
8218
8219 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
8220
8221 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
8222
8223 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
8224
8225 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
8226 during initialization.
8227
8228 2008-10-04 Eli Zaretskii <eliz@gnu.org>
8229
8230 * xdisp.c (redisplay_internal): If frame switched, redisplay the
8231 whole thing on MSDOS frames as well as on a TTY.
8232
8233 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
8234 well as for TTY.
8235 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
8236 well as on a TTY.
8237
8238 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
8239 as well as for TTY.
8240
8241 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
8242
8243 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
8244 MSDOS frames as well.
8245
8246 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
8247
8248 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
8249 correct arguments.
8250 * menu.c (find_and_return_menu_selection): Add cast.
8251
8252 2008-10-03 Glenn Morris <rgm@gnu.org>
8253
8254 * emacs.c (USAGE1): Add --daemon.
8255
8256 2008-10-02 Eli Zaretskii <eliz@gnu.org>
8257
8258 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
8259 100, so it's in percents as advertised.
8260
8261 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
8262
8263 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
8264 (ns_output.current_cursor, ns_output.desired_cursor)
8265 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
8266 (FRAME_NEW_CURSOR_COLOR): Remove.
8267
8268 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
8269 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
8270 enumeration (HOLLOW_BOX_CURSOR, etc.).
8271
8272 * nsterm.m (ns_frame_rehighlight): Remove commented code.
8273 (draw_window_cursor): Simplify code.
8274 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
8275 Don't change cursor type. In latter, call rehighlight instead of doing
8276 updates manually.
8277 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
8278 Use core Emacs cursor types.
8279
8280 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
8281
8282 2008-10-02 Martin Rudalics <rudalics@gmx.at>
8283
8284 * process.c (Faccept_process_output): Fix doc-string.
8285
8286 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
8287
8288 * gmalloc.c (__sbrk): Also define for uClibc.
8289
8290 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
8291 for uClibc.
8292
8293 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8294
8295 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
8296 styles.
8297 (nsfont_open): Reenable the cache.
8298
8299 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8300
8301 * font.c (font_matching_entity): Reflect ATTRS in font selection.
8302 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
8303
8304 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
8305
8306 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
8307 a suspended terminal.
8308
8309 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
8310
8311 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
8312
8313 2008-09-30 Eli Zaretskii <eliz@gnu.org>
8314
8315 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
8316
8317 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
8318
8319 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
8320 in a continued line coincides with a line beginning.
8321
8322 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
8323
8324 * nsfont.m (nsfont_trait_distance): Fix bug.
8325 (nsfont_list): Return a list rather than a vector (syncs with Handa
8326 changes of 2008-05-14).
8327 (nsfont_open): Improve logging.
8328
8329 2008-09-29 Andreas Schwab <schwab@suse.de>
8330
8331 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
8332
8333 2008-09-28 Martin Rudalics <rudalics@gmx.at>
8334
8335 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
8336 name as char-resolve-modifiers.
8337 Reported by: Markus Triska <markus.triska@gmx.at>
8338
8339 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
8340
8341 * dispnew.c (init_display): Return earlier when running as a daemon.
8342
8343 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8344
8345 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
8346
8347 2008-09-27 Eli Zaretskii <eliz@gnu.org>
8348
8349 * composite.c (Fcomposition_get_gstring)
8350 (Fcompose_region_internal, Fcompose_string_internal)
8351 (Ffind_composition_internal): Doc fix.
8352 (syms_of_composite) <compose-chars-after-function>: Doc fix.
8353 (syms_of_composite) <auto-composition-function>: Doc fix.
8354 (syms_of_composite) <composition-function-table>: Doc fix.
8355
8356 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
8357
8358 * search.c (wordify): New argument for lax word-ends.
8359 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
8360
8361 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
8362
8363 * lisp.h (is_daemon): Declare.
8364 * dispnew.c (init_display): Do not try to initialize the terminal
8365 when running as a daemon.
8366
8367 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
8368
8369 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
8370 x_display_pixel_height.
8371
8372 2008-09-22 Martin Rudalics <rudalics@gmx.at>
8373
8374 * undo.c (record_point): Don't call Fundo_boundary for first
8375 change. (Bug#731)
8376
8377 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
8378
8379 * emacs.c (Fdaemonp): Doc fix.
8380
8381 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
8382
8383 * emacs.c (main): Place #ifdef in the proper place.
8384
8385 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
8386
8387 * emacs.c (standard_args): Add --daemon.
8388 (main): Disconnect from the terminal when --daemon is passed.
8389 (is_daemon): New variable.
8390 (Fdaemonp): New function.
8391 (syms_of_emacs): Defsubr it.
8392
8393 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
8394
8395 * xdisp.c (get_next_display_element): Handle string display
8396 correctly when checking for the end of a box run.
8397
8398 2008-09-20 Glenn Morris <rgm@gnu.org>
8399
8400 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
8401 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
8402 (Frename_file): Avoid copying to trash if a rename involves
8403 a delete. (Bug#964).
8404
8405 2008-09-20 Eli Zaretskii <eliz@gnu.org>
8406
8407 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
8408 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
8409 frames as well as termcap frames.
8410 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
8411 get_named_tty.
8412
8413 2008-09-19 Eli Zaretskii <eliz@gnu.org>
8414
8415 * process.c (procfs_system_process_attributes): Fix cmdline in
8416 case /proc/PID/cmdline is empty.
8417
8418 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
8419 x_display_pixel_height.
8420
8421 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
8422
8423 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
8424
8425 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
8426 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
8427
8428 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
8429
8430 * dispextern.h (struct it): Move line_wrap away from the middle of
8431 bitfields. Move voffset in struct iterator_stack_entry after the
8432 bitfields. Move tab_width near after another short.
8433
8434 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
8435
8436 * frame.h (struct frame): Move alpha from the middle of bitfields.
8437
8438 * window.h (struct window): Move frozen_window_start_p after the
8439 rest of the bitfields to reduce padding.
8440
8441 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
8442
8443 * xterm.h (x_display_info): Remove `height' and `width' members.
8444
8445 * nsterm.h (ns_display_info): Remove `height' and `width' members.
8446
8447 * w32term.h (w32_display_info): Remove `height', `width',
8448 `height_in', and `width_in' members.
8449
8450 * xterm.c (x_display_pixel_height, x_display_pixel_width):
8451 New functions.
8452 (x_calc_absolute_position): Use them.
8453 (x_term_init): Omit removed `height' and `width' members.
8454
8455 * w32term.c (x_display_pixel_height, x_display_pixel_width):
8456 New functions.
8457 (w32_read_socket, x_calc_absolute_position): Use them.
8458 (w32_initialize_display_info, w32_term_init): Omit removed members
8459 of w32_display_info.
8460
8461 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
8462 New functions.
8463 (ns_initialize_display_info): Omit removed members of ns_display_info.
8464
8465 * xterm.c (x_display_pixel_height, x_display_pixel_width):
8466 New functions.
8467 (x_calc_absolute_position): Use them.
8468 (x_term_init): Omit removed `height' and `width' members.
8469
8470 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
8471 (compute_tip_xy):
8472 * frame.c (x_fullscreen_adjust):
8473 * xmenu.c (menu_position_func): Use x_display_pixel_height and
8474 x_display_pixel_width.
8475
8476 2008-09-18 Kenichi Handa <handa@m17n.org>
8477
8478 * composite.c (fill_gstring_header): Don't check FROM and TO here.
8479 (composition_compute_stop_pos): Fix handling of static composition.
8480 (Fcomposition_get_gstring): Check FROM and TO at first.
8481
8482 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8483
8484 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
8485 mixup (YAILOM).
8486
8487 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
8488
8489 * indent.c (Fvertical_motion): Use position reported by iterator
8490 instead of PT for determining screen motion (bug#943).
8491
8492 2008-09-17 Romain Francoise <romain@orebokech.com>
8493
8494 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
8495
8496 2008-09-17 Kenichi Handa <handa@m17n.org>
8497
8498 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
8499
8500 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
8501 if necessary.
8502
8503 2008-09-16 Kenichi Handa <handa@m17n.org>
8504
8505 * coding.c (make_conversion_work_buffer): Avoid calling
8506 Fget_buffer_create if it is not necessary.
8507
8508 2008-09-15 Martin Rudalics <rudalics@gmx.at>
8509
8510 * window.c (Fselect_window): Don't update window_select_count and
8511 use_time when norecord is not nil.
8512
8513 2008-09-14 Kenichi Handa <handa@m17n.org>
8514
8515 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
8516 specpdl_ptr.
8517
8518 2008-09-12 Kenichi Handa <handa@m17n.org>
8519
8520 * indent.c (scan_for_column): Don't handle automatic composition
8521 if the current buffer is not associated with a window.
8522
8523 * composite.c (composition_reseat_it): If the current buffer is
8524 not associated with a window, ignore the automatic composition.
8525 (find_automatic_composition): Likewise.
8526
8527 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8528
8529 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
8530 (Fgpm_mouse_stop): Use it.
8531 * termhooks.h (close_gpm): Declare.
8532 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
8533 connection if Gpm_GetEvent fails.
8534
8535 * window.c (set_window_buffer): Always preserve current-buffer.
8536
8537 2008-09-12 Glenn Morris <rgm@gnu.org>
8538
8539 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
8540
8541 2008-09-11 Glenn Morris <rgm@gnu.org>
8542
8543 * charset.c (charset-map-path): Doc fix.
8544
8545 2008-09-10 Kenichi Handa <handa@m17n.org>
8546
8547 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
8548
8549 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
8550 compose a grapheme cluster with the preceding base glyph.
8551
8552 * composite.c (composition_compute_stop_pos): Fix previous change.
8553 Reset cmp_it->id to -1 at first.
8554
8555 2008-09-10 Glenn Morris <rgm@gnu.org>
8556
8557 * Makefile.in (character.o, chartab.o): Fix config.h typo.
8558
8559 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
8560
8561 * keyboard.c (read_key_sequence): Reapply translation maps when
8562 switching keyboards.
8563
8564 2008-09-09 Kenichi Handa <handa@m17n.org>
8565
8566 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
8567 characters.
8568
8569 * composite.c (FORWARD_CHAR): Fix calculation
8570 of (POSITION).pos_byte.
8571 (composition_compute_stop_pos): Limit the search of composition to
8572 at most 500 characters ahead. If we reach the limit or find a
8573 newline, set cmp_it->ch to -2 and return 0.
8574 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
8575
8576 2008-09-08 Kenichi Handa <handa@m17n.org>
8577
8578 * indent.c (Fvertical_motion): Be sure to set
8579 it_overshoot_expected if it.cmp_it.id is non-negative.
8580
8581 2008-09-07 Andreas Schwab <schwab@suse.de>
8582
8583 * callproc.c (Fcall_process): Don't hold references to string data
8584 across garbage collection. Move initialisation of new_argv down
8585 to avoid compiler bug.
8586
8587 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8588
8589 * process.c (Fsystem_process_attributes): Doc fix.
8590
8591 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
8592
8593 * callproc.c (Fcall_process): Canonicalize current directory name.
8594
8595 * xdisp.c (move_it_to): When moving by vpos, ensure that the
8596 iterator advances to the next line if the current line ends in a
8597 continued tab.
8598
8599 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
8600
8601 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
8602 member to point to cmp_from.
8603
8604 * xdisp.c: Doc fix for references to gidx data member.
8605
8606 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
8607
8608 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
8609
8610 2008-09-07 Kenichi Handa <handa@m17n.org>
8611
8612 * composite.c (FORWARD_CHAR): Check STOP after
8613 incrementing (POSITION).pos.
8614
8615 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8616
8617 * process.c (Fsystem_process_attributes): Doc fix.
8618
8619 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
8620
8621 * keyboard.c (Ftop_level): Doc fix.
8622
8623 2008-09-06 Eli Zaretskii <eliz@gnu.org>
8624
8625 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
8626 minibuffer, don't let lower part of menu invade the echo area.
8627
8628 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
8629 "char *q" to access menu text and advance through it. Revert the
8630 change that displayed ">" instead of ASCII character 0x10.
8631
8632 2008-09-05 Eli Zaretskii <eliz@gnu.org>
8633
8634 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
8635 toggle boxes and radio buttons on MS-DOS as well.
8636
8637 2008-09-05 Kenichi Handa <handa@m17n.org>
8638
8639 * composite.c (autocmp_chars): Check lookback count.
8640 (composition_compute_stop_pos): Set cmp_it->lookback.
8641 (composition_reseat_it): Check lookback count.
8642 (struct position_record): New struct.
8643 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
8644 (find_automatic_composition): New function.
8645 (composition_adjust_point): Use find_automatic_composition.
8646
8647 * dispextern.h (struct composition_it): New member lookback.
8648
8649 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
8650
8651 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
8652 if moving by a single line.
8653
8654 2008-09-02 Andreas Schwab <schwab@suse.de>
8655
8656 * xterm.c (x_delete_display): Fix merge error.
8657
8658 * fileio.c (Fexpand_file_name): Remove unused variables.
8659
8660 2008-09-02 Eli Zaretskii <eliz@gnu.org>
8661
8662 * fileio.c (Fexpand_file_name): Copy argument `name' into local
8663 storage on all platforms, not just on DOS_NT.
8664
8665 2008-09-02 Jason Rumney <jasonr@gnu.org>
8666
8667 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
8668 Ensure mouse is not grabbed after menu is finished.
8669
8670 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
8671
8672 * xfaces.c (Finternal_set_alternative_font_family_alist)
8673 (Finternal_set_alternative_font_registry_alist): Properly copy
8674 entire alist structure.
8675
8676 2008-09-01 Kenichi Handa <handa@m17n.org>
8677
8678 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
8679 representative chars of the script is a vector.
8680 (ftfont_list): Handle the case where the representative chars of
8681 the script is a vector.
8682
8683 * character.c (syms_of_character): Docstring of
8684 script-representative-chars fixed.
8685
8686 2008-08-31 Eli Zaretskii <eliz@gnu.org>
8687
8688 * msdos.c (BUILD_CHAR_GLYPH): New macro.
8689 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
8690 the menu. Allocate larger buffer for `text', to account for
8691 possible ^C characters.
8692
8693 2008-08-31 Martin Rudalics <rudalics@gmx.at>
8694
8695 * xdisp.c (prepare_menu_bars): Don't call
8696 Vwindow_size_change_functions with arg Qt.
8697
8698 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
8699
8700 * font.h (font_range):
8701 * fileio.c (report_file_error):
8702 * composite.c (composition_update_it): Yet another int/Lisp_Object
8703 mixup (YAILOM).
8704
8705 2008-08-30 Glenn Morris <rgm@gnu.org>
8706
8707 * data.c (Fmake_variable_frame_local): Doc fix.
8708
8709 * frame.c (Fmodify_frame_parameters): Doc fix.
8710
8711 2008-08-30 Eli Zaretskii <eliz@gnu.org>
8712
8713 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
8714 needed by GetTokenInformation.
8715 (w32_system_process_attributes): Check return values of all system
8716 APIs.
8717
8718 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
8719 only when the state changes.
8720 (IT_update_begin, IT_update_end): Add termscript trace.
8721
8722 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
8723 clipboard is unavailable. Set dst to NULL if it doesn't point to
8724 malloc'ed data.
8725 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
8726 passing random values to xfree.
8727
8728 * dispnew.c (init_display): Set `tty's association in frame's
8729 parameters alist to the name of the terminal device, if that is known.
8730
8731 2008-08-29 Jason Rumney <jasonr@gnu.org>
8732
8733 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
8734
8735 2008-08-29 Eli Zaretskii <eliz@gnu.org>
8736
8737 * composite.c (fill_gstring_body): Avoid compiler warnings.
8738
8739 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
8740 LGLYPH_SET_CODE to avoid compiler warnings.
8741
8742 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
8743
8744 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
8745
8746 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
8747 LGLYPH_SET_CODE.
8748
8749 2008-08-29 Kenichi Handa <handa@m17n.org>
8750
8751 * fileio.c (report_file_error): Don't downcase the first character
8752 of errstring if it is still unibyte.
8753
8754 2008-08-29 Kenichi Handa <handa@m17n.org>
8755
8756 These changes are to re-implement the automatic composition so
8757 that it doesn't use text properties.
8758
8759 * Makefile.in (ftfont.o): Depend on composite.h.
8760 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
8761
8762 * character.h (Vunicode_category_table): Extern it.
8763
8764 * character.c (Vunicode_category_table): New variable.
8765 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
8766
8767 * chartab.c (optimize_sub_char_table): Perform more greedy
8768 optimization.
8769
8770 * composite.h (enum composition_method):
8771 Delete COMPOSITION_WITH_GLYPH_STRING.
8772 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
8773 (Vcomposition_function_table): Extern it.
8774 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
8775 (composition_gstring_put_cache, composition_gstring_from_id)
8776 (composition_gstring_p, composition_gstring_width)
8777 (composition_compute_stop_pos, composition_reseat_it)
8778 (composition_update_it, composition_adjust_point): Extern them.
8779 (Fcomposition_get_gstring): EXFUN it.
8780
8781 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
8782 (Vcomposition_function_table)
8783 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
8784 (gstring_hash_table, gstring_work, gstring_work_headers):
8785 New variables.
8786 (gstring_lookup_cache, composition_gstring_put_cache)
8787 (composition_gstring_from_id, composition_gstring_p)
8788 (composition_gstring_width, fill_gstring_header)
8789 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
8790 (composition_reseat_it, composition_update_it)
8791 (composition_adjust_point, Fcomposition_get_gstring): New functions.
8792 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
8793 and gstring_work_headers. DEFVAR_LISP composition-function-table.
8794 Defsubr compostion_get_gstring.
8795
8796 * dispextern.h (struct glyph): New union u.cmp. Delete the member
8797 cmp_id.
8798 (struct glyph_string): Delete the member gidx. New members
8799 cmp_id, cmp_from, and cmp_to.
8800 (enum it_method): Delete GET_FROM_COMPOSITION.
8801 (struct composition_it): New struct.
8802 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
8803 Delete c, len, cmp_id, cmp_len in u.comp.
8804
8805 * font.h (enum lgstring_indices): Delete it.
8806 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
8807 (enum lglyph_indices): Likewise.
8808 (font_range): Adjust extern.
8809 (font_fill_lglyph_metrics): Extern it.
8810
8811 * font.c (QCf): New variable.
8812 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8813 (font_prepare_composition): Delete this function.
8814 (font_range): Type and arguments changed.
8815 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
8816 (font_fill_lglyph_metrics): New function.
8817 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
8818 (syms_of_font): DEFSYM QCf. Delete defsubr for
8819 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
8820 Defsubr Sfont_shape_gstring.
8821
8822 * fontset.h (font_for_char): Extern it.
8823
8824 * fontset.c (font_for_char): New function.
8825
8826 * ftfont.c: Include composite.h.
8827 (ftfont_resolve_generic_family): Add langset "en" to pattern.
8828 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8829
8830 * indent.c: Include composite.h and dispextern.h.
8831 (check_composition): Delete this function.
8832 (scan_for_column): Handle composition by
8833 composition_compute_stop_pos, composition_reseat_it, and
8834 composition_update_it.
8835 (compute_motion): Likewise.
8836 (Fvertical_motion): Fix checking of composition.
8837
8838 * keyboard.c (adjust_point_for_property): Check composition by
8839 composition_adjust_point.
8840
8841 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
8842 struct glyph_string.
8843
8844 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
8845 (append_composite_glyph): Adjust for the change of struct it and
8846 struct glyph.
8847 (produce_composite_glyph): Likewise.
8848
8849 * w32term.c (x_draw_composite_glyph_string_foreground):
8850 Adjust for the change of struct glyph_string.
8851 (x_draw_glyph_string): Likewise.
8852
8853 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
8854 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8855
8856 * xdisp.c: Include font.h.
8857 (it_props): Delete the entry for Qauto_composed.
8858 (init_iterator): Initialize it->cmp_it.id to -1.
8859 (compute_stop_pos): Call composition_compute_stop_pos.
8860 (face_before_or_after_it_pos): Adjust for the change of struct it.
8861 (handle_auto_composed_prop): Delete it.
8862 (handle_composition_prop): Handle only static composition.
8863 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
8864 from xassert. Initialize it->cmp_it.stop_pos.
8865 (push_it): Adjust for the change of struct it.
8866 (pop_it): Likewise.
8867 (get_next_element): Delete next_element_from_composition.
8868 (CHAR_COMPOSED_P): New macro.
8869 (get_next_display_element): For automatic composition, get a face
8870 from the font in the glyph-string.
8871 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
8872 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
8873 (next_element_from_string): Check if the character at the current
8874 position is composed by CHAR_COMPOSED_P.
8875 (next_element_from_buffer): Likewise.
8876 (next_element_from_composition): Adjust for the change of struct it.
8877 Update it->cmp_it.
8878 (dump_glyph): Adjust for the change of struct glyph.
8879 (fill_composite_glyph_string): Adjust for the change of struct
8880 it and struct glyph. Don't handle automatic composition here.
8881 (fill_gstring_glyph_string): New function.
8882 (x_get_glyph_overhangs): Handle automatic composition.
8883 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
8884 (BUILD_GSTRING_GLYPH_STRING): New macro.
8885 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
8886 automatic composition.
8887 (append_composite_glyph): Adjust for the change of struct it and
8888 struct glyph.
8889 (x_produce_glyphs): Adjust for the change of struct it.
8890
8891 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
8892 the change of struct glyph_string.
8893 (x_draw_glyph_string): Likewise.
8894
8895 2008-08-29 Glenn Morris <rgm@gnu.org>
8896
8897 * buffer.c (word-wrap): Doc fix.
8898 * xdisp.c (truncate-partial-width-windows): Doc fix.
8899 Increase default to 50.
8900
8901 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
8902
8903 * xdisp.c (update_tool_bar_unwind): New function.
8904 (update_tool_bar): Temporarily set selected frame before building
8905 tool-bar items.
8906
8907 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
8908
8909 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
8910 snprintf, respectively.
8911 (xd_append_arg): Convert strings with Fstring_make_unibyte.
8912
8913 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
8914
8915 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
8916 LDFLAGS to GNUstep CC invocation.
8917
8918 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
8919
8920 * indent.c (Fvertical_motion): Revert last change. Handle the
8921 general case where we are moving forward, and PT spans multiple
8922 screen lines.
8923
8924 * eval.c (find_handler_clause): Temporarily increase
8925 max-lisp-eval-depth while printing the backtrace buffer, to
8926 guarantee that help-mode code can run.
8927
8928 2008-08-27 Eli Zaretskii <eliz@gnu.org>
8929
8930 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
8931 colors under -rv.
8932 (IT_set_frame_parameters): Don't swap foreground and background
8933 colors if `(reverse . t)' is present in the frame properties.
8934 (internal_terminal_init): Call init_frame_faces only for the
8935 initial frame.
8936
8937 2008-08-27 Andreas Schwab <schwab@suse.de>
8938
8939 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
8940
8941 2008-08-27 Andreas Schwab <schwab@suse.de>
8942
8943 * search.c (search_buffer): Set char_base to zero only at the end.
8944
8945 2008-08-27 Kenichi Handa <handa@m17n.org>
8946
8947 * fileio.c (report_file_error): Fix handling of multibyte error string.
8948
8949 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
8950
8951 * xterm.c (x_term_init): Temporarily hide the partially
8952 initialized terminal while calling vendor-specific-keysyms.
8953
8954 2008-08-26 Eli Zaretskii <eliz@gnu.org>
8955
8956 * msdos.c (internal_terminal_init): Most initializations done only
8957 once, especially initial_screen_colors[] and termscript open.
8958
8959 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
8960
8961 * eval.c (Fcondition_case): Doc fix.
8962
8963 * widgetprv.h (EmacsFramePart): Change font member to the new font
8964 struct.
8965
8966 * widget.c: Include character.h and font.h for XSETFONT.
8967 (setup_frame_gcs): Compute X font id from font struct, just once.
8968
8969 2008-08-26 Eli Zaretskii <eliz@gnu.org>
8970
8971 * term.c (get_named_tty): Fix last change.
8972
8973 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
8974
8975 * indent.c (Fvertical_motion): If moving forward starting from a
8976 multi-line string, move the iterator to the last line of that string.
8977
8978 2008-08-25 Eli Zaretskii <eliz@gnu.org>
8979
8980 * frame.c (do_switch_frame): Mark previously displayed frame as
8981 obscured for FRAME_MSDOS_P frames as well.
8982
8983 2008-08-24 Eli Zaretskii <eliz@gnu.org>
8984
8985 * frame.c (make_terminal_frame): Initialize f->terminal,
8986 f->terminal->reference_count, and scroll bars on MS-DOS as well.
8987 Set the top frame to newly created frame.
8988 (Fmake_terminal_frame): Reuse the_only_display_info.
8989
8990 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
8991 estimating available memory.
8992
8993 2008-08-23 David Reitter <david.reitter@gmail.com>
8994
8995 * nsterm.m (ns_draw_window_cursor): Don't call
8996 NSDisableScreenUpdates and NSEnableScreenUpdates on
8997 non-NS_IMPL_COCOA systems.
8998
8999 2008-08-23 Andreas Schwab <schwab@suse.de>
9000
9001 * process.c (procfs_system_process_attributes): Fix use of
9002 uninitialized variables.
9003
9004 2008-08-23 Eli Zaretskii <eliz@gnu.org>
9005
9006 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
9007
9008 * dispnew.c (init_display): Remove MS-DOS specific conditions for
9009 calling tty-set-up-initial-frame-faces.
9010
9011 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
9012 Allow MSDOS frames along with X frames.
9013
9014 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
9015 addition to output_termcap.
9016
9017 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
9018
9019 * termchar.h (FRAME_TTY): Support output_msdos_raw.
9020 (struct tty_display_info) [MSDOS]: Add fields related to mouse
9021 highlight.
9022
9023 * process.c [!subprocesses]: Define QCname.
9024 (syms_of_process): Intern and staticpro it.
9025
9026 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
9027 Adjust for changes in encoding/decoding routines.
9028 Use encode_coding_object and decode_coding_object instead of
9029 encode_coding and decode_coding.
9030
9031 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
9032
9033 * dosfns.c: Include frame.h before termhooks.h.
9034 (dos_cleanup): Use CURTTY ()->termscript instead of a global
9035 variable termscript.
9036
9037 * s/msdos.h (USER_FULL_NAME): Define.
9038 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
9039
9040 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
9041 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
9042 pw->pw_gecos.
9043
9044 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
9045 SELECTED_FRAME as additional (1st) argument.
9046 (tty_read_avail_input): Handle output_msdos_raw in
9047 addition to output_termcap.
9048
9049 * msdos.c: Include frame.h before termhooks.h.
9050 (mouse_on, mouse_off, mouse_moveto, mouse_init)
9051 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
9052 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
9053 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
9054 (IT_set_terminal_modes, IT_reset_terminal_modes)
9055 (IT_set_frame_parameters): Use tty->termscript instead of a global
9056 variable termscript.
9057 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
9058 global variable terminal_coding. Don't refer to
9059 Vnonascii_translation_table.
9060 (internal_terminal_init): Set Vwindow_system in current_kboard.
9061 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
9062 Announce date and time of session start, if termscript is open.
9063 Don't zero out the_only_display_info (it is done in
9064 term.c:init_tty). Open termscript only of not already open.
9065 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
9066 here instead of dos_ttraw. Don't initialize display if this is an
9067 initial tty. Don't set FRAME_FONT.
9068 (Vwindow_system_version): Bump to 23.
9069 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
9070 is available, set up mouse_position_hook.
9071 (dos_ttraw, IT_set_terminal_modes): If called with initial
9072 terminal, do nothing.
9073 (IT_set_frame_parameters): Handle the Qtty_type frame
9074 parameter by calling internal_terminal_init.
9075 (dos_set_window_size, show_mouse_face)
9076 (clear_mouse_face, IT_note_mode_line_highlight)
9077 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
9078 (dos_rawgetc): Use tty_display_info instead of x_display_info.
9079 (initialize_msdos_display): New function.
9080 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
9081 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
9082 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
9083 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
9084 Accept additional argument: a pointer to a frame. Update all callers.
9085 (request_sigio, unrequest_sigio): Don't define, now defined on
9086 sysdep.c.
9087 (IT_write_glyphs): Rewrite to use encode_terminal_code.
9088
9089 * term.c [MSDOS]: Include msdos.h.
9090 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
9091 conditional to DOS_NT. Allow only one call to this function in a
9092 session. Don't allocate a new struct tty_display_info; instead,
9093 reuse the_only_display_info. Call get_tty_size to get screen
9094 dimensions. Call init_baud_rate to set bad_rate.
9095 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
9096 (Fsuspend_tty) [MSDOS]: Don't close input and output.
9097 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
9098 (get_tty_terminal, get_named_tty, Ftty_type)
9099 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
9100 output_termcap.
9101 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
9102 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
9103 only when subprocesses are supported.
9104
9105 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
9106 f->output_data.x.
9107 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
9108 terminal devices.
9109
9110 * msdos.h: Remove definition of struct x_display_info and struct
9111 x_output.
9112 (FRAME_FONT): Use output_data.tty.
9113 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
9114 (struct x_display_info): Rename from display_info. Update all users in
9115 msdos.c.
9116 (struct x_output): Remove background_pixel and foreground_pixel.
9117 (the_only_display_info): Rename from the_only_x_display.
9118 (dos_ttraw): Update prototype.
9119
9120 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
9121 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
9122
9123 2008-08-23 Jason Rumney <jasonr@gnu.org>
9124
9125 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
9126 (fn_TIFFSetDirectory): New library function used.
9127 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
9128 (tiff_load): Use :index to select among multiple images. Set count
9129 property when multiple images exist.
9130 (gif_format): Use :index, not :image.
9131
9132 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
9133
9134 * xdisp.c (try_scrolling): Check INT_MAX instead of
9135 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
9136 to obtain INT_MAX.
9137
9138 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
9139
9140 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
9141
9142 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
9143
9144 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
9145 GNUstep library location.
9146
9147 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
9148
9149 * xfaces.c (x_update_menu_appearance): Check validity of menu font
9150 before using it.
9151
9152 * puresize.h (BASE_PURESIZE): Increase to 1250000.
9153
9154 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
9155
9156 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
9157 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
9158 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
9159 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
9160 (EmacsApp-cursor_blink_handler): Remove declaration.
9161 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
9162 match 01 Feb 2008 changes in xterm.c.
9163 (ns_read_socket): Add cast to avoid warning.
9164 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
9165 GNUstep.
9166
9167 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
9168
9169 * xselect.c (x_get_foreign_selection): Return nil if desired
9170 selection could not be obtained, instead of signalling an error.
9171
9172 2008-08-20 David Reitter <david.reitter@gmail.com>
9173
9174 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
9175 * nsterm.m: Remove ns-specific code for cursor blinking.
9176 (ns_draw_window_cursor): Clear cursor properly rather than
9177 redrawing the area. Respect width of bar cursors.
9178 These changes enable the use of generic blink-cursor-mode and
9179 generic cursor types in NS and support smooth cursor movements (do
9180 not blink off after command).
9181 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
9182 Nextstep, too.
9183
9184 2008-08-19 Kenichi Handa <handa@m17n.org>
9185
9186 * font.c (Vfont_log_deferred): New variable.
9187 (font_add_log): Check Vfont_log_deferred.
9188 (font_deferred_log): New function.
9189
9190 * font.h (font_deferred_log): Extern it.
9191
9192 * fontset.c (reorder_font_vector): Use encoding charset of fonts
9193 for sorting.
9194 (face_for_char): Use deferred log.
9195
9196 2008-08-18 Kenichi Handa <handa@m17n.org>
9197
9198 * fontset.c (face_for_char): Add font log.
9199
9200 * font.c (font_add_log): Add the font properties :script, :lang,
9201 and :otf in the log.
9202
9203 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
9204
9205 * xdisp.c: Remove dead code.
9206 (handle_invisible_prop, next_overlay_string): Defer call to
9207 setup_for_ellipsis.
9208 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
9209
9210 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
9211
9212 * xfaces.c (lookup_derived_face): Properly handle possible zero
9213 return value of get_lface_attributes.
9214 (merge_faces): Don't tell lookup_derived_face to signal an error
9215 if face is not found.
9216
9217 * dired.c (Fdirectory_files): Doc fix.
9218
9219 * process.c (make_process): Initialize kill_without_query struct
9220 member.
9221
9222 2008-08-15 Eli Zaretskii <eliz@gnu.org>
9223
9224 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
9225 Alternative calculation of totphys for Visual Studio 6.
9226
9227 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
9228
9229 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
9230 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
9231 All users changed.
9232 (stat): Only root directory passed to GetDriveType. Allow RAM
9233 disk as well as local fixed disk when w32-get-true-file-attributes
9234 is set to `local'.
9235 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
9236 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
9237 (w32_cached_id, w32_add_to_cache): New functions.
9238 (get_name_and_id): Look account names in the cache before calling
9239 lookup_account_sid.
9240 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
9241 New initialization flags.
9242 (globals_of_w32): Initialize them to zero.
9243 (w32_system_process_attributes): Use w32_cached_id and
9244 w32_add_to_cache.
9245
9246 2008-08-14 Lawrence Mitchell <wence@gmx.li>
9247
9248 * lread.c (Fread_char, Fread_char_exclusive): If no character
9249 event is read before timeout is reached, return nil, rather than
9250 converting to a number.
9251
9252 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
9253
9254 * fns.c (use_dialog_box): Doc fix.
9255
9256 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
9257 on OS X.
9258
9259 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
9260
9261 * frame.c (Qns_parse_geometry): New var.
9262 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
9263
9264 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
9265
9266 * xdisp.c (x_produce_glyphs): Handle the case when font has no
9267 space character in calculating tabs.
9268
9269 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
9270
9271 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
9272
9273 2008-08-10 Glenn Morris <rgm@gnu.org>
9274
9275 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
9276 silence gcc "limited range of data type" warnings in some
9277 make_fixnum_or_float calls.
9278
9279 2008-08-09 Eli Zaretskii <eliz@gnu.org>
9280
9281 * w32.c (w32_system_process_attributes): If the process does not
9282 exist, return nil.
9283
9284 * w32.c: Include thelp32.h, psapi.h and coding.h.
9285 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
9286 declarations.
9287 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
9288 (Process32Next_Proc): New typedefs.
9289 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
9290 (g_b_init_process32_next, g_b_init_open_thread_token)
9291 (g_b_init_impersonate_self, g_b_init_revert_to_self)
9292 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
9293 (g_b_init_get_process_working_set_size)
9294 (g_b_init_global_memory_status_ex): New static variables.
9295 (globals_of_w32): Initialize them.
9296 (create_toolhelp32_snapshot, process32_first, process32_next)
9297 (open_thread_token, impersonate_self, revert_to_self)
9298 (get_process_memory_info, get_process_working_set_size)
9299 (global_memory_status, global_memory_status_ex): New wrapper
9300 functions.
9301 (w32_list_system_processes, w32_system_process_attributes)
9302 (enable_privilege, restore_privilege, ltime, process_times):
9303 New functions.
9304 (convert_time_raw): New function.
9305 (convert_time): Remove conversion of FILETIME into time in 100
9306 nsec units, call convert_time_raw instead.
9307
9308 * process.h (w32_list_system_processes, w32_system_process_attributes):
9309 Add prototypes.
9310 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
9311 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
9312 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
9313 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
9314
9315 * process.c (Fsystem_process_attributes): Doc fix.
9316
9317 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
9318
9319 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
9320 a continued multi-char glyph; if so, advance to the actual glyph.
9321
9322 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
9323
9324 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
9325
9326 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
9327 (.m.o): Use it.
9328 * config.in: Regenerate.
9329
9330 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
9331
9332 * xdisp.c (redisplay_window): Revert last change.
9333 (try_window): Check bottom scroll margin too.
9334
9335 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
9336
9337 * config.in: Regenerate.
9338
9339 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
9340 -list-load-path-shadows'.
9341 (nsgui.h): Reduce number of things depending on it.
9342
9343 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
9344
9345 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
9346 instead of window-end which does the wrong thing at eob.
9347 (try_cursor_movement): Minor optimization.
9348 (redisplay_window): If scroll margin is defined, don't assume
9349 window doesn't need scrolling.
9350
9351 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
9352
9353 * config.in: Regenerate.
9354
9355 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
9356 (mostlyclean): Don't delete *.d under NS.
9357
9358 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
9359
9360 2008-08-06 Kenichi Handa <handa@m17n.org>
9361
9362 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
9363
9364 2008-08-06 Andreas Schwab <schwab@suse.de>
9365
9366 * config.in: Regenerate.
9367
9368 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
9369
9370 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
9371 forcing a window start.
9372
9373 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
9374 (auto_save_1): Update modtime when auto-save-list-file-name is on.
9375
9376 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9377
9378 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
9379 argument.
9380
9381 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
9382
9383 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
9384 <scroll-down-aggressively, before-change-functions>:
9385 <after-change-functions>: Reflow docstrings.
9386
9387 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9388 Ken Raeburn <raeburn@gnu.org>
9389
9390 Dock menu customization, based on a patch by Ken Raeburn, plus some
9391 other fixes.
9392 * nsmenu.m (dockMenu): New variable.
9393 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
9394
9395 * nsterm.h (dockMenu): Declare.
9396
9397 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
9398 (ns_term_init): Initialize dockMenu.
9399 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
9400 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
9401 left.
9402
9403 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
9404
9405 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
9406
9407 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
9408
9409 * config.in: Regenerate.
9410
9411 2008-08-04 Seiji Zenitani <zenitani@mac.com>
9412
9413 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
9414
9415 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
9416
9417 * nsterm.h (find_and_call_menu_selection): Fix prototype.
9418
9419 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9420
9421 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
9422
9423 * keyboard.h: Comment an #endif.
9424
9425 * lisp.h (have_menus_p): Adjust comment.
9426
9427 * menu.c (find_and_return_menu_selection): Fix comparison with
9428 client_data.
9429
9430 * nsmenu.m (popup_activated_flag): New variable.
9431 (popup_activated): New function.
9432 (menu-or-popup-active-p): New exported lisp definition.
9433 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
9434 when popup done.
9435 (ns_popup_dialog): Set popup_activated_flag.
9436
9437 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
9438 version for GNUstep (handled by conditional typedef in nsterm.m).
9439 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
9440 in rgb.txt).
9441
9442 * process.c (init_process): Use DARWIN_OS, not DARWIN.
9443
9444 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
9445
9446 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
9447
9448 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
9449 shortcircuit if popup_activated like GTK and X toolkit.
9450
9451 * m/inter386.h: Change DARWIN to DARWIN_OS.
9452
9453 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
9454 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
9455 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
9456 comment on NO_SOCK_SIGIO.
9457
9458 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
9459
9460 * nsterm.m (windowDidResize): Remove stopModal call.
9461
9462 2008-08-03 Andreas Schwab <schwab@suse.de>
9463
9464 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
9465 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
9466
9467 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
9468
9469 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
9470 Don't use uninitialized pointer variable when using getrlimit.
9471
9472 2008-08-02 Jason Rumney <jasonr@gnu.org>
9473
9474 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
9475
9476 2008-08-02 Eli Zaretskii <eliz@gnu.org>
9477
9478 * alloc.c (NSTATICS): Bump to 0x640.
9479
9480 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
9481
9482 * lisp.h: Add prototype for directory_files_internal.
9483
9484 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
9485 New functions.
9486 (syms_of_process): Defsubr them. Add initializations for various
9487 Q* symbols used in procfs_system_process_attributes.
9488 (procfs_list_system_processes, procfs_system_process_attributes)
9489 [HAVE_PROCFS]: New functions.
9490 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
9491 (procfs_get_total_memory): New functions.
9492
9493 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
9494
9495 * xfaces.c (Fx_load_color_file): Fix previous change;
9496 it is #ifdef WINDOWSNT, not WINDOWS_NT.
9497
9498 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
9499
9500 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
9501
9502 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9503
9504 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
9505
9506 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
9507
9508 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
9509
9510 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
9511 define NSApplicationDelegateReplySuccess.
9512 (EmacsView -converstationIdentifier): Use long instead of
9513 NSInteger for GNUstep, since it doesn't have NSInteger.
9514
9515 * xmenu.c: Revert last change.
9516
9517 * keyboard.h: Fix last change.
9518
9519 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
9520
9521 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
9522 on Windows.
9523
9524 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9525
9526 Warning clearing and clean-up in NS port.
9527 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
9528 Add prototypes.
9529 * nsgui.h (FACE_DEFAULT): Remove, unused.
9530 (XGCValues): Change colors to unsigned long.
9531 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
9532 nsterm.m.
9533 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
9534 (ns_list_fonts): Remove, unused.
9535 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
9536 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
9537 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
9538 (nsfont_draw): Compare face colors to 0, not nil.
9539 * nsmenu.m (struct widget_value): Drop unneeded declaration.
9540 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
9541 (-addSubmenuWithTitle:): Use NSMenuItem class.
9542 (ns_popup_menu): Use NO, not NULL, for enabled setting.
9543 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
9544 (ns_clip_to_row): Make gc arg a BOOL.
9545 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
9546 ns_clip_to_row() call.
9547 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
9548 used). Cast FRAME_FONT assignments.
9549 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
9550 (ns_string_to_lispmod): Change arg to const char.
9551 (ns_term_init): Use NSMenuItem class.
9552 (EmacsApp -openFile:): Move to different section of file.
9553 (EmacsApp -application:openFiles:): Don't return a value, call
9554 -replyToOpenOrPrint:.
9555 (EmacsView -keyDown:): Fix up cast.
9556 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
9557 (EmacsView -menuDown:): Cast tag in call to
9558 find_and_call_menu_selection().
9559 (ns_list_fonts): Remove, unused.
9560 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
9561 (ns_fontname_to_xlfd): Make static.
9562 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
9563 Remove prototypes (now in keyboard.h).
9564 (next_menubar_widget_id): Remove, unused.
9565 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
9566 Remove prototypes (now in keyboard.h).
9567 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
9568
9569 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
9570
9571 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
9572 (floatfns.o): Depend on syssignal.h.
9573 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
9574
9575 * systty.h: Fix previous change that removed BSD_TERMIOS.
9576 Add comments to #ifdefs.
9577
9578 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9579
9580 * w32fns.c (w32-load-color-file): Remove.
9581 (x-open-connection): Use renamed Fx_load_color_file.
9582 * xfaces.c (x-load-color-file): Add.
9583 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
9584 Emacs.clr.
9585 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
9586
9587 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
9588
9589 * dbusbind.c (Fdbus_call_method_asynchronously)
9590 (Fdbus_method_error_internal): New defuns.
9591 (xd_read_message): Handle also reply messages.
9592 (Vdbus_registered_functions_table): Extend docstring.
9593
9594 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
9595
9596 * keyboard.c (gobble_input): Fix previous change.
9597
9598 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
9599
9600 * bitmaps/README:
9601 * xfns.c:
9602 * termcap.c:
9603 * term.c:
9604 * syswait.h:
9605 * systty.h:
9606 * systime.h:
9607 * syssignal.h:
9608 * sysdep.c:
9609 * process.h:
9610 * process.c:
9611 * print.c:
9612 * ndir.h:
9613 * lread.c:
9614 * keyboard.c:
9615 * getpagesize.h:
9616 * floatfns.c:
9617 * fileio.c:
9618 * emacs.c:
9619 * doc.c:
9620 * dispnew.c:
9621 * dired.c:
9622 * data.c:
9623 * callproc.c:
9624 * buffer.c:
9625 * README:
9626 * Makefile.in:
9627 * s/template.h:
9628 * s/msdos.h:
9629 * m/vax.h: Remove VMS support.
9630 * s/vms.h:
9631 * vlimit.h:
9632 * uaf.h:
9633 * temacs.opt:
9634 * param.h:
9635 * ioctl.h: Remove file.
9636
9637 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
9638
9639 * s/ms-w32.h (MULTI_KBOARD): Remove.
9640 * xterm.c:
9641 * xselect.c:
9642 * xfns.c:
9643 * window.c:
9644 * w32term.c:
9645 * w32fns.c:
9646 * terminal.c:
9647 * termhooks.h:
9648 * term.c:
9649 * sysdep.c:
9650 * keyboard.h:
9651 * keyboard.c:
9652 * frame.h:
9653 * frame.c:
9654 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
9655 * config.in: Regenerate.
9656
9657 2008-07-30 Jason Rumney <jasonr@gnu.org>
9658
9659 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
9660
9661 * w32font.c (w32font_encode_char): Leave as unicode if in range.
9662 (w32font_open_internal): Get unicode version of textmetrics.
9663 Don't enable or disable glyph indices here.
9664 (w32font_open): Disable use of glyph indices.
9665
9666 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
9667
9668 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
9669
9670 * minibuf.c (Vread_buffer_function): Doc fix.
9671
9672 2008-07-30 John Paul Wallington <jpw@pobox.com>
9673
9674 * minibuf.c (read_buffer_completion_ignore_case): New var.
9675 (Fread_buffer): Use it.
9676
9677 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
9678
9679 * systty.h (sensemode): Remove empty #if. Remove reference to
9680 BSD_TERMIOS, unused.
9681
9682 * sysdep.c: Remove reference to DGUX.
9683 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
9684
9685 * config.in: Regenerate.
9686
9687 2008-07-30 Jason Rumney <jasonr@gnu.org>
9688
9689 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
9690
9691 2008-07-29 Jason Rumney <jasonr@gnu.org>
9692
9693 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
9694 is populated.
9695 (uniscribe_encode_char): Always use uniscribe.
9696 Avoid using context if cache is populated.
9697
9698 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
9699
9700 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
9701 open menu.
9702
9703 * gtkutil.c (menu_nav_ended): Remove.
9704 (create_menus): Remove signal connect for menu_nav_ended.
9705
9706 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
9707
9708 * xdisp.c (redisplay_window): Check return value of
9709 compute_window_start_on_continuation_line before forcing a window
9710 start.
9711
9712 2008-07-28 Jason Rumney <jasonr@gnu.org>
9713
9714 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
9715
9716 * w32term.c (w32_enable_unicode_output, cleartype_active):
9717 Remove obsolete display options.
9718 (x_draw_glyph_string_background): Don't use old cleartype_active
9719 workaround.
9720 (w32_initialize): Remove cleartype_active initialization.
9721 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
9722
9723 2008-07-28 Andreas Schwab <schwab@suse.de>
9724
9725 * lisp.h (init_weak_hash_tables, syms_of_font)
9726 (xd_read_queued_messages, syms_of_dbusbind): Declare.
9727 (remove_hash_entry): Don't declare.
9728 * eval.c (maybe_call_debugger): Make static and move before use.
9729 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
9730 * xdisp.c: Include "gtkutil.h" if USE_GTK.
9731 * xterm.h (x_set_frame_alpha): Declare.
9732
9733 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
9734
9735 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
9736 (create_menus): Connect selection-done to menu_nav_ended.
9737
9738 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
9739
9740 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
9741 Set Vx_resource_name to a fallback. Replace read of 'buffered'
9742 parameter with read of 'alpha' one.
9743 (Qns_frame_parameter): Remove.
9744 * nsselect.m (selection-coding-system)
9745 (next-selection-coding-system, Vselection_coding_system)
9746 (Vnext_selection_coding_system): Drop.
9747
9748 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
9749
9750 * nsfns.m (do-applescript, do_applescript): Rename to
9751 ns-do-applescript, ns_do_applescript, and move within file.
9752
9753 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
9754
9755 Remove support for Mac Carbon.
9756 * mactoolbox.c:
9757 * macterm.h:
9758 * macterm.c:
9759 * macselect.c:
9760 * macmenu.c:
9761 * macgui.h:
9762 * macfns.c:
9763 * mac.c: Remove file.
9764 * s/darwin.h:
9765 * m/intel386.h:
9766 * xfaces.c:
9767 * xdisp.c:
9768 * window.c:
9769 * tparam.c:
9770 * termhooks.h:
9771 * termcap.c:
9772 * term.c:
9773 * syssignal.h:
9774 * sysselect.h:
9775 * sysdep.c:
9776 * process.c:
9777 * lread.c:
9778 * lisp.h:
9779 * keyboard.c:
9780 * image.c:
9781 * fringe.c:
9782 * frame.h:
9783 * frame.c:
9784 * fontset.c:
9785 * font.h:
9786 * font.c:
9787 * fns.c:
9788 * fileio.c:
9789 * emacs.c:
9790 * dispnew.c:
9791 * dispextern.h:
9792 * config.in:
9793 * atimer.c:
9794 * Makefile.in: Remove code for Carbon.
9795
9796 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9797
9798 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
9799
9800 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9801
9802 * macterm.h (kCGBitmapByteOrder32Host): New define for
9803 non-universal SDKs.
9804
9805 * image.c (mac_create_cg_image_from_image, image_load_image_io)
9806 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
9807
9808 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
9809 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
9810
9811 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
9812
9813 * w32inevt.c: Include dispextern.h.
9814
9815 2008-07-26 Andreas Schwab <schwab@suse.de>
9816
9817 * print.c (print_object): Fix off-by-one in last change.
9818
9819 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
9820
9821 * term.c (syms_of_term): Don't initialize default_orig_pair,
9822 default_set_foreground and default_set_background on Windows.
9823
9824 2008-07-25 Jason Rumney <jasonr@gnu.org>
9825
9826 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
9827 ScriptItemize. Clean up return value checking. Remove unused
9828 variables.
9829 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
9830 shaping engine.
9831
9832 * w32font.c (w32font_has_char): Handle the case where we can't
9833 determine the script for a character.
9834
9835 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
9836
9837 * term.c (syms_of_term): Initialize default_orig_pair,
9838 default_set_foreground, and default_set_background.
9839
9840 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
9841 clash (bug#86).
9842 (getloadavg): Callers changed.
9843
9844 * image.c (svg_load_image): Fix last change.
9845 (svg_load_image): Use rsvg_handle_get_dimensions to check that
9846 image size is valid. Use g_object_unref instead of deprecated
9847 rsvg_handle_free to free rsvg handle.
9848 (x_from_xcolors): Don't initialize pixmap (silence compiler).
9849
9850 2008-07-25 Jason Rumney <jasonr@gnu.org>
9851
9852 * w32font.c (w32font_encode_char): Encode characters outside BMP as
9853 surrogates before looking up glyph index.
9854 (w32font_text_extents): Encode as surrogates if falling back to
9855 functions that need UTF-16 wide chars.
9856
9857 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
9858 BMP as surrogates before looking up glyph index.
9859
9860 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
9861
9862 * image.c (svg_load_image): Check for failure in return value of
9863 rsvg_handle_get_pixbuf. Free rsvg handle when done.
9864
9865 2008-07-25 Jason Rumney <jasonr@gnu.org>
9866
9867 * w32font.c (Fx_select_font): Reverse sense of second arg.
9868
9869 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
9870
9871 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
9872 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
9873
9874 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
9875 (PURESIZE): Use it.
9876
9877 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
9878
9879 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
9880 * m/alpha.h (TEXT_END):
9881 * m/ibmrs6000.h (TEXT_END):
9882 * m/macppc.h (TEXT_END):
9883 * s/darwin.h (TEXT_END):
9884 * s/msdos.h (TEXT_END): Remove, unused.
9885 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
9886 * s/cygwin.h: Remove comment.
9887
9888 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
9889 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
9890 * m/intel386.h (DOT_GLOBAL_START):
9891 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
9892 (USG): Remove, file not used on USG platforms.
9893
9894 * Makefile.in (HAVE_X11): Remove empty #else.
9895
9896 2008-07-24 Andreas Schwab <schwab@suse.de>
9897
9898 * fileio.c (Finsert_file_contents): Properly adjust undo list
9899 after format conversion.
9900
9901 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
9902
9903 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
9904 (menu_nav_ended): Remove.
9905 (create_menus): Remove signal connect for menu_nav_ended.
9906 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
9907 create_menus.
9908 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
9909
9910 2008-07-23 Jason Rumney <jasonr@gnu.org>
9911
9912 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
9913 with opened font.
9914 (w32font_open): Set font type to gdi.
9915
9916 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
9917
9918 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
9919
9920 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
9921 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
9922 defines it.
9923 * unexec.c (ADDR_CORRECT): Define unconditionally.
9924
9925 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
9926
9927 * unexec.c: Remove code depending on !COFF and USG, the file is
9928 not used for such systems.
9929
9930 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
9931 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
9932 (LD_SWITCH_SYSTEM_1): Remove, update users.
9933
9934 * s/darwin.h (DATA_END):
9935 * m/intel386.h (DATA_END):
9936 * m/ibmrs6000.h (DATA_END):
9937 * m/alpha.h (DATA_END): Remove, unused.
9938
9939 * config.in: Regenerate.
9940 * s/ms-w32.h (subprocesses): Define unconditionally.
9941 * s/template.h (subprocesses): Update comment.
9942 * s/vms.h (subprocesses):
9943 * s/usg5-4.h (subprocesses):
9944 * s/hpux10-20.h (subprocesses):
9945 * s/gnu-linux.h (subprocesses):
9946 * s/cygwin.h (subprocesses):
9947 * s/bsd-common.h (subprocesses):
9948 * s/aix4-2.h (subprocesses):
9949 * s/darwin.h (subprocesses): Do not define, defined by default now.
9950
9951 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
9952 Remove all references.
9953 (temacs): Add GNUstep specific ld flags.
9954
9955 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
9956 similarly to what X does.
9957
9958 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
9959
9960 * nsfns.m (x-list-fonts): Remove.
9961 (syms_of_nsfns): Drop the x-list-fonts declaration.
9962 * nsterm.m: Get rid of remaining "//" comments.
9963
9964 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
9965
9966 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
9967
9968 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
9969 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
9970 (Fns_own_selection_internal, Fx_disown_selection_internal)
9971 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
9972
9973 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
9974 ... */' style of docstrings. Doc fixes.
9975
9976 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
9977
9978 * terminfo.c (UP, BC, PC): Undo previous change.
9979
9980 * nsfns.m: Rename ns prefixed functions/variables to the
9981 corresponding x versions. Update references.
9982
9983 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
9984
9985 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
9986
9987 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
9988
9989 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
9990 Remove forwarding functions.
9991 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
9992 non-static.
9993 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
9994 non-static.
9995 (ns_frame_parm_handlers): Use the new names.
9996 (syms_of_nsfns): Move to the end of file.
9997
9998 * nsterm.m (syms_of_nsterm): Move to the end of file.
9999
10000 * dispnew.c (init_display): Remove code for X10.
10001
10002 2008-07-22 Jason Rumney <jasonr@gnu.org>
10003
10004 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
10005 bare drive.
10006
10007 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
10008
10009 * nsterm.m (syms_of_nsterm): Remove debugging println.
10010
10011 2008-07-22 David Reitter <david.reitter@gmail.com>
10012
10013 * nsfns.m (do_applescript, F_do_applescript): NS version of the
10014 Carbon implementation of the same functionality: execute arbitrary
10015 AppleScript code.
10016
10017 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
10018
10019 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
10020 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
10021 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
10022 (Fx_display_mm_height, Fx_display_mm_width)
10023 (Fx_display_backing_store, Fx_display_visual_class)
10024 (Fx_display_save_under, Fx_open_connection)
10025 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
10026 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
10027 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
10028 (Fx_display_pixel_width, Fx_display_pixel_height)
10029 (Fx_display_usable_bounds, Fx_display_planes)
10030 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
10031 ... */' style of docstrings.
10032
10033 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
10034
10035 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
10036 on this platform.
10037 (mips):
10038 * m/iris4d.h (mips): Do not define.
10039 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
10040
10041 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
10042
10043 * image.c:
10044 * nsfns.m:
10045 * nsselect.m:
10046 * nsterm.h:
10047 * nsterm.m: Rename ns prefixed functions/variables to the
10048 corresponding x versions. Update references.
10049
10050 * m/ibms390x.h (NO_REMAP): Do not undefine.
10051
10052 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
10053
10054 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
10055
10056 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
10057 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
10058 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
10059 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
10060 (Fns_display_mm_height, Fns_display_mm_width)
10061 (Fns_display_backing_store, Fns_display_visual_class)
10062 (Fns_display_save_under, Fns_open_connection)
10063 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
10064 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
10065 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
10066 (Fns_display_pixel_width, Fns_display_pixel_height)
10067 (Fns_display_usable_bounds, Fx_display_planes)
10068 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
10069
10070 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
10071
10072 * print.c (print_object): Check print_depth before searching for
10073 circularities.
10074
10075 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
10076
10077 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
10078 only sprintf.
10079
10080 2008-07-21 Kenichi Handa <handa@m17n.org>
10081
10082 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
10083
10084 2008-07-20 Andreas Schwab <schwab@suse.de>
10085
10086 * syntax.c (find_start_pos, find_start_value)
10087 (find_start_value_byte, find_start_begv, find_defun_start)
10088 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
10089
10090 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
10091
10092 * s/sol2-3.h: Insert contents of s/sol2.h.
10093 (LD_SWITCH_SYSTEM): Remove redundant definition.
10094 * s/sol2.h: Remove, unused.
10095
10096 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
10097
10098 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
10099
10100 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
10101
10102 * Makefile.in (ns_appdir): Fix typo in find command.
10103
10104 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
10105
10106 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
10107
10108 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
10109 added not supported anymore.
10110
10111 * s/usg5-4-2.h (LIBS_SYSTEM):
10112 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
10113
10114 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
10115 * s/lynxos.h (GETPGRP_NO_ARG):
10116 * s/hpux10-20.h (NO_SIOCTL_H):
10117 * s/gnu.h (GETPGRP_NO_ARG):
10118 * s/gnu-linux.h (NO_SIOCTL_H):
10119 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
10120 * s/cygwin.h (GETPGRP_NO_ARG):
10121 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
10122 (C_DEBUG_SWITCH): Remove duplicate definition.
10123
10124 * m/ibms390.h: Remove boilerplate comments.
10125
10126 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
10127
10128 * process.c (HAVE_SERIAL): Consolidate ifdefs.
10129 (wait_reading_process_output): Remove code for SunOS, platform not
10130 supported anymore. Use SOLARIS2 instead of sun.
10131
10132 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10133
10134 * font.c (font_open_by_name): Under NS, default lface height to zero.
10135 (font_open_for_lface): Under NS, set size based on frame fontsize.
10136 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
10137 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
10138
10139 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10140
10141 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
10142 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
10143 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
10144 YES/NO.
10145 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
10146 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
10147 * Makefile.in (clean): Clear out build destination dir.
10148
10149 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10150
10151 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
10152 xterm, xselect.
10153 * lisp.h: Remove declaration of hash_remove.
10154 * nsgui.h: Remove redefinitions of hash_remove.
10155 * fns.c (hash_remove): Rename to hash_remove_from_table.
10156
10157 2008-07-19 Seiji Zenitani <zenitani@mac.com>
10158
10159 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
10160 strdup() the family UTF8String before modifying it.
10161
10162 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10163
10164 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
10165 NS_FACE_BACKGROUND with 0 instead of nil.
10166 * nsfont.m (nsfont_draw): Same.
10167
10168 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
10169
10170 * nsfns.m (ns_set_background_color): Fix crash.
10171
10172 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
10173
10174 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
10175
10176 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
10177
10178 * puresize.h (BASE_PURESIZE): Increase to 1240000.
10179
10180 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10181
10182 * gtkutil.c: Include <config.h> instead of "config.h".
10183
10184 * lisp.h (Foverlay_buffer): Add EXFUN.
10185
10186 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
10187 child process to complete child_setup. Undo 2005-09-21 change.
10188
10189 * s/darwin.h: Mention setsid after vfork.
10190
10191 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10192
10193 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
10194 Depend on macgui.h.
10195
10196 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
10197 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
10198
10199 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
10200 and f19.
10201 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
10202
10203 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
10204 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
10205 Remove enumerators.
10206
10207 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
10208 Check if FACE_FROM_ID returns NULL.
10209
10210 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
10211
10212 * w32inevt.c (change_frame_size): Remove extern declaration.
10213 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
10214 change_frame_size.
10215
10216 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
10217
10218 * getloadavg.c: Revert last change (2008-07-15).
10219
10220 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
10221
10222 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
10223 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
10224 from configure.
10225
10226 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
10227
10228 * s/sol2.h:
10229 * s/sol2-4.h: Reorganize conditionals.
10230
10231 * ecrt0.c: Remove code depending on m68000, not used anymore.
10232
10233 * fns.c (hash_remove): Make static.
10234 * lisp.h (hash_remove): Don't prototype.
10235
10236 * m/ibmrs6000.h:
10237 * m/ibms390x.h:
10238 * m/macppc.h: Remove boilerplate comments.
10239
10240 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
10241 Solaris, which does not need them.
10242
10243 * m/vax.h: Remove comments about unsupported systems.
10244
10245 * s/darwin.h: Reorganize ifdefs.
10246
10247 2008-07-17 Andreas Schwab <schwab@suse.de>
10248
10249 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
10250
10251 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
10252
10253 Use SDATA. Follow coding convention of placing operators at
10254 beginning of next line rather than end of previous line, and placing
10255 spaces around infix operators.
10256
10257 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
10258 in case it was defined already.
10259 USE @GNUSTEP_MAKEFILES@ rather than envvars.
10260 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
10261 ns_default.
10262 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
10263 Lisp_Objects.
10264 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
10265 (ns_defined_color, ns_color_to_lisp): Declare.
10266 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
10267 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
10268 it's accepted even with USE_LISP_UNION_TYPE.
10269 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
10270 (update_frame_tool_bar): Remove apparently obsolete tests for
10271 non-integerness of f->tool_bar_lines.
10272 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
10273 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
10274 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
10275 (nsfont_open): Don't confuse NULL for Qnil.
10276 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
10277 * menu.h (find_and_call_menu_selection):
10278 * menu.c (find_and_call_menu_selection): Use just int for vector size.
10279 (find_and_return_menu_selection): Always return something.
10280 * frame.h: Include dispextern.h for Display_Info.
10281 (display_x_get_resource): Declare.
10282
10283 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
10284
10285 * syntax.c: Remove stdio.h include accidentally introduced in
10286 Emacs.app commit.
10287 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
10288 NS_IMPL_COCOA.
10289 * keyboard.c (handle_async_input, input_available_signal): Remove
10290 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
10291
10292 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
10293
10294 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
10295 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
10296 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
10297 Use SDATA.
10298
10299 * keymap.c: Remove all NS-specific code.
10300 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
10301 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
10302 where_is_preferred_modifier, return a different value depending on how
10303 preferred is the binding.
10304 (where_is_internal): Adjust accordingly.
10305 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
10306 Adjust to new preferred_sequence_p.
10307 (syms_of_keymap): Declare `where-is-preferred-modifier'.
10308 * keyboard.c (parse_solitary_modifier): Not static any more.
10309 * keyboard.h (parse_solitary_modifier): Declare.
10310
10311 2008-07-16 Andreas Schwab <schwab@suse.de>
10312
10313 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
10314 of easymenu.
10315
10316 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
10317
10318 * xdisp.c (move_it_in_display_line): Account for word wrap, so
10319 that we don't move off the line.
10320
10321 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
10322
10323 * keyboard.c (Qsuper): Remove.
10324 (parse_menu_item): Don't call where_is_internal specially for NS.
10325
10326 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10327
10328 * s/gnu-linux.h: Remove boilerplate comments.
10329
10330 * m/alpha.h (__ELF__): Consolidate conditions.
10331
10332 * m/m68k.h (linux): Use GNU_LINUX instead.
10333 Remove boilerplate comments.
10334
10335 * m/intel386.h: Undo refactoring from previous change.
10336 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
10337 too, remove dead code.
10338 (linux): Use GNU_LINUX instead.
10339
10340 2008-07-16 Jason Rumney <jasonr@gnu.org>
10341
10342 * w32gui.h: Repeat 26 June changes lost by last change.
10343
10344 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10345
10346 * systty.h: Remove code for Aix on 386, unsupported platform.
10347
10348 * s/ms-w32.h: Remove boilerplate comments.
10349 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
10350
10351 * s/gnu-linux.h (TERM): Remove support.
10352 (HAVE_SYSVIPC): Remove, unused.
10353 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
10354 for this system.
10355
10356 * process.c: Remove support for IRIS, unused.
10357 Remove support for TERM, not relevant anymore.
10358
10359 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
10360 used with the definition.
10361
10362 * s/aix4-2.h (static): Do not undef.
10363
10364 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
10365 only used on Aix.
10366 (HAVE_SYSVIPC): Remove, unused.
10367
10368 * m/hp800.h (CANNOT_DUMP): Do not undef.
10369
10370 * m/alpha.h: Fix comment.
10371
10372 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
10373 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
10374 used by this configuration.
10375 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
10376 * unexec.c: Remove code depending on HPUX and
10377 USG_SHARED_LIBRARIES, not used with this file. Remove code
10378 depending on IRIS, unused. Remove if 0-ed code.
10379
10380 * s/template.h: Remove comments about static.
10381
10382 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
10383 Remove if 0-ed code.
10384 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
10385 were the same as the default.
10386 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
10387 Remove boilerplate comments.
10388 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
10389 (HAVE_SYSVIPC): Remove, unused.
10390 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
10391
10392 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10393 Remove boilerplate comments.
10394 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10395 Remove boilerplate comments.
10396 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10397 Remove boilerplate comments.
10398 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
10399
10400 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
10401 USG systems which do not use DATA_SEG_BITS.
10402 Refactor code. Remove boilerplate comments.
10403
10404 * m/ibms390.h:
10405 * m/m68k.h:
10406 * s/bsd-common.h:
10407 * s/cygwin.h:
10408 * s/darwin.h:
10409 * s/freebsd.h:
10410 * s/gnu.h:
10411 * s/msdos.h: Remove boilerplate comments.
10412
10413 * m/iris4d.h: Remove boilerplate comments and code for systems that
10414 do not use this file.
10415 (IRIS_4D): Remove, unused.
10416
10417 * m/mips.h: Remove boilerplate comments and code for systems that
10418 do not use this file.
10419 (SIGN_EXTEND_CHAR):
10420 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
10421 * unexmips.c: Remove file, unused.
10422
10423 * editfns.c (Fuser_full_name): Replace the only use of
10424 USER_FULL_NAME with its value.
10425 * config.in: Regenerate.
10426
10427 2008-07-16 David Reitter <david.reitter@gmail.com>
10428
10429 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
10430 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
10431
10432 2008-07-16 Glenn Morris <rgm@gnu.org>
10433
10434 * emacs.c (system-type): Doc fix.
10435
10436 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
10437
10438 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
10439 If the cache doesn't work, let's fix it, rather than work around it.
10440
10441 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10442
10443 * Makefile.in: Correct additions for nsfont.o in last commit.
10444 * nsfont.m: New file (forgot last commit).
10445
10446 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
10447
10448 * callproc.c (set_initial_environment): Initialize
10449 Vprocess_environment under CANNOT_DUMP (fixes crash when
10450 batch-compiling for bootstrap).
10451
10452 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
10453 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10454
10455 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
10456 fix crash due to different init order.
10457
10458 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10459
10460 Changes and additions for NeXTstep windowing system (Cocoa and
10461 GNUstep) support.
10462
10463 * Makefile.in:
10464 * config.in: Support defines and build commands for NS port.
10465 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
10466 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
10467 * dispextern.h: Include nsgui.h and add needed typedefs under NS
10468 windowing.
10469 (struct face): Add synth_ital field.
10470 * dispnew.c: Include nsterm.h when compiling under NS windowing.
10471 (init_display): Initialize Vinitial_window_system to "ns" when so
10472 compiled.
10473 * emacs.c: Include GSConfig.h when compiling under GNUstep.
10474 (display_arg): Use under NS.
10475 (main): Under NS, allocate autorelease pool and handle command line
10476 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
10477 (standard_args): Add NS-specific args.
10478 (shut_down_emacs): Shut down NS terminal if compiled under NS.
10479 * font.c (DEFAULT_ENCODING): New variable.
10480 (font_find_for_lface): Use it.
10481 (syms_of_font): Load syms_of_nsfont under NS.
10482 * font.h: Declare nsfont_driver when compiled under NS.
10483 * fontset.c: When compiling under NS, include nsterm.h.
10484 (fontset_from_font): Autoconstruct fontset under NS.
10485 * frame.c (various): Under NS, include nsterm.h, add Qns window system
10486 symbol, document and use it.
10487 (do_switch_frame): When for_deletion under Cocoa, add
10488 Fraise_frame(Qnil).
10489 (x_set_frame_parameters): Ensure font attribute changes are picked up.
10490 (x_get_arg): Allow "yes" and "no" as boolean values.
10491 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
10492 Qright under Cocoa.
10493 (focus-follows-mouse): Default to 0 under NS.
10494 * frame.h (enum output_method): Add output_ns.
10495 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
10496 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
10497 (FRAME_WINDOW_P): NS-specific definition.
10498 * fringe.c (max_used_fringe_bitmap): Make public.
10499 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
10500 (getloadavg): Use NeXT code under descendant OS's.
10501 * image.c (includes and header section, x_create_bitmap_from_data)
10502 (x_create_bitmap_from_file, free_bitmap_record, image_background)
10503 (image_background_transparent, x_clear_image_1)
10504 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
10505 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
10506 (x_to_xcolors, x_from_xcolors, x_disable_image)
10507 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
10508 other GUIs, including XPM support using code originally written for
10509 Carbon GUI.
10510 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
10511 using NS API.
10512 (image_ascent): Use font metrics macros instead of direct struct field
10513 access.
10514 * keyboard.c (includes): Add nsterm.h when compiling under NS.
10515 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
10516 Also, handle NS as GTK for menu bar purposes.
10517 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
10518 toolkit where they differ.
10519 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
10520 use cachelist, still needed under NS.
10521 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
10522 (struct widget_value): Define it here for menu.c.
10523 * keymap.c (includes): Include modifier internals.
10524 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
10525 NS.
10526 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
10527 support for preferring sequences using certain modifiers, specified by
10528 the FIRSTONLY argument.
10529 * lisp.h (hash_remove): Rename to avoid name clash when compiling
10530 under NS GNUstep implementation.
10531 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
10532 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
10533 * menu.c: Include nsterm.h under NS.
10534 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
10535 (free_menubar_widget_tree_value, update_submenu_strings)
10536 (find_and_call_menu_selection): Treat NS as X and NT.
10537 (find_and_return_menu_selection): New function, used for popup menus.
10538 * nsgui.h:
10539 * nsterm.h:
10540 * nsfns.m:
10541 * nsimage.m:
10542 * nsmenu.m:
10543 * nsselect.m:
10544 * nsterm.m: New files.
10545 * process.c (wait_reading_process_output): Under NS, call ns_select()
10546 instead of plain select().
10547 * syntax.c (char_quoted): Under NS, avoid a crash when called near
10548 beginning of buffer.
10549 * sysselect.h (init_process): Rename when compiling under Cocoa to
10550 avoid name conflict.
10551 * termhooks.h (display_info): Add ns_display_info to union.
10552 * terminal.c (Fterminal_live_p): Add ns to terminal types.
10553 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
10554 COCOA environment.
10555 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
10556 unexec() signature. (Note, this will dump, but the resulting file
10557 crashes; unexosx is used instead; keeping around for reference and
10558 possible aid in getting dump working under GNUstep.)
10559 * w32gui.h (button_type, widget_value): Remove definitions (now in
10560 keyboard.h).
10561 * window.c: Include nsterm.h when compiling under NS.
10562 * xdisp.c (includes): Include nsterm.h when compiling under NS.
10563 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
10564 other GUI windowing systems.
10565 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
10566 GTK.
10567 (x_consider_frame_title): Under NS, set icon type and frame
10568 modified-state indicator; use ns_set_name_as_filename() when using
10569 formatted title.
10570 (update_window_cursor): Make public when compiling under NS.
10571 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
10572 (hourglass_atimer, Vhourglass_delay
10573 * xfaces.c (header section, init_frame_faces, clear_font_table)
10574 (defined_color, unload_color, x_face_list_fonts)
10575 (prepare_face_for_display): Add NS support parallel to other GUIs.
10576 Emulate GCs like other non-X GUIs.
10577 (split_font_name): Don't lowercase font name under NS.
10578 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
10579 under NS.
10580 * s/darwin.h: Add support for compilation under NS.
10581
10582 2008-07-15 Jason Rumney <jasonr@gnu.org>
10583
10584 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
10585 (w32_show_hourglass): Rename from show_hourglass.
10586 (w32_hide_hourglass): Rename from hide_hourglass.
10587 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
10588 (Vhourglass_delay): Declare extern.
10589 (hourglass_started): Remove.
10590
10591 * xdisp.c (Vhourglass_delay): Remove static.
10592 (hourglass_started, start_hourglass, cancel_hourglass):
10593 Don't include these versions on WINDOWSNT.
10594
10595 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10596
10597 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
10598 variables (formerly in xfns.c).
10599 (show_hourglass, hide_hourglass): New prototypes (same).
10600 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
10601 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
10602 in xfns.c).
10603 (syms_of_xdisp): Declare/initialize display-hourglass,
10604 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
10605 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
10606 formerly in xfns.c.
10607 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
10608 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
10609 (start_hourglass, cancel_hourglass): Remove.
10610 (show_hourglass, hide_hourglass): Remove prototypes and static
10611 modifiers.
10612 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
10613 hourglass_atimer, hourglass_shown_p declaration/initialization.
10614 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
10615 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
10616 (start_hourglass, cancel_hourglass): Remove.
10617 (show_hourglass, hide_hourglass): Remove prototypes and static
10618 modifiers.
10619 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
10620 hourglass_atimer, hourglass_shown_p declaration/initialization.
10621 * w32fns.c (display_hourglass_p, Vhourglass_delay)
10622 (DEFAULT_HOURGLASS_DELAY): Remove.
10623 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
10624 hourglass_shown_p declaration/initialization.
10625
10626 2008-07-14 Jason Rumney <jasonr@gnu.org>
10627
10628 * w32fns.c (w32_get_arg): Remove wrapper function.
10629 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
10630 directly.
10631 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
10632
10633 2008-07-14 Kenichi Handa <handa@m17n.org>
10634
10635 * xfont.c (xfont_open): Add workaround for X's bug.
10636
10637 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
10638
10639 * fontset.c: Include <stdio.h> unconditionally.
10640
10641 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
10642
10643 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
10644 for filtering.
10645
10646 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
10647
10648 * s/vms.h: Use __GNUC__ instead of _GNUC_.
10649
10650 * m/macppc.h:
10651 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
10652
10653 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
10654 (SPECIAL_EMACS_INT):
10655 * m/ia64.h (SPECIAL_EMACS_INT):
10656 * m/amdx86-64.h (SPECIAL_EMACS_INT):
10657 * s/gnu.h (NLIST_STRUCT):
10658 * s/aix4-2.h (X11R5_INHIBIT_I18N):
10659 * s/gnu-linux.h (LINUX):
10660 * s/msdos.h (HAVE_FACES):
10661 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
10662
10663 * systty.h:
10664 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
10665 anymore.
10666
10667 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
10668
10669 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
10670 always defined as int.
10671
10672 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
10673 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
10674 * s/gnu-linux.h (HAVE_WAIT_HEADER):
10675 * s/freebsd.h (HAVE_WAIT_HEADER):
10676 * s/bsd-common.h (HAVE_UNION_WAIT):
10677 * s/aix4-2.h (HAVE_WAIT_HEADER):
10678 * m/mips.h (HAVE_UNION_WAIT):
10679 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
10680 (COFF, static): Do not define, they are undefined later in the file.
10681
10682 * process.c (update_status): Don't use a union.
10683 (status_convert):
10684 (sigchld_handler): Use int instead of WAITTYPE.
10685
10686 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
10687
10688 * indent.c (Fvertical_motion): Restore hscroll before moving to
10689 goal column.
10690
10691 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
10692
10693 * lisp.h: Remove left over code.
10694
10695 2008-07-11 Andreas Schwab <schwab@suse.de>
10696
10697 * lisp.h: Fix logic in last change.
10698
10699 * menu.h: New file.
10700 * menu.c: Include it.
10701 * xmenu.c: Likewise.
10702 * Makefile.in: Update dependencies.
10703
10704 2008-07-11 Kenichi Handa <handa@m17n.org>
10705
10706 * fontset.c (fontset_from_font): Cancel the previous change.
10707
10708 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
10709
10710 * lisp.h:
10711 * w32heap.c:
10712 * emacs.c:
10713 * alloc.c: Replace all references of NO_UNION_TYPE with
10714 USE_LISP_UNION_TYPE.
10715
10716 * m/xtensa.h (NO_UNION_TYPE):
10717 * m/vax.h (NO_UNION_TYPE):
10718 * m/template.h (NO_UNION_TYPE):
10719 * m/sparc.h (NO_UNION_TYPE):
10720 * m/mips.h (NO_UNION_TYPE):
10721 * m/macppc.h (NO_UNION_TYPE):
10722 * m/m68k.h (NO_UNION_TYPE):
10723 * m/iris4d.h (NO_UNION_TYPE):
10724 * m/intel386.h (NO_UNION_TYPE):
10725 * m/ibms390x.h (NO_UNION_TYPE):
10726 * m/ibms390.h (NO_UNION_TYPE):
10727 * m/ibmrs6000.h (NO_UNION_TYPE):
10728 * m/ia64.h (NO_UNION_TYPE):
10729 * m/hp800.h (NO_UNION_TYPE):
10730 * m/arm.h (NO_UNION_TYPE):
10731 * m/amdx86-64.h (NO_UNION_TYPE):
10732 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
10733 defining it the same.
10734
10735 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
10736
10737 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
10738
10739 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
10740
10741 * fileio.c:
10742 * sysdep.c:
10743 * systty.h:
10744 * m/ibmrs6000.h:
10745 * m/iris4d.h:
10746 * s/aix4-2.h:
10747 * s/freebsd.h:
10748 * s/gnu-linux.h:
10749 * s/hpux10-20.h:
10750 * s/hpux11.h:
10751 * s/netbsd.h:
10752 * s/sol2-3.h:
10753 * s/sol2-4.h:
10754 * s/sol2.h:
10755 * s/usg5-4.h:
10756 * s/vms.h: Remove references to unused variables.
10757
10758 2008-07-10 Andreas Schwab <schwab@suse.de>
10759
10760 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
10761 pattern before matching the generic family.
10762
10763 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
10764
10765 * unexec.c:
10766 * s/vms.h:
10767 * s/usg5-4-2.h:
10768 * s/sol2-5.h:
10769 * s/freebsd.h:
10770 * s/darwin.h: Remove dead code.
10771
10772 * m/template.h:
10773 * m/sparc.h:
10774 * m/mips.h:
10775 * m/m68k.h:
10776 * m/iris4d.h:
10777 * m/intel386.h:
10778 * m/ibms390x.h:
10779 * m/ibms390.h:
10780 * m/ia64.h:
10781 * m/hp800.h:
10782 * m/arm.h:
10783 * m/amdx86-64.h: Remove dead code and references to unused
10784 and compiler defined symbols.
10785
10786 * unexmips.c:
10787 * unexelf.c: Remove references to desupported systems.
10788
10789 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
10790
10791 * m/powermac.h: Remove boilerplate comments.
10792 (NO_REMAP): Remove unused definition.
10793
10794 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
10795 define them.
10796
10797 2008-07-10 Kenichi Handa <handa@m17n.org>
10798
10799 * xfont.c (xfont_open): Log the reason of failure.
10800
10801 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
10802
10803 * fontset.c (fontset_get_font_group):
10804 * font.c (font_check_otf): Specify argument types.
10805
10806 2008-07-09 Kenichi Handa <handa@m17n.org>
10807
10808 * coding.c (detect_coding_utf_8): Set detect_info->found only when
10809 non-ASCII char is found.
10810
10811 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
10812 (reorder_font_vector): Change the arg preferred_family to font.
10813 Prefer the spec matching with font.
10814 (fontset_get_font_group): New function.
10815 (fontset_find_font): Change the format of an element of a realized
10816 fontset. Use fontset_get_font_group.
10817 (fontset_font): Try the current fontset, the default fontset, the
10818 fallbacks of the current fontset, and the fallbacks of the default
10819 fontset in this order.
10820 (face_for_char): Delete the shortcut to use the current font.
10821 (fontset_from_font): Don't set fonts for Latin in the fontset.
10822
10823 * font.h (font_make_object, font_match_p): Adjust prototypes.
10824
10825 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
10826
10827 * font.c (font_make_object): New arg entity and pixelsize.
10828 (font_check_otf_features, font_check_otf): New functions.
10829 (font_match_p): Check :lang, :script, and :otf properties.
10830
10831 * xfont.c (xfont_open): Adjust it for the change of
10832 font_make_object.
10833 (xfont_text_extents): Fix initial setting of metrics.
10834
10835 * ftfont.c (struct ftfont_info): New member index, delete member
10836 fc_charset_idx. Make the member order compatible with struct
10837 xftfont_info.
10838 (fc_charset_table): Change charset names to registry names.
10839 (ftfont_pattern_entity): Delete the args registry and
10840 fc_charset_idx. Change the value of :font-entity property
10841 to (FONTNAME . INDEX). Always set :registry property to
10842 `iso10646-1'.
10843 (struct ftfont_cache_data): New struct.
10844 (ftfont_lookup_cache): New arg for_face.
10845 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
10846 (ftfont_driver): Set the member otf_capability.
10847 (ftfont_get_charset): Adjust it for the change of
10848 fc_charset_table.
10849 (OTF_TAG_SYM): New macro.
10850 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
10851 for the change of fc_charset_table.
10852 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
10853 ftfont_pattern_entity. Add FC_INDEX to objset.
10854 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
10855 and ftfont_pattern_entity.
10856 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
10857 font_make_object, struct ftfont_info.
10858 (ftfont_has_char): Use ftfont_get_fc_charset.
10859 (ftfont_otf_features, ftfont_otf_capability): New functions.
10860 (ftfont_shape): Use ftfont_get_otf.
10861 (ftfont_text_extents): Fix initial setting of metrics.
10862
10863 * xftfont.c (struct xftfont_info): New member ft_size. Make the
10864 member order compatible with struct ftfont_info.
10865 (xftfont_open): Add FC_CHARSET to the pattern. Set
10866 xftfont_info->ft_size. Don't unlock the face. Check BDF
10867 properties if appropriate.
10868 (xftfont_close): Unlock the face.
10869 (xftfont_anchor_point, xftfont_shape): Deleted.
10870 (syms_of_xftfont): Don't set members anchor_point and shape of
10871 xftfont_driver.
10872
10873 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
10874 font_make_object.
10875
10876 * w32font.c (w32font_open): Adjust it for the change of
10877 font_make_object.
10878 (w32font_open_internal): Don't set properties of font_object here.
10879
10880 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
10881
10882 * macfns.c (x_create_tip_frame):
10883 * w32fns.c (x_create_tip_frame):
10884 * xfns.c (x_create_tip_frame): Pass parameter argument to
10885 face-set-after-frame-default.
10886
10887 * xfaces.c (Finternal_merge_in_global_face): Save merged
10888 attributes for the default face back into the face vector.
10889
10890 2008-07-08 Andreas Schwab <schwab@suse.de>
10891
10892 * fontset.h: Declare fontset_from_font. Don't declare
10893 new_fontset_from_font and fontset_from_font_name.
10894 * xterm.c: Include "fontset.h".
10895 * Makefile.in (xterm.o): Update dependencies.
10896
10897 2008-07-08 Glenn Morris <rgm@gnu.org>
10898
10899 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
10900 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
10901
10902 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
10903
10904 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
10905 (x_set_frame_parameters): Don't bind it.
10906
10907 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
10908
10909 * w32fns.c (map_w32_filename): Declare extern.
10910
10911 2008-07-07 Jason Rumney <jasonr@gnu.org>
10912
10913 * w32term.c (WS_EX_LAYERED): Define if not already.
10914
10915 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
10916
10917 * xfaces.c (set_font_frame_param): Don't try to set the font
10918 parameter if it is still unspecified in the lface.
10919
10920 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
10921
10922 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
10923 face if it didn't already exist.
10924
10925 * xdisp.c (try_window_id): Give up if word-wrapping is on.
10926
10927 2008-07-05 Andreas Schwab <schwab@suse.de>
10928
10929 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
10930
10931 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
10932
10933 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
10934 word-wrapping.
10935 (IT_DISPLAYING_WHITESPACE): New macro.
10936 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
10937 when word-wrapping. Simplify word-wrapping logic. Use correct
10938 pixel positions when saving copies of the iterator.
10939 (display_line): Use proper wrap point if the last character on a
10940 line was preceded by whitespace.
10941
10942 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10943
10944 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
10945
10946 2008-07-04 Kenichi Handa <handa@m17n.org>
10947
10948 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
10949
10950 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
10951
10952 2008-07-02 Jason Rumney <jasonr@gnu.org>
10953
10954 * xfns.c (syms_of_xfns): Only define x-select-font when both
10955 HAVE_FREETYPE and USE_GTK.
10956
10957 * xdisp.c (next_element_from_display_vector): Move assignment out
10958 of if statement.
10959
10960 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
10961
10962 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
10963
10964 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
10965 (syms_of_fileio): Initialize and export them.
10966 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
10967
10968 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
10969 (Fsystem_move_file_to_trash): New function.
10970 (syms_of_w32fns): Export it to lisp.
10971
10972 2008-07-01 Jason Rumney <jasonr@gnu.org>
10973
10974 * w32font.c (w32font_text_extents): Don't count overhang as part
10975 of width.
10976
10977 2008-06-30 Miles Bader <miles@gnu.org>
10978
10979 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
10980 Add `avoid_cursor_p' field.
10981
10982 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
10983 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
10984 (append_glyph, append_composite_glyph, produce_image_glyph)
10985 (append_stretch_glyph): Initialize avoid_cursor_p.
10986 (get_it_property): Rename from `get_line_height_property'.
10987 (x_produce_glyphs): Use get_it_property.
10988 (handle_line_prefix, push_display_prop): New functions.
10989 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
10990 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
10991 New variables.
10992 (syms_of_xdisp): Initialize them.
10993
10994 2008-06-30 Kenichi Handa <handa@m17n.org>
10995
10996 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
10997 XftDefaultSubstitute (they are called in XftFontMatch).
10998 (xftfont_open): Fix args to ftfont_font_format.
10999
11000 * ftfont.c (fc_charset_table): New member lang.
11001 (ftfont_resolve_generic_family): New arg pattern.
11002 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
11003 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
11004 (ftfont_open): Fix args to ftfont_font_format.
11005 (ftfont_font_format): New arg filename.
11006
11007 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
11008
11009 * xfaces.c (Finternal_merge_in_global_face): If default face was
11010 modified, realize it again. Update the font face attribute.
11011
11012 2008-06-29 Jason Rumney <jasonr@gnu.org>
11013
11014 * w32term.c (x_set_frame_alpha): Fix logic.
11015
11016 2008-06-29 Kenichi Handa <handa@m17n.org>
11017
11018 * fontset.c (Finternal_char_font): Return font-object instead of
11019 font-name.
11020
11021 * composite.c (get_composition_id): Fix the width calculation for TAB.
11022
11023 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
11024
11025 * indent.c (Fvertical_motion): Properly handle float column arg.
11026
11027 2008-06-28 Jason Rumney <jasonr@gnu.org>
11028
11029 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
11030 (pfnSetLayeredWindowAttributes): New function pointer.
11031 (w32_initialize): Initialize it when supported.
11032 (x_set_frame_alpha): New function.
11033
11034 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
11035 (w32_frame_parm_handlers): Set alpha handler.
11036
11037 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
11038
11039 2008-06-27 Jason Rumney <jasonr@gnu.org>
11040
11041 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
11042 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
11043 (w32_to_x_charset, x_to_w32_charset)
11044 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
11045 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
11046 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
11047 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
11048 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
11049 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
11050 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
11051 (Qw32_charset_unicode): Remove.
11052 (syms_of_w32fns): Update for above changes.
11053
11054 * w32font.c (w32_to_x_charset, x_to_w32_charset)
11055 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
11056 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
11057 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
11058 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
11059 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
11060 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
11061 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
11062 (syms_of_w32font): Update for above changes.
11063
11064 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
11065
11066 * s/usg5-4.h: Fix previous change: keep the correct branch of a
11067 removed #if.
11068 (USG_SHARED_LIBRARIES): Remove duplicate definition.
11069
11070 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
11071 Eli Zaretskii <eliz@gnu.org>
11072
11073 * makefile.w32-in (LOCAL_FLAGS):
11074 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
11075
11076 * sysdep.c (_spawnlp, _getpid):
11077 Declare with explicit _cdecl instead of _CRTAPI1.
11078
11079 * editfns.c (Fget_internal_run_time):
11080 Check for WINDOWSNT with #ifdef, not #if.
11081
11082 2008-06-26 Jason Rumney <jasonr@gnu.org>
11083
11084 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
11085
11086 * w32term.c (x_draw_glyph_string_foreground)
11087 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
11088 Use FONT_HANDLE macro.
11089 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
11090
11091 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
11092 (uniscribe_encode_char): Use FONT_HANDLE macro.
11093
11094 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
11095 (w32font_text_extents): Use precast w32_font.
11096 (w32font_close): Free cached metrics.
11097 (w32font_open_internal): Allocate space for name on stack.
11098
11099 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
11100
11101 * xdisp.c (extend_face_to_end_of_line): Fix last change.
11102
11103 2008-06-26 Jason Rumney <jasonr@gnu.org>
11104
11105 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
11106 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
11107
11108 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
11109
11110 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
11111
11112 2008-06-26 Jason Rumney <jasonr@gnu.org>
11113
11114 * w32bdf.c, w32bdf.h: Remove obsolete files.
11115
11116 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
11117
11118 * w32gui.h: Don't include w32bdf.h.
11119 (XCharStruct, enum w32_char_font_type, W32FontStruct):
11120 Remove obsolete font support.
11121
11122 * w32font.h (struct w32font_info): Remove compat_w32_font.
11123 Add hfont member.
11124 (FONT_COMPAT): Remove obsolete macro.
11125
11126 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
11127 (w32font_encode_char, w32font_text_extents): Use new hfont member.
11128 (w32font_open_internal): Remove compat code. Set new hfont member.
11129 (Fx_select_font): Use new hfont member.
11130
11131 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
11132 (uniscribe_encode_char): Use new hfont member.
11133
11134 * w32term.c (x_draw_glyph_string_foreground)
11135 (x_draw_composite_glyph_string_foreground): Use new hfont member.
11136 (x_draw_glyph_string): Use metrics in w32font_info.
11137
11138 2008-06-26 Kenichi Handa <handa@m17n.org>
11139
11140 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
11141
11142 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
11143
11144 * unexnext.c:
11145 * m/ews4800.h:
11146 * m/hp9000s300.h:
11147 * m/ibm370aix.h:
11148 * m/mips-siemens.h:
11149 * m/ncr386.h:
11150 * m/next.h:
11151 * m/pmax.h:
11152 * m/powerpcle.h:
11153 * m/tandem-s2.h:
11154 * s/386bsd.h:
11155 * s/bsd386.h:
11156 * s/bsd4-1.h:
11157 * s/bsd4-2.h:
11158 * s/bsdos2-1.h:
11159 * s/bsdos2.h:
11160 * s/bsdos3.h:
11161 * s/bsdos4.h:
11162 * s/nextstep.h:
11163 * s/ultrix4-3.h:
11164 * s/usg5-0.h:
11165 * s/usg5-2-2.h:
11166 * s/usg5-2.h:
11167 * s/usg5-4-3.h:
11168 * s/ux4800.h:
11169 * s/uxpds.h:
11170 * s/uxpv.h: Remove support for obsolete systems.
11171 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
11172 Remove, insert contents in s/hpux10-20.h.
11173 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
11174 Remove, insert contents in s/aix4-2.h.
11175 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
11176 * s/bsd4-3.h: Rename to ...
11177 * s/bsd-common.h: ... this.
11178 * data.c:
11179 * doc.c:
11180 * ecrt0.c:
11181 * emacs.c:
11182 * fileio.c:
11183 * floatfns.c:
11184 * keyboard.c:
11185 * mem-limits.h:
11186 * print.c:
11187 * process.c:
11188 * sysdep.c:
11189 * syssignal.h:
11190 * systty.h:
11191 * syswait.h:
11192 * term.c:
11193 * unexec.c:
11194 * unexelf.c:
11195 * unexhp9k800.c:
11196 * m/hp800.h:
11197 * m/ibmrs6000.h:
11198 * m/mips.h:
11199 * m/vax.h:
11200 * s/darwin.h:
11201 * s/freebsd.h:
11202 * s/gnu.h:
11203 * s/ms-w32.h:
11204 * s/msdos.h:
11205 * s/netbsd.h:
11206 * s/template.h: Remove references to obsolete variables.
11207
11208 * Makefile.in: Add dependencies for all unexec files.
11209 (admindir): Remove unused variable.
11210 (UNEXEC_SRC): Remove references.
11211
11212 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
11213
11214 * xfns.c (x_default_font_parameter): If Xft is available, first
11215 try Monospace-12 for the default font.
11216
11217 2008-06-25 Jason Rumney <jasonr@gnu.org>
11218
11219 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
11220
11221 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11222
11223 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
11224
11225 * buffer.c (syms_of_buffer): Remove default-word-wrap.
11226
11227 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
11228
11229 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
11230 <scroll-conservatively>: Fix typo in docstring.
11231
11232 * xselect.c (Fx_send_client_event): Doc fix.
11233
11234 2008-06-25 Kenichi Handa <handa@m17n.org>
11235
11236 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
11237
11238 * font.c (font_parse_fcname): Remove unused variables.
11239 (font_sort_entites): Delete the arg SPEC. Caller changed.
11240 Fix for the case of ! best_only.
11241 (font_delete_unmatched): Check DPI and AVGWIDTH too.
11242
11243 * lisp.h (Fstring_to_unibyte): EXFUN it.
11244
11245 * character.h (str_to_unibyte): Extern it.
11246
11247 * character.c (str_to_unibyte): New function.
11248
11249 * fns.c (Fstring_to_unibyte): New function.
11250 (syms_of_fns): Defsubr it.
11251
11252 2008-06-24 Kenichi Handa <handa@m17n.org>
11253
11254 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
11255 DPI too.
11256 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
11257
11258 2008-06-24 Andreas Schwab <schwab@suse.de>
11259
11260 * Makefile.in (${lispsource}loaddefs.el): Rename from
11261 ../lisp/loaddefs.el.
11262 (bootstrap-clean): Do what distclean does but don't remove
11263 Makefile.
11264 (distclean): Depend on bootstrap-clean and remove Makefile.
11265
11266 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
11267
11268 * buffer.h (struct buffer): New member word_wrap.
11269
11270 * buffer.c (syms_of_buffer): New variables default-word-wrap and
11271 word-wrap.
11272 (init_buffer_once): Initialize them.
11273
11274 * dispextern.h (struct it): Replace bool truncate_lines_p with a
11275 line_wrap enum possessing three possible values.
11276
11277 * termopts.h: Replace truncate_partial_width_windows with
11278 Vtruncate_partial_width_windows.
11279
11280 * dispnew.c (direct_output_for_insert): Avoid direct output when
11281 inserting a space with word wrap on.
11282
11283 * indent.c (compute_motion): Obey integer values of
11284 truncate-partial-width-windows.
11285
11286 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
11287 replacing truncate_partial_width_windows.
11288 (init_iterator): If Vtruncate_partial_width_windows is an integer,
11289 truncate only if the window width is below that integer.
11290 (start_display, resize_mini_window, produce_stretch_glyph)
11291 (display_string, move_it_in_display_line_to): Use line_wrap.
11292 (back_to_previous_visible_line_start, reseat_1): Reset
11293 string_from_display_prop_p.
11294 (display_line): Extend default face to end of line when wrapping.
11295
11296 2008-06-24 Kim F. Storm <storm@cua.dk>
11297
11298 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
11299 to wrap continued lines at word boundaries.
11300
11301 2008-06-24 Jason Rumney <jasonr@gnu.org>
11302
11303 * font.c (Ffont_face_attributes): Multiply pixel size before point
11304 conversion to avoid multiplying rounding error.
11305
11306 2008-06-23 Jason Rumney <jasonr@gnu.org>
11307
11308 * w32term.c (x_draw_glyph_string_background)
11309 (x_draw_glyph_string): Remove old bdf font code.
11310
11311 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
11312
11313 2008-06-22 Kenichi Handa <handa@m17n.org>
11314
11315 * font.c (font_find_for_lface): Try the adstyle specified in
11316 the property of LFACE_FONT of LFACE (if any).
11317
11318 2008-06-21 Seiji Zenitani <zenitani@mac.com>
11319 Ryo Yoshitake <ryo@shiftmode.net>
11320
11321 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
11322
11323 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
11324
11325 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
11326 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
11327 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
11328 (witness-emacs): Remove.
11329 (lisp, shortlisp): Move loaddefs.el earlier.
11330 (mostlyclean): Forget about witness-emacs.
11331
11332 2008-06-22 Glenn Morris <rgm@gnu.org>
11333
11334 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
11335 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
11336
11337 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11338
11339 * Makefile.in (PRECOMP): Remove.
11340 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
11341 (witness-emacs): Run `compile-first'.
11342 (.el.elc): Use the new compile-onefile target.
11343
11344 2008-06-21 Kenichi Handa <handa@m17n.org>
11345
11346 * xftfont.c (xftfont_open): Handle QCembolden only when
11347 FC_EMBOLDEN is defined.
11348
11349 2008-06-21 Andreas Schwab <schwab@suse.de>
11350
11351 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
11352 (.el.elc): Likewise.
11353
11354 2008-06-21 Miles Bader <miles@gnu.org>
11355
11356 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
11357 build dir, not the lisp source dir.
11358
11359 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11360
11361 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
11362 (bootstrapclean): Remove.
11363 (.el.elc): New rule.
11364 (PRECOMP): New var.
11365 (../lisp/subdirs.el): Remove.
11366 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
11367 (witness-emacs): New target.
11368 (mostlyclean): Remove witness-emacs as well.
11369 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
11370 Add witness-emacs dependency.
11371
11372 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
11373
11374 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
11375 defined by the font.
11376
11377 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11378
11379 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
11380 (bootstrap-clean): New target that keeps TAGS around.
11381 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
11382 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
11383
11384 2008-06-20 Jason Rumney <jasonr@gnu.org>
11385
11386 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
11387 Remove obsolete font code.
11388
11389 * w32font.c (font_matches_spec): Use csb bitfield from font signature
11390 to determine language support.
11391
11392 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11393
11394 * sysdep.c (cfsetspeed): New fun extracted from the code.
11395 (cfmakeraw): Move before first use.
11396
11397 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
11398
11399 * sysdep.c (cfmakeraw): Provide fallback implementation.
11400 (serial_configure): Provide fallback implementation of cfsetspeed.
11401
11402 2008-06-20 Kenichi Handa <handa@m17n.org>
11403
11404 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
11405 the pattern.
11406
11407 * fontset.c (fontset_from_font): Copy font_spec before changing
11408 the elements.
11409
11410 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
11411
11412 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11413
11414 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
11415 for explicit `font' parameters.
11416
11417 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
11418
11419 2008-06-19 Kenichi Handa <handa@m17n.org>
11420
11421 * frame.c: Include <ctype.h>.
11422 (x_set_font_backend): Allow spacing characters in the X resource
11423 for FontBackend.
11424
11425 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
11426
11427 * w32fns.c, xfns.c (Qfont_param): New var.
11428 (syms_of_w32fns): Initialize it.
11429 (x_default_font_parameter): Record explicit `font' into
11430 `font-parameter'.
11431
11432 2008-06-18 Kenichi Handa <handa@m17n.org>
11433
11434 * font.c (font_parse_xlfd): Fix previous change.
11435 (font_parse_fcname): Don't use :fc-unknown-spec.
11436 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
11437 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
11438 (font_add_log): Prepend the driver name to the resulting fonts.
11439
11440 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
11441 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
11442 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
11443
11444 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
11445 (QCembolden): New variables.
11446 (syms_of_xftfont): DEFSYM them.
11447 (xftfont_open): Call XftFontMatch. Don't trust the result of
11448 XftTextExtents8 if the pixel_size is less than 5.
11449
11450 2008-06-18 Andreas Schwab <schwab@suse.de>
11451
11452 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
11453 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
11454
11455 2008-06-18 Jason Rumney <jasonr@gnu.org>
11456
11457 * w32font.c (w32font_list, w32font_match): Add logging.
11458
11459 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
11460
11461 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
11462
11463 * font.c (font_parse_fcname): Store divider characters for
11464 unknown-spec list. For known key symbols, intern using correct
11465 symbol name.
11466
11467 2008-06-17 Kenichi Handa <handa@m17n.org>
11468
11469 * xfaces.c (realize_default_face): If the frame is not on window
11470 system, set the fontset of face to nil.
11471
11472 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
11473
11474 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
11475
11476 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
11477
11478 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
11479 (build_font_name_from_vector): Delete externs.
11480
11481 * xfaces.c (struct font_name): Don't declare.
11482
11483 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
11484
11485 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
11486
11487 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
11488
11489 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
11490
11491 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
11492
11493 * font.c (Ffont_spec): Fix usage in docstring.
11494 (Ffont_face_attributes): Doc fix.
11495
11496 2008-06-16 Andreas Schwab <schwab@suse.de>
11497
11498 * font.c (Ffont_face_attributes): Fix definition.
11499
11500 2008-06-16 Jason Rumney <jasonr@gnu.org>
11501
11502 * font.h (font_style_symbolic_from_value): Remove.
11503
11504 * font.c (font_style_symbolic_from_value): Remove.
11505 (font_style_symbolic): Revert to pre 2008-06-13 version.
11506
11507 * w32font.c (w32_to_fc_weight): New function.
11508 (w32font_full_name, logfont_to_fcname): Use it.
11509
11510 2008-06-16 Kenichi Handa <handa@m17n.org>
11511
11512 * font.c (font_check_object): Delete it.
11513 (font_clear_cache): Check if a font-object is alive.
11514 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
11515 font-object to nil.
11516 (font_close_object): Don't check FONT_CLOSE_OBJECT.
11517 (font_at): Don't call font_check_object.
11518 (Ffont_get): Return a symbol for :weight, :slant, and :width.
11519
11520 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
11521
11522 * puresize.h (BASE_PURESIZE): Increase to 1230000.
11523
11524 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
11525
11526 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
11527
11528 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
11529
11530 * font.c (font_parse_fcname): Only one decimal point.
11531 (font_unparse_fcname): Handle data in family and foundry indices
11532 as symbols, not strings.
11533 (font_unparse_gtkname, Ffont_face_attributes): New functions.
11534
11535 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
11536
11537 * font.h (font_unparse_gtkname): Add prototype.
11538
11539 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
11540
11541 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
11542
11543 2008-06-15 Andreas Schwab <schwab@suse.de>
11544
11545 * font.c (font_update_drivers): Fix crash when no drivers match.
11546
11547 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
11548
11549 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
11550 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
11551
11552 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
11553
11554 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
11555
11556 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
11557
11558 * process.c (Fserial_process_configure, Fprocess_send_eof):
11559 Use EQ to compare Lisp_Objects.
11560
11561 2008-06-13 Jason Rumney <jasonr@gnu.org>
11562
11563 * w32fns.c (Fw32_select_font): Remove old font API function.
11564
11565 * w32font.c (logfont_to_fcname): New function.
11566 (Fx_select_font): New font dialog function compatible with
11567 GTK/fontconfig version.
11568
11569 * font.c (font_style_symbolic_from_value): New function.
11570 (font_style_symbolic): Use it.
11571
11572 * font.h (font_style_symbolic_from_value): Declare new function.
11573
11574 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
11575
11576 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
11577 <font-width-table>: Fix typos in docstrings.
11578
11579 2008-06-13 Daniel Engeler <engeler@gmail.com>
11580
11581 These changes add serial port access.
11582 * process.c: Add HAVE_SERIAL.
11583 (Fdelete_process, Fprocess_status, Fset_process_buffer)
11584 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
11585 (list_processes_1, select_wrapper, Fstop_process)
11586 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
11587 (status_notify): Modify to handle serial processes.
11588 [HAVE_SERIAL] (Fserial_process_configure)
11589 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
11590 New functions.
11591 * process.h (struct Lisp_Process): Add `type'.
11592 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
11593 New functions.
11594 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
11595 serial ports.
11596 (serial_open, serial_configure): New functions.
11597 * w32.h: Add FILE_SERIAL.
11598 (struct _child_process): Add ovl_read, ovl_write.
11599
11600 2008-06-13 Kenichi Handa <handa@m17n.org>
11601
11602 * dispextern.h (enum lface_attribute_index): New member
11603 LFACE_FOUNDRY_INDEX.
11604
11605 * font.c (font_score): Delete arg alternate_families. Check only
11606 weight, slant, width, and size. Ignore the difference of alias
11607 style symbols.
11608 (font_sort_entites): Adjust for the above change. Reflect the
11609 order of font-driver to scores.
11610 (font_list_entities): Don't check alternate_familes here.
11611 (font_clear_prop): Handle foundry.
11612 (font_update_lface): Don't parse "foundry-family" form here.
11613 Handle FONT_FOUNDRY_INDEX.
11614 (font_find_for_lface): Likewise. Handle alternate families here.
11615 If registry is nil, try iso8859-1 and ascii-0.
11616 (font_open_for_lface): Pay attention to size in ENTITY.
11617 (font_open_by_name): Simplify by calling font_load_for_lface.
11618 (free_font_driver_list): Delete it.
11619 (font_update_drivers): Preserve the order of backends.
11620 (syms_of_font): Setting of sort_shift_bits adjusted for the change
11621 of font_score and font_sort_entites.
11622 (font_update_sort_order): Likewise.
11623
11624 * xfaces.c (LFACE_FOUNDRY): New macro.
11625 (check_lface_attrs): Check foundry.
11626 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
11627 (merge_face_vectors): Check foundry.
11628 (merge_face_ref): Likewise.
11629 (Finternal_set_lisp_face_attribute): Likewise.
11630 (x_update_menu_appearance): Likewise.
11631 (Finternal_get_lisp_face_attribute): Likewise.
11632 (lface_hash): Likewise.
11633 (lface_same_font_attributes_p): Likewise.
11634 (x_supports_face_attributes_p): Likewise.
11635 (tty_supports_face_attributes_p): Likewise.
11636 (Finternal_set_alternative_font_family_alist): Intern strings.
11637 (Finternal_set_alternative_font_registry_alist): Downcase strings.
11638 (realize_default_face): Set LFACE_FOUNDRY (lface).
11639
11640 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
11641 font-driver at first.
11642
11643 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
11644
11645 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
11646
11647 * lread.c (Fload): Use xfree, not free on saved_doc_string.
11648
11649 2008-06-12 Jim Meyering <meyering@redhat.com>
11650
11651 Make unexec_free handle NULL the same way free does.
11652 * unexmacosx.c (unexec_free): Ignore a NULL argument.
11653
11654 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
11655
11656 * character.h (CHAR_TO_BYTE_SAFE): New macro.
11657 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
11658 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
11659 (WEAK_ALIAS): Simplify.
11660 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
11661 when searching a unibyte buffer.
11662
11663 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
11664
11665 * xfns.c (Fx_select_font): Rename from x-font-dialog.
11666
11667 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
11668
11669 * w32font.c: Include ctype.h.
11670
11671 2008-06-11 Jason Rumney <jasonr@gnu.org>
11672
11673 * w32font.c (w32font_encode_char): Detect missing glyphs that are
11674 misreported as space.
11675 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
11676 as aliases for registry iso10646-1.
11677
11678 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11679
11680 * buffer.c (clone_per_buffer_values): Skip `name'.
11681
11682 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
11683
11684 * font.c (font_parse_fcname): Fix last change; accept decimal
11685 points in font size.
11686
11687 2008-06-10 Jason Rumney <jasonr@gnu.org>
11688
11689 * w32uniscribe.c (add_opentype_font_name_to_list):
11690 Skip non unicode fonts.
11691
11692 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
11693
11694 * xfns.c (Fx_font_dialog): New function.
11695
11696 * gtkutil.c (xg_dialog_response_cb): Rename from
11697 xg_file_response_callback.
11698 (pop_down_dialog): Rename from pop_down_file_dialog.
11699 (xg_get_file_name): Callers changed.
11700 (xg_get_font_name): New function.
11701
11702 * gtkutil.h (xg_get_font_name): Insert prototype.
11703
11704 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
11705
11706 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
11707 x_underline_minimum_display_offset.
11708 (syms_of_xdisp): Declare it here rather than in xterm.c.
11709 * dispextern.h (underline_minimum_offset): Declare it.
11710 * w32term.c (x_draw_glyph_string): Use it.
11711 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
11712 (syms_of_xterm): Don't declare it any more.
11713 (x_draw_glyph_string): Adjust to the new name.
11714
11715 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
11716
11717 * xterm.c (x_underline_minimum_display_offset): New var.
11718 (x_draw_glyph_string): Use it.
11719 (syms_of_xterm): Declare it.
11720
11721 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
11722
11723 * font.c (font_parse_fcname): Accept GTK-style font names too.
11724
11725 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
11726
11727 * dired.c (file_name_completion): Don't return t if the match is exact
11728 but with different capitalization.
11729 * minibuf.c (Ftry_completion): Simplify.
11730
11731 * window.c (Vwindow_point_insertion_type): New var.
11732 (set_window_buffer): Use it.
11733 (syms_of_window): Init and export it to Lisp.
11734
11735 2008-06-10 Kenichi Handa <handa@m17n.org>
11736
11737 * font.h (font_intern_prop): Prototype adjusted.
11738
11739 * font.c (font_intern_prop): New arg force_symbol.
11740 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
11741 Adjust for the change of font_intern_prop.
11742
11743 * ftfont.c (ftfont_pattern_entity):
11744 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
11745 (w32_registry):
11746 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
11747 the change of font_intern_prop.
11748
11749 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
11750
11751 * w32menu.c (digest_single_submenu): Declare extern.
11752
11753 2008-06-09 Jason Rumney <jasonr@gnu.org>
11754
11755 * w32term.c (x_make_frame_visible): Use alternate restore flags.
11756
11757 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
11758 (parse_single_submenu): Remove.
11759 (digest_single_submenu): Remove.
11760 (syms_of_w32menu): Don't initialise variables that have moved
11761 to menu.c.
11762 (set_frame_menubar): Sync with version in xmenu.c.
11763 (w32_menu_show): Sync with xmenu_show in xmenu.c.
11764
11765 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
11766 Make static again.
11767
11768 2008-06-09 Jason Rumney <jasonr@gnu.org>
11769
11770 Changes to w32 files related to the move of common menu code
11771 to menu.c on 2008-06-08 by Chong Yidong.
11772
11773 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
11774 defs to w32gui.h.
11775 (single_keymap_panes, push_menu_item, push_menu_pane):
11776 Make globally visible.
11777
11778 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
11779 (local_free, malloc_widget_value, free_widget_value)
11780 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
11781 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
11782 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
11783 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
11784 (menu_items, menu_items_allocated, menu_items_used)
11785 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
11786 (init_menu_items, finish_menu_items, discard_menu_items)
11787 (grow_menu_items, push_submenu_start, push_submenu_end)
11788 (push_left_right_boundary, push_menu_pane, push_menu_item)
11789 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
11790 (free_menubar_widget_tree_value, parse_single_submenu)
11791 (update_submenu_strings): Remove functions.
11792 (xmalloc_widget_value): Remove and declare extern.
11793
11794 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
11795 (OBJ1): Build it.
11796
11797 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
11798 (local_heap, local_alloc, local_free, malloc_widget_value)
11799 (free_widget_value): Define here.
11800
11801 2008-06-09 Kenichi Handa <handa@m17n.org>
11802
11803 * font.h (Qascii_0): Extern it.
11804
11805 * font.c (Qascii_0): New variable.
11806 (syms_of_font): DEFSYM it.
11807 (font_open_by_name): If the registry "iso8859-1" fails, try also
11808 "ascii-0".
11809
11810 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
11811
11812 2008-06-08 Kenichi Handa <handa@m17n.org>
11813
11814 * .gdbinit (xfont): New command.
11815
11816 2008-06-08 Andreas Schwab <schwab@suse.de>
11817
11818 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
11819 * Makefile.in (menu.o): Update dependencies.
11820
11821 * Makefile.in (obj): Always add menu.o.
11822 * emacs.c (main): Always call syms_of_menu.
11823 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
11824
11825 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
11826
11827 * Makefile.in: Compile menu.c.
11828
11829 * lisp.h: Declare syms_of_menu.
11830
11831 * emacs.c (main): Call syms_of_menu.
11832
11833 * keyboard.h: Relocate platform-independent menu definitions from
11834 xmenu.c.
11835
11836 * menu.c: New file. Relocate platform-independent menu
11837 definitions from xmenu.c. Suggested by Adrian Robert.
11838
11839 * xmenu.c: Remove platform-independent menu definitions.
11840 (menu_items, menu_items_inuse, menu_items_allocated)
11841 (menu_items_used, menu_items_n_panes)
11842 (menu_items_submenu_depth): Move to keyboard.h.
11843 (init_menu_items, finish_menu_items, unuse_menu_items)
11844 (discard_menu_items, restore_menu_items, save_menu_items)
11845 (grow_menu_items, push_submenu_start, push_submenu_end)
11846 (push_left_right_boundary, push_menu_pane, push_menu_item)
11847 (keymap_panes, single_keymap_panes, single_menu_item)
11848 (list_of_panes, list_of_items, find_and_call_menu_selection)
11849 (xmalloc_widget_value, free_menubar_widget_value_tree)
11850 (parse_single_submenu, digest_single_submenu)
11851 (update_submenu_strings): Move to menu.c.
11852
11853 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11854
11855 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
11856
11857 2008-06-06 Miles Bader <miles@gnu.org>
11858
11859 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
11860 face, not frame default.
11861
11862 2008-06-05 Martin Rudalics <rudalics@gmx.at>
11863
11864 * window.c (pop_up_windows, pop_up_frames)
11865 (display_buffer_reuse_frames, Vpop_up_frame_function)
11866 (Vdisplay_buffer_function, Veven_window_heights)
11867 (Vspecial_display_buffer_names, Vspecial_display_regexps)
11868 (Vspecial_display_function, Vsame_window_buffer_names)
11869 (Vsame_window_regexps, split_height_threshold)
11870 (Vsplit_window_preferred_function): Move those vars to window.el.
11871 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
11872 (Fdisplay_buffer): Move those functions to window.el.
11873 (syms_of_window): Remove corresponding declarations.
11874 (display_buffer): New function.
11875 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
11876 * dispnew.c (Flast_nonminibuf_frame): New function.
11877 * buffer.c (Fpop_to_buffer): Move to window.el.
11878
11879 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11880
11881 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
11882
11883 2008-06-05 Kenichi Handa <handa@m17n.org>
11884
11885 * coding.c (detect_coding): Fix previous change.
11886 (detect_coding_system): Likewise.
11887
11888 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11889
11890 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
11891
11892 * keymap.c (Vminibuffer_local_filename_must_match_map):
11893 Rename from Vminibuffer_local_must_match_filename_map.
11894 (syms_of_keymap):
11895 * minibuf.c (Fcompleting_read): Adjust accordingly.
11896 * commands.h: Rename declaration as well.
11897
11898 2008-06-05 Kenichi Handa <handa@m17n.org>
11899
11900 * font.c (Ffont_spec): Don't use font_parse_family_registry for
11901 family name.
11902 (Ffont_put): Likewise.
11903
11904 * fontset.c (fontset_find_font): Call font_open_for_lface with the
11905 current font-spec.
11906
11907 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
11908 is unspecified.
11909
11910 * xfaces.c (realize_x_face): If the font-related face attributes
11911 are the same as those of default face, realize a new fontset from
11912 default->fontset.
11913 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
11914
11915 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11916
11917 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
11918 (move_it_in_display_line): New wrapper.
11919
11920 * window.c (window_scroll_pixel_based_preserve_x)
11921 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
11922 (window_scroll_pixel_based, window_scroll_line_based):
11923 Use them to preserve column positions.
11924 (syms_of_window): Initialize them.
11925
11926 * indent.c (Fvertical_motion): Extend first arg to allow passing an
11927 (HPOS . VPOS) pair.
11928
11929 * dispextern.h (move_it_in_display_line): Declare.
11930
11931 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
11932
11933 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
11934 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
11935 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
11936
11937 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
11938
11939 * window.c (Fset_window_parameter): Doc fix.
11940 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
11941
11942 2008-06-04 Joakim Verona <joakim@verona.se>
11943
11944 * window.h (struct window): Add new member window_parameters.
11945
11946 * window.c (Fwindow_parameters, Fwindow_parameter)
11947 (Fset_window_parameter): New defuns.
11948 (syms_of_window): Defsubr the new defuns.
11949 (make_window): Initialize window_parameters to nil.
11950
11951 2008-06-04 John Paul Wallington <jpw@pobox.com>
11952
11953 * eval.c (Fdefmacro): Doc fix.
11954
11955 2008-06-04 Kenichi Handa <handa@m17n.org>
11956
11957 * coding.c (detect_coding): Fix handling of coding->head_ascii.
11958 Be sure to call setup_coding_system when we find a proper coding system.
11959 (detect_coding_system): Fix handling of coding->head_ascii.
11960
11961 2008-06-03 Andreas Schwab <schwab@suse.de>
11962
11963 * font.c (font_prop_validate_spacing): Fix last change.
11964
11965 2008-06-03 Kenichi Handa <handa@m17n.org>
11966
11967 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
11968 (font_parse_fcname): Fix handling of unknown key.
11969
11970 * xfont.c (xfont_list): Try an alias.
11971
11972 * charset.c (char_charset): Return NULL if the arg charset_list is
11973 specified and C doesn't belong to any of them.
11974
11975 2008-06-02 Chip Coldwell <coldwell@redhat.com>
11976
11977 * font.c (font_pixel_size): Don't take cdr of an integer.
11978
11979 2008-06-02 Jim Meyering <meyering@redhat.com>
11980
11981 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
11982 * alloc.c (xfree): Return right away for a NULL arg.
11983 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
11984 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
11985 * mac.c (create_apple_event_from_event_ref): Likewise.
11986 (create_apple_event_from_drag_ref, cfstring_create_normalized):
11987 Likewise.
11988 * doprnt.c (doprnt1): Likewise.
11989 * frame.c (frame): Likewise.
11990 * keyboard.c (wipe_kboard): Likewise.
11991 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
11992 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
11993 * term.c (tty_default_color_capabilities, maybe_fatal)
11994 (delete_tty): Likewise.
11995 * w16select.c (string): Likewise.
11996 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
11997 * w32bdf.c (w32_free_bdf_font): Likewise.
11998 * w32fns.c (w32_unload_font): Likewise.
11999 * w32font.c (w32font_close): Likewise.
12000 * window.c (size_window): Likewise.
12001 * xselect.c (receive_incremental_selection): Likewise.
12002 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
12003 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
12004 * w32.c (stat): Likewise.
12005
12006 Remove useless if-before-free tests.
12007 * editfns.c (Fset_time_zone_rule): Likewise.
12008 * lread.c (nosuffix): Likewise.
12009 * ralloc.c (get_bloc): Likewise.
12010 * regex.c (reg_free): Likewise.
12011 * xftfont.c (xftfont_open, xftfont_close): Likewise.
12012 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
12013 * xsmfns.c (smc_save_yourself_CB): Likewise.
12014
12015 2008-06-02 Kenichi Handa <handa@m17n.org>
12016
12017 * font.c (font_find_for_lface): Handle float font size.
12018 (font_open_for_lface): Likewise.
12019
12020 * xfaces.c (x_supports_face_attributes_p): Check face->font before
12021 comparing the properties.
12022
12023 2008-06-01 Jason Rumney <jasonr@gnu.org>
12024
12025 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
12026 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
12027 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
12028 Don't add empty script list.
12029 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
12030
12031 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
12032
12033 * Makefile.in (dot, dotdot): Remove, update users.
12034 ".." has been used elsewhere in the file for a long time.
12035 (LIBXT_STATIC): Remove conditional based on unused variable.
12036
12037 2008-06-01 Miles Bader <miles@gnu.org>
12038
12039 * xfaces.c (Vface_remapping_alist): New variable.
12040 (syms_of_xfaces): Initialize it.
12041 (enum named_merge_point_kind): New type.
12042 (struct named_merge_point): Add `named_merge_point_kind' field.
12043 (push_named_merge_point): Make cycle detection respect different
12044 named-merge-point kinds.
12045 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
12046 Remove face-name alias resolution.
12047 (lface_from_face_name): New definition using
12048 `lface_from_face_name_no_resolve'.
12049 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
12050 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
12051 (get_lface_attributes): New definition that layers face-remapping on
12052 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
12053 (lookup_basic_face): New function.
12054 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
12055 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
12056 `get_lface_attributes'.
12057 (face_at_buffer_position): Use `lookup_basic_face' to lookup
12058 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
12059 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
12060
12061 * xdisp.c (init_iterator): Pass base_face_id through
12062 `lookup_basic_face' when we actually use it as a face-id.
12063 (handle_single_display_prop): Use `lookup_basic_face' to lookup
12064 DEFAULT_FACE_ID.
12065
12066 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
12067 lookup the initial face-id.
12068
12069 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
12070
12071 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
12072
12073 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
12074 (Fremove_text_properties): Fix typos in docstrings.
12075
12076 2008-05-31 Kenichi Handa <handa@m17n.org>
12077
12078 * font.c (font_list_entities): Fix the car part of data to be
12079 stored in the cache.
12080
12081 * ftfont.c (ftfont_font_format): Don't use strcasestr.
12082
12083 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12084
12085 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
12086 Add a `test' argument so another predicate than `equal' can be used.
12087 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
12088 (map_char_table): Remove unused vars `c' and `i'.
12089 * lisp.h (Foptimize_char_table): Adjust declaration.
12090 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
12091
12092 2008-05-30 Kenichi Handa <handa@m17n.org>
12093
12094 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
12095 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
12096 defined.
12097
12098 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12099
12100 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
12101 (Fmake_variable_frame_local): Disallow mixing buffer-local and
12102 frame-local settings for the same variable.
12103
12104 2008-05-30 Kenichi Handa <handa@m17n.org>
12105
12106 * fontset.c (Ffont_info): Move to font.c.
12107 (syms_of_fontset): Delete defsubr of Sfont_info.
12108
12109 * font.c (font_style_to_value, font_score): Delete casting of the
12110 args to xstcasecmp.
12111 (register_font_driver): Increment num_font_drivers only when
12112 registering the driver globally.
12113 (Ffont_info): Move from fontset.c. Handle a font object too.
12114 (syms_of_font): Defsubr Sfont_info.
12115
12116 2008-05-29 Kenichi Handa <handa@m17n.org>
12117
12118 * coding.h (enum define_coding_utf8_arg_index): New enum.
12119 (enum coding_attr_index): Change coding_attr_utf_16_bom to
12120 coding_attr_utf_bom.
12121 (enum utf_bom_type): Rename from utf_16_bom_type.
12122 (struct utf_16_spec): Adjust for the above change.
12123 (struct coding_system): Add utf_8_bom in `spec' union.
12124
12125 * coding.c (CODING_UTF_8_BOM): New macro.
12126 (enum coding_category): Delete coding_category_utf_8, add
12127 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
12128 coding_category_utf_8_sig.
12129 (CATEGORY_MASK_UTF_8): Delete it.
12130 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
12131 (CATEGORY_MASK_UTF_8_SIG): New macros.
12132 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
12133 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
12134 CATEGORY_MASK_UTF_8_SIG.
12135 (CATEGORY_MASK_UTF_8): New macro.
12136 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
12137 (detect_coding_utf_8): Check BOM.
12138 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
12139 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
12140 (encode_coding_utf_16): Likewise.
12141 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
12142 (detect_coding, detect_coding_system): Handle utf-8-auto.
12143 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
12144 (syms_of_coding): Fix setting up of Vcoding_category_table.
12145
12146 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
12147
12148 * process.c (Faccept_process_output): If `millisec' is non-nil,
12149 `seconds' default to 0.
12150 (wait_reading_process_output): Also return non-nil if we read output
12151 from a non-running process.
12152
12153 2008-05-29 Jason Rumney <jasonr@gnu.org>
12154
12155 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
12156 `raster' specified.
12157 (add_font_entity_to_list): Allow non-opentype truetype fonts back
12158 in the uniscribe backend, but disallow any font that has no
12159 unicode subrange support.
12160
12161 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
12162
12163 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
12164 Fix typos in docstrings.
12165
12166 2008-05-29 Kenichi Handa <handa@m17n.org>
12167
12168 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
12169 (Fx_family_fonts): Set frame correctly.
12170
12171 2008-05-28 Jason Rumney <jasonr@gnu.org>
12172
12173 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
12174
12175 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
12176
12177 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
12178 calling build_annotations.
12179
12180 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
12181
12182 * coding.c (Fdecode_coding_region, Fencode_coding_region)
12183 (Fencode_coding_string):
12184 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
12185 <latin-extra-code-table>: Fix typos in docstrings.
12186 (syms_of_coding) <coding-system-alist>: Doc fix.
12187 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
12188
12189 2008-05-28 Kenichi Handa <handa@m17n.org>
12190
12191 * fontset.c (Ffont_info): Don't call font_close_object.
12192
12193 * font.c (font_parse_family_registry): Use Ffont_put to validate
12194 foundry and family.
12195 (font_delete_unmatched): Don't check spacing.
12196 (font_list_entities): Add spacing to the spec to list fonts.
12197
12198 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
12199 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
12200
12201 * coding.c (encode_coding_raw_text): Fix previous change.
12202 (encode_coding_object): When the dst_object is a buffer and is
12203 different from src_object, move gap to PT.
12204
12205 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
12206
12207 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
12208
12209 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
12210
12211 * coding.c (encode_coding_raw_text): Set coding->produced_char for
12212 all branches. Compute it differently.
12213
12214 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
12215
12216 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
12217
12218 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
12219 into "else if () ... else ...".
12220
12221 2008-05-27 Jason Rumney <jasonr@gnu.org>
12222
12223 * w32font.c (w32font_open_internal): Determine if glyph indices
12224 are likely to work here.
12225
12226 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
12227
12228 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
12229 draw overlap glyphs with appropriate highlighting.
12230
12231 2008-05-27 Kenichi Handa <handa@m17n.org>
12232
12233 * xfont.c (xfont_open): Fix calculation of font->average_width.
12234
12235 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
12236
12237 * casefiddle.c (casify_object): Try to guess better whether the
12238 argument is a byte or a char.
12239
12240 2008-05-26 Andreas Schwab <schwab@suse.de>
12241
12242 * xselect.c (x_reply_selection_request): Properly handle format == 32.
12243 Always send multiples of format size.
12244
12245 * xterm.c (x_set_frame_alpha): Fix type mismatch.
12246
12247 2008-05-26 Jason Rumney <jasonr@gnu.org>
12248
12249 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
12250 (compute_metrics): Don't set failure if we just cleared the cache.
12251 (w32_weight_table): Remove unused variable.
12252 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
12253 backwards compatibility.
12254
12255 2008-05-25 Kenichi Handa <handa@m17n.org>
12256
12257 * w32term.c (x_draw_glyph_string):
12258 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
12259
12260 * xfaces.c: Delete unused function prototypes.
12261 (xstrlwr, font_frame): Delete them.
12262 (clear_face_cache): Delete unused variable.
12263
12264 * xftfont.c (xftfont_open): Delete unused variable.
12265 If underline_thickness is not 1, adjust underline_position.
12266
12267 * ftxfont.c (ftxfont_open): Delete unused variable.
12268
12269 * fontset.c (face_for_char): Optimize for the case of no charset
12270 property.
12271
12272 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
12273 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
12274 (otf_open, font_otf_capability, generate_otf_features)
12275 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
12276 Comment out by surrounding "#if 0" and "#endif" for the moment.
12277 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
12278 (syms_of_font): Codes for accessing above commented out.
12279
12280 2008-05-24 Eli Zaretskii <eliz@gnu.org>
12281
12282 * w32proc.c: Include dispextern.h.
12283
12284 * w32.c: Include dispextern.h.
12285
12286 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
12287
12288 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
12289 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
12290 Fix typos in docstrings.
12291
12292 2008-05-23 Jason Rumney <jasonr@gnu.org>
12293
12294 * xsmfns.c: Remove includes that are already included by config.h.
12295
12296 2008-05-23 Kenichi Handa <handa@m17n.org>
12297
12298 * charset.c (Qemacs, charset_emacs): New variables.
12299 (char_charset): Fix for non-Unicode characters.
12300 (syms_of_charset): Define charset_emacs.
12301
12302 * w32term.c (x_draw_glyph_string): Be sure to update
12303 s->underline_thickness and s->underline_position. Be sure to draw
12304 underline within the current line area.
12305
12306 * xterm.c (x_draw_glyph_string): Be sure to update
12307 s->underline_thickness and s->underline_position. Be sure to draw
12308 underline within the current line area.
12309
12310 * fontset.c: Delete unused variables and add casting for char *
12311 throughout the file.
12312 (fontset_font): Try the fallback fonts of the current fontset
12313 before consulting the default fontset.
12314
12315 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
12316
12317 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
12318
12319 2008-05-22 Jason Rumney <jasonr@gnu.org>
12320
12321 * font.c: Don't include strings.h.
12322
12323 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
12324
12325 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
12326 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
12327 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
12328 to call xstrcasecmp.
12329
12330 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
12331
12332 * fontset.c (fs_query_fontset): Use xstrcasecmp.
12333
12334 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
12335
12336 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
12337
12338 2008-05-22 Kenichi Handa <handa@m17n.org>
12339
12340 * puresize.h (BASE_PURESIZE): Increase to 1220000.
12341
12342 * font.c (font_prop_validate_style): Adjust for the format
12343 change of font_style_table.
12344
12345 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
12346 two args.
12347
12348 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
12349 two args.
12350
12351 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
12352
12353 * minibuf.c (keys_of_minibuf): Delete.
12354 * lisp.h (keys_of_minibuf): Delete.
12355 * emacs.c (main): Don't call keys_of_minibuf.
12356
12357 2008-05-22 Kenichi Handa <handa@m17n.org>
12358
12359 * ftfont.c (ftfont_resolve_generic_family): Rename from
12360 ftfont_list_generic_family. Return a single family for each
12361 generic family.
12362 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
12363 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
12364 Call font_add_log.
12365 (ftfont_match): Call font_add_log.
12366
12367 * font.h (Ffont_xlfd_name): EXFUN adjusted.
12368 (FONT_DEBUG): Define it.
12369 (font_add_log): Extern it.
12370 (font_assert): Rename from xassert.
12371
12372 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
12373 (xfont_list_family): Call font_add_log.
12374 (xfont_match): Likewise.
12375 (memq_no_quit): Delete.
12376
12377 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
12378 call of Ffont_xlfd_name.
12379
12380 * xfaces.c (struct table_entry, slant_table, weight_table)
12381 (swidth_table): Move to font.c.
12382
12383 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
12384 xassert are changed to font_assert. Delete many unused variables.
12385 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
12386 New variables.
12387 (struct table_entry): Move from xfaces.c and modified.
12388 (weight_table, slant_table, width_table): Move from xfaces.c and
12389 contents adjusted for the change of struct table_entry.
12390 (font_style_to_value, font_style_symbolic): Adjust for the
12391 format change of font_style_table.
12392 (font_parse_family_registry): Don't overwrite existing foundry and
12393 family of font_spec.
12394 (font_score): Fix calculation of diff for sizes.
12395 (font_sort_entites): Call font_add_log.
12396 (font_delete_unmatched): Return a newly created list.
12397 (font_list_entities): Fix previous change. Call font_add_log.
12398 (font_matching_entity, font_open_entity, font_close_entity):
12399 Call font_add_log.
12400 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
12401 (Finternal_set_font_style_table): Delete.
12402 (BUILD_STYLE_TABLE): New macro.
12403 (build_style_table): New function.
12404 (Vfont_log, font_log_env_checked): New variables.
12405 (font_add_log): New function.
12406 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
12407 Declare Lisp variables "font-weight-table", "font-slant-table",
12408 "font-width-table", and "font-log". Initialize font_style_table.
12409
12410 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
12411
12412 * xterm.c (x_set_frame_alpha): Move declarations before statements.
12413
12414 2008-05-21 Seiji Zenitani <zenitani@mac.com>
12415 Ryo Yoshitake <ryo@shiftmode.net>
12416
12417 * frame.c (Qalpha): Add a new frame parameter `alpha'.
12418 (Vframe_alpha_lower_limit): New variable.
12419 (x_set_alpha): New function.
12420
12421 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
12422
12423 * xfns.c (x-create-frame, Qalpha):
12424 Initialize the frame parameter `alpha'.
12425 * xterm.c (OPAQUE, OPACITY): New.
12426 (x_set_frame_alpha): New function.
12427 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
12428
12429 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
12430 * w32fns.c (w32_frame_parm_handlers): Likewise.
12431
12432 2008-05-20 Jason Rumney <jasonr@gnu.org>
12433
12434 * w32font.c (add_font_entity_to_list): Don't add non-opentype
12435 truetype fonts to opentype list.
12436
12437 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
12438
12439 * fontset.c (Ffontset_info): Doc fix.
12440 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
12441 <ignore-relative-composition>: Fix typos in docstrings.
12442
12443 * font.c (syms-of-font) <font-encoding-alist>:
12444 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
12445 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
12446 (Ffont_otf_alternates): Doc fixes.
12447
12448 2008-05-20 Kenichi Handa <handa@m17n.org>
12449
12450 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
12451 font.h through out the file.
12452 (FONT_DRIVERS): Rename from FONTOBJ.
12453 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
12454 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
12455
12456 * emacs.c (main): Call syms_of_font unconditionally.
12457
12458 * font.h (find_font_encoding): Extern it.
12459
12460 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
12461 fontset.c.
12462 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
12463 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
12464 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
12465 only when HAVE_WINDOW_SYSTEM is defined.
12466 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
12467 when HAVE_WINDOW_SYSTEM is defined.
12468
12469 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
12470 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
12471
12472 * xfaces.c: Include font.h unconditionally.
12473 (merge_face_ref, merge_face_vectors)
12474 (Finternal_set_lisp_face_attribute): Cancel the previous change.
12475
12476 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
12477
12478 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
12479 indirect_variable.
12480 * eval.c (lisp_indirect_variable): New fun.
12481 (Fuser_variable_p): Use it.
12482
12483 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
12484
12485 * lisp.h (indirect_variable):
12486 * data.c (indirect_variable, let_shadows_buffer_binding_p):
12487 Use Lisp_Symbol pointers rather than Lisp_Object.
12488 Adjust callers.
12489 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
12490 To this end, change calling-convention.
12491
12492 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
12493 if some non-hidden buffers are selected by string&pred.
12494
12495 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
12496
12497 * process.c (wait_reading_process_output): Always check status
12498 when in batch mode.
12499
12500 2008-05-19 Kenichi Handa <handa@m17n.org>
12501
12502 * font.c (font_list_entities): Fix handling of cache.
12503 (font_matching_entity): Likewise.
12504
12505 * ftfont.c (cs_iso8859_1): Delete.
12506 (ft_face_cache): New variable.
12507 (struct ftfont_info): New member fc_charset_idx.
12508 (ftfont_build_basic_charsets): Delete.
12509 (fc_charset_table): New variable.
12510 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
12511 . FC_CHARSET_IDX) as :font-entity property in the font entity.
12512 Callers changed.
12513 (ftfont_lookup_cache, ftfont_get_charset): New functions.
12514 (ftfont_spec_pattern): New argument fc_charset_idx.
12515 Check registry more rigidly. Change callers.
12516 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
12517 change of :font-entity property of the font.
12518
12519 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
12520 property of the font.
12521
12522 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
12523
12524 * coding.c (Fcoding_system_p): Rename argument to match docstring.
12525 (Funencodable_char_position, Fcheck_coding_systems_region)
12526 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
12527 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
12528 (Ffind_operation_coding_system, Fset_coding_system_priority)
12529 (Fcoding_system_eol_type): Doc fixes.
12530
12531 2008-05-17 Glenn Morris <rgm@gnu.org>
12532
12533 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
12534
12535 2008-05-16 Eli Zaretskii <eliz@gnu.org>
12536
12537 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
12538 and st_gid.
12539
12540 * frame.c (Fdelete_frame): Don't call font_update_drivers if
12541 HAVE_WINDOW_SYSTEM is not defined.
12542
12543 * xfaces.c (merge_face_ref, merge_face_vectors)
12544 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
12545 HAVE_WINDOW_SYSTEM is defined.
12546 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
12547
12548 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
12549
12550 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
12551
12552 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12553
12554 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
12555
12556 2008-05-15 Kenichi Handa <handa@m17n.org>
12557
12558 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
12559 preference.
12560
12561 2008-05-15 Glenn Morris <rgm@gnu.org>
12562
12563 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
12564
12565 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
12566
12567 * fns.c (init_fns): Don't initialize weak_hash_tables here.
12568 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
12569
12570 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
12571
12572 2008-05-15 Kenichi Handa <handa@m17n.org>
12573
12574 * ftfont.c (ftfont_list): Downcase family name to check generic
12575 families.
12576
12577 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
12578 font-spec for QCfont value.
12579
12580 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
12581 buffer. Check the return value of it.
12582
12583 2008-05-14 Jason Rumney <jasonr@gnu.org>
12584
12585 * w32term.c (w32_get_glyph_overhangs): Remove.
12586 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
12587
12588 2008-05-14 Kenichi Handa <handa@m17n.org>
12589
12590 * font.c (font_prop_validate): Make nil a valid value.
12591 (font_clear_cache): Check if the cached vector of entities is nil
12592 or not.
12593
12594 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12595
12596 * emacs.c (main_thread): Conditionalize on
12597 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
12598 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
12599
12600 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
12601 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
12602 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
12603
12604 2008-05-14 Kenichi Handa <handa@m17n.org>
12605
12606 * coding.c (detect_coding_iso_2022): Ignore a coding category that
12607 has no corresponding coding system.
12608
12609 2008-05-14 Jason Rumney <jasonr@gnu.org>
12610
12611 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
12612
12613 * w32font.h (w32font_open_internal): Update declaration.
12614
12615 * w32font.c (w32font_open_internal): Change last argument from
12616 w32font_info struct to font object. Fill in font object from
12617 font_entity. Get Outline metrics if possible. Use them to
12618 calculate underline position and thickness. Use xlfd name as name
12619 property. Don't set codepage.
12620 (w32font_open): Pass font_object to w32font_open_internal. Don't
12621 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
12622 (w32font_draw): Use s->font.
12623 (clear_cached_metrics): Don't clear non-existent blocks.
12624
12625 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
12626 font was not found.
12627 (x_draw_glyph_string): Use underline position and thickness from font.
12628
12629 * w32uniscribe.c (uniscribe_open): Pass font_object to
12630 w32font_open_internal.
12631
12632 2008-05-14 Kenichi Handa <handa@m17n.org>
12633
12634 These changes are to delete all legacy font-handling codes, and
12635 make Emacs use only font-backends.
12636
12637 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
12638 (frame.o, image.o, print.o): Depend on $(FONTSRC).
12639
12640 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
12641
12642 * charset.h (Vcharset_non_preferred_head)
12643 (Vcurrent_iso639_language): Extern them.
12644
12645 * charset.c (Vcharset_non_preferred_head): New variable.
12646 (Vcurrent_iso639_language): New variable.
12647 (syms_of_charset): Declare it as a Lisp variable.
12648 (char_charset): Don't check non preferred charsets. As a last
12649 resort, return charset_unicode.
12650 (Fset_charset_priority): Update Vcharset_non_preferred_head.
12651
12652 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
12653 conditionals. Don't check enable_font_backend. Delete all codes
12654 used only when USE_FONT_BACKEND is not defined.
12655
12656 * dispextern.h (struct glyph_string): Change type of `font' to
12657 `struct font *'.
12658 (struct glyph_string): New member underline_position and
12659 underline_thickness.
12660 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
12661 (struct face): Change type of `font' to `struct font *'. Remove
12662 members `font_name', `font_info_id'.
12663 (per_char_metric, encode_char): Delete externs.
12664 (calc_pixel_width_or_height): Adjust the prototype.
12665
12666 * emacs.c (enable_font_backend): Delete extern.
12667 (main): Don't set enable_font_backend. Don't check the command
12668 line argument "-disable-font-backend".
12669
12670 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
12671 (enum font_property_index): New members FONT_DPI_INDEX,
12672 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
12673 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
12674 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
12675 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
12676 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
12677 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
12678 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
12679 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
12680 (struct font_spec, struct font_entity): New structs.
12681 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
12682 (struct font): Many members from old "struct font_info" moved to
12683 here. Members font and entity deleted.
12684 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
12685 the new font-related objects.
12686 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
12687 (CHECK_FONT_GET_OBJECT): Likewise.
12688 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
12689 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
12690 (struct font_driver): New members case_sensitive anc check. Type
12691 of the member list and open changed.
12692 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
12693 (font_symbolic_width, font_find_object, font_get_spec)
12694 (font_set_lface_from_name): Delete extern.
12695 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
12696
12697 * font.c: Include <strings.h>.
12698 (enable_font_backend): Delete it.
12699 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
12700 (CHECK_VALIDATE_FONT_SPEC): Delete it.
12701 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
12702 (null_string): Delete it.
12703 (null_vector): Make it static.
12704 (font_family_alist): Delete it.
12705 (Qnormal): Extern it.
12706 (QCextra, QClanguage): Delete it.
12707 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
12708 (font_make_spec, font_make_entity, font_make_object)
12709 (font_intern_prop): Renamed from intern_downcase. Don't downcase
12710 the string. Callers changed.
12711 (font_pixel_size): Adjusted for the format change of font-related
12712 objects.
12713 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
12714 (font_style_to_value, font_style_symbolic): New function.
12715 (build_font_family_alist): Delete it.
12716 (font_registry_charsets): Use Fassoc_string instead of
12717 assq_no_quit.
12718 (font_prop_validate_symbol): Don't return null_string.
12719 (font_prop_validate_style): Adjusted for the change of
12720 style-related values in a font vector.
12721 (font_property_table): Delete entries for QClanguage and
12722 QCantialias, add entries for QCavgwidth.
12723 (get_font_prop_index): Delete the 2nd argument FROM.
12724 (font_prop_validate): Arguments changed.
12725 (font_put_extra): Adjusted for the change of font-related objects.
12726 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
12727 (font_parse_fcname, font_unparse_fcname)
12728 (font_prepare_composition): Likewise.
12729 (font_parse_family_registry): Renamed from font_merge_old_spec.
12730 (otf_open): Delete the 1st arg entity.
12731 (font_otf_capability): Adjusted for the above change.
12732 (font_score): New arg alternate_families. Adjusted for the change
12733 of font-related objects.
12734 (font_sort_entites): New arg best_only.
12735 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
12736 Delete them.
12737 (font_match_p): Check alternate families.
12738 (font_find_object): Delete it.
12739 (font_check_object): New function.
12740 (font_clear_cache): Adjusted for the change of font-related objects.
12741 (font_delete_unmatched): New arg.
12742 (font_list_entities): Call font_driver->list with a spec that
12743 doesn't specify style-related properties.
12744 (font_matching_entity): Arguments changed. Caller changed.
12745 (font_open_entity): Adjusted for the change of font-related objects.
12746 (font_close_object, font_has_char, font_encode_char)
12747 (font_get_name, font_get_spec): Likewise.
12748 (font_spec_from_name, font_clear_prop, font_update_lface):
12749 New functions.
12750 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
12751 (font_prepare_for_face, font_done_for_face, font_open_by_name)
12752 (font_at): Adjusted for the change of font-related objects.
12753 (font_range): New function.
12754 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
12755 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
12756 (Fcopy_font_spec, Fmerge_font_spec): New function.
12757 (Ffont_family_list): Renamed from list-families.
12758 (Finternal_set_font_style_table): Arguments changed.
12759 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
12760 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
12761 change of font-related objects.
12762 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
12763
12764 * fontset.h (struct font_info): Delete it. Most members go to
12765 struct font.
12766 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
12767 (enum FONT_SPEC_INDEX): Delete it.
12768 (font_info, list_fonts_func, load_font_func, query_font_func)
12769 (set_frame_fontset_func, find_ccl_program_func)
12770 (get_font_repertory_func, new_fontset_from_font_name): Delete
12771 externs.
12772 (fontset_from_font_name): Extern it.
12773 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
12774 (FONT_INFO_FROM_FACE): Deleted.
12775 (face_for_font): Adjust prototype.
12776
12777 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
12778 conditionals. Don't check enable_font_backend. Delete all codes
12779 used only when USE_FONT_BACKEND is not defined.
12780 (get_font_info_func, list_font_func, load_font_func)
12781 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
12782 (get_font_repertory_func): Delete them.
12783 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
12784 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
12785 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
12786 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
12787 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
12788 (fontset_compare_rfontdef): New function.
12789 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
12790 rfont-defs by qsort. Adjusted for the change of font-group vector.
12791 (load_font_get_repertory): Deleted.
12792 (fontset_find_font): Use new macros to ref/set elements of
12793 font-def and rfont-def.
12794 (fontset_font): Fix the timing of remembering that no font for C.
12795 (free_face_fontset): Do nothing if the face has no fontset.
12796 (face_suitable_for_char_p): Use new macros to ref/set elements of
12797 rfont-def.
12798 (face_for_char): Likewise. Call face_for_char with font_object.
12799 (fs_load_font): Delete. Delete #pragma surrounding it.
12800 (fs_query_fontset): Use strcasecmp instead of strcmp.
12801 (generate_ascii_font_name): Adjusted for the format change of
12802 font-spec.
12803 (Fset_fontset_font): Likewise. Use new macros to set elements of
12804 font-def.
12805 (Fnew_fontset): Use font_unparse_xlfd to generate
12806 FONTSET_ASCII (fontset).
12807 (new_fontset_from_font_name): Deleted.
12808 (fontset_from_font): Renamed from new_fontset_from_font. Check if
12809 a fontset is already created for the font. FIx updating of
12810 Vfontset_alias_alist.
12811 (fontset_ascii_font): Deleted.
12812 (Ffont_info): Adjusted for the format change of font-spec.
12813 (Finternal_char_font): Likewise.
12814 (Ffontset_info): Likewise.
12815 (syms_of_fontset): Don't check load_font_func.
12816
12817 * fns.c (internal_equal): Handle PREV_FONT.
12818
12819 * frame.h: Delete USE_FONT_BACKEND conditional.
12820
12821 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
12822 conditionals. Don't check enable_font_backend. Delete all codes
12823 used only when USE_FONT_BACKEND is not defined.
12824 (x_set_font): Call x_new_font, not x_new_fontset2.
12825 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
12826 already set for the frame.
12827
12828 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
12829 a font-entity by font_make_entity. Use font_intern_prop instead
12830 of intern_downcase. Use FONT_SET_STYLE to set a style-related
12831 font property. If a font is scalable, set avgwidth property to 0.
12832 Set font-entity property by font_put_extra.
12833 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
12834 (ffont_driver): Adjusted for the change of struct font_driver.
12835 (ftfont_spec_pattern): New function.
12836 (ftfont_list): Return a list, not vector.
12837 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
12838 (ftfont_list_family): Don't downcase names.
12839 (ftfont_free_entity): Deleted.
12840 (ftfont_open): Return a font-object. Adjusted for the change of
12841 struct font. Get underline_thickness and underline_position from
12842 font property. Don't update dpyinfo->smallest_font_height and
12843 dpyinfo->smallest_char_width.
12844 (ftfont_close): Don't free `struct font'.
12845 (ftfont_has_char): Adjusted for the format change of font-entity.
12846 (ftfont_encode_char, ftfont_text_extents): Likewise.
12847
12848 * ftxfont.c (ftxfont_list): Return a list, not vector.
12849 (ftxfont_open): Return a font-object. Adjusted for the change of
12850 struct font. Get underline_thickness and underline_position from
12851 font property. Don't update dpyinfo->smallest_font_height and
12852 dpyinfo->smallest_char_width.
12853 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
12854 (ftxfont_draw): Adjusted for the change of struct font.
12855
12856 * image.c (image_ascent): Don't include "charset.h". Include
12857 "character.h" and "font.h".
12858
12859 * lisp.h (enum pvec_type): New member PREV_FONT.
12860 (Fassoc_string): EXFUN it.
12861
12862 * print.c: Include font.h.
12863 (print_object): Handle font-related objects.
12864
12865 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
12866 conditionals. Don't check enable_font_backend. Delete all codes
12867 used only when USE_FONT_BACKEND is not defined.
12868 (handle_auto_composed_prop): Do nothing if it->f is not on a
12869 window system. Check how many following characters can be
12870 displayed by the same font.
12871 (calc_pixel_width_or_height): Type of the 4th arg is changed to
12872 'struct font *'.
12873 (get_char_face_and_encoding): Assign the whole encoding task to
12874 the `encode-char' method of a font driver.
12875 (fill_composite_glyph_string): Adjusted for the change of `struct
12876 face' and `struct glyph_string'.
12877 (fill_glyph_string): Likewise.
12878 (get_per_char_metric): Arguments changed.
12879 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
12880 and `struct glyph_string'.
12881 (produce_stretch_glyph, calc_line_height_property)
12882 (x_produce_glyphs): Likewise.
12883
12884 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
12885 conditionals. Don't check enable_font_backend. Delete all codes
12886 used only when USE_FONT_BACKEND is not defined. Use
12887 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
12888 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
12889 (Qp): Extern them.
12890 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
12891 Deleted.
12892 (struct font_name): Deleted.
12893 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
12894 (compare_fonts_by_sort_order): New function.
12895 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
12896 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
12897 Deleted.
12898 (Fx_family_fonts): Use font_list_entities, and sort fonts by
12899 compare_fonts_by_sort_order.
12900 (Fx_font_family_list): Call Ffont_family_list.
12901 (face_numeric_value, face_numeric_weight, face_numeric_slant)
12902 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
12903 (face_symbolic_slant, face_symbolic_swidth)
12904 (split_font_name_into_vector, build_font_name_from_vector)
12905 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
12906 (font_rescale_ratio, split_font_name, build_font_name)
12907 (free_font_names, sort_fonts, x_face_list_fonts)
12908 (face_font_available_p, sorted_font_list, cmp_font_names)
12909 (font_list_1, concat_font_list, font_list, remove_duplicates):
12910 Deleted.
12911 (Fx_list_fonts): Use Ffont_list.
12912 (LFACE_AVGWIDTH): Deleted.
12913 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
12914 by FONTP.
12915 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
12916 (set_lface_from_font_name): Delete it.
12917 (set_lface_from_font): Renamed from
12918 set_lface_from_font_and_fontset. Caller changed. Don't set
12919 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
12920 for face.
12921 (merge_face_vectors): Copy font-spec if necessary.
12922 Clear properties of the font-spec if necessary.
12923 (merge_face_ref): Clear properties of the font-spec if necessary.
12924 (Finternal_set_lisp_face_attribute): Likewise.
12925 (set_font_frame_param): Use font_load_for_lface to load a
12926 font-object, and call Fmodify_frame_parameters with it.
12927 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
12928 font name by Ffont_xlfd_name.
12929 (Finternal_lisp_face_attribute_values): Don't check QCweight,
12930 QCslant, and QCwidth.
12931 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
12932 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
12933 Compare fonts by EQ.
12934 (lookup_non_ascii_face): Deleted.
12935 (face_for_font): The 2nd argument changed.
12936 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
12937 Check atomic font properties by case insensitive.
12938 (realize_non_ascii_face): Set face->overstrike correctly.
12939 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
12940 (dump_realized_face): Get font name from
12941 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
12942
12943 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
12944 conditionals. Don't check enable_font_backend. Delete all codes
12945 used only when USE_FONT_BACKEND is not defined.
12946 (xic_create_xfontset): Original code deleted and renamed from
12947 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
12948 (x_make_gc): Don't set GCFont in GCs.
12949 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
12950 opened by "fixed".
12951 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
12952 find_ccl_program_func, query_font_func, set_frame_fontset_func,
12953 get_font_repertory_func.
12954
12955 * xfont.c: Include <stdlib.h> and "ccl.h".
12956 (struct xfont_info): New structure.
12957 (xfont_query_font): Deleted.
12958 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
12959 moved from xterm.c.
12960 (xfont_driver): Adjusted for the change of struct font_driver.
12961 (compare_font_names): New function.
12962 (xfont_list_pattern): Sort font names case insensitively. Make
12963 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
12964 (xfont_list): Return a list, not vector.
12965 (xfont_match): If the font doesn't have QCname property, generate
12966 a name from the other font properties.
12967 (xfont_open): Return a font-object. Adjusted for the change of
12968 struct font. Get underline_thickness and underline_position from
12969 font property. Don't update dpyinfo->smallest_font_height and
12970 dpyinfo->smallest_char_width.
12971 (xfont_close): Don't free struct font.
12972 (xfont_prepare_face): Adjusted for the change of struct font.
12973 (xfont_done_face): Deleted.
12974 (xfont_has_char): Adjusted for the change of struct font.
12975 (xfont_encode_char, xfont_draw): Likewise.
12976 (xfont_check): New function.
12977
12978 * xftfont.c (xftfont_list): Adjusted for the change of `list'
12979 callback function.
12980 (xftfont_match): Adjusted for the format change of font-entity.
12981 (xftfont_open): Adjusted for the format change of font-entity and
12982 font-object. Adjusted for the change of struct font. Return a
12983 font-object. Don't update dpyinfo->smallest_font_height and
12984 dpyinfo->smallest_char_width.
12985 (xftfont_close): Block input while calling XftFontClose.
12986 (xftfont_prepare_face): Don't block input while calling
12987 xftfont_get_colors. Adjusted for the change of struct font.
12988 (xftfont_shape): Return value of error case fixed.
12989
12990 * xrdb.c (x_load_resources): Don't setup a fontset resource.
12991
12992 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
12993 conditionals.
12994 (FONT_WIDTH): Return (f)->max_width.
12995 (struct x_display_info): Delete member `font'.
12996 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
12997 (x_find_ccl_program, x_get_font_repertory): Delete externs.
12998 (struct x_output): Change type of `font' to `struct font *'.
12999
13000 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
13001 conditionals. Don't check enable_font_backend. Delete all codes
13002 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
13003 (x_per_char_metric, x_encode_char): Deleted.
13004 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
13005 (x_compute_glyph_string_overhangs): Adjusted for the change of
13006 `struct face'.
13007 (x_draw_glyph_string_foreground)
13008 (x_draw_composite_glyph_string_foreground): Likewise.
13009 (x_draw_glyph_string): Likewise. Use font->underline_position and
13010 font->underline_thickness.
13011 (x_new_font): Renamed from x_new_fontset2.
13012 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
13013 (x_check_font): Call `check' method of a font driver.
13014 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
13015 (x_query_font, x_get_font_repertory): Deleted.
13016 (x_find_ccl_program): Renamed and moved to xfont.c.
13017 (x_redisplay_interface): Adjusted for the change of `struct
13018 redisplay_interface'.
13019
13020 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
13021 conditionals. Don't check enable_font_backend. Delete all codes
13022 used only when USE_FONT_BACKEND is not defined. Surround non-used
13023 code by "#ifdef OLD_FONT" and "endif".
13024 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
13025
13026 * w32font.h (struct w32font_info): New member.
13027 (FONT_COMPAT): New macro.
13028 (w32font_open_internal): Prototype adjusted.
13029
13030 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
13031 OLD_FONT" and "endif".
13032
13033 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
13034 conditionals. Don't check enable_font_backend. Delete all codes
13035 used only when USE_FONT_BACKEND is not defined.
13036 (w32font_open): Return a font-object. Make a font-object by
13037 font_make_object. Adjusted for the change of struct w32font_info.
13038 (w32font_close): Don't free struct font. Adjusted for the change
13039 of struct w32font_info.
13040 (w32font_encode_char, w32font_text_extents, w32font_draw):
13041 Adjusted for the change of struct w32font_info.
13042 (w32font_draw): Likewise.
13043 (w32font_list_internal): Return a list, not vector.
13044 (w32font_open_internal): Change the 4th arg to font-object.
13045 Adjusted for the change of struct w32font_info and font-object format.
13046 (add_font_name_to_list): Don't downcase names.
13047 (w32_enumfont_pattern_entity): Make a font-entity by
13048 font_make_entity. Adjusted for the format change of font-entity.
13049 Use FONT_SET_STYLE to set a style-related font property. If a
13050 font is scalable, set avgwidth property to 0. Set font-entity
13051 property by font_put_extra.
13052 (font_matches_spec): Adjusted for the format change of font-entity.
13053 (w32_weight_table, w32_decode_weight): New variables.
13054 (w32_encode_weight): New function.
13055 (fill_in_logfont): Adjusted for the format change of font-spec.
13056 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
13057 weight value.
13058 (w32font_driver): Adjusted for the change of struct font_driver.
13059
13060 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
13061 conditionals. Don't check enable_font_backend. Surround non-used
13062 code by "#ifdef OLD_FONT" and "endif".
13063 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
13064 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
13065
13066 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
13067 conditionals. Don't check enable_font_backend. Delete all codes
13068 used only when USE_FONT_BACKEND is not defined. Surround non-used
13069 code by "#ifdef OLD_FONT" and "endif".
13070
13071 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
13072 (uniscribe_open): Return value changed to font-object.
13073 Adjusted for the format change of font-object.
13074 (uniscribe_otf_capability): Adjusted for the change of struct font.
13075 (add_opentype_font_name_to_list): Don't downcase names.
13076 (uniscribe_font_driver): Adjusted for the change of struct
13077 font_driver.
13078
13079 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
13080
13081 * dispnew.c (update_frame_1): Check if tty output is still valid
13082 before flushing it.
13083
13084 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
13085
13086 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
13087 to Gtk+ menus.
13088
13089 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
13090
13091 * dired.c (file_name_completion): Tweak the code so as to always do it
13092 in a single pass. Tighten the scope of some variables.
13093
13094 * dired.c (Qdefault_directory): New var.
13095 (file_name_completion): Use it instead of Fexpand_file_name.
13096 (syms_of_dired): Initialize it.
13097
13098 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13099
13100 * fileio.c (double_dollars): Remove dead code.
13101
13102 2008-05-10 Eli Zaretskii <eliz@gnu.org>
13103
13104 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
13105 Mention w32-get-true-file-attributes in doc string.
13106
13107 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
13108
13109 2008-05-09 Glenn Morris <rgm@gnu.org>
13110
13111 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
13112 2008-04-23.
13113
13114 2008-05-09 Eli Zaretskii <eliz@gnu.org>
13115
13116 Support for reporting owner and group of each file on MS-Windows:
13117 * dired.c (stat_uname, stat_gname): New functions, with special
13118 implementation for w32.
13119 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
13120
13121 * w32.c: Rename the_passwd_* to dflt_passwd_*.
13122 (dflt_group_name): New static variable.
13123 (dflt_group): Rename from the_group.
13124 (init_user_info): Init dflt_group fields. Get user's group name
13125 from LookupAccountSid.
13126 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
13127 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
13128 New initialization states.
13129 (globals_of_w32): Initialize them to zero. Initialize the default
13130 group name to "None".
13131 (GetFileSecurity_Name): New global var, the name of the function
13132 to call for GetFileSecurity.
13133 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
13134 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
13135 (get_file_security, get_security_descriptor_owner)
13136 (get_security_descriptor_group, is_valid_sid)
13137 (get_file_security_desc, get_rid, get_name_and_id)
13138 (get_file_owner_and_group): New functions.
13139 (stat): Use get_file_security_desc and get_file_owner_and_group to
13140 report the owner and primary group of each file. Don't ignore the
13141 high 32 bits of file's size, now that st_size is 64-bit wide.
13142 Fix test when to get true file attributes.
13143 (init_user_info): Use get_rid instead of equivalent inline code.
13144 (fstat): Don't ignore the high 32 bits of file's size.
13145
13146 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
13147
13148 * image.c (png_load): Use correct bit-depth for setting background
13149 color.
13150
13151 2008-05-08 Eli Zaretskii <eliz@gnu.org>
13152
13153 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
13154 epa-hook.elc.
13155
13156 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
13157
13158 * font.c (Ffont_match_p): Don't use `iff' in docstring.
13159
13160 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
13161
13162 * macfns.c (Fx_create_frame): Make a copy of frame parameters
13163 because the original parameters are in pure storage now.
13164 (mac_window): Remove unused params. Update callers.
13165
13166 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13167
13168 * lread.c (substitute_object_recurse): Use lower-level primitives.
13169 Don't signal errors when traversing sub-char-tables.
13170 Don't loop over all the possible characters when traversing char-tables.
13171
13172 * print.c (print_preprocess): Add sub-char-tables to the print-table,
13173 just like we do in print.c.
13174
13175 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
13176
13177 * minibuf.c (Ftry_completion): Remove code left over from when we used
13178 scmp instead of Fcompare_strings.
13179
13180 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
13181
13182 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
13183
13184 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13185
13186 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
13187 Create bitmap context in native byte order.
13188
13189 * macterm.c (XDrawLine)
13190 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
13191 context in native byte order.
13192
13193 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13194
13195 * config.in: Regenerate.
13196
13197 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
13198 New definitions for Image I/O support.
13199 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
13200 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
13201 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
13202 (mac_data_provider_release_data, image_load_image_io)
13203 [USE_MAC_IMAGE_IO]: New functions.
13204 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
13205 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
13206 (init_image_func_pointer) [MAC_OSX]: Remove function.
13207 (image_load_quartz2d) [MAC_OSX]: Check availability of
13208 CGImageCreateWithPNGDataProvider at compile time.
13209 Use lowercase `false' for boolean constant.
13210 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
13211 Use image_load_image_io.
13212 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
13213 Don't check MyCGImageCreateWithPNGDataProvider.
13214 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
13215 Don't call init_image_func_pointer.
13216
13217 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
13218
13219 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
13220 Make variable non-static.
13221 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
13222 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
13223
13224 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
13225 (RED_FROM_ULONG): Mask off higher bits.
13226 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
13227
13228 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
13229 Include AvailabilityMacros.h.
13230 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
13231 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
13232
13233 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13234
13235 * chartab.c (Fset_char_table_range): If range is t, really set all
13236 chars to that value.
13237
13238 2008-05-03 Eli Zaretskii <eliz@gnu.org>
13239
13240 * dired.c (Ffile_attributes): Don't allow the device number become
13241 negative.
13242
13243 2008-05-02 Daiki Ueno <ueno@unixuser.org>
13244
13245 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
13246
13247 2008-05-02 Juri Linkov <juri@jurta.org>
13248
13249 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
13250 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
13251 DEFAULT argument as a list of default values in docstrings.
13252
13253 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
13254
13255 * puresize.h (BASE_PURESIZE): Increase to 1210000.
13256
13257 2008-05-01 Martin Rudalics <rudalics@gmx.at>
13258
13259 * dispnew.c (change_frame_size_1): Preserve small windows when
13260 shrinking frames by calling set_window_height|width with third
13261 arg 2.
13262
13263 * window.h (struct window): Replace field too_small_ok by field
13264 resize_proportionally.
13265
13266 * window.c (make_window): Initialize resize_proportionally.
13267 (enlarge_window): Temporarily set resize_proportionally to make
13268 sure that shrink_windows does scale the window proportionally.
13269 (shrink_windows): When window has resize_proportionally set try
13270 to shrink it proportionally by stealing from other windows.
13271 (struct saved_window, Fset_window_configuration)
13272 (compare_window_configurations): Handle resize_proportionally.
13273 (WINDOW_TOTAL_SIZE): New macro.
13274 (window_min_size, shrink_windows, size_window): Use it.
13275 (check_min_window_sizes): Remove. Invalid values of
13276 window-min-height|width are handled by window_min_size_2 now.
13277 (size_window, Fsplit_window, enlarge_window)
13278 (adjust_window_trailing_edge, grow_mini_window): Don't call
13279 check_min_window_sizes.
13280 (window_min_size_2, window_min_size_1, window_min_size):
13281 New argument safe_p for retrieving "safe" minimum sizes.
13282 (Fdisplay_buffer, Fsplit_window, enlarge_window)
13283 (adjust_window_trailing_edge, grow_mini_window):
13284 Adjust arguments of window_min_size... functions.
13285 (shrink_windows): Argument min_size removed. New argument
13286 safe_p allows shrinking windows to their safe minimum sizes.
13287 Calculate minimum size and decide whether a window shall be
13288 deleted for each window individually.
13289 (size_window): When nodelete_p equals 2, tell shrink_windows to
13290 delete windows only if their new minimum size is no more safe.
13291 (shrink_window_lowest_first): Call window_min_size_1 to make
13292 sure to preserve modeline of bottom-most window when resizing
13293 the minibuffer.
13294 (Fset_window_configuration, Fcurrent_window_configuration)
13295 (compare_window_configurations): Do not handle
13296 window-min-height|width any more.
13297 (syms_of_window): Clarify window-min-height|width doc-strings.
13298
13299 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
13300
13301 * dired.c (file_name_completion): Fix up the encoding/decoding issue
13302 some more. Copy some of the code from Ftry_completions.
13303 Remove special case code that dates back to initial revision when the
13304 slash was only added when necessary and that can't trigger nowadays.
13305
13306 2008-04-27 Kenichi Handa <handa@m17n.org>
13307
13308 * font.c (font_prop_validate): Signal `error' instead of `font'.
13309
13310 2008-04-29 Jason Rumney <jasonr@gnu.org>
13311
13312 * w32fns.c (Fw32_battery_status): New defun.
13313 (syms_of_w32fns): Defsubr it.
13314
13315 2008-04-28 Andreas Schwab <schwab@suse.de>
13316
13317 * dired.c (file_name_completion): Fix another mixing of encoded
13318 and decoded names.
13319
13320 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
13321
13322 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
13323
13324 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
13325
13326 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
13327
13328 2008-04-27 Andreas Schwab <schwab@suse.de>
13329
13330 * dired.c (file_name_completion): Fix inappropriate mixing of
13331 encoded and decoded names.
13332
13333 * xterm.c (XTread_socket): Fix use of uninitialized variable.
13334
13335 * puresize.h (BASE_PURESIZE): Increase to 1200000.
13336
13337 2008-04-26 Eli Zaretskii <eliz@gnu.org>
13338
13339 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
13340 2008-03-31, it's not needed anymore with `struct stat' definition
13341 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
13342 for the same reasons.
13343
13344 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
13345
13346 * m/sparc.h: Additional redefinitions for GNU/Linux.
13347
13348 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13349
13350 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
13351 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
13352 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
13353 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
13354 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
13355 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
13356 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
13357 Likewise.
13358
13359 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
13360 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
13361 (mac_ax_number_of_characters): Add externs.
13362 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
13363 [USE_MAC_TSM]: Likewise.
13364 (mac_handle_text_input_event) [MAC_OSX]:
13365 Handle kEventTextInputOffsetToPos for no active input area case.
13366 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
13367 (mac_handle_document_access_event)
13368 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
13369 (install_application_handler) [MAC_OSX]: Register handlers for
13370 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
13371 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
13372 Register mac_handle_document_access_event.
13373
13374 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
13375 Make functions non-static.
13376
13377 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
13378
13379 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
13380 (read_file_name_completion_ignore_case, insert_default_directory)
13381 (Qdefault_directory): Move to minibuffer.el.
13382 (Fread_file_name): Call the new `read-file-name' instead.
13383
13384 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13385
13386 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
13387 Make function non-static.
13388 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
13389 Remove function.
13390 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
13391 Move to mactoolbox.c.
13392 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
13393
13394 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
13395 (mac_rect_make): New macro.
13396
13397 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
13398 instead of float.
13399 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
13400 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
13401 (XSetBackground) [USE_CG_DRAWING]: Likewise.
13402 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
13403 CGRectMake.
13404 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
13405 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
13406 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
13407 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
13408 instead of WindowRef in argument type.
13409 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
13410 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
13411 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
13412 instead of DISPLAY. All uses changed.
13413 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
13414 (x_calc_absolute_position): Simplify so as not to use
13415 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
13416
13417 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
13418 instead of WindowRef in argument type.
13419 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
13420 [TARGET_API_MAC_CARBON]: Remove externs.
13421 (create_apple_event, mac_event_parameters_to_lisp)
13422 [TARGET_API_MAC_CARBON]: Add externs.
13423
13424 * mactoolbox.c (Vmac_ts_script_language_on_focus)
13425 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
13426 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
13427 is clicked.
13428 (x_activate_menubar): Remove extern for saved_menu_event_location.
13429 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
13430 Move from mac.c.
13431
13432 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13433
13434 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
13435 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
13436
13437 2008-04-23 Jason Rumney <jasonr@gnu.org>
13438
13439 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
13440 attributes only for local files.
13441
13442 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
13443 default to Qlocal.
13444
13445 2008-04-22 Juri Linkov <juri@jurta.org>
13446
13447 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
13448 read-buffer-to-switch instead of using the letter "B".
13449
13450 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
13451
13452 * fileio.c (Qdefault_directory): New variable.
13453 (Fread_file_name): Use it to pass `dir' to the completion functions.
13454
13455 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
13456
13457 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
13458
13459 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13460
13461 * keyboard.c (Vpre_help_message): Remove.
13462 (show_help_echo): Remove default C code.
13463
13464 * dired.c (directory_files_internal, file_name_completion):
13465 Only call ENCODE_FILE if the string is indeed decoded.
13466
13467 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13468
13469 * Makefile.in (TOOLKIT_DEFINES): Remove.
13470 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
13471
13472 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13473
13474 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
13475 (mactoolbox.o): New target.
13476
13477 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
13478 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
13479
13480 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
13481 Use mac_set_frame_window_background instead of XSetWindowBackground.
13482 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
13483 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
13484 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
13485 instead of SetWindowTitleWithCFString.
13486 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
13487 Move function to mactoolbox.c.
13488 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
13489 Use mac_set_window_modified instead of SetWindowModified.
13490 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
13491 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
13492 (Fx_focus_frame): Use mac_front_non_floating_window instead of
13493 FrontNonFloatingWindow. Use mac_activate_window instead of
13494 ActivateWindow. Use mac_active_non_floating_window instead of
13495 ActiveNonFloatingWindow.
13496 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
13497 Use mac_show_hourglass and mac_hide_hourglass.
13498 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
13499 instead of GetGlobalMouse.
13500 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
13501 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
13502 Use mac_bring_window_to_front instead of BringToFront.
13503 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
13504 mactoolbox.c.
13505 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
13506 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
13507 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
13508 mactoolbox.c.
13509
13510 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
13511 (XtPointer): Move typedef from macmenu.c.
13512 (enum button_type): Move enum from macmenu.c.
13513 (widget_value): Move typedef from macmenu.c.
13514 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
13515 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
13516 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
13517 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
13518 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
13519 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
13520 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
13521 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
13522 (Selection): Move typedef from macselect.c.
13523 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
13524 macterm.c.
13525 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
13526 (mac_is_window_collapsed, mac_bring_window_to_front)
13527 (mac_send_window_behind, mac_hide_window, mac_show_window)
13528 (mac_collapse_window, mac_front_non_floating_window)
13529 (mac_active_non_floating_window, mac_activate_window)
13530 (mac_move_window_structure, mac_move_window, mac_size_window)
13531 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
13532
13533 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
13534 (enum mac_menu_kind): Move enum to mactoolbox.c.
13535 (min_menu_id): Move variable to mactoolbox.c.
13536 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
13537 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
13538 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
13539 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
13540 [TARGET_API_MAC_CARBON]: Likewise.
13541 (XtPointer): Move typedef to macgui.h.
13542 (enum button_type): Move enum to macgui.h.
13543 (widget_value): Move typedef to macgui.h.
13544 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
13545 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
13546 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
13547 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
13548 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
13549 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
13550 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
13551 (popup_activated_flag): Make variable non-static.
13552 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
13553 (add_menu_item, fill_menu, dispose_menus):
13554 Move functions to mactoolbox.c.
13555 (restore_show_help_function, menu_target_item_handler)
13556 (install_menu_target_item_handler, mac_handle_dialog_event)
13557 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
13558 [TARGET_API_MAC_CARBON]: Likewise.
13559 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
13560 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
13561 (find_and_call_menu_selection, name_is_separator): Make function
13562 non-static.
13563 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
13564 to mactoolbox.c.
13565 (set_frame_menubar): Don't call install_menu_quit_handler.
13566 (menu_item_selection): New variable.
13567 (mac_menu_show): Use create_and_show_popup_menu.
13568 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
13569 selection but set variable menu_item_selection. All uses changed.
13570 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
13571 Call install_menu_quit_handler. Move to mactoolbox.c.
13572
13573 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
13574 (Selection): Move typedef to macgui.h.
13575 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
13576 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
13577 Make variables non-static.
13578 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
13579 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
13580 Make functions non-static.
13581 (Vmac_service_selection) [MAC_OSX]: Likewise.
13582 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
13583 (mac_valid_selection_target_p, mac_clear_selection)
13584 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
13585 (mac_put_selection_value, mac_selection_has_target_p)
13586 (mac_get_selection_value, mac_get_selection_target_list)
13587 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
13588 Move functions to mactoolbox.c.
13589 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
13590 Likewise.
13591 (copy_scrap_flavor_data, mac_handle_service_event)
13592 (install_service_handler) [MAC_OSX]: Likewise.
13593 (syms_of_macselect) <Vmac_dnd_known_types>:
13594 Use mac_dnd_default_known_types.
13595
13596 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
13597 Move to mactoolbox.c.
13598 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
13599 (Fx_selection_owner_p): Add EXFUN.
13600 (install_window_handler, remove_window_handler, XSetWindowBackground):
13601 Remove externs.
13602 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
13603 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
13604 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
13605 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
13606 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
13607 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
13608 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
13609 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
13610 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
13611 (create_and_show_popup_menu, mac_get_selection_from_symbol)
13612 (mac_valid_selection_target_p, mac_clear_selection)
13613 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
13614 (mac_put_selection_value, mac_selection_has_target_p)
13615 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
13616 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
13617 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
13618 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
13619 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
13620 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
13621 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
13622 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
13623 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
13624
13625 * mactoolbox.c: New file.
13626
13627 2008-04-18 Jason Rumney <jasonr@gnu.org>
13628
13629 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
13630
13631 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13632
13633 * character.c (Fmultibyte_char_to_unibyte):
13634 Return latin1 chars unchanged.
13635
13636 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
13637 relocated if it points to `name'.
13638
13639 2008-04-17 Kenichi Handa <handa@m17n.org>
13640
13641 * data.c (Faset): Allow setting a multibyte character in an
13642 ASCII-only unibyte string.
13643
13644 * lisp.h (STRING_SET_MULTIBYTE): New macro.
13645
13646 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
13647
13648 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
13649 done in config.h.
13650
13651 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
13652
13653 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
13654 (Fchar_direction): Add usage in the docstring.
13655
13656 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
13657
13658 * keyboard.c (read_key_sequence): Remove always-true checks.
13659
13660 2008-04-14 Jason Rumney <jasonr@gnu.org>
13661
13662 * w32font.c (w32font_open_internal): Set max_bounds.descent in
13663 compatibility struct, for better underline positioning.
13664
13665 2008-04-13 David Hansen <david.hansen@gmx.net>
13666
13667 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
13668 string.
13669
13670 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
13671
13672 * m/hp800.h (XUINT, XSET): Remove.
13673
13674 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
13675
13676 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
13677 previous change.
13678
13679 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
13680
13681 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
13682 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
13683
13684 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13685
13686 * keymap.h (map_keymap_canonical): Declare.
13687 * xmenu.c (single_keymap_panes): Use it.
13688
13689 2008-04-11 Glenn Morris <rgm@gnu.org>
13690
13691 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
13692 set the target's value to that of the alias.
13693
13694 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13695
13696 * term.c (set_tty_color_mode): Left over typo.
13697
13698 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
13699
13700 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
13701 only after check for file name handler functions. Signal, when
13702 native functionality is not supported.
13703 (syms_of_fileio): Declare it unconditionally.
13704
13705 2008-04-10 Jason Rumney <jasonr@gnu.org>
13706
13707 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
13708 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
13709
13710 * w32.c (logon_network_drive): Also logon to remote drives that
13711 are mapped to drive letters.
13712
13713 2008-04-10 Glenn Morris <rgm@gnu.org>
13714
13715 * xdisp.c (truncate-partial-width-windows): Doc fix.
13716
13717 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13718
13719 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
13720 Move functions to minibuffer.el.
13721 (syms_of_fileio): Don't declare them.
13722
13723 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
13724
13725 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
13726 (syms_of_minibuf): Remove its initialization.
13727
13728 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
13729
13730 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
13731
13732 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
13733
13734 2008-04-09 Jason Rumney <jasonr@gnu.org>
13735
13736 * makefile.w32-in (distclean): Delete makefile too.
13737 (maintainer-clean): New target.
13738
13739 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
13740
13741 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
13742 for new font backend and composite cases.
13743
13744 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
13745
13746 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
13747 Most of the code moved to run_timers.
13748 (do_pending_atimers): Call run_timers.
13749 (run_timers): New function.
13750
13751 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
13752 run atimers.
13753
13754 * process.c (wait_reading_process_output): The same as above.
13755
13756 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
13757
13758 * minibuf.c (last_exact_completion): Remove variable.
13759 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
13760 (complete_and_exit_1, complete_and_exit_2)
13761 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
13762 (Fdisplay_completion_list, display_completion_list_1)
13763 (Fminibuffer_completion_help, Fself_insert_and_exit)
13764 (Fexit_minibuffer, Fminibuffer_message): Move functions to
13765 minibuffer.el.
13766 (syms_of_minibuf): Remove corresponding initializations.
13767
13768 * keyboard.c (Qdeactivate_mark): New var.
13769 (command_loop_1): Use it to call `deactivate-mark'.
13770 (syms_of_keyboard): Initialize it.
13771
13772 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
13773 to another frame.
13774 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
13775 Don't call set_tty_color_mode.
13776 (store_frame_param): Reset previous_frame rather than call
13777 set_tty_color_mode.
13778 * term.c (set_tty_color_mode): Rewrite.
13779 * dispextern.h (set_tty_color_mode): New type.
13780 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
13781
13782 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
13783
13784 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
13785 for generic chars, which do not exist any more in emacs-unicode.
13786
13787 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
13788
13789 * coding.c (detect_coding_emacs_mule)
13790 (Ffind_operation_coding_system): Fix typo.
13791
13792 2008-04-08 Jason Rumney <jasonr@gnu.org>
13793
13794 * w32uniscribe.c (SNAME): Extract only symbol name.
13795
13796 * w32font.h (struct w32_metric_cache): New struct.
13797 (w32font_info): Use it.
13798 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
13799 (CACHE_BLOCKSIZE): New constants.
13800
13801 * w32font.c (Qja, Qko, Qzh): New symbols.
13802 (syms_of_w32font): Initialise them.
13803 (font_matches_spec): Use them to filter by language.
13804 (recompute_cached_metrics): Remove function.
13805 (compute_metrics, clear_cached_metrics): New functions.
13806 (w32font_encode_char): Use them to manage metric cache.
13807 (w32font_text_extents): Cache metrics for all glyphs on demand.
13808 Delay converting glyph indices to WORD until needed.
13809 (w32font_open_internal): Initialize metric cache to empty.
13810 (registry_to_w32_charset): Charset should always be a symbol.
13811 (fill_in_logfont, list_all_matching_fonts): Family should
13812 always be a symbol.
13813
13814 2008-04-06 Jason Rumney <jasonr@gnu.org>
13815
13816 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
13817 Give up if glyph indices not supported. Use uniscribe obtained
13818 ABC widths for individual metrics. Map glyph clusters back to
13819 characters using fClusterStart flag. Return number of glyphs
13820 produced, not chars processed.
13821 (uniscribe_shape): Map char at FROM to current glyph.
13822
13823 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13824
13825 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
13826 Use SetMenuItemHierarchicalMenu.
13827
13828 2008-04-05 Jason Rumney <jasonr@gnu.org>
13829
13830 * image.c (pbm_load): Allow color values up to 65535.
13831 Throw an error if max_color_idx is outside the supported range.
13832 Report an error when image size is invalid.
13833 Read two bytes at a time when raw images have max_color_idx above 255.
13834
13835 2008-04-05 Eli Zaretskii <eliz@gnu.org>
13836
13837 * w32.c (readdir): If FindFirstFile/FindNextFile return in
13838 cFileName a file name that includes `?' characters, use the 8+3
13839 alias in cAlternateFileName instead.
13840
13841 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
13842
13843 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
13844 append "CCL: Quitted" when the CCL program is quitted.
13845 (setup_ccl_program): Initialize ccl->quit_silently to zero.
13846
13847 * ccl.h (struct ccl_program): New member quit_silently.
13848
13849 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
13850
13851 * search.c (compile_pattern_1): Treat non-nil and non-string of
13852 search-spaces-regexp as nil.
13853
13854 * minibuf.c (Fassoc_string): Tweak docstring.
13855
13856 2008-04-05 Eli Zaretskii <eliz@gnu.org>
13857
13858 * dired.c (Ffile_attributes): Support inode numbers wider than 32
13859 bits. Remove ugly WINDOWSNT-specific kludge introduced on
13860 2008-03-14 to force inode be positive.
13861
13862 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
13863 _S_* ones, since we now use our own sys/stat.h.
13864 (stat, fstat): Don't mangle the inode number.
13865 (init_user_info): Don't restrict UID and GID to 0-60000 range.
13866
13867 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13868
13869 * frame.h (struct frame): Give one more bit to `visible' since we use
13870 values larger than 1 to indicate obscured frames on ttys.
13871
13872 * keymap.c (Qkeymap_canonicalize): New var.
13873 (Fmap_keymap_internal): New fun.
13874 (describe_map): Use keymap-canonicalize.
13875
13876 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
13877 (Fundo_boundary): Set them.
13878 (syms_of_undo): Initialize them.
13879 (record_point): Use them instead of last_point_position*.
13880 (last_undo_buffer): Change type.
13881
13882 2008-04-04 Jason Rumney <jasonr@gnu.org>
13883
13884 * w32font.c (w32font_text_extents): Use font's ascent and descent.
13885 (recompute_cached_metrics): Don't set ascent and descent per char.
13886
13887 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
13888 (uniscribe_check_otf): Add GC protection before consing.
13889 Rearrange loop for counting features.
13890
13891 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
13892
13893 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
13894 buffer with byte-size of source buffer.
13895
13896 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
13897
13898 * callint.c (Fcall_interactively): Handle temporary region even
13899 when shift-select-mode is off.
13900
13901 2008-04-03 Jason Rumney <jasonr@gnu.org>
13902
13903 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
13904
13905 2008-04-03 Kenichi Handa <handa@m17n.org>
13906
13907 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
13908 (CATEGORY_MASK_UTF_16): Likewise.
13909 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
13910 binary file.
13911 (detect_coding): Add null-byte detection for a binary file.
13912 (detect_coding_system): Likewise.
13913
13914 2008-04-03 Jason Rumney <jasonr@gnu.org>
13915
13916 * w32uniscribe.c: New file.
13917
13918 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
13919
13920 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
13921
13922 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
13923 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
13924 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
13925 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
13926 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
13927 (Qphonetic): New symbols.
13928 (syms_of_w32font): Initialize them.
13929 (font_supported_scripts): Use them.
13930 (w32font_list_family): List all charsets.
13931 (w32font_text_extents, recompute_cached_metrics): Fix metric
13932 calculations.
13933 (w32_enumfont_pattern_entity): Make full_type a DWORD.
13934 Give opentype fonts their own format.
13935 (font_matches_spec): New arguments backend and logfont.
13936 Handle :otf spec for uniscribe backend.
13937 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
13938 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
13939
13940 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
13941 font backend.
13942 (globals_of_w32fns): Initialize uniscribe font backend.
13943
13944 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
13945 dependencies.
13946 (w32uniscribe.$(O)): New file to build.
13947 (FONT_OBJ): Include w32uniscribe.$(O).
13948 (LIBS): Add uniscribe libraries.
13949
13950 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
13951
13952 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
13953
13954 * callint.c (Vshift_select_mode): New var.
13955 (Finteractive): Document new ^ spec.
13956 (Fcall_interactively): Call handle-shift-selection if the ^ spec
13957 is present.
13958
13959 * keyboard.c (Vthis_command_keys_shift_translated): New var.
13960 (command_loop_1): Avoid running the direct display versions of
13961 forward-char and backward-char if shift-selection may occur.
13962 (read_key_sequence): Set Vthis_command_keys_shift_translated if
13963 shift-translation takes place.
13964
13965 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
13966 avoid clobbering by define-minor-mode.
13967
13968 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
13969 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
13970
13971 * syntax.c (Fforward_word): Add ^ interactive spec.
13972
13973 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
13974 (Fscroll_right): Add ^ interactive spec.
13975
13976 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
13977
13978 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
13979
13980 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
13981
13982 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
13983
13984 2008-03-31 Juri Linkov <juri@jurta.org>
13985
13986 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
13987
13988 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
13989
13990 * gtkutil.c (xg_set_geometry): Fix indentation.
13991 (xg_resize_outer_widget): Remove.
13992 (x_wm_size_hint_off): Fix indentation.
13993 (xg_frame_set_char_size): Call flush_and_sync after
13994 gtk_window_resize.
13995 (x_wm_set_size_hint): Pass NULL as geometry window to
13996 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
13997 Add menu bar and tool bar height to base height.
13998 (xg_update_frame_menubar, free_frame_menubar)
13999 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
14000 (update_frame_tool_bar, free_frame_tool_bar):
14001 Change xg_resize_outer_widget to xg_frame_set_char_size.
14002
14003 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
14004
14005 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
14006 (Fdbus_call_method): New parameter TIMEOUT.
14007 (dbus-send-signal): Optimize UNGCPRO call.
14008
14009 2008-03-29 Juri Linkov <juri@jurta.org>
14010
14011 * window.c (Fdisplay_buffer): Move call to
14012 Vsplit_window_preferred_function out of conditions that check
14013 if window is eligible for vertical splitting.
14014 When Vsplit_window_preferred_function is non-nil, call it and use
14015 its non-nil return value as window. Otherwise, continue doing
14016 vertical splitting using Fsplit_window with arg horflag=nil.
14017 (syms_of_window) <Vsplit_window_preferred_function>: Change the
14018 default value from `split-window' to nil.
14019
14020 2008-03-29 Juri Linkov <juri@jurta.org>
14021
14022 * callint.c (Fcall_interactively): Revert 2008-03-16 change
14023 for interactive code letters 'b' and 'B'.
14024
14025 2008-03-29 Eli Zaretskii <eliz@gnu.org>
14026
14027 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
14028 multibyte string.
14029
14030 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
14031
14032 * keyboard.c (pending_funcalls): New var.
14033 (timer_check): Run it.
14034 (syms_of_keyboard): Initialize it.
14035 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
14036 (Vdelete_terminal_functions): New vars.
14037 (syms_of_terminal): Initialize them.
14038 (Fdelete_terminal): Run delete-terminal-functions.
14039 * xdisp.c (safe_eval): Rewrite.
14040 (safe_call2): New fun.
14041 * frame.c (Qdelete_frame_functions): New var.
14042 (syms_of_frame): Initialize it.
14043 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
14044 * lisp.h (safe_call2, pending_funcalls): Declare.
14045
14046 2008-03-28 Andreas Schwab <schwab@suse.de>
14047
14048 * indent.c (Fmove_to_column): Move declaration before statements.
14049
14050 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
14051
14052 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
14053 (struct frame): Use bit fields for boolean vars.
14054
14055 * process.c (server_accept_connection): Simplify naming.
14056 (emacs_get_tty_pgrp): Use SDATA.
14057
14058 * coding.c (decode_coding_object): Fix last change.
14059
14060 2008-03-27 Jason Rumney <jasonr@gnu.org>
14061
14062 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
14063
14064 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
14065
14066 * charset.c (Fdefine_charset_internal): Change the way of
14067 registering charsets in Vcharset_order_list.
14068 (syms_of_charset): Make the charset `eight-bit' supplementary.
14069
14070 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
14071
14072 * regex.c (EXTEND_BUFFER): Change order of pointer addition
14073 operations, to avoid having the difference between pointers
14074 overflow.
14075
14076 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14077
14078 * indent.c (check_display_width): New fun.
14079 (scan_for_column): Use it.
14080
14081 * data.c (syms_of_data): Mark most-positive-fixnum and
14082 most-negative-fixnum as constants.
14083
14084 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
14085
14086 * indent.c (scan_for_column): Extract from current_column_1.
14087 Merge with the same code from Fmove_to_column.
14088 (current_column_1, Fmove_to_column): Use it.
14089
14090 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
14091
14092 * keymap.c (map_keymap_internal): New fun.
14093 (map_keymap): Use it.
14094 (Fmap_keymap_internal): New fun.
14095 (Fmap_keymap): Remove left-out test from before make_save_value.
14096
14097 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
14098
14099 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
14100 Use XCAR/XCDR.
14101
14102 * process.h (struct Lisp_Process): Remove filter_multibyte.
14103 * process.c (QCfilter_multibyte): Remove.
14104 (setup_process_coding_systems): Don't use filter_multibyte.
14105 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
14106 (read_process_output): Don't adjust multibyteness to filter_multibyte.
14107 (Fset_process_filter_multibyte): Change the coding-system to
14108 approximate the previous behavior.
14109 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
14110 coding-system.
14111
14112 * coding.c (decode_coding_object): When not decoding into a buffer,
14113 obey the coding system's preference of (uni|multi)byte.
14114
14115 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
14116
14117 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
14118 every char is changed and has a different byte-length.
14119 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
14120 Fix int -> EMACS_INT.
14121
14122 2008-03-23 David Hansen <david.hansen@gmx.net>
14123
14124 * dbusbind.c (xd_read_message): Remove extra copying of message
14125 strings. Check for NULL `interface' or `member'.
14126
14127 2008-03-22 Eli Zaretskii <eliz@gnu.org>
14128
14129 * w32.c (readdir): If FindFirstFile/FindNextFile return in
14130 cFileName a file name that includes `?' characters, use the 8+3
14131 alias in cAlternateFileName instead.
14132
14133 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14134
14135 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
14136
14137 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
14138
14139 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
14140 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
14141 work on current_buffer only instead (that was already the case
14142 for some of the code anyway).
14143 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
14144 (temp_set_point, temp_set_point_both): Use EMACS_INT.
14145 (SET_PT, SET_PT_BOTH): Adjust.
14146 * intervals.h (set_point, temp_set_point, set_point_both)
14147 (temp_set_point_both): Remove redundant declarations.
14148
14149 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
14150
14151 * fileio.c (Finsert_file_contents):
14152 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
14153 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
14154 when buffer != current_buffer anyway.
14155
14156 2008-03-20 Andreas Schwab <schwab@suse.de>
14157
14158 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
14159 as default.
14160
14161 2008-03-19 Jason Rumney <jasonr@gnu.org>
14162
14163 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
14164 (syms_of_w32fns): Initialize them.
14165 (HOURGLASS_ID): New constant.
14166 (x_window_to_frame): Don't check hourglass_window.
14167 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
14168 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
14169 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
14170 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
14171 Only change the cursor if hourglass is not active.
14172 (Fx_create_frame): Initialize frame's current_cursor.
14173 (hourglass_atimer): Remove.
14174 (hourglass_started): New function.
14175 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
14176 (show_hourglass): Adapt to w32, changing argument to frame.
14177
14178 * w32term.h (struct w32_output): Remove hourglass_window.
14179 Add current_cursor.
14180
14181 * eval.c (call_debugger, Fsignal):
14182 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
14183 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
14184 (Fexecute_extended_command, cancel_hourglass_unwind):
14185 * minibuf.c (read_minibuf):
14186 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
14187
14188 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
14189
14190 * window.c (run_funs): New fun.
14191 (run_window_configuration_change_hook): Use it to run the buffer-local
14192 and the global part of the hook.
14193
14194 * xdisp.c (format_mode_line_unwind_data): Add window argument.
14195 (unwind_format_mode_line): Restore selected window.
14196 (x_consider_frame_title, Fformat_mode_line): Set selected window.
14197
14198 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
14199
14200 * editfns.c (Fchar_equal): Check they are valid characters.
14201
14202 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
14203
14204 2008-03-17 Andreas Schwab <schwab@suse.de>
14205
14206 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
14207 against a charset.
14208
14209 * lisp.h (Fbuffer_list): Declare.
14210
14211 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
14212
14213 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
14214 handlebox_widget is != 0.
14215
14216 2008-03-16 Juri Linkov <juri@jurta.org>
14217
14218 * callint.c (Fcall_interactively): For interactive code letters
14219 'b' and 'B' put the buffer list into the list of default "future"
14220 values of the minibuffer.
14221
14222 2008-03-16 Andreas Schwab <schwab@suse.de>
14223
14224 * keyboard.c (read_key_sequence): Fix downcasing of letters with
14225 modifiers.
14226
14227 * regex.c (re_match_2_internal): Correct matching of a charset
14228 against latin-1 characters.
14229
14230 2008-03-16 Kenichi Handa <handa@m17n.org>
14231
14232 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
14233 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
14234 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
14235 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
14236 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
14237 CHAR_STRING_ADVANCE.
14238 (produce_chars): Fix for the case that the source and the
14239 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
14240 instead of CHAR_STRING_ADVANCE.
14241 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
14242 STRING_CHAR_ADVANCE.
14243
14244 2008-03-15 Andreas Schwab <schwab@suse.de>
14245
14246 * regex.c (re_match_2_internal): Correct matching of eight bit
14247 characters in unibyte strings.
14248
14249 2008-03-15 Martin Rudalics <rudalics@gmx.at>
14250
14251 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
14252 at end of range when it coincides with the end of the buffer.
14253
14254 2008-03-14 Eli Zaretskii <eliz@gnu.org>
14255
14256 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
14257
14258 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
14259
14260 2008-03-14 Jason Rumney <jasonr@gnu.org>
14261
14262 * editfns.c (initial_tz): New variable.
14263 (syms_of_editfns): Initialize it.
14264 (Fset_time_zone_rule): Set it when first called.
14265 Use it when TZSTRING is nil.
14266
14267 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
14268 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
14269 (monitor_from_point_fn, get_monitor_info_fn): New globals.
14270 (globals_of_w32fns): Initialize them.
14271 (compute_tip_xy): Use them to position tooltips.
14272
14273 2008-03-14 Glenn Morris <rgm@gnu.org>
14274
14275 * emacs.c (main): Revert previous change.
14276 (standard_args): Revert -internal-script back to -scriptload,
14277 and remove the long-option form.
14278
14279 2008-03-13 Glenn Morris <rgm@gnu.org>
14280
14281 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
14282 Remove option -enable-font-backend.
14283
14284 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14285
14286 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
14287
14288 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
14289
14290 * xterm.c (x_connection_closed): For GTK: If this is the last
14291 terminal just exit without closing the display.
14292
14293 2008-03-11 Jason Rumney <jasonr@gnu.org>
14294
14295 * w32font.c (w32font_full_name): Use floor to round.
14296
14297 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
14298
14299 * sound.c (alsa_configure): Declare vol at beginning of block.
14300
14301 * fontset.c (Ffontset_info): Remove extra semicolon.
14302
14303 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
14304
14305 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
14306 size of resulting string.
14307
14308 2008-03-10 Jason Rumney <jasonr@gnu.org>
14309
14310 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
14311
14312 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14313
14314 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
14315 Don't pretend as if characters with display property haven't been
14316 consumed for string-replacing-string case.
14317
14318 2008-03-08 Kim F. Storm <storm@cua.dk>
14319
14320 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
14321 (get_next_display_element, next_element_from_string)
14322 (next_element_from_ellipsis, next_element_from_buffer): Use it.
14323
14324 2008-03-08 Andreas Schwab <schwab@suse.de>
14325
14326 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
14327
14328 2008-03-06 Jason Rumney <jasonr@gnu.org>
14329
14330 * w32font.c (w32_registry): Take font_type argument. Use ANSI
14331 when charset not specified. Only translate ANSI to unicode when
14332 font_type is truetype.
14333 (w32font_coverage_ok): New function.
14334 (add_font_entity_to_list): Use it to filter unsuitable fonts.
14335
14336 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
14337
14338 * lread.c (Fread_char): Resolve modifiers.
14339 (Fread_char_exclusive): Likewise.
14340
14341 * character.c (char_resolve_modifier_mask): New function.
14342 (char_string): Use char_resolve_modifier_mask.
14343 (Fchar_resolve_modifiers): New function.
14344 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
14345 function.
14346
14347 2008-03-04 Jason Rumney <jasonr@gnu.org>
14348
14349 * makefile.w32-in: Always include w32font.c in the build.
14350 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
14351
14352 2008-03-04 Andreas Schwab <schwab@suse.de>
14353
14354 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
14355 (versionclean): Likewise.
14356
14357 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
14358
14359 * .cvsignore: Add oo.
14360
14361 2008-03-03 Andreas Schwab <schwab@suse.de>
14362
14363 * coding.c (decode_coding_object): Inhibit gap shrinking while
14364 decoding in place.
14365
14366 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
14367
14368 * w32term.c: Remove unused include "gnu.h".
14369 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
14370
14371 * gnu.h: Rename to ...
14372 * emacs-icon.h: ... this.
14373 * xterm.c: Use emacs-icon.h instead of gnu.h.
14374 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
14375
14376 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
14377
14378 * w32font.c: Include math.h.
14379
14380 2008-03-03 Jason Rumney <jasonr@gnu.org>
14381
14382 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
14383 Compute options separately.
14384 (w32font_open_internal): Set glyph_idx before caching metrics.
14385
14386 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
14387 Define if system headers don't.
14388 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
14389 (w32font_encode_char): Don't declare here.
14390
14391 * w32font.c (Quniscribe, QCformat): New symbols.
14392 (syms_of_w32font): Define them.
14393 (w32font_has_char): Indicate uncertainty.
14394 (w32font_encode_char): Encode as glyph point. Make static.
14395 (recompute_cached_metrics): New function.
14396 (w32font_open_internal): Use it. Set font to use glyph points
14397 initially. Set format based on type of font.
14398 (w32font_text_extents, w32font_draw): Optionally use glyph points.
14399 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
14400 on it. Set format based on information available here.
14401 (add_font_entity_to_list): Identify backend based on opentype_only.
14402
14403 2008-03-02 Andreas Schwab <schwab@suse.de>
14404
14405 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
14406
14407 * coding.c (decode_coding_big5, produce_chars):
14408 Fix typos in last change.
14409
14410 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
14411
14412 * gnu.h: New icon.
14413
14414 2008-03-02 Kenichi Handa <handa@m17n.org>
14415
14416 * coding.c (decode_coding_utf_8): When eol-type of CODING is
14417 `dos', don't decode '\r' if that is the last in the source.
14418 (decode_coding_utf_16, decode_coding_emacs_mule)
14419 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14420 (decode_coding_raw_text, decode_coding_charset): Likewise.
14421 (produce_chars): Don't decode EOL here. Use EMACS_INT.
14422
14423 2008-03-01 Jason Rumney <jasonr@gnu.org>
14424
14425 * w32font.c (w32font_full_name): Report point size for scalable fonts.
14426
14427 2008-03-01 Kim F. Storm <storm@cua.dk>
14428
14429 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
14430
14431 2008-03-01 Jason Rumney <jasonr@gnu.org>
14432
14433 * w32font.c (w32font_full_name): New function.
14434 (w32font_open_internal): Use it.
14435
14436 2008-03-01 Kim F. Storm <storm@cua.dk>
14437
14438 * dispnew.c (line_draw_cost): Fix invalid glyph check.
14439
14440 2008-03-01 Jason Rumney <jasonr@gnu.org>
14441
14442 * font.c (font_unparse_fcname): Increase len when style is a symbol.
14443
14444 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
14445
14446 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
14447 xg_frame_resized when the event is for the edit widget.
14448
14449 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
14450
14451 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
14452 set_char_size.
14453 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
14454 operations on widgets here. Just set frame size if needed.
14455 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
14456 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
14457 (x_wm_set_size_hint): Set size hints on the edit widget only, not
14458 the whole frame.
14459 (xg_create_tool_bar): Move attachment of the tool bar to
14460 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
14461 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
14462
14463 2008-03-01 Jason Rumney <jasonr@gnu.org>
14464
14465 * w32fns.c (w32_msg_pump): Disable debug code.
14466
14467 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14468
14469 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
14470
14471 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
14472
14473 * xdisp.c (next_overlay_string): Don't set
14474 overlay_strings_at_end_processed_p if we're currently reading from
14475 a display string.
14476
14477 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
14478
14479 * xdisp.c (get_overlay_strings_1): Fix typo.
14480
14481 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
14482
14483 * xdisp.c (get_overlay_strings_1): Add missing argument type.
14484
14485 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
14486
14487 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
14488
14489 * xdisp.c (display_mode_element): Cancel the previous change.
14490 (decode_mode_spec): Likewise.
14491 (handle_auto_composed_prop): Don't make composition if it->string
14492 is a string.
14493
14494 2008-02-27 Kim F. Storm <storm@cua.dk>
14495
14496 * lisp.h (GLYPH): Change type from int to struct with separate char
14497 and face_id members.
14498 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
14499 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
14500 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
14501 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
14502 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
14503 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
14504 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
14505 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
14506 handle new Lisp glyph code encoding, either an integer or a cons.
14507
14508 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
14509 (GLYPH_ALIAS): Delete.
14510 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
14511 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
14512 (GLYPH_FROM_CHAR): Replace macro by ...
14513 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
14514
14515 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
14516 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
14517 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
14518 (GLYPH_INVALID_P): New macro.
14519 (spec_glyph_lookup_face): Update prototype.
14520
14521 * dispnew.c (line_draw_cost): Adapt to new glyph type.
14522 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
14523 new glyph code encoding.
14524 (spec_glyph_lookup_face): No return value; update passed glyph instead.
14525 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
14526
14527 * xdisp.c (get_next_display_element, next_element_from_display_vector):
14528 Adapt to new glyph type and new glyph code encoding.
14529
14530 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
14531
14532 * indent.c (current_column, current_column_1, Fmove_to_column)
14533 (compute_motion): Adapt to new glyph code encoding.
14534
14535 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
14536
14537 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
14538
14539 * process.c (wait_reading_process_output): Check for window
14540 changes caused by timers.
14541 Suggested by Johan Bockgård.
14542
14543 2008-02-27 Glenn Morris <rgm@gnu.org>
14544
14545 * emacs.c (USAGE1): Add `--disable-font-backend'.
14546
14547 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
14548
14549 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
14550 is made to the buffer.
14551
14552 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
14553
14554 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
14555 (face_at_string_position):
14556 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
14557 (face_at_string_position):
14558 * xdisp.c (display_string, next_overlay_change):
14559 * buffer.h (overlays_at):
14560 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
14561 Update callers.
14562
14563 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
14564
14565 * editfns.c (Fformat): Doc fix.
14566
14567 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
14568
14569 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
14570 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
14571 (Ffont_otf_alternates, Fquery_font): Doc fixes.
14572
14573 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
14574
14575 * buffer.c (Fbuffer_swap_text): New function.
14576 (syms_of_buffer): Defsubr it.
14577
14578 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
14579
14580 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
14581
14582 2008-02-25 Jason Rumney <jasonr@gnu.org>
14583
14584 * w32font.c (w32font_draw): Draw one character at a time when padding.
14585
14586 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
14587
14588 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
14589 Handle a nil arg. Use run_window_configuration_change_hook.
14590 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
14591 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
14592 Use run_window_configuration_change_hook.
14593
14594 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
14595
14596 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
14597 1-pixel width.
14598
14599 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
14600
14601 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
14602 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
14603 if the glyph in the font is zero pixel with.
14604
14605 * dispextern.h (struct glyph_string): New member padding_p.
14606
14607 * w32font.c (w32font_draw): Pay attention to s->padding_p.
14608
14609 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
14610
14611 * xfont.c (xfont_draw): Pay attention to s->padding_p.
14612
14613 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
14614
14615 * font.c: If the font driver doesn't have `shape' function, return Qnil.
14616
14617 2008-02-25 Jason Rumney <jasonr@gnu.org>
14618
14619 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
14620
14621 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14622
14623 Allow fine-grained image-cache flushing.
14624 * dispextern.h (struct image): Add `dependencies' field.
14625 (clear_image_caches): Change arg to Lisp_Object.
14626 * image.c (make_image): Initialize `dependencies' field.
14627 (clear_image_cache): Change arg to allow fine-grained flushing.
14628 Perform the flush even if image-cache-eviction-delay is nil.
14629 (clear_image_caches): Change arg to Lisp_Object.
14630 (Fclear_image_cache): Expand meaning of the argument.
14631 (mark_image): Mark `dependencies' field.
14632 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
14633 (lface_hash): Use XHASH rather than XFASTINT.
14634 (face_at_buffer_position): Fix int -> EMACS_INT position.
14635 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
14636 (select_frame_for_redisplay): Remove code duplication.
14637 (redisplay_internal): Adapt arg to call to clear_image_caches.
14638
14639 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
14640
14641 * s/vms4-0.h:
14642 * s/vms4-2.h:
14643 * s/vms4-4.h:
14644 * s/vms5-5.h: Remove, unused.
14645
14646 * s/irix5-2.h:
14647 * s/irix6-0.h:
14648 * s/riscos5.h:
14649 * s/mach-bsd4-3.h:
14650 * m/mips4.h: Remove files for obsolete systems.
14651
14652 * Makefile.in:
14653 * filelock.c:
14654 * unexmips.c:
14655 * m/hp9000s300.h:
14656 * m/iris4d.h:
14657 * s/aix3-1.h:
14658 * s/hpux.h:
14659 * s/msdos.h:
14660 * s/usg5-0.h:
14661 * s/usg5-2-2.h:
14662 * s/usg5-2.h:
14663 * s/usg5-3.h: Remove references to obsolete variables.
14664
14665 * s/irix5-0.h: Remove, move all the contents ...
14666 * s/irix6-5.h: ... here. Simplify.
14667 * config.in: Regenerate.
14668
14669 2008-02-24 Jason Rumney <jasonr@gnu.org>
14670
14671 * w32term.c (x_draw_glyph_string_background): Clear the background
14672 manually when cleartype is in use.
14673 (x_draw_glyph_string_foreground): Draw text transparently when
14674 cleartype is in use.
14675
14676 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
14677 a font into it unless we have to.
14678
14679 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
14680
14681 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
14682 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
14683
14684 2008-02-18 Jason Rumney <jasonr@gnu.org>
14685
14686 * w32fns.c (Fw32_shell_execute): Encode parameters.
14687
14688 2008-02-09 Eli Zaretskii <eliz@gnu.org>
14689
14690 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
14691
14692 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
14693
14694 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
14695
14696 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
14697
14698 * xterm.c (x_set_offset): Don't change the gravity if
14699 CHANGE_GRAVITY is -1.
14700
14701 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
14702
14703 * fileio.c (auto_save_error_occurred): New var.
14704 (auto_save_error): Set it.
14705 (Fdo_auto_save): Don't overwrite the error message if an auto-save
14706 error occurred.
14707
14708 2008-02-23 Eli Zaretskii <eliz@gnu.org>
14709
14710 * w32.c (globals_of_w32): Add initializations for
14711 g_b_init_get_sid_sub_authority and
14712 g_b_init_get_sid_sub_authority_count.
14713
14714 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
14715
14716 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
14717 (font_parse_xlfd): Use them for sanity check.
14718 (Finternal_set_font_style_table): Make sure the table is bijective.
14719
14720 Consolidate the image_cache to the terminal struct.
14721 * termhooks.h (P_): Remove redundant def.
14722 (struct terminal): New field `image_cache'.
14723 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
14724 of FRAME_X_IMAGE_CACHE.
14725 * xterm.h (struct x_display_info): Remove image_cache field.
14726 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
14727 * w32term.h (struct w32_display_info): Remove image_cache field.
14728 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
14729 * macterm.h (struct mac_display_info): Remove image_cache field.
14730 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
14731 * xterm.c (x_term_init):
14732 * w32term.c (w32_term_init):
14733 * macterm.c (mac_term_init): Set the image_cache in the terminal.
14734 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
14735 Remove declarations.
14736 (clear_image_caches, mark_image_cache): New declarations.
14737 * xfaces.c (clear_face_cache):
14738 * xdisp.c (redisplay_internal): Use clear_image_caches.
14739 * image.c (clear_image_cache): Don't check that a frame is on
14740 a window-system before checking if it shares the same cache.
14741 (clear_image_caches): New function.
14742 (Fclear_image_cache): Use it.
14743 (mark_image): Move from allo.c.
14744 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
14745 * alloc.c (mark_image, mark_image_cache): Move to image.c.
14746 (mark_object): Don't call mark_image_cache for frames.
14747 (mark_terminals): Call mark_image_cache.
14748
14749 * lisp.h (Fdelete_terminal): Declare.
14750
14751 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
14752 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
14753 wrong_type_argument.
14754
14755 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
14756
14757 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
14758 malayalam.el, and tamil.el. Add sinhala.el.
14759
14760 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
14761
14762 * xterm.c (x_connection_closed): Consolidate identical tests.
14763 (x_delete_terminal): Don't crash if called via x_connection_closed.
14764
14765 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
14766
14767 * xdisp.c (decode_mode_spec): New arg string.
14768 (display_mode_element): Adjust for the above change.
14769
14770 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
14771
14772 * callint.c (Fcall_interactively): Use AREF.
14773
14774 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
14775
14776 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
14777
14778 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
14779
14780 * xfns.c (Fx_show_tip): Set string to " " if empty.
14781
14782 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
14783
14784 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
14785 with Qt.
14786
14787 2008-02-17 Kenichi Handa <handa@m17n.org>
14788
14789 * ftfont.c (ftfont_shape): Return Lispy number.
14790
14791 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
14792 for GCs.
14793 (Finternal_set_font_selection_order): Call font_update_sort_order
14794 only when enable_font_backend is set.
14795 (realize_x_face): Set face->font_info to that of default face only
14796 when enable_font_backend is set.
14797
14798 * xdisp.c (handle_composition_prop): Set it->c to the fist
14799 character of the composed region.
14800 (fill_composite_glyph_string): Set base_face->font_info to
14801 s->font_info. Get a face for ascii from base_face->ascii_face.
14802 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
14803 with a face already decided.
14804 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
14805 non-negative.
14806 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
14807 call font_prepare_composition unconditionally.
14808
14809 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
14810
14811 * xterm.h (struct x_display_info): New member font.
14812
14813 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
14814 (x_set_mouse_face_gc, x_new_font): Likewise.
14815 (x_term_init): Setup display_info->font.
14816 (x_delete_terminal): Free display_info->font.
14817
14818 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
14819
14820 * ftxfont.c (ftxfont_default_fid): Delete it.
14821 (ftxfont_open): Set xfont->fid to 0.
14822 (ftxfont_end_for_frame): Clear data specific to the frame and the
14823 font-driver.
14824
14825 * xftfont.c (xftfont_default_fid): Delete it.
14826 (xftfont_open): Set xfont->fid to 0.
14827
14828 * fontset.c (FONTSET_OBJLIST): New macro.
14829 (fontset_find_font): Update font-object list of the fontset.
14830 (free_realized_fontset): New function.
14831 (free_face_fontset): Call free_realized_fontset.
14832 (Ffont_info): Call font_close_object only when enable_font_backend
14833 is set.
14834
14835 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
14836 [HAVE_NTGUI]: Include w32term.h.
14837 [MAC_OS]: Include macterm.ch.
14838 (font_otf_ValueRecord): Use make_number.
14839 (font_finish_cache): Fix handling of reference count.
14840 (font_clear_cache): Update num_fonts.
14841 (font_open_entity): Update smallest_char_width and
14842 smallest_font_height of the frame.
14843 (font_close_object): Update num_fonts.
14844 (Fclear_font_cache): Fix finding the target cache data.
14845
14846 2008-02-16 Glenn Morris <rgm@gnu.org>
14847
14848 * fontset.c (Finternal_char_font): Fix compilation warning.
14849
14850 2008-02-16 Eli Zaretskii <eliz@gnu.org>
14851
14852 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
14853 instead of char arrays. Enlarge the size of array passed to
14854 get_token_information.
14855
14856 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
14857 warnings.
14858
14859 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
14860
14861 * .gdbinit: Don't set `args', it breaks gdb --args.
14862
14863 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
14864
14865 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
14866 within a narrowed buffer.
14867
14868 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
14869
14870 * coding.c (decode_coding_object, encode_coding_object):
14871 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
14872
14873 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
14874
14875 * coding.c (coding_set_destination): Use BEG_BYTE rather than
14876 hardcoding 1.
14877 (detect_coding_system):
14878 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
14879 (string_char_to_byte, string_byte_to_char, insert_from_gap):
14880 * insdel.c (insert_from_gap):
14881 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
14882 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
14883 (string_to_multibyte):
14884 * character.c (chars_in_text, multibyte_chars_in_text):
14885 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
14886
14887 * character.h (FETCH_STRING_CHAR_ADVANCE)
14888 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
14889 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
14890 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
14891
14892 * casefiddle.c (casify_region): Only call after-change and composition
14893 functions on the part of the region that was changed.
14894
14895 * keyboard.c (read_avail_input):
14896 * frame.c (Fdelete_frame): Call Fdelete_terminal.
14897
14898 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14899
14900 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
14901 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
14902
14903 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
14904
14905 * w32menu.c (push_submenu_start, push_submenu_end)
14906 (push_left_right_boundary, push_menu_pane, push_menu_item):
14907 * keyboard.c (read_key_sequence): Don't pass args with side effects
14908 to AREF, it fails when compiling with -DENABLE_CHECKING.
14909
14910 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
14911
14912 * Makefile.in (${lispsource}international/charprop.el):
14913 Delete this target.
14914
14915 * search.c (boyer_moore): Fix incorrect synching of the trunk and
14916 emacs-unicode-2.
14917
14918 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14919
14920 * terminal.c (Fdelete_terminal): Clean up the `force' path.
14921
14922 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
14923
14924 * frame.c (Qnoelisp): New symbol.
14925 (syms_of_frame): Initialize it.
14926 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
14927 harmless Elisp code, from a strong `force' from x_connection_closed.
14928 * frame.h (Qnoelisp): Declare.
14929 * xterm.c (x_connection_closed): Pass `noelisp'.
14930
14931 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
14932 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
14933 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
14934 rather than `int' for the type of `type'.
14935
14936 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
14937
14938 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
14939
14940 * Makefile.in (GNUC): Remove support for gcc-1.x.
14941
14942 2008-02-10 Richard Stallman <rms@gnu.org>
14943
14944 * lisp.h (ASET): Use AREF, not ASLOT.
14945
14946 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
14947
14948 * lisp.h (ASET): Check bounds.
14949
14950 2008-02-10 Glenn Morris <rgm@gnu.org>
14951
14952 * buffer.c (mode-name): Doc fix.
14953
14954 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
14955
14956 * Makefile.in:
14957 * emacs.c:
14958 * gmalloc.c:
14959 * keyboard.c:
14960 * lisp.h:
14961 * m/ibm370aix.h:
14962 * process.c:
14963 * regex.c:
14964 * s/hpux.h:
14965 * sysdep.c:
14966 * sysselect.h:
14967 * systty.h:
14968 * unexec.c:
14969 * w32term.c:
14970 * xsmfns.c:
14971 * xterm.c: Remove code that deals with obsolete variables.
14972
14973 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
14974
14975 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
14976 nothing else needs it anymore.
14977
14978 2008-02-09 Eli Zaretskii <eliz@gnu.org>
14979
14980 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
14981 instead of unibyte_char_to_multibyte.
14982
14983 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
14984
14985 * s/gnu-linux.h: Remove commented out code.
14986
14987 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
14988
14989 * Makefile.in: Update what RMS says about using autoconf.
14990 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
14991 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
14992 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
14993 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
14994
14995 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
14996
14997 * keymap.c (Fkey_description): Move side effect outside of macro call.
14998
14999 * xfaces.c (Finternal_make_lisp_face):
15000 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
15001
15002 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
15003 (syms_of_fontset): Use ASET.
15004
15005 * fns.c (concat): Move side effect outside of macro call.
15006 (hash_clear): Use ASET.
15007
15008 2008-02-08 Richard Stallman <rms@gnu.org>
15009
15010 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
15011 If FORCE, and frame has a surrogate minibuffer for another frame,
15012 delete the other frame first.
15013
15014 2008-02-07 Timo Savola <timo.savola@iki.fi>
15015
15016 * xterm.c (x_detect_focus_change): Handle embed client message.
15017 (handle_one_xevent): Ditto.
15018 (handle_one_xevent): If embedded and we get a button press/release,
15019 request focus.
15020 (xembed_set_info, xembed_send_message): New functions.
15021 (x_make_frame_visible): Call xembed_set_info if embedded.
15022 (x_make_frame_invisible): Call xembed_set_info if embedded.
15023 (x_term_init): Initialize Xatom_XEMBED.
15024 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
15025 (x_iconify_frame): Ditto.
15026
15027 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
15028 (enum xembed_info, enum xembed_message, enum xembed_focus)
15029 (enum xembed_modifier, enum xembed_accelerator): New.
15030 (xembed_set_info, xembed_send_message): Declare.
15031 (FRAME_X_EMBEDDED_P): New.
15032
15033 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
15034 gtk_plug_new.
15035
15036 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
15037 window ID of a frame.
15038 (x_window): Reparent frame if embedded.
15039 (Fx_create_frame): Don't set border width if embedded.
15040
15041 * emacs.c (USAGE3): Add --parent-id.
15042 (standard_args): Ditto.
15043
15044 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
15045
15046 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
15047
15048 2008-02-07 Jim Meyering <meyering@redhat.com>
15049
15050 Use "do...while (0)", not "if (1)...else" in macro definitions.
15051 The latter provokes a warning from gcc about the empty else, when
15052 followed by ";". Also, without that trailing semicolon, it would
15053 silently swallow up any following statement.
15054 * syntax.h (SETUP_SYNTAX_TABLE)
15055 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
15056 * buffer.h (DECODE_POSITION): Likewise.
15057 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
15058 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
15059 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
15060 (FETCH_CHAR_ADVANCE): Likewise.
15061 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
15062
15063 2008-02-07 Jim Meyering <meyering@redhat.com>
15064
15065 * lread.c [lint]: Don't include <sys/inode.h>.
15066
15067 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
15068
15069 * xselect.c (x_handle_dnd_message):
15070 * xmenu.c (digest_single_submenu, xmenu_show):
15071 * xdisp.c (with_echo_area_buffer_unwind_data)
15072 (format_mode_line_unwind_data, unwind_format_mode_line)
15073 (display_menu_bar):
15074 * eval.c (Ffetch_bytecode):
15075 * doc.c (store_function_docstring):
15076 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
15077 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
15078 * buffer.c (add_overlay_mod_hooklist): Use ASET.
15079
15080 2008-02-07 Kenichi Handa <handa@m17n.org>
15081
15082 * ftxfont.c (ftxfont_open): Don't set
15083 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
15084
15085 * ftfont.c (ftfont_open): Fix previous change.
15086
15087 2008-02-06 Jason Rumney <jasonr@gnu.org>
15088
15089 * w32font.c (w32font_text_extents): Fill in lbearing metric.
15090 Use cached metrics for ASCII characters.
15091 (w32font_open_internal): Don't set font's owning_frame.
15092 Cache metrics for ASCII characters.
15093
15094 * w32font.h (struct w32font_info): Add ascii_metrics.
15095 Remove owning_frame.
15096
15097 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
15098
15099 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
15100 to negative value.
15101
15102 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
15103
15104 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
15105
15106 * charset.c (syms_of_charset): Set QCtest and Qeq.
15107
15108 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
15109
15110 * process.c (Fstart_process):
15111 * callproc.c (Fcall_process): Handle the case where
15112 Funhandled_file_name_directory returns nil.
15113
15114 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
15115 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
15116 * font.c (check_gstring): Use them and AREF to access the vector before
15117 we know it's really a gstring.
15118 (Ffont_shape_text): Fix typo.
15119 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
15120
15121 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
15122 Declare.
15123
15124 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
15125
15126 2008-02-05 Jason Rumney <jasonr@gnu.org>
15127
15128 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
15129 Set smallest_font_height and smallest_char_width in display info.
15130
15131 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
15132
15133 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
15134
15135 2008-02-05 Miles Bader <miles@gnu.org>
15136
15137 * xfaces.c (get_lface_attributes, merge_named_face)
15138 (lookup_named_face, lookup_derived_face, realize_named_face):
15139 Revert 2008-02-01 change by cyd@stupidchicken.com.
15140
15141 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
15142
15143 * fontset.c (Ffontset_info): Handle the case of inhibitting the
15144 fallback fonts.
15145 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
15146
15147 2008-02-04 Jason Rumney <jasonr@gnu.org>
15148
15149 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
15150 set full_name.
15151 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
15152
15153 2008-02-03 Jason Rumney <jasonr@gnu.org>
15154
15155 * makefile.w32-in (OBJ1): Include font.o here.
15156 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
15157
15158 2008-02-02 Jason Rumney <jasonr@gnu.org>
15159
15160 * makefile.w32-in (temacs): Bump EMHEAP to 21.
15161
15162 2008-02-01 Jason Rumney <jasonr@gnu.org>
15163
15164 * s/cygwin.h: Define VIRT_ADDR_VARIES.
15165
15166 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
15167
15168 2008-02-01 Andreas Schwab <schwab@suse.de>
15169
15170 * Makefile.in (shortlisp, lisp): Update for rename of
15171 ../lisp/language/myanmar.el.
15172
15173 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
15174
15175 * xfaces.c (get_lface_attributes): Delete function.
15176 (merge_named_face, lookup_named_face, lookup_derived_face)
15177 (realize_named_face): Call lface_from_face_name directly, and use
15178 the fact that merge_face_vectors does not alter its FROM argument.
15179
15180 2008-02-01 Jason Rumney <jasonr@gnu.org>
15181
15182 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
15183 input in the default locale. Handle non-Unicode multibyte input.
15184
15185 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15186
15187 * fontset.c (reorder_font_vector): Exclude nil elements from the
15188 font group. Don't try multiple fonts.
15189 (fontset_font): Adjust for the above change.
15190 (Finternal_char_font): Return nil if the found font doesn't
15191 contain the character ch.
15192
15193 * Makefile.in (lisp, shortlisp): Add cham.el.
15194
15195 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15196
15197 * font.h (FONTP): Make it return 1 also for a font-object.
15198
15199 * .gdbinit (xfontset): New function.
15200
15201 * font.c (font_find_for_lface): Check if the character C is
15202 supported or not only for the first font.
15203
15204 * fontset.c (reorder_font_vector): Fix typo.
15205 (fontset_find_font): Don't add a font-spec specifying a script.
15206 Use 0 (not Qt) for the indication of empty font-group. Change the
15207 format of RFONT-DEF. Return Qt if no font in the font-group
15208 support the character.
15209 (fontset_font): Adjust for the above change. If no font was
15210 found the character, remember that.
15211 (face_for_char): Adjust for the change of RFONT-DEF.
15212 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
15213 no font for the target.
15214 (Finternal_char_font): Adjust for the change of RFONT-DEF.
15215
15216 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15217
15218 * font.c (font_load_for_face): Handle the case that the font in
15219 face->lface is a string.
15220
15221 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15222
15223 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
15224
15225 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15226
15227 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
15228 Fix previous change. If the frame is not on a window system,
15229 signal an error.
15230
15231 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15232
15233 * coding.c (decode_coding_object, encode_coding_object): Adjust
15234 marker positions after conversion.
15235
15236 * lisp.h (struct Lisp_Marker): New member need_adjustment.
15237
15238 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15239
15240 * font.c (font_find_for_lface): Fix the handling of the return
15241 value of font_has_char.
15242 (Ffont_shape_text): Fix previous change.
15243
15244 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
15245 (fontset_ref_and_range): Delete it.
15246 (fontset_find_font): Call char_table_ref_and_range instead of
15247 FONTSET_REF_AND_RANGE.
15248 (make_fontset): Don't setup font groups of Latin here.
15249 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
15250 (new_fontset_from_font): Make the specified font the default for
15251 all Latin characters.
15252
15253 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15254
15255 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
15256 is on a window system before accessing the fontset of the frame.
15257
15258 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15259
15260 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
15261
15262 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
15263 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
15264
15265 * font.c (Ffont_shape_text): If the font driver doesn't have a
15266 shaper function, make zero-width glyphs to have at least one-pixel
15267 width. Fix setting of `to' field of glyphs.
15268
15269 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15270
15271 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
15272 glyphs.
15273
15274 * font.h (struct font_driver): Improve docstring of member `shape'.
15275
15276 2008-02-01 Kenichi Handa <handa@m17n.org>
15277
15278 * composite.c (syms_of_composite): Fix docstring of
15279 auto-composition-function.
15280
15281 * font.h (LGLYPH_SIZE): New macro.
15282
15283 * font.c (Ffont_fill_gstring): Stop filling when a character not
15284 supported by the font is found.
15285 (Ffont_shape_text): When a shape callback function returns nil,
15286 try at most two more times with larger gstring.
15287 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
15288
15289 * xdisp.c (handle_auto_composed_prop): Change the argument to
15290 auto-composition-function.
15291
15292 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
15293 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
15294 Lispy glyph and store it in the lgstring.
15295
15296 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
15297
15298 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
15299
15300 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15301
15302 * font.c (Ffont_shape_text): Avoid unnecessary composition.
15303
15304 * fontset.c (Vfont_encoding_charset_alist): New variable.
15305 (syms_of_fontset): DEFVAR it.
15306 (reorder_font_vector, fontset_find_font): Optimize for the case of
15307 no need of reordering.
15308 (face_for_char): Map the charset property by
15309 Vfont_encoding_charset_alist.
15310
15311 2008-02-01 Jason Rumney <jasonr@gnu.org>
15312
15313 * w32font.c (logfonts_match): Don't check adstyle here.
15314 (font_matches_spec): Check here against physical font instead.
15315 (add_font_entity_to_list): Avoid some substitutions.
15316
15317 * font.c (font_parse_fcname): Default weight and slant to normal.
15318 (font_score): Prefer normal fonts if weight or slant unspecified.
15319 (font_score) [WINDOWSNT]: Scale weight difference down to closer
15320 match freetype scores.
15321
15322 2008-02-01 Jason Rumney <jasonr@gnu.org>
15323
15324 * w32font.c (w32font_text_extents): Don't use the frame stored in the
15325 font, as it may have been deleted.
15326 (w32_enumfont_pattern_entity): Map generic family to adstyle using
15327 most common hyphenless variation.
15328 (logfonts_match): Check generic family.
15329 (font_matches_spec): Don't check generic family here.
15330 (fill_in_logfont): Set generic family based on adstyle.
15331
15332 * w32font.h (w32font_get_cache): Update declaration.
15333
15334 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15335
15336 * ftfont.c (ftfont_get_cache): Adjust the argument type.
15337
15338 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
15339 If none of the new drivers are available, call font_update_drivers
15340 with the old drivers.
15341
15342 * w32font.c (w32font_get_cache): Adjust the argument type.
15343
15344 * xfont.c (xfont_get_cache): Adjust the argument type.
15345
15346 * font.h (struct font_driver): Change argument type of get_cache.
15347
15348 * xftfont.c (xftfont_start_for_frame): Delete prototype.
15349
15350 * font.c (Ffont_get): Fix arguments to Fassoc.
15351 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
15352 (font_clear_cache): New function.
15353 (font_list_entities, font_matching_entity): Use font_get_cache.
15354 (font_update_drivers): Call font_clear_cache when finishing a driver.
15355
15356 * fontset.c (fontset_find_font): Fix previous change.
15357
15358 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15359
15360 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
15361 dpyinfo->font_table.
15362 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
15363 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
15364
15365 * font.c (font_at): Handle the case that the arg C is negative.
15366 Handle the unibyte case.
15367 (Ffont_at): Call font_at with the arg C -1.
15368
15369 * xdisp.c (handle_auto_composed_prop): Don't get a character at
15370 the position here, and call font_at with the arg C -1.
15371 Don't check the range of the existing composition at the point.
15372
15373 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15374
15375 * fontset.c (fontset_add): New args charset_id and family.
15376 Change caller.
15377 (load_font_get_repertory, fontset_find_font): Assume that
15378 font_spec is always a font-spec object.
15379 (Fset_fontset_font): Always store a font-spec object in a fontset.
15380
15381 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
15382 instead of get_property_and_range.
15383
15384 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15385
15386 * xftfont.c (struct xftfont_info): Delete the member ft_face.
15387 (xftfont_open): Don't keep locking face.
15388 (xftfont_close): Don't unlock face.
15389 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
15390
15391 * fontset.c (fontset_find_font): Don't prefer a font of
15392 supplementary charset.
15393
15394 2008-02-01 Kenichi Handa <handa@m17n.org>
15395
15396 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
15397 script, langsys_tag to langsys, new member script.
15398 (OTF_TAG_STR): Terminate by '\0'.
15399 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
15400 listing to the script specified in that property. Fix arg to
15401 OTF_check_features.
15402
15403 2008-02-01 Jason Rumney <jasonr@gnu.org>
15404
15405 * w32font.h: New file.
15406
15407 * w32font.c: Include it.
15408 (struct w32font_info): Add owning_frame field. Move to w32font.h.
15409 (w32font_open): Set owning_frame.
15410 (w32font_text_extents): Use owning_frame.
15411 (struct font_callback_data): Add opentype_only field.
15412 (add_font_entity_to_list): Use it to filter fonts.
15413 Don't check against full name.
15414 (w32font_list_internal): New function.
15415 (w32font_list): Use it.
15416 (w32font_match_internal): New function.
15417 (w32font_match): Use it.
15418 (w32font_open_internal): New function.
15419 (w32font_open): Use it.
15420 (w32font_get_cache, w32font_close, w32font_has_char)
15421 (w32font_encode_char, w32font_text_extents, w32font_draw):
15422 Make non-static.
15423
15424 * makefile.w32-in (w32font.o): Depend on w32font.h.
15425
15426 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15427
15428 * charset.c (Fdefine_charset_internal): Record a supplementary
15429 charset at the tail of Vcharset_order_list.
15430
15431 * font.c (Ffont_shape_text): Fix the return value.
15432
15433 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
15434
15435 * xdisp.c (handle_auto_composed_prop): Fix previous change.
15436
15437 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15438
15439 * ftfont.c (struct OpenTypeSpec): New struct.
15440 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
15441 (ftfont_get_open_type_spec): New function.
15442 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
15443
15444 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
15445
15446 2008-02-01 Jason Rumney <jasonr@gnu.org>
15447
15448 * w32font.c (add_font_entity_to_list): Compare only the beginning
15449 of full name.
15450
15451 2008-02-01 Kenichi Handa <handa@m17n.org>
15452
15453 * xdisp.c (handle_auto_composed_prop): Simplify the code.
15454 Never return HANDLED_RECOMPUTE_PROPS.
15455
15456 2008-02-01 Kenichi Handa <handa@m17n.org>
15457
15458 * font.c (font_gstring_produce): Delete it.
15459
15460 * composite.h (COMPOSITION_METHOD):
15461 Handle COMPOSITION_WITH_GLYPH_STRING.
15462
15463 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15464
15465 * xfont.c (Qx): Delete.
15466 (syms_of_xfont): Don't initialize Qx.
15467
15468 * composite.h (enum composition_method):
15469 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
15470
15471 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15472
15473 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
15474 (choose_face_font): Accept new form of font-spec.
15475
15476 * frame.h (font_driver_list): Declare it unconditionally.
15477 (struct frame): Define members font_driver_list and font_data_list
15478 unconditionally.
15479
15480 * fontset.c: Include "font.h" unconditionally.
15481 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
15482 (Fset_fontset_font): Accept a font-spec object.
15483
15484 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
15485 PIXEL_SIZE part a wild card.
15486
15487 * dispextern.h (struct glyph_string): Define members clip and
15488 num_clips unconditionally.
15489 (struct face): Define members font_info and extra unconditionally.
15490
15491 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
15492 ftfont_info only when HAVE_LIBOTF is defined.
15493
15494 2008-02-01 Andreas Schwab <schwab@suse.de>
15495
15496 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
15497 and end.
15498
15499 2008-02-01 Jason Rumney <jasonr@gnu.org>
15500
15501 * w32font.c (w32font_driver): Add new fields.
15502
15503 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15504
15505 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
15506 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
15507 (LIBES): Add @M17N_FLT_CFLAGS@.
15508
15509 * composite.c (compose_text): Don't treat the new style
15510 composition specially.
15511
15512 * emacs.c (main): Call syms_of_font unconditionally.
15513
15514 * font.h (FONT_ENTITY_NOT_LOADABLE)
15515 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
15516 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
15517 (struct font_driver): New member shape.
15518 (font_registry_charsets): Extern it.
15519 (font_find_for_lface, font_prepare_composition): Adjust prototype.
15520 (font_otf_capability, font_drive_otf): Delete their externs.
15521
15522 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
15523 (font_charset_alist, font_registry_charsets): Move from xfont.c
15524 and rename.
15525 (font_prop_validate_otf): New function.
15526 (font_property_table): Register it for QCotf.
15527 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
15528 (font_drive_otf): Delete.
15529 (font_prepare_composition): New arg F. Adjust for the change of
15530 lispy gstring.
15531 (font_find_for_lface): New arg C.
15532 (font_load_for_face): Adjust for the change of font_find_for_lface.
15533 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
15534 lispy gstring.
15535 (Ffont_shape_text): New function.
15536 (Fopen_font): If the font size is not given, use 12-pixel.
15537 (Ffont_at): New arg STRING.
15538 (syms_of_font): Initalize font_charset_alist.
15539 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
15540 conditionally.
15541
15542 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
15543 fonts of the same font-spec. Change the format of RFONT-DEF.
15544 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
15545 Adjust for the change of RFONT-DEF.
15546 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
15547
15548 * ftfont.h: New file.
15549
15550 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
15551 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
15552 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
15553 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
15554 font_otf_capability and font_drive_otf, set ftfont_shape.
15555 (ftfont_list): Adjust for the change of :otf property value.
15556 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
15557 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
15558 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
15559 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
15560 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
15561 (otf_gstring, gstring, m17n_flt_initialized): New variables.
15562
15563 * w32term.c (x_draw_composite_glyph_string_foreground):
15564 Adjust for the change of lispy gstring.
15565
15566 * xdisp.c (handle_composition_prop): Adjust for the change of
15567 lispy gstring. Call a function for auto-composition with the
15568 third arg it->window.
15569 (fill_composite_glyph_string): Adjust for the change of lispy string.
15570 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
15571
15572 * xfaces.c (set_font_frame_param): Adjust for the change of
15573 font_find_for_lface.
15574
15575 * xfont.c (x_font_charset_alist): Move to font.c and rename.
15576 (xfont_registry_charsets): Likewise. Change caller.
15577 (syms_of_xfont): Don't handle x_font_charset_alist.
15578
15579 * xftfont.c: Include "ftfont.h".
15580 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
15581 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
15582 (xftfont_close) [HAVE_LIBOTF]: Close otf.
15583 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
15584 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
15585 Set xftfont_driver.shape to xftfont_shape.
15586
15587 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
15588 the change of lispy gstring.
15589
15590 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15591
15592 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
15593
15594 2008-02-01 Jason Rumney <jasonr@gnu.org>
15595
15596 * w32font.c (w32font_draw): Fill background manually.
15597
15598 2008-02-01 Jason Rumney <jasonr@gnu.org>
15599
15600 * font.c (Qfontp): Remove unused symbol.
15601 (QCantialias): New symbol.
15602 (syms_of_font): Define it.
15603 (font_property_table): Set a validator for QCantialias.
15604
15605 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
15606 Define if not already.
15607 (QCfamily): Share with xfaces.c.
15608 (Qstandard, Qsubpixel, Qnatural): New symbols.
15609 (syms_of_w32font): Define them. Don't define QCfamily here.
15610 (w32_antialias_type, lispy_antialias_type): New functions.
15611 (w32_enumfont_pattern_entity): New arg requested_font.
15612 Set antialias parameter if non-default was requested.
15613 (fill_in_logfont): Fill in lfQuality if :antialias specified.
15614
15615 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15616
15617 * lread.c (read1): Undo the previous change.
15618
15619 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
15620
15621 * frame.c (Fdelete_frame): Call font_update_drivers only when
15622 USE_FONT_BACKEND is defined.
15623
15624 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15625
15626 * font.h (struct font_bitmap): New member bits_per_pixel.
15627 (struct font_driver): New members start_for_frame and end_for_frame.
15628 (struct font_data_list): New struct.
15629 (font_put_frame_data, font_get_frame_data): Extern them.
15630
15631 * frame.h (struct frame): New member font_data_list.
15632
15633 * font.c (font_update_drivers): Call driver->start_for_frame and
15634 driver->end_for_frame at proper timings.
15635 (font_put_frame_data, font_get_frame_data): New functions.
15636 (Ffont_spec): Add usage in the docstring.
15637
15638 * frame.c (make_frame): Initialize f->font_data_list to NULL.
15639 (Fdelete_frame): Call font_update_drivers.
15640
15641 * xftfont.c (struct xftface_info): Delete the member xft_draw.
15642 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
15643 (xftfont_get_xft_draw): New function.
15644 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
15645 (xftfont_end_for_frame): New function.
15646 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
15647
15648 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
15649 Change argument. Cache GCs in the per-frame data.
15650 (struct ftxfont_frame_data): New struct.
15651 (ftxfont_draw_bitmap): New arg gc_fore and flush.
15652 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
15653 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
15654 (ftxfont_end_for_frame): New function.
15655 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
15656
15657 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
15658
15659 2008-02-01 Kenichi Handa <handa@m17n.org>
15660
15661 * xselect.c (Vselection_coding_system)
15662 (Vnext_selection_coding_system): Delete them.
15663 (syms_of_xselect): Don't declare selection-coding-system and
15664 next-selection-coding-system. They are declared in select.el.
15665
15666 2008-02-01 Jason Rumney <jasonr@gnu.org>
15667
15668 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
15669
15670 * w32fns.c: Include imm.h.
15671 (get_composition_string_fn, get_ime_context_fn): New optional
15672 system functions.
15673 (globals_of_w32fns): Load them from imm32.dll.
15674 (ignore_ime_char): New flag.
15675 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
15676 WM_IME_ENDCOMPOSITION messages.
15677
15678 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
15679 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
15680
15681 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15682
15683 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
15684 (READCHAR_REPORT_MULTIBYTE): New macro.
15685 (readchar): New 2nd arg MULTIBYTE.
15686 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
15687 Make symbol's name multibyte according to the multibyteness of the
15688 source.
15689
15690 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15691
15692 * xfaces.c (face_for_overlay_string): Call lookup_face with
15693 correct arguments (fix of synching with the trunk).
15694
15695 2008-02-01 Kenichi Handa <handa@m17n.org>
15696
15697 * font.c (font_prop_validate_symbol, font_prop_validate_style)
15698 (font_prop_validate_non_neg, font_prop_validate_spacing):
15699 Delete argument prop_index.
15700 (font_property_table): Change arguments to validater. Change Callers.
15701 (font_lispy_object): Delete.
15702 (font_at): Use font_find_object instead fo font_lispy_object.
15703
15704 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15705
15706 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
15707 and file names.
15708
15709 2008-02-01 Jason Rumney <jasonr@gnu.org>
15710
15711 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
15712 (font_matches_spec): Remove debug output.
15713 (add_font_entity_to_list): Avoid using substituted fonts.
15714
15715 2008-02-01 Jason Rumney <jasonr@gnu.org>
15716
15717 * doc.c (Fsnarf_documentation):
15718 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
15719
15720 2008-02-01 Miles Bader <miles@gnu.org>
15721
15722 * dispextern.h (struct glyph_row): Only define "clip" field if
15723 HAVE_WINDOW_SYSTEM is defined.
15724
15725 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
15726
15727 Fix up multi-tty merge.
15728
15729 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
15730 and indentation.
15731
15732 * xfaces.c (free_realized_face, clear_face_gcs):
15733 Include font_done_for_face in the input_blocked section, just in case.
15734
15735 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
15736 (get_char_face_and_encoding): Undo last change and remove the *other*
15737 duplicate definition (i.e. keep the one that's better scoped and that
15738 includes code for the font-backend).
15739
15740 * terminal.c (create_terminal): Default keyboard_coding to
15741 `no-conversion' and terminal_coding to `undecided'.
15742
15743 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
15744
15745 * fontset.c (free_realized_fontsets): Check that the table entry does
15746 contain a fontset before trying to compare it to `base'.
15747
15748 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
15749 syms_of_charset, and syms_of_coding earlier because init_window_once
15750 now needs Vcoding_system_hash_table to be setup.
15751
15752 * coding.h (default_buffer_file_coding): Remove.
15753
15754 * coding.c (default_buffer_file_coding): Remove.
15755 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
15756 than ->symbol, and use the terminal-local coding system.
15757 (syms_of_coding): Don't setup the coding-systems that are not
15758 terminal-local.
15759 (Fdefine_coding_system_internal): Use XCAR/XCDR.
15760
15761 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
15762 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
15763
15764 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
15765 in chartab.c and were re-added here by mistake.
15766 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
15767
15768 * doc.c (Fsnarf_documentation):
15769 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
15770 src to etc.
15771
15772 * ChangeLog.10: Add mistakenly removed entry.
15773
15774 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
15775
15776 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
15777
15778 2008-02-01 Miles Bader <miles@gnu.org>
15779
15780 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
15781 Add extra args to FACE_FOR_CHAR.
15782
15783 2008-02-01 Kenichi Handa <handa@m17n.org>
15784
15785 * keymap.c (where_is_internal_1): If key is a cons, store the copy
15786 in sequence.
15787
15788 * chartab.c (map_sub_char_table, map_char_table): If the range
15789 contains just one character, call the function with that character
15790 even if the depth is not 3.
15791
15792 2008-02-01 Jason Rumney <jasonr@gnu.org>
15793
15794 * w32font.c (w32font_text_extents): Calculate metrics for the
15795 whole string.
15796
15797 2008-02-01 Jason Rumney <jasonr@gnu.org>
15798
15799 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
15800
15801 2008-02-01 Jason Rumney <jasonr@gnu.org>
15802
15803 * w32term.c (x_set_glyph_string_clipping): Use
15804 get_glyph_string_clip_rects.
15805 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
15806 Adjust for the change of struct glyph_string.
15807
15808 * w32font.c (w32font_draw): Do clipping here.
15809
15810 2008-02-01 Kenichi Handa <handa@m17n.org>
15811
15812 * xftfont.c (xftfont_draw): Adjust for the change of struct
15813 glyph_string.
15814
15815 * xterm.c (x_set_glyph_string_clipping): Use
15816 get_glyph_string_clip_rects.
15817 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
15818 Adjust for the change of struct glyph_string.
15819
15820 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
15821 the resulting clip(s}.
15822 (expose_overlaps): Add arg r. Change callers. Set it to
15823 row->clip temporarily.
15824 (expose_window): Redraw rows overlapping the exposed area.
15825
15826 * dispextern.h (struct glyph_row): New member clip.
15827 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
15828 clip_height, new member clip, and num_clips.
15829
15830 2008-02-01 Kenichi Handa <handa@m17n.org>
15831
15832 * data.c (Fchar_or_string_p): Fix docstring.
15833
15834 2008-02-01 Kenichi Handa <handa@m17n.org>
15835
15836 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
15837 create a temporary XftDraw object.
15838
15839 2008-02-01 Kenichi Handa <handa@m17n.org>
15840
15841 * font.c (Ffontp): Fix docstring.
15842
15843 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
15844 strong evidence of ISO-2022.
15845
15846 2008-02-01 Kenichi Handa <handa@m17n.org>
15847
15848 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
15849 SYNTAX_ENTRY_FOLLOW_PARENT.
15850
15851 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
15852
15853 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
15854 its type.
15855 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
15856 Update to the new type of weak_hash_tables and next_weak.
15857
15858 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
15859 a plain C pointer to Lisp_Hash_Table.
15860
15861 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
15862 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
15863 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
15864 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
15865 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
15866 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
15867 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
15868 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
15869 (GC_EQ): Remove since they've been identical to their non-GC_
15870 alter-egos ever since the markbit was eradicated.
15871
15872 * alloc.c:
15873 * buffer.c:
15874 * buffer.h:
15875 * data.c:
15876 * fileio.c:
15877 * filelock.c:
15878 * fns.c:
15879 * frame.h:
15880 * lisp.h:
15881 * macterm.c:
15882 * print.c:
15883 * process.c:
15884 * w32fns.c:
15885 * w32menu.c:
15886 * w32term.c:
15887 * xfns.c:
15888 * xmenu.c:
15889 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
15890
15891 2008-02-01 Kenichi Handa <handa@m17n.org>
15892
15893 * chartab.c (map_sub_char_table): Make it work for the top-level
15894 char-table. Fix handling of parent char-table.
15895 (map_char_table): Adjust for the above change.
15896
15897 2008-02-01 Jason Rumney <jasonr@gnu.org>
15898
15899 * w32font.c (Qgdi): Rename from Qw32.
15900
15901 2008-02-01 Jason Rumney <jasonr@gnu.org>
15902
15903 * w32bdf.c (get_quoted_string): Make function static.
15904
15905 2008-02-01 Kenichi Handa <handa@m17n.org>
15906
15907 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
15908 bigger ascent and descent than those of the font, use them as
15909 font's ascent and descent.
15910
15911 2008-02-01 Kenichi Handa <handa@m17n.org>
15912
15913 * Makefile.in (${lispsource}international/charprop.el): Move this
15914 target within "#ifdef HAVE_UNIDATA" and "#endif".
15915
15916 2008-02-01 Kenichi Handa <handa@m17n.org>
15917
15918 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
15919 (shortlisp): Add ../lisp/language/tai-viet.el.
15920
15921 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
15922
15923 * Makefile.in (${lispsource}international/charprop.el): Depend on
15924 temacs${EXEEXT}.
15925
15926 2008-02-01 Jason Rumney <jasonr@gnu.org>
15927
15928 * w32font.c (w32font_close): Delete the GDI font object.
15929
15930 * w32menu.c: Include character.h.
15931
15932 * w32proc.c: Likewise.
15933
15934 * w32select.c: Likewise.
15935
15936 * makefile.w32-in (w32proc.o): Depend on character.h.
15937
15938 2008-02-01 Jason Rumney <jasonr@gnu.org>
15939
15940 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
15941
15942 * w32menu.c (syms_of_w32menu): Likewise.
15943
15944 * w32proc.c (syms_of_ntproc): Likewise.
15945
15946 * w32select.c (syms_of_w32select): Likewise.
15947
15948 * w32term.c (syms_of_w32term): Likewise.
15949
15950 2008-02-01 Jason Rumney <jasonr@gnu.org>
15951
15952 * w32font.c (w32font_draw): Delete brush after using it.
15953
15954 2008-02-01 Jason Rumney <jasonr@gnu.org>
15955
15956 * w32font.c (w32font_open): Don't set font_idx.
15957 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
15958 to font settings.
15959 (w32font_draw): Fill background explicitly.
15960
15961 2008-02-01 Jason Rumney <jasonr@gnu.org>
15962
15963 * w32term.c (w32_initialize): Don't call w32font_initialize.
15964
15965 * w32font.c (w32font_info): Remove subranges.
15966 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
15967 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
15968 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
15969 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
15970 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
15971 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
15972 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
15973 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
15974 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
15975 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
15976 New symbols.
15977 (font_callback_data): New struct.
15978 (w32font_list, w32font_match): Use it.
15979 (w32font_open): Don't populate subranges.
15980 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
15981 (w32font_encode_char): Always return unicode code-point as-is.
15982 (w32font_text_extents): Supply a transformation matrix to
15983 GetGlyphOutline. Never look up by glyph index. Avoid looping
15984 twice. Use unicode version of GetTexExtentPoint32 instead of
15985 glyph index version.
15986 (set_fonts_frame): Remove.
15987 (w32_enumfont_pattern_entity): Add frame parameter, use it to
15988 set frame parameter. Use backward compatible fake foundries.
15989 Save generic family in extra slot under QCfamily. Make width slot
15990 constant. Save QCspacing value. Save list of scripts instead of
15991 binary subranges.
15992 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
15993 (add_font_entity_to_list): Use font_callback_data struct. Filter
15994 unwanted fonts.
15995 (add_one_font_entity_to_list): Use font_callback_data struct.
15996 (w32_registry): Default to iso10646_1.
15997 (fill_in_logfont): Use dpi from extra slot. Don't bother with
15998 string font registries. Don't fill in font name if it is a generic
15999 family name, fill family instead. Use spacing, family and script
16000 extra info to fill pitch, family and charset fields.
16001 (list_all_matching_fonts): Use font_callback_data struct.
16002 (unicode_range_for_char): Remove.
16003 (font_supported_scripts): New function.
16004 (w32font_initialize): Remove.
16005 (syms_of_w32font): Update which symbols are defined.
16006
16007 2008-02-01 Jason Rumney <jasonr@gnu.org>
16008
16009 * font.c (font_pixel_size): Reverse assq_no_quit args.
16010
16011 * w32term.h (FONT_WIDTH): Report max width, not average.
16012 (FONT_MAX_WIDTH): Remove.
16013 (FONT_AVG_WIDTH): New macro.
16014
16015 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
16016 redefinition of FONT_WIDTH.
16017
16018 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
16019 (w32_cache_char_metrics): Use FONT_WIDTH.
16020
16021 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
16022
16023 2008-02-01 Jason Rumney <jasonr@gnu.org>
16024
16025 * w32font.c (w32font_open): Make lfHeight negative.
16026
16027 * w32fns.c (x_default_font_parameter): Use new style font name.
16028 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
16029
16030 2008-02-01 Jason Rumney <jasonr@gnu.org>
16031
16032 * w32font.c (QCsubranges): New symbol.
16033 (w32font_open, w32font_has_char): Get subranges from subproperty
16034 of extra.
16035 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
16036 (syms_of_w32font): Define :subranges symbol.
16037
16038 * font.c (font_put_extra): Expose externally.
16039
16040 * font.h (font_put_extra): Move declaration from font.c.
16041
16042 * font.c (Ffont_get): Use font driver to determine otf capability.
16043 (adjust_anchor): Check if driver defines anchor_point before using.
16044
16045 * w32font.c (w32font_open): Handle size, height and pixel_size better.
16046 (w32font_draw): Use options.
16047 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
16048 Fix detection of truetype fonts.
16049 (registry_to_w32_charset): Handle charsets other than iso8859-1
16050 expressed as lisp symbols.
16051 (w32_registry): Express charset as lisp symbol.
16052 (fill_in_logfont): Reverse pixel and point height logic.
16053 Don't set width here. Set quality to default.
16054
16055 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
16056 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
16057
16058 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
16059 Remove redundant loop and allocation.
16060
16061 * makefile.w32-in (font.o, w32font.o): New objects.
16062 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
16063 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
16064
16065 * xdisp.c (fill_composite_glyph_string): Make the first arg to
16066 STORE_XCHARB a valid l-value.
16067
16068 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
16069 calculations for non-Truetype fonts.
16070 (x_draw_glyph_string): Sync with xterm.c.
16071 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
16072 Remove redundant code.
16073 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
16074
16075 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
16076 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
16077
16078 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
16079 (x_to_w32_charset, w32_to_x_charset): Expose externally.
16080
16081 * w32font.c: New file for w32 font backend.
16082
16083 2008-02-01 Kenichi Handa <handa@m17n.org>
16084
16085 * term.c: Don't include "buffer.h" twice.
16086
16087 2008-02-01 Kenichi Handa <handa@m17n.org>
16088
16089 * character.c (Funibyte_string): New function.
16090 (syms_of_character): Defsubr it.
16091
16092 2008-02-01 Jason Rumney <jasonr@gnu.org>
16093
16094 * w32term.c [USE_FONT_BACKEND]:
16095 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
16096 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
16097 (x_draw_glyph_string, x_draw_glyph_string_foreground)
16098 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
16099 (x_free_frame_resources): Sync with xterm.c.
16100
16101 2008-02-01 Andreas Schwab <schwab@suse.de>
16102
16103 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
16104 char-table size.
16105
16106 2008-02-01 Kenichi Handa <handa@m17n.org>
16107
16108 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
16109
16110 2008-02-01 Kenichi Handa <handa@m17n.org>
16111
16112 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
16113 font_otf_gpos, add font_drive_otf.
16114
16115 * fontset.c (fontset_find_font): Pay attention to font size
16116 specified for a font.
16117 (reorder_font_vector): Check contents of font_def.
16118
16119 * font.c (struct otf_list): Delete it.
16120 (otf_list): Make it a lisp variable.
16121 (otf_open): Use lispy otf_list.
16122 (generate_otf_features): Rename from parse_gsub_gpos_spec.
16123 (check_otf_features): New function.
16124 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
16125 New functions.
16126 (font_drive_otf): New function merging font_otf_gsub and
16127 font_otf_gpos.
16128 (font_open_for_lface): New arg spec. Change argument order.
16129 (font_load_for_face): Adjust for the change of font_open_for_lface.
16130 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
16131 Ffont_otf_gpos.
16132 (syms_of_font): Staticpro otf_list. Delete defsubr of
16133 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
16134
16135 * xfaces.c (set_font_frame_param): Adjust for the change of
16136 font_open_for_lface.
16137
16138 * font.h (font_open_for_lface): Adjust prototype.
16139 (struct font_driver): Delete members otf_gsub and otf_gpos, add
16140 member otf_drive.
16141 (font_otf_gsub, font_otf_gpos): Delete externs.
16142 (font_drive_otf): Extern it.
16143
16144 2008-02-01 Kenichi Handa <handa@m17n.org>
16145
16146 * font.c (font_at): If the window W is not on a window system,
16147 return Qnil.
16148
16149 * coding.c (produce_chars, encode_coding): Don't call
16150 insert_from_gap if no characters to produce.
16151
16152 2008-02-01 Kenichi Handa <handa@m17n.org>
16153
16154 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
16155 Fclear_face_cache.
16156
16157 * xfaces.c (face_for_font): Check also face->font==font->font.font.
16158
16159 2008-02-01 Miles Bader <miles@gnu.org>
16160
16161 * emacs.c (main): Change default value of `enable_font_backend' to 1.
16162 Parse "--disable-font-backend" option.
16163 (standard_args): Add "--disable-font-backend" option.
16164
16165 2008-02-01 Kenichi Handa <handa@m17n.org>
16166
16167 * fontset.c (fontset_find_font): New function.
16168 (fontset_font): Use fontset_find_font.
16169 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
16170 Register the specified font for all Latin characters.
16171 (new_fontset_from_font): Register the specified font for all Latin
16172 characters.
16173 (dump_fontset): For a realized fontset, include the base fontset
16174 name in the returned vector.
16175
16176 2008-02-01 Kenichi Handa <handa@m17n.org>
16177
16178 * character.h (CHAR_STRING): Cast C to unsigned on calling
16179 char_string.
16180
16181 * character.c (char_string): Type of arg C changed to unsigned.
16182 Signal an error if C is an invalid character code.
16183
16184 * editfns.c (general_insert_function, Fchar_to_string):
16185 Use CHARACTERP, not INTEGERP.
16186
16187 2008-02-01 Kenichi Handa <handa@m17n.org>
16188
16189 * character.h (MIN_MULTIBYTE_LEADING_CODE)
16190 (MAX_MULTIBYTE_LEADING_CODE): New macros.
16191
16192 * regex.c (analyse_first): Fix for multibyte characters in "case
16193 charset:" and "case categoryspec:".
16194
16195 2008-02-01 Andreas Schwab <schwab@suse.de>
16196
16197 * Makefile.in (LIBES): Move standard libraries to the end.
16198
16199 2008-02-01 Kenichi Handa <handa@m17n.org>
16200
16201 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
16202 nonzero, don't shrink the buffer nextb.
16203
16204 * buffer.h (struct buffer_text): New member inhibit_shrinking.
16205
16206 * coding.c (coding_alloc_by_making_gap): New arg offset.
16207 (alloc_destination): Call coding_alloc_by_making_gap with the arg
16208 offset.
16209 (decode_coding_iso_2022): Update coding->safe_charsets.
16210 (decode_coding_gap): Temporarily set
16211 current_buffer->text->inhibit_shrinking to 1.
16212
16213 2008-02-01 Kenichi Handa <handa@m17n.org>
16214
16215 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
16216 indexing into elements of s->cmp and s->char2b.
16217
16218 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
16219
16220 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
16221
16222 2008-02-01 Kenichi Handa <handa@m17n.org>
16223
16224 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
16225 target_multibyte instead of multibyte.
16226 (re_match_2_internal): Call bcmp_translate with target_multibyte.
16227 (bcmp_translate): Change the argument name from multibyte to
16228 target_multibyte.
16229
16230 2008-02-01 Kenichi Handa <handa@m17n.org>
16231
16232 These changes are to compile a regexp into a pattern that can be
16233 used both for multibyte and unibyte targets.
16234
16235 * Makefile.in (search.o): Depend on charset.h.
16236
16237 * character.c (multibyte_char_to_unibyte_safe): New function.
16238
16239 * search.c: Include "charset.h".
16240 (compile_pattern_1): Delete argument multibyte. Don't set
16241 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
16242 (compile_pattern): Don't compare cp->buf.target_multibyte.
16243 Compare cp->buf.charset_unibyte.
16244 (compile_pattern): Set cp->buf.target_multibyte.
16245
16246 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
16247
16248 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
16249
16250 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
16251 multibyte. Change callers.
16252 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
16253 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
16254 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
16255 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
16256 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
16257 (regex_compile): Make the compiled pattern usable both for
16258 multibyte and unibyte targets.
16259 (analyse_first): Make the fastmap usable both for multibyte and
16260 unibyte targets.
16261 (TRANSLATE_VIA_MULTIBYTE): Delete.
16262 (re_match_2_internal): Pay attention to the case that the
16263 multibyteness of bufp and target may be different.
16264
16265 2008-02-01 Kenichi Handa <handa@m17n.org>
16266
16267 * xdisp.c (x_produce_glyphs): When a font is not found, make the
16268 empty box occupy at least one column width.
16269
16270 2008-02-01 Miles Bader <miles@gnu.org>
16271
16272 * Makefile.in: Remove redundant HAVE_XFT clause.
16273
16274 2008-02-01 Kenichi Handa <handa@m17n.org>
16275
16276 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
16277
16278 2008-02-01 Kenichi Handa <handa@m17n.org>
16279
16280 * fontset.c (Finternal_char_font): Fix for the case of POSITION
16281 being nil.
16282
16283 2008-02-01 Kenichi Handa <handa@m17n.org>
16284
16285 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
16286
16287 2008-02-01 Kenichi Handa <handa@m17n.org>
16288
16289 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
16290
16291 2008-02-01 Kenichi Handa <handa@m17n.org>
16292
16293 * search.c (simple_search): Fix previous change.
16294
16295 2008-02-01 Kenichi Handa <handa@m17n.org>
16296
16297 * xftfont.c (ftfont_font_format): Extern declaration.
16298
16299 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
16300
16301 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
16302 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
16303
16304 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
16305 (ftfont_font_format): Fix previous change.
16306
16307 * font.h (Ffont_xlfd_name): EXFUN it.
16308
16309 * font.c (font_parse_xlfd): Fix the array size of `f'.
16310 (register_font_driver): Use EQ to compare driver->type.
16311
16312 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
16313 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
16314 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
16315
16316 2008-02-01 Kenichi Handa <handa@m17n.org>
16317
16318 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
16319 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
16320
16321 2008-02-01 Kenichi Handa <handa@m17n.org>
16322
16323 * xfont.c (xfont_open): Set font->format.
16324
16325 * xftfont.c (xftfont_open): Set font->format.
16326
16327 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
16328 (ftfont_list): Include FC_FONTFORMAT in FcObject.
16329 (ftfont_open): Set font->format.
16330 (ftfont_font_format): New function.
16331
16332 * font.h (struct font): New member format.
16333
16334 * font.c (Qopentype): New variable.
16335 (syms_of_font): Defsym it.
16336 (Fquery_font): Change the format of the last element of the return
16337 value.
16338
16339 2008-02-01 Kenichi Handa <handa@m17n.org>
16340
16341 * xfns.c (xic_create_xfontset): Try the default fontset name as a
16342 last resort.
16343
16344 2008-02-01 Kenichi Handa <handa@m17n.org>
16345
16346 * coding.c (detect_coding_charset): Fix detection of multi-byte
16347 charset.
16348
16349 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
16350
16351 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
16352
16353 2008-02-01 Kenichi Handa <handa@m17n.org>
16354
16355 * xdisp.c (get_next_display_element): Set it->face_id for the
16356 first component of a composition.
16357 (x_produce_glyphs): Check if the font is changed or not for composition.
16358
16359 2008-02-01 Kenichi Handa <handa@m17n.org>
16360
16361 * fontset.c (Qlatin): New variable.
16362 (syms_of_fontset): Define it as a lisp symbol.
16363 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
16364
16365 2008-02-01 Kenichi Handa <handa@m17n.org>
16366
16367 * font.c (font_unparse_fcname): Pay attention to the case that
16368 some of font property is a null string.
16369
16370 2008-02-01 Kenichi Handa <handa@m17n.org>
16371
16372 * term.c: Include "composite.h".
16373 (encode_terminal_code): Output all components of composition.
16374 Check the size of encode_terminal_src.
16375 (produce_glyphs): For composition, call produce_composite_glyph.
16376 (append_composite_glyph, produce_composite_glyph): New functions.
16377
16378 * xdisp.c (x_produce_glyphs): In handling composition, if a font
16379 is not found, get font_info from the current ascii face.
16380
16381 2008-02-01 Kenichi Handa <handa@m17n.org>
16382
16383 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
16384 buffer-file-name to Qnil before calling insert_from_buffer.
16385
16386 * font.c (font_unparse_fcname): Pay attention to the case that
16387 foundry is a null string.
16388
16389 2008-02-01 Kenichi Handa <handa@m17n.org>
16390
16391 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
16392
16393 * font.c (Qunicode_sip): New variable.
16394 (syms_of_font): Declare it as a Lisp symbol.
16395
16396 * font.h (Qunicode_sip): Extern it.
16397
16398 2008-02-01 Kenichi Handa <handa@m17n.org>
16399
16400 * composite.c (get_composition_id): Pay attention to TAB component.
16401
16402 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
16403 TAB. Adjust for the change of s->char2b which always points to
16404 the first element of allocated memory.
16405
16406 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
16407
16408 * xdisp.c (handle_composition_prop): Set it->c to the first
16409 non-TAB component.
16410 (fill_composite_glyph_string): Change argument.
16411 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
16412 (x_produce_glyphs): Fix handling of left/right padding.
16413
16414 2008-02-01 Kenichi Handa <handa@m17n.org>
16415
16416 * coding.c (detect_coding_system): Fix for handling off
16417 inhibit_iso_escape_detection. Fix for the case that no coding
16418 system is defined for a specific coding category.
16419
16420 2008-02-01 Kenichi Handa <handa@m17n.org>
16421
16422 * font.c (font_matching_entity): Delete unused local var.
16423
16424 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
16425 opening a font.
16426
16427 * fileio.c (Finsert_file_contents): On recovering a file, assume
16428 Unix-like eol.
16429 (choose_write_coding_system): On auto-saving a file, force
16430 Unix-like eol.
16431
16432 * coding.c (setup_coding_system): Fix setting of
16433 coding->common_flags based on eol_type.
16434 (coding_inherit_eol_type): If PARENT is not nil, be sure to
16435 inherit from it.
16436
16437 2008-02-01 Kenichi Handa <handa@m17n.org>
16438
16439 * alloc.c (NSTATICS): Increas to 0x600.
16440
16441 2008-02-01 Kenichi Handa <handa@m17n.org>
16442
16443 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
16444 (ftfont_list): Don't check :name property.
16445 (ftfont_match): New function.
16446 (ftfont_pattern_entity): If the pattern doesn't contain
16447 FC_SPACING, don't assume FC_MONO.
16448
16449 * font.h (struct font_driver): New member `match'.
16450 (font_update_drivers): Adjust prototype.
16451
16452 * font.c (font_parse_fcname, font_parse_name): Don't change :name
16453 property of FONT.
16454 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
16455 them unconditionally.
16456 (font_matching_entity): New function.
16457 (font_open_by_name): Try font_matching_entity if exact match is
16458 not found.
16459 (font_update_drivers): Delete the arg FONT. Return a list of
16460 actually used backends. Don't free faces, font caches here.
16461 Don't store data in frame parameters. Don't call x_set_font.
16462 (Ffont_spec): Store :name property as is.
16463 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
16464 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
16465 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
16466 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
16467 Call font->driver->otf_gsub instead of font_otf_gsub.
16468
16469 * frame.c (x_set_font_backend): Do more works that were done in
16470 font_update_drivers before.
16471
16472 * xfont.c (xfont_match): New function.
16473 (xfont_driver): Set xfont_driver.match to xfont_match.
16474 (xfont_draw): Set font in GC if necessary.
16475
16476 * ftxfont.c (ftxfont_match): New function.
16477 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
16478
16479 * xftfont.c (xftfont_match): New function.
16480 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
16481
16482 2008-02-01 Kenichi Handa <handa@m17n.org>
16483
16484 * font.h (struct font): New member scalable.
16485 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
16486 (font_otf_gsub): Adjust prototype.
16487
16488 * font.c (font_otf_capability): Fix handling of the default langsys.
16489 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
16490 Check the contents of SPEC.
16491 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
16492 (check_gstring): New function.
16493 (REPLACEMENT_CHARACTER): New macro.
16494 (font_otf_gsub): New arg alternate_subst. Be sure to set all
16495 glyph codes of GSTRING.
16496 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
16497 (font_prepare_composition): Set cmp->glyph_len.
16498 (font_open_entity): Set font->scalable.
16499 (Ffont_get): Handle :otf property.
16500 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
16501 functions.
16502 (Fquery_font): Use font->font.full_name.
16503 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
16504 Sfont_otf_alternates.
16505
16506 * ftfont.c (ftfont_open): Set font->font.full_name and
16507 font->font.name properly. Fix calculation of font->font.height
16508 and font->min_width.
16509
16510 * ftxfont.c (ftxfont_create_gcs): New function.
16511 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
16512 (ftxfont_draw_backgrond): Fix filling region.
16513 (ftxfont_default_fid): New function.
16514 (ftxfont_open): Set xfont->fid to the return value of
16515 ftxfont_default_fid.
16516 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
16517 (ftxfont_done_face): Free only GCs that are created by
16518 ftxfont_create_gcs.
16519 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
16520
16521 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
16522 Clip to src->width, etc (not src->clip_XXX).
16523
16524 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
16525 FontBackend frame parameter.
16526
16527 2008-02-01 Kenichi Handa <handa@m17n.org>
16528
16529 * font.h (struct font_driver_list): New member `on'.
16530 (Fclear_font_cache): EXFUN it.
16531 (font_update_drivers): Extern it.
16532
16533 * font.c (font_unparse_fcname): Fix typo (swidth->width).
16534 (font_list_entities): Check driver_list->on.
16535 (register_font_driver): Initalize `on' member to 0.
16536 (font_update_drivers): New function.
16537 (Fclear_font_cache): Check driver_list->on.
16538
16539 * frame.h (Qfont_backend): Extern it.
16540 (x_set_font_backend): Extern it.
16541
16542 * frame.c (Qfont_backend): New variable.
16543 (frame_parms): New element for font-backend.
16544 (x_set_font_backend): New function.
16545
16546 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
16547 FontBackend frame parameter.
16548 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
16549 x_set_font_backend.
16550
16551 * xfont.c (xfont_list): Don't try listing by :name property if the
16552 name is not for XLFD.
16553
16554 2008-02-01 Kenichi Handa <handa@m17n.org>
16555
16556 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
16557 (LGLYPH_SET_TO): New macros.
16558 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
16559 element of G is vector or not.
16560 (font_at): Extern it.
16561
16562 * font.c: Include window.h.
16563 (font_lispy_object): New function.
16564 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
16565 end of valid glyph.
16566 (font_close_object): Fix getting (struct font *).
16567 (font_at): New function.
16568 (Ffont_get): If FONT is a font-object, get entity from it.
16569 (Ffont_make_gstring): Initialize elements of glyphs with nil.
16570 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
16571 range check.
16572 (Ffont_at): New function.
16573 (syms_of_font): Defsubr Sfont_at.
16574
16575 * xdisp.c (it_props): Move the entry for Qauto_composed to just
16576 before the entry for Qcomposition.
16577 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
16578 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
16579 the font in gstring.
16580 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
16581 LGLYPH_FORM (g) to detect the end of valid glyph.
16582 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
16583 we are composing with gstring.
16584
16585 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
16586 Check if adjustment is vector or not.
16587
16588 * Makefile.in (font.o): Make it depends on window.h.
16589
16590 2008-02-01 Kenichi Handa <handa@m17n.org>
16591
16592 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
16593 adjustment is vector or not.
16594
16595 2008-02-01 Miles Bader <miles@gnu.org>
16596
16597 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
16598
16599 2008-02-01 Kenichi Handa <handa@m17n.org>
16600
16601 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
16602 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
16603 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
16604
16605 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
16606 (DEVICE_DELTA): Fix typo.
16607 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
16608 LGLYPH format.
16609
16610 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
16611 the change of LGLYPH format.
16612
16613 2008-02-01 Kenichi Handa <handa@m17n.org>
16614
16615 * ftfont.c (ftfont_list): Fix typo.
16616 (ftfont_build_basic_charsets): Don't include letters with diacritics.
16617
16618 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
16619
16620 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
16621
16622 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
16623 xftface_info is non-NULL.
16624
16625 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
16626
16627 * ftfont.c (ftfont_list): Move misplaced #endif.
16628
16629 2008-02-01 Kenichi Handa <handa@m17n.org>
16630
16631 * ftfont.c (ftfont_list): Pay attention to the case that
16632 FC_CAPABILITY is not defined.
16633
16634 2008-02-01 Kenichi Handa <handa@m17n.org>
16635
16636 * xftfont.c (xftfont_open): Set charset related members to -1.
16637
16638 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
16639 QCname.
16640 (ftfont_open): Set charset related members to -1.
16641
16642 * fontset.c (Votf_script_alist): New variable.
16643 (syms_of_fontset): Initialize it.
16644 (fontset_font): Delete unused variable.
16645
16646 * fontset.h (Votf_script_alist): Extern it.
16647
16648 * font.c (font_find_for_lface): Optimize code.
16649
16650 * font.h (font_close_object, font_merge_old_spec): Extern them.
16651
16652 2008-02-01 Kenichi Handa <handa@m17n.org>
16653
16654 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
16655 (syms_of_font): Initialize them.
16656 (font_pixel_size): Allow float value in dpi.
16657 (font_prop_validate_type): Delete.
16658 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
16659 Change caller.
16660 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
16661 (font_prop_validate_extra): Delete.
16662 (font_prop_validate_spacing): New function.
16663 (font_property_table): Add elements for all known properties.
16664 (get_font_prop_index): Rename from check_font_prop_name. New
16665 argument FROM. Change caller.
16666 (font_prop_validate): Validate all known properties.
16667 (font_put_extra): Delete argument force. Change caller.
16668 (font_expand_wildcards): Make it static. Fix the way of shrinking
16669 the possible range.
16670 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
16671 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
16672 Change caller.
16673 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
16674 (font_parse_fcname): Delete argument merge. Fix parsing of point
16675 size. Don't validate properties values here. Change caller.
16676 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
16677 (font_open_by_name): Delete unused variable.
16678 (Ffont_spec): Likewise. Validate property values.
16679 (Ffont_match_p): New function.
16680
16681 * font.h (QCscalable): Extern it.
16682 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
16683
16684 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
16685
16686 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
16687 (xfont_list_pattern): New function.
16688 (xfont_list): Use xfont_list_pattern.
16689
16690 2008-02-01 Kenichi Handa <handa@m17n.org>
16691
16692 * font.h (Flist_fonts): EXFUN it.
16693
16694 2008-02-01 Jason Rumney <jasonr@gnu.org>
16695
16696 * w32term.c (w32_initialize): Add back smoothing_type and
16697 smoothing_enabled definitions.
16698
16699 2008-02-01 Kenichi Handa <handa@m17n.org>
16700
16701 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
16702 s->face->font on determining underline position.
16703
16704 2008-02-01 Kenichi Handa <handa@m17n.org>
16705
16706 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
16707 (font_has_char): Accept font-object too.
16708 (font_find_for_lface): Try at first with a size specified in face.
16709
16710 2008-02-01 Kenichi Handa <handa@m17n.org>
16711
16712 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
16713 font_open_by_name.
16714
16715 2008-02-01 Kenichi Handa <handa@m17n.org>
16716
16717 * font.h (QCspacing, QCdpi): Extern them.
16718 (enum font_spacing): New enum.
16719 (FONT_PIXEL_SIZE_QUANTUM): New macro.
16720
16721 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
16722 (QCspacing, QCdpi): New variables.
16723 (syms_of_font): Initialize them.
16724 (font_pixel_size): New function.
16725 (font_put_extra): New function.
16726 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
16727 in FONT_EXTRA.
16728 (font_parse_fcname): Handle enumerated values (e.g. bold).
16729 Fix handling font size. Add QCname property that contains only
16730 unknown properties.
16731 (font_score): Change argument. Change caller. Pay attention to
16732 FONT_PIXEL_SIZE_QUANTUM.
16733 (font_sort_entites, font_list_entities, font_find_for_lface)
16734 (font_open_for_lface, font_open_by_name): Fix handling of font size.
16735 (Ffont_spec): Add QCname property that contains only unknown properties.
16736
16737 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
16738 include weight in listing pattern, instead check weight of each
16739 listed font. Don't include scalable in pattern. Pay attention to
16740 FONT_PIXEL_SIZE_QUANTUM.
16741
16742 2008-02-01 Kenichi Handa <handa@m17n.org>
16743
16744 * font.c (font_parse_fcname): Fix parsing of point-size.
16745 (font_unparse_fcname): Produce symbolic names for style properties.
16746 (font_list_entities): Handle float size correctly.
16747 (font_open_by_name): Prefer `normal' property values if the name
16748 doesn't specify them.
16749
16750 * fontset.c (Finternal_char_font): Use font_get_name, not
16751 Ffont_xlfd_name.
16752
16753 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
16754 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
16755 pattern. Don't force scalable.
16756
16757 * xftfont.c (xftfont_open): For generating a name, start from
16758 96-byte buffer.
16759
16760 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
16761
16762 * frame.h (x_new_fontset2): Fix prototype.
16763
16764 2008-02-01 Kenichi Handa <handa@m17n.org>
16765
16766 * font.h (struct font_driver): Delete member parse_name.
16767 (font_match_p, font_get_spec, font_parse_fcname)
16768 (font_unparse_fcname): Extern them.
16769 (font_get_name): Adjust prototype.
16770
16771 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
16772 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
16773 (font_expand_wildcards): Fix handling ENCODING field. Avoid
16774 unnecessary checks for weight, slant, and swidth.
16775 (font_parse_fcname): New function.
16776 (font_unparse_fcname): New function.
16777 (font_parse_name): New function.
16778 (font_match_p): New function.
16779 (font_get_name): Change return value to Lisp string.
16780 (font_get_spec): New function.
16781 (Qunspecified, Qignore_defface): Don't extern them.
16782 (font_find_for_lface): Assume that LFACE is fully specified.
16783 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
16784 object, use it for FACE.
16785 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
16786 driver->parse_name.
16787 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
16788
16789 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
16790 prototype.
16791
16792 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
16793 argument F. Don't call Fnew_fontset. Instead, directly call
16794 make_fontset.
16795
16796 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
16797
16798 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
16799 of x_new_fontset2.
16800
16801 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
16802 (Qsans__serif): New variables.
16803 (ftfont_generic_family_list): New variable.
16804 (syms_of_ftfont): Initialize the above variables.
16805 (ftfont_pattern_entity): Delete argument NAME.
16806 (ftfont_list_generic_family): New function.
16807 (ftfont_parse_name): Delete this function.
16808 (ftfont_list): Try generic family only when FcFontList found no font.
16809 (ftfont_list_family): Fix args to FcObjectSetBuild.
16810
16811 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
16812 object in attrs[LFACE_FONT_INDEX].
16813 (set_lface_from_font_name): Cancel all changes for font-backend.
16814 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
16815 function.
16816 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
16817 font object in QCfont attribute.
16818 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
16819 (realize_default_face) [USE_FONT_BACKEND]: Call
16820 set_lface_from_font_and_fontset.
16821
16822 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
16823 "fixed", and signal error here if no suitable font was found.
16824
16825 * xfont.c (xfont_parse_name): Delete this function.
16826
16827 * xftfont.c (xftfont_open): Change coding style of error
16828 handling. Generate fontconfig's fontname pattern.
16829
16830 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
16831 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
16832
16833 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
16834 Both args FONTSET and FONT_OBJECT must be existing ones.
16835
16836 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16837
16838 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
16839
16840 2008-02-01 Kenichi Handa <handa@m17n.org>
16841
16842 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
16843
16844 * font.h (struct font): Fix typo.
16845
16846 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
16847 XLFD_XXX_INDEX.
16848 (enum xlfd_field_mask): New enum.
16849 (intern_font_field): Changed argument. Change caller. If digits
16850 are followed by non-digits, return a symbol.
16851 (font_expand_wildcards): New function.
16852 (font_parse_xlfd): Fix wildcard handling.
16853 (Ffont_spec): If :name is specified, reflect the info in the other
16854 properties.
16855
16856 * ftfont.c (ftfont_pattern_entity): Fix typo.
16857 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
16858 locale.
16859
16860 2008-02-01 Kenichi Handa <handa@m17n.org>
16861
16862 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
16863
16864 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
16865 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
16866 registry doesn't specify encoding part.
16867 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
16868 (font_open_by_name): At first try parsing the name.
16869 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
16870 as Lisp symbols.
16871
16872 * fontset.c (reorder_font_vector): Pay attention to the case that
16873 the 3rd element of font_def is nil.
16874 (fontset_font): For the default fontset, append one more fontset
16875 elements for a script-based font specification. Don't add script
16876 attribute on finding a font.
16877 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
16878 font name.
16879 (fontset_ascii_font): If a font can't be opened, return nil.
16880
16881 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
16882 (ftfont_pattern_entity): New function.
16883 (ftfont_get_cache): Assume that freetype_font_cache is already
16884 initialized.
16885 (ftfont_list): Handle the case that a file is specified in font
16886 name. Use ftfont_pattern_entity to generate entities.
16887 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
16888 (syms_of_ftfont): Initialize freetype_font_cache.
16889
16890 * xftfont.c (xftfont_open): Make the font name fontconfig's
16891 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
16892 (xftfont_close): Free font->font.name if not NULL.
16893
16894 * xfont.c (xfont_list): If script is specified for a font, return
16895 null_vector.
16896 (xfont_list_family): Declare argument type.
16897
16898 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
16899 name, set LFACE_FONT (lface) to nil.
16900
16901 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
16902 return Qnil.
16903
16904 2008-02-01 Kenichi Handa <handa@m17n.org>
16905
16906 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
16907 (standard_args): Add "-enable-font-backend".
16908
16909 2008-02-01 Kenichi Handa <handa@m17n.org>
16910
16911 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
16912 (struct xftdraw_list, xftdraw_list): Delete them.
16913 (register_xftdraw, check_xftdraw): Delete them.
16914 (xftfont_prepare_face): Don't call register_xftdraw.
16915 (xftfont_done_face): Don't call check_xftdraw.
16916 (xftfont_draw): Get background color only when with_background is
16917 nonzero.
16918
16919 * xfont.c (xfont_encode_char): Fix calculation of char2b.
16920
16921 2008-02-01 Kenichi Handa <handa@m17n.org>
16922
16923 These changes are for the new font handling codes.
16924
16925 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
16926 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
16927 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
16928 (FONTSRC, FONTOBJ): New variables.
16929 (obj): Add $(FONTOBJ).
16930 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
16931 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
16932 @LIBOTF_LIBS@.
16933 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
16934 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
16935
16936 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
16937
16938 * character.h (Vscript_representative_chars): Extern it.
16939
16940 * character.c (Vscript_representative_chars): New variable.
16941 (syms_of_character): Declare it as a Lisp variable.
16942
16943 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
16944 enable_font_backend is nonzero, accept the composition method
16945 COMPOSITION_WITH_GLYPH_STRING.
16946
16947 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
16948 enumeration COMPOSITION_WITH_GLYPH_STRING.
16949
16950 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
16951 members clip_x, clip_y, clip_width, and clip_height.
16952 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
16953
16954 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
16955 --enable-font-backend. Call syms_of_font.
16956
16957 * fns.c (assoc_no_quit): New function.
16958
16959 * fontset.h (FONT_INFO_FROM_FACE): New macro.
16960 (face_for_font, new_fontset_from_font)
16961 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
16962
16963 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
16964 (fontset_font, fontset_ascii, face_for_char)
16965 (make_fontset_for_ascii_face, Ffont_info)
16966 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
16967 is nonzero, use font-backend mechanism.
16968 (find_font_encoding): Make it non-static.
16969 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
16970 New functions.
16971
16972 * frame.h (struct frame): New members resx and resy.
16973 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
16974 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
16975
16976 * frame.c [USE_FONT_BACKEND]: Include "font.h".
16977 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
16978
16979 * lisp.h (assoc_no_quit): Extern it.
16980
16981 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
16982 Through out the file, use FONT_INFO_FROM_FACE instead of
16983 FONT_INFO_FROM_ID, use get_per_char_metric instead of
16984 rif->per_char_metric.
16985 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
16986 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
16987 (get_glyph_face_and_encoding, fill_composite_glyph_string)
16988 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
16989 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
16990 nonzero, use font-backend mechanism.
16991 (get_per_char_metric): New function.
16992
16993 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
16994 (set_lface_from_font_name)
16995 (set_font_frame_param, free_realized_face)
16996 (prepare_face_for_display, clear_face_gcs)
16997 (Finternal_set_font_selection_order, realize_x_face)
16998 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
16999 font-backend mechanism.
17000 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
17001 (load_face_font) [USE_FONT_BACKEND]: Abort.
17002 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
17003 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
17004
17005 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
17006 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
17007 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
17008 nonzero, register all available font drivers. Call
17009 x_default_font_parameter for deciding a font.
17010 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
17011
17012 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
17013 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
17014 (x_set_glyph_string_clipping_exactly)
17015 (x_compute_glyph_string_overhangs)
17016 (x_draw_glyph_string_foreground)
17017 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
17018 (x_free_frame_resources) [USE_FONT_BACKEND]: If
17019 enable_font_backend is nonzero, use font-backend mechanism.
17020 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
17021
17022 2008-02-01 Kenichi Handa <handa@m17n.org>
17023
17024 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
17025 system_eol_type.
17026 (syms_of_coding): Initialize system_eol_type.
17027
17028 * process.c (Fset_process_coding_system): Inherit system's eol
17029 format if necessary.
17030
17031 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17032
17033 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
17034
17035 2008-02-01 Kenichi Handa <handa@m17n.org>
17036
17037 * coding.c (decode_eol): Pay attention to buffer relocation in
17038 del_range_2.
17039 (decode_coding): Call decode_eol before restoring undo_list.
17040
17041 2008-02-01 Kenichi Handa <handa@m17n.org>
17042
17043 * charset.c (Fdefine_charset_internal): Fix setting of
17044 emacs_mule_bytes.
17045
17046 2008-02-01 Kenichi Handa <handa@m17n.org>
17047
17048 * keyboard.c (read_char): Check if C is a character or not before
17049 looking up Vkeyboard_translate_table.
17050
17051 2008-02-01 Kenichi Handa <handa@m17n.org>
17052
17053 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
17054 condition to terminate the loop.
17055
17056 2008-02-01 Kenichi Handa <handa@m17n.org>
17057
17058 * coding.c (produce_composition): Compare charbuf[i] instead of
17059 args[i] against 0.
17060 (Fterminal_coding_system): Use EQ to compare Lisp objects.
17061
17062 2008-02-01 Kenichi Handa <handa@m17n.org>
17063
17064 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
17065 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
17066 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
17067 detect_coding.
17068 (emacs_mule_char): Handle old style (Emacs 20) component character
17069 of a composition.
17070 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
17071 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
17072 composition rule.
17073 (decode_coding_emacs_mule): Handle invalid bytes correctly.
17074
17075 2008-02-01 Kenichi Handa <handa@m17n.org>
17076
17077 * coding.c (encode_coding_ccl): Allocate destination dynamically
17078 when necessary.
17079
17080 2008-02-01 Kenichi Handa <handa@m17n.org>
17081
17082 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
17083 the loop. When quitted, show a proper error message.
17084
17085 2008-02-01 Kenichi Handa <handa@m17n.org>
17086
17087 * xterm.c (x_set_glyph_string_clipping_exactly): Set
17088 src->clip_head and src->clip_tail temporarily instead of src->hl.
17089
17090 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
17091 character sequence.
17092 (Fccl_execute_on_string): Use ASET, not XSET.
17093
17094 2008-02-01 Kenichi Handa <handa@m17n.org>
17095
17096 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
17097
17098 2008-02-01 Kenichi Handa <handa@m17n.org>
17099
17100 * coding.c (decode_coding): Fix the condition of terminating the
17101 decoding loop.
17102
17103 2008-02-01 Kenichi Handa <handa@m17n.org>
17104
17105 * data.c (Faset): On setting a character bigger than 255 in a
17106 unibyte string, signal an error instead of make the string multibyte.
17107
17108 2008-02-01 Kenichi Handa <handa@m17n.org>
17109
17110 * charset.c (map_charset_chars): Fix for ascii-compatible charset
17111 made by a mapping table.
17112
17113 2008-02-01 Kenichi Handa <handa@m17n.org>
17114
17115 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
17116 not.
17117 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
17118 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
17119
17120 * xterm.c (x_draw_composite_glyph_string_foreground): Check
17121 s->face is NULL or not.
17122
17123 2008-02-01 Kenichi Handa <handa@m17n.org>
17124
17125 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
17126 (x_draw_glyph_string): Fix drawing of right_overhang and
17127 left_overhang around/on cursor.
17128
17129 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
17130
17131 2008-02-01 Kenichi Handa <handa@m17n.org>
17132
17133 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
17134
17135 2008-02-01 Kenichi Handa <handa@m17n.org>
17136
17137 * coding.c (Fdefine_coding_system_internal)
17138 (Fdefine_coding_system_alias): Avoid a duplicated element in
17139 Vcoding_system_alist.
17140
17141 2008-02-01 Kenichi Handa <handa@m17n.org>
17142
17143 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
17144
17145 * coding.c (Qcoding_system_define_form): New variable.
17146 (syms_of_coding): Intern and staticpro it.
17147 (Fcoding_system_p): Check Qcoding_system_define_form.
17148 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
17149
17150 * coding.h (CODING_SYSTEM_P): If ID is not available, call
17151 Fcoding_system_p.
17152 (CHECK_CODING_SYSTEM): If ID is not available, call
17153 Fcheck_coding_system.
17154 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
17155 Try also Fcheck_coding_system.
17156
17157 2008-02-01 Kenichi Handa <handa@m17n.org>
17158
17159 * coding.c (code_conversion_restore): GCPRO arg.
17160
17161 2008-02-01 Kenichi Handa <handa@m17n.org>
17162
17163 * character.c (lisp_string_width): Check multibyteness of STRING.
17164
17165 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17166
17167 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
17168 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
17169 (decode_mac_font_name): Use decode_coding_c_string instead of
17170 decode_coding.
17171 (x_load_font): Initialize fontp->fontset to -1. Set
17172 fontp->encoding_type.
17173
17174 2008-02-01 Kenichi Handa <handa@m17n.org>
17175
17176 * search.c (search_buffer): Give up BM search on case-fold-search
17177 if one of a target character has a case-equivalence of different
17178 byte length even if that target charcter is an ASCII.
17179 (simple_search): Fix calculation of byte length of matched text.
17180 (boyer_moore): Fix handling of case-equivalent multibyte characters.
17181
17182 2008-02-01 Kenichi Handa <handa@m17n.org>
17183
17184 * coding.c (decode_coding): Fix handling of invalid bytes.
17185
17186 2008-02-01 Kenichi Handa <handa@m17n.org>
17187
17188 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
17189 Unicode characters.
17190
17191 2008-02-01 Kenichi Handa <handa@m17n.org>
17192
17193 * coding.c (encode_coding_object): If a pre-write-conversion
17194 function makes a new buffer, kill it.
17195
17196 2008-02-01 Kenichi Handa <handa@m17n.org>
17197
17198 * coding.c (QCascii_compatible_p): New variable.
17199 (syms_of_coding): Initialize it.
17200 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
17201 calling string_char.
17202 (record_conversion_result): Add `default:' case.
17203 (coding_charset_list): Delete unused variable `coding_type'.
17204 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
17205 property in the plist of the coding system.
17206 (Fcoding_system_put): Check QCascii_compatible_p.
17207
17208 2008-02-01 Miles Bader <miles@gnu.org>
17209
17210 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
17211 removed calculation of frame `f', as it's now used.
17212
17213 2008-02-01 Kenichi Handa <handa@m17n.org>
17214
17215 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
17216 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
17217 (UNIDATA): New variable.
17218 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
17219 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
17220 $(RUN_TEMACS) unconditionally.
17221
17222 2008-02-01 Kenichi Handa <handa@m17n.org>
17223
17224 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
17225 (admindir): New variable.
17226 ($(lispsource)international/charprop.el): New target.
17227
17228 2008-02-01 Miles Bader <miles@gnu.org>
17229
17230 * character.c (chars-in-region): Remove obsolete function.
17231 (syms_of_character): Remove its initialization.
17232
17233 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
17234
17235 * w32select.c (validate_coding_system)
17236 (setup_windows_coding_system): New functions.
17237 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
17238 setup_windows_coding_system.
17239 (setup_config, Fw32_get_clipboard_data): Use
17240 validate_coding_system.
17241 (Fx_selection_exists): Move call to setup_config to a place
17242 where signals are allowed.
17243
17244 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
17245 (Fcheck_coding_system): Add declarations.
17246
17247 2008-02-01 Kenichi Handa <handa@m17n.org>
17248
17249 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
17250
17251 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17252
17253 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
17254 string as the second argument for x_new_fontset.
17255
17256 2008-02-01 Kenichi Handa <handa@m17n.org>
17257
17258 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
17259 (encode_coding_object): Use safe_call instead of call2.
17260
17261 2008-02-01 Kenichi Handa <handa@m17n.org>
17262
17263 * fontset.c (Fset_fontset_font): Check family element of a given vector.
17264
17265 * Makefile.in (lisp): Include charprop.el.
17266
17267 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17268
17269 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
17270 Not sure if it's unnecessary.
17271
17272 2008-02-01 Steven Tamm <steventamm@mac.com>
17273
17274 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
17275 some possibly unnecessary fontset checking code that crashed
17276 when creating a new frame.
17277
17278 2008-02-01 Kenichi Handa <handa@m17n.org>
17279
17280 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
17281 lookup_face.
17282
17283 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
17284
17285 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
17286
17287 2008-02-01 Kenichi Handa <handa@m17n.org>
17288
17289 * coding.c: Cancel the change done in HEAD on 2008-02-01.
17290 (coding_charset_list): New function.
17291
17292 * coding.h (coding_charset_list): Extern it.
17293
17294 2008-02-01 Kenichi Handa <handa@m17n.org>
17295
17296 * fontset.c (Fset_fontset_font): Call find_font_encoding with
17297 concatenation of family and registry.
17298
17299 2008-02-01 Kenichi Handa <handa@m17n.org>
17300
17301 * character.h (BYTE8_STRING): Fix typo.
17302
17303 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
17304 string to multibyte (sync to HEAD).
17305
17306 * casefiddle.c (casify_region): Handle changes in byte-length
17307 using replace_range_2 (sync to HEAD).
17308
17309 2008-02-01 Andreas Schwab <schwab@suse.de>
17310
17311 * chartab.c (map_char_table): GCPRO table and arg.
17312
17313 2008-02-01 Kenichi Handa <handa@m17n.org>
17314
17315 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
17316 already at limit.
17317
17318 2008-02-01 Kenichi Handa <handa@m17n.org>
17319
17320 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
17321 instead of fast_c_string_match_ignore_case.
17322 (find_font_encoding): Change argument to Lisp_Object. Use
17323 fast_string_match_ignore_case instead of
17324 fast_c_string_match_ignore_case. Change caller.
17325
17326 2008-02-01 Kenichi Handa <handa@m17n.org>
17327
17328 * xdisp.c (get_next_display_element): In unibyte case, decide to
17329 display in octal form by checking a character by
17330 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
17331
17332 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
17333
17334 * character.c (unibyte_has_multibyte_table): New variable.
17335
17336 * character.h (unibyte_has_multibyte_table): Extern it.
17337 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
17338
17339 2008-02-01 Kenichi Handa <handa@m17n.org>
17340
17341 * coding.c (encode_coding_iso_2022): Fix handling of charset
17342 annotation.
17343
17344 2008-02-01 Kenichi Handa <handa@m17n.org>
17345
17346 * coding.c (setup_coding_system): If coding_system is nil, use
17347 Qundecided.
17348 (Fterminal_coding_system): Return nil if terminal coding system is
17349 `undecided'.
17350 (syms_of_coding): Define coding-system `undecided' here. Setup
17351 terminal_coding as `undecided'.
17352
17353 2008-02-01 Kenichi Handa <handa@m17n.org>
17354
17355 * xdisp.c (message_dolog, set_message_1): Call
17356 unibyte_char_to_multibyte with arg type int.
17357
17358 * lread.c (read1): Fix reading of a char-table.
17359
17360 * print.c (print_object): Include sub char-table in circularities
17361 detection.
17362
17363 2008-02-01 Kenichi Handa <handa@m17n.org>
17364
17365 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
17366 Append the found sequences in car of ARGS instead of prepending.
17367
17368 2008-02-01 Kenichi Handa <handa@m17n.org>
17369
17370 * fileio.c (report_file_error): Make a unibyte string from
17371 strerror (errorno).
17372 (Fsubstitute_in_file_name): Fix the arg to
17373 unibyte_char_to_multibyte. It is evaluated twice.
17374
17375 2008-02-01 Kenichi Handa <handa@m17n.org>
17376
17377 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
17378
17379 2008-02-01 Kenichi Handa <handa@m17n.org>
17380
17381 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
17382 BOM is not found.
17383 (detect_coding, detect_coding_system): Optimization for ISO-2022
17384 when no 8-bit data is found.
17385
17386 2008-02-01 Jason Rumney <jasonr@gnu.org>
17387
17388 * w32fns.c (x_to_w32_font): Update to use new coding struct.
17389
17390 2008-02-01 Kenichi Handa <handa@m17n.org>
17391
17392 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
17393 CHARS.
17394
17395 2008-02-01 Steven Tamm <steventamm@mac.com>
17396
17397 * macterm.c (mac_encode_char): Add charset argument and update
17398 to use encoding_type.
17399 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
17400 switch to pure fontset.
17401 (decode_mac_font_name): Temporarily remove decoding.
17402 (x_font_name_to_mac_font_name): Temporarily remove encoding.
17403 (x_load_font): Temporarily remove encoding.
17404
17405 2008-02-01 Kenichi Handa <handa@m17n.org>
17406
17407 * xfaces.c (Fface_font): If frame is not on a window system,
17408 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
17409 refer to face->font.
17410 (split_font_name_into_vector, build_font_name_from_vector)
17411 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
17412 when HAVE_WINDOW_SYSTEM is defined.
17413
17414 2008-02-01 Kenichi Handa <handa@m17n.org>
17415
17416 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
17417 (x_produce_glyphs): Fix setting of members of cmp in case
17418 cmp->glyph_len is zero.
17419
17420 * fontset.c (Fset_fontset_font): Fix docstring.
17421 (Ffontset_info): Make it backward compatible. New arg ALL.
17422
17423 2008-02-01 Kim F. Storm <storm@cua.dk>
17424
17425 * process.c (read_process_output): Grow decoding_buf when needed;
17426 this could cause a crash in allocate_string and compact_small_strings.
17427
17428 2008-02-01 Kenichi Handa <handa@m17n.org>
17429
17430 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
17431
17432 2008-02-01 Kenichi Handa <handa@m17n.org>
17433
17434 * coding.c (setup_coding_system): Set coding->common_flags
17435 correctly for raw-text.
17436 (consume_chars): On encoding unibyte text by raw-text, don't check
17437 multibyte form.
17438 (encode_coding): On encoding by raw-text, never use translation tables.
17439
17440 * fileio.c (e_write): Short cut for the case of no encoding.
17441
17442 2008-02-01 Kenichi Handa <handa@m17n.org>
17443
17444 * coding.c (detect_coding, detect_coding_system): Delete unused
17445 variables.
17446
17447 2008-02-01 Kenichi Handa <handa@m17n.org>
17448
17449 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
17450 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
17451
17452 2008-02-01 Kenichi Handa <handa@m17n.org>
17453
17454 * coding.c (Ffind_coding_systems_region_internal): Include
17455 raw-text and no-conversion in the result.
17456
17457 2008-02-01 Kenichi Handa <handa@m17n.org>
17458
17459 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
17460 (load_font_get_repertory): Delete unnecessary check of ENCODING of
17461 FONT_DEF.
17462 (font_def_arg, add_arg, from_arg, to_arg): New args.
17463 (set_fontset_font): Change argument.
17464 (Fset_fontset_font): Fix for the case that TARGET is a script
17465 name and charset name.
17466 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
17467
17468 2008-02-01 Kenichi Handa <handa@m17n.org>
17469
17470 * fontset.c (fontset_font): Rename from fontset_face. Change return
17471 value.
17472 (face_suitable_for_char_p, face_for_char): Adjust for the change
17473 of fontset_font.
17474 (make_fontset_for_ascii_face): Fix setting of the fontset element
17475 for ASCII.
17476 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
17477 to get a font name.
17478 (Ffontset_info): Adjust for the change of fontset_font.
17479
17480 * coding.c (emacs_mule_char): Check invalid code more rigidly.
17481
17482 * character.h (LEADING_CODE_LATIN_1_MIN)
17483 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
17484
17485 2008-02-01 Kenichi Handa <handa@m17n.org>
17486
17487 * editfns.c (check_translation): New function.
17488 (Ftranslate_region_internal): Handle M:N mapping.
17489
17490 2008-02-01 Kenichi Handa <handa@m17n.org>
17491
17492 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
17493
17494 2008-02-01 Kenichi Handa <handa@m17n.org>
17495
17496 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
17497 goto invalid_code.
17498 (decode_coding_iso_2022): Fix handling of invalid designation.
17499
17500 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
17501 after calling code_conversion_save.
17502
17503 2008-02-01 Kenichi Handa <handa@m17n.org>
17504
17505 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
17506
17507 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
17508
17509 * fontset.c: Include "intervals.h".
17510 (fontset_face): Fix comparing of Lisp_Objects.
17511 (free_face_fontset, new_fontset_from_font_name): Fix
17512 Lisp_Object/int mixup.
17513
17514 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
17515
17516 * coding.c: Add many prototypes for static functions.
17517 (get_translation_table): Allow max_lookup to be NULL.
17518 (decode_coding, Ffind_coding_systems_region_internal)
17519 (Funencodable_char_position, Fcheck_coding_systems_region): Call
17520 get_translation_table with max_lookup NULL.
17521
17522 2008-02-01 Kenichi Handa <handa@m17n.org>
17523
17524 * coding.c (get_translation_table): Declare it as Lisp_Object.
17525 (LOOKUP_TRANSLATION_TABLE): New macro.
17526 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
17527 instead of CHAR_TABLE_REF.
17528
17529 2008-02-01 Kenichi Handa <handa@m17n.org>
17530
17531 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
17532 annotation data format.
17533 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
17534 Change arguments FROM and TO to single argument NCHARS. Change caller.
17535 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
17536 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
17537 (decode_coding_ccl, decode_coding_charset): Pay attention to
17538 coding->charbuf_used.
17539 (get_translation): New function.
17540 (produce_chars): New arguments translation_table and last_block.
17541 Translate characters here. Return number of carryover chars.
17542 Change caller.
17543 (produce_composition): New argument pos. Change caller.
17544 Adjust for the change of annotation data format.
17545 (produce_charset, produce_annotation): Likewise.
17546 (decode_coding, encode_coding): Don't call translate_chars.
17547 (consume_chars): New arg translation_table. Change caller.
17548 (translate_chars): Delete.
17549 (syms_of_coding): Make translation-table's number of extra slots 2.
17550
17551 2008-02-01 Kenichi Handa <handa@m17n.org>
17552
17553 * search.c (simple_search): Fix setting this_pos_byte in backward
17554 search.
17555
17556 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
17557 byte sequence.
17558 (detect_coding_ccl): Fix setting of the variable valids.
17559
17560 2008-02-01 Kenichi Handa <handa@m17n.org>
17561
17562 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
17563
17564 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
17565
17566 * editfns.c (Ftranslate_region_internal): Rename from
17567 Ftranslate_region. Accept a char-table in TABLE.
17568 (syms_of_editfns): Defsubr Stranslate_region_internal.
17569
17570 * xfaces.c (set_lface_from_font_name): If a font is specified for
17571 a frame, generate a fontset from the font.
17572 (build_scalable_font_name): If the scalable font is requested for
17573 a specific size, don't change that size.
17574 (try_font_list): Try a scalable font also in the case that a
17575 pattern string is specified.
17576
17577 2008-02-01 Kenichi Handa <handa@m17n.org>
17578
17579 * xfaces.c (Fface_font): New optional arg CHARACTER.
17580
17581 2008-02-01 Kenichi Handa <handa@m17n.org>
17582
17583 * charset.h (CHARSET_OFFSET): New macro.
17584
17585 2008-02-01 Kenichi Handa <handa@m17n.org>
17586
17587 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
17588
17589 * fontset.c (fontset_face): Handle the case that repertory is a
17590 char-table.
17591 (find_font_encoding): Return nil for unknown encoding.
17592 (Fset_fontset_font): Ignore a font of unknown encoding.
17593
17594 2008-02-01 Kenichi Handa <handa@m17n.org>
17595
17596 * keymap.c (describe_vector): Handle default value of a char table.
17597
17598 * fontset.c (fontset_face): Handle fallback fonts correctly.
17599 (Ffontset_info): Return infomation about fallback fonts.
17600
17601 2008-02-01 Kenichi Handa <handa@m17n.org>
17602
17603 * fontset.c (FONTSET_DEFAULT): New macro.
17604 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
17605 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
17606 the case that it is nil.
17607 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
17608 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
17609
17610 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
17611 subset or superset.
17612
17613 2008-02-01 Kenichi Handa <handa@m17n.org>
17614
17615 * emacs.c (main): Call init_charset after syms_of_XXX.
17616
17617 * charset.c (Vcharset_map_directory): Delete.
17618 (Vcharset_map_path): New variable.
17619 (load_charset_map_from_file): Use Vcharset_map_path instead.
17620 (init_charset): Initialize Vcharset_map_path.
17621 (syms_of_charset): Delete declaration of "charset-map-directory",
17622 add declaration of "charset-map-path".
17623
17624 2008-02-01 Kenichi Handa <handa@m17n.org>
17625
17626 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
17627 ASCII only string.
17628
17629 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
17630
17631 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
17632 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
17633
17634 2008-02-01 Kenichi Handa <handa@m17n.org>
17635
17636 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
17637
17638 * coding.c (QCmnemonic, QCdefalut_char)
17639 (QCdecode_translation_table, QCencode_translation_table)
17640 (QCpost_read_conversion, QCpre_write_conversion): New variables.
17641 (get_translation_table): Return a list of translation tables if
17642 necessary.
17643 (decode_coding): Call get_translation_table with ENCODEP 0.
17644 (char_encodable_p): If translation_table is non-nil, always call
17645 translate_char.
17646 (Fdefine_coding_system_internal): Accept list of translation
17647 tables as :encode-translation-table and :decode-translation-table.
17648 (Fcoding_system_put): New function.
17649 (syms_of_coding): Declare new symbols. Defsubr
17650 Scoding_system_put.
17651 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
17652 typically JISX0212.
17653
17654 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
17655 when the charset is superset type.
17656
17657 * character.c (translate_char): Accept list of translation tables.
17658
17659 2008-02-01 Kenichi Handa <handa@m17n.org>
17660
17661 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
17662 (CODING_ATTR_TRANS_TBL): New macro.
17663
17664 * coding.c (get_translation_table): New function.
17665 (translate_chars): Fix the bug of skipping annotation data.
17666 (decode_coding, encode_coding): Utilize get_translation_table.
17667 (char_encodable_p, Funencodable_char_position): Translate char if
17668 necessary.
17669 (Ffind_coding_systems_region_internal)
17670 (Fcheck_coding_systems_region): Setup translation table for encode
17671 in a coding system attribute vector in advance.
17672 (Fdefine_coding_system_internal): Allow a symbol as translation
17673 table. For shift-jis type coding system, allow 4th charset.
17674
17675 2008-02-01 Kenichi Handa <handa@m17n.org>
17676
17677 * coding.c (decode_coding_sjis): Check the first byte rigidly.
17678
17679 * xdisp.c (get_next_display_element): Pass -1 as POS to
17680 FACE_FOR_CHAR if displaying a C-string.
17681
17682 2008-02-01 Kenichi Handa <handa@m17n.org>
17683
17684 * composite.c (get_composition_id): Handle xoff and yoff in a
17685 composition rule.
17686
17687 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
17688 (struct composition): New member lbearing and rbearing.
17689
17690 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
17691 (x_get_glyph_overhangs): Handle a composition glyph.
17692 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
17693
17694 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
17695 composition glyph.
17696
17697 2008-02-01 Kenichi Handa <handa@m17n.org>
17698
17699 * print.c: Include charset.h.
17700 (Vprint_charset_text_property): New variable.
17701 (Qdefault): Extern it.
17702 (PRINT_STRING_NON_CHARSET_FOUND)
17703 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
17704 (print_check_string_result): New variable.
17705 (print_check_string_charset_prop): New function.
17706 (print_prune_charset_plist): New variable.
17707 (print_prune_string_charset): New function.
17708 (print_object): Call print_prune_string_charset if
17709 Vprint_charset_text_property is not t.
17710 (print_interval): Print nothing if interval->plist is nil.
17711 (syms_of_print): Declare Vprint_charset_text_property as a lisp
17712 variable. Init and staticpro print_prune_charset_plist.
17713
17714 2008-02-01 Kenichi Handa <handa@m17n.org>
17715
17716 * fontset.c (new_fontset_from_font_name): Use the specified font
17717 for all characters in the new fontset.
17718
17719 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
17720 OBJECT args.
17721
17722 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
17723 OBJECT args for composition too.
17724
17725 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
17726 OBJECT args.
17727
17728 2008-02-01 Kenichi Handa <handa@m17n.org>
17729
17730 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
17731
17732 * fontset.c (reorder_font_vector): Adjust for the change of
17733 FONT_DEF format.
17734 (fontset_face): New arg id. Change caller.
17735 (face_for_char): New args pos and object.
17736 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
17737 (fs_query_fontset): Check NAME by Fassoc too.
17738 (Fset_fontset_font): Allow non-XLFD font name.
17739 (Ffontset_info): Adjust for the change of FONT_DEF format.
17740
17741 * fontset.h (face_for_char): Adjust prototype.
17742
17743 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
17744 (append_space, extend_face_to_end_of_line)
17745 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
17746 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
17747
17748 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
17749 POS and OBJECT args.
17750
17751 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
17752 POS and OBJECT args.
17753
17754 2008-02-01 Jason Rumney <jasonr@gnu.org>
17755
17756 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
17757 of GlobalAlloc'ed memory.
17758
17759 2008-02-01 Kenichi Handa <handa@m17n.org>
17760
17761 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
17762
17763 * charset.h (charset_table_used): Delete extern.
17764
17765 * charset.c (charset_table_used): Make it static.
17766 (map_charset_chars): Fix args to c_function with.
17767
17768 * chartab.c (map_sub_char_table_for_charset): Fix args to
17769 c_function with.
17770
17771 * coding.h (enum coding_result_code): Delete
17772 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
17773
17774 * coding.c (Qinsufficient_source, Qinconsistent_eol)
17775 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
17776 (Vlast_code_conversion_error): New variables.
17777 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
17778 (ONE_MORE_BYTE): Record error if any instead of signaling an
17779 error. If non-ASCII multibyte char is found, return the negative
17780 value of the code. All callers changed to check it.
17781 (ONE_MORE_BYTE_NO_CHECK): Likewise.
17782 (record_conversion_result): New function. Change all codes setting
17783 coding->result to call this function.
17784 (detect_coding_utf_8, decode_coding_utf_8)
17785 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
17786 Don't use the local variable incomplete.
17787 (emacs_mule_char): Change the second arg to `const'.
17788 (decode_coding): Fix of flushing out unprocessed data.
17789 (make_conversion_work_buffer): Fix making of a work buffer.
17790 (decode_coding_object): Return coding->dst_object.
17791
17792 * fontset.c (set_fontset_font): Fix args.
17793
17794 * lisp.h (CHARACTERBITS): Define as 22.
17795
17796 * process.c (send_process): Be sure to set coding->src_multibyte.
17797
17798 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
17799
17800 2008-02-01 Kenichi Handa <handa@m17n.org>
17801
17802 * xdisp.c (handle_auto_composed_prop): Give limit to
17803 Fnext_single_char_property_change.
17804
17805 2008-02-01 Kenichi Handa <handa@m17n.org>
17806
17807 * composite.c (syms_of_composite): Don't make the composition hash
17808 table weak.
17809
17810 * fontset.c (Fset_fontset_font): Fix docstring.
17811
17812 * lisp.h (detect_coding_system): Adjust prototype.
17813
17814 * fileio.c (kill_workbuf_unwind): Delete this function.
17815 (Finsert_file_contents): Adjust the call of detect_coding_system.
17816 Get conversion_buffer by code_conversion_save. Use the macro
17817 CODING_MAY_REQUIRE_DECODING. After decoding, update
17818 coding_system.
17819
17820 * coding.h (make_conversion_work_buffer): Delete extern.
17821 (code_conversion_save): Extern it.
17822
17823 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
17824 (CODING_GET_INFO): Delete argument eol_type. Change callers.
17825 (decode_coding_utf_8): Don't do eol converion.
17826 (detect_coding_utf_16): Check coding->src_chars, not
17827 coding->src_bytes. Add heuristics for those that have no signature.
17828 (decode_coding_emacs_mule, decode_coding_iso_2022)
17829 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
17830 Don't do eol converion.
17831 (adjust_coding_eol_type): Return a new coding system.
17832 (detect_coding): Don't detect eol. Fix for utf-16 detection.
17833 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
17834 each change.
17835 (decode_coding): Pay attention to undo_list. Do eol conversion for
17836 all types of coding-systems (if necessary).
17837 (Vcode_conversion_work_buf_list): Delete it.
17838 (Vcode_conversion_reused_workbuf): Rename from
17839 Vcode_conversion_reused_work_buf.
17840 (Vcode_conversion_workbuf_name): New variable.
17841 (reused_workbuf_in_use): New variable.
17842 (make_conversion_work_buffer): Delete the arg DEPTH.
17843 (code_conversion_restore): Change argument to cons.
17844 (code_conversion_save): Delete the argument BUFFER. Change callers.
17845 (detect_coding_system): New argument src_chars. Change callers.
17846 Fix for utf-16 detection.
17847 (init_coding_once): Don't use ISO_carriage_return.
17848 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
17849 reused_workbuf_in_use.
17850
17851 2008-02-01 Kenichi Handa <handa@m17n.org>
17852
17853 * keymap.c (store_in_keymap): Pay attention to the case that idx
17854 is a cons specifying a character range.
17855
17856 2008-02-01 Kenichi Handa <handa@m17n.org>
17857
17858 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
17859 HANDLED_RECOMPUTE_PROPS.
17860
17861 * coding.c (Fdefine_coding_system_internal): Fix checking of
17862 ascii compatibility.
17863
17864 2008-02-01 Kenichi Handa <handa@m17n.org>
17865
17866 * charset.c (find_charsets_in_text): Delete unused locale variable.
17867 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
17868
17869 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
17870 Resync charset_list to Vemacs_mule_charset_list.
17871
17872 * keymap.c (store_in_keymap): Pay attention to the case that idx
17873 is a cons specifying a character range.
17874
17875 2008-02-01 Kenichi Handa <handa@m17n.org>
17876
17877 * composite.c (update_compositions): Bind inhibit-read-only, etc
17878 to t before calling remove-list-of-text-properties.
17879
17880 * print.c (print_object): Always print ASCII chars as is.
17881
17882 2008-02-01 Kenichi Handa <handa@m17n.org>
17883
17884 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
17885
17886 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
17887 is a char table.
17888
17889 2008-02-01 Kenichi Handa <handa@m17n.org>
17890
17891 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
17892
17893 2008-02-01 Kenichi Handa <handa@m17n.org>
17894
17895 * xfaces.c (set_lface_from_font_name): Fix for the case that
17896 FONTNAME is not fontset name.
17897
17898 2008-02-01 Kenichi Handa <handa@m17n.org>
17899
17900 * fns.c (base64_encode_1): Fix previous change.
17901
17902 2008-02-01 Kenichi Handa <handa@m17n.org>
17903
17904 * fontset.c (set_fontset_font): New function.
17905 (Fset_fontset_font): If a font is specified for a charset, use
17906 map_charset_chars to store the font spec in a fontset.
17907
17908 2008-02-01 Kenichi Handa <handa@m17n.org>
17909
17910 * fontset.c (fontset_face): Create a fallback fontset on demand.
17911 (make_fontset): Don't create a fallback fontset here.
17912 (free_face_fontset): Free a fallback fontset (if any) too.
17913 (n_auto_fontsets): Delete this variable.
17914 (auto_fontset_alist): New variable.
17915 (new_fontset_from_font_name): Check auto_fontset_alist.
17916 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
17917 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
17918 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
17919 Defsubr Sfontset_list_all.
17920
17921 2008-02-01 Kenichi Handa <handa@m17n.org>
17922
17923 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
17924
17925 2008-02-01 Kenichi Handa <handa@m17n.org>
17926
17927 * fontset.c (Fnew_fontset): Check NAME more rigidly.
17928
17929 2008-02-01 Kenichi Handa <handa@m17n.org>
17930
17931 * editfns.c (Fgoto_char): Fix docstring.
17932
17933 2008-02-01 Kenichi Handa <handa@m17n.org>
17934
17935 * insdel.c (insert_from_gap): Adjust intervals correctly.
17936
17937 2008-02-01 Jason Rumney <jasonr@gnu.org>
17938
17939 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
17940 (pfnGetFontUnicodeRanges): New dynamically loaded function.
17941 (w32_initialize): Try to load it.
17942 (x_get_font_repertory): Use it if available.
17943 (w32_encode_char): Add shortcut for unicode output.
17944
17945 * w32fns.c (w32_load_system_font): Default charset to -1.
17946 (x_to_w32_charset): Match all fonts for unicode.
17947 (w32_to_x_charset): New parameter matching. Don't return partial
17948 or wildcard charsets.
17949 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
17950 (w32_codepage_for_font): Return CP_UNICODE for unicode.
17951 (w32_to_x_font): Match charset to real charset.
17952 (enum_font_cb2): Always list unicode versions.
17953
17954 * makefile.w32-in (temacs): Increase EMHEAP.
17955
17956 2008-02-01 Jason Rumney <jasonr@gnu.org>
17957
17958 * w32term.c (w32_encode_char): New charset parameter.
17959 font_info.encoding becomes encoding_type.
17960 (x_get_font_repertory): New function. Warning: stub only!
17961 (x_new_font): Return quickly if font already set.
17962 (x_new_fontset): fontsetname parameter is Lisp_Object.
17963 Use new fs_query_fontset. Try new_fontset_from_font_name.
17964 Use fontset_name for return value.
17965
17966 * w32term.h: Declare x_get_font_repertory.
17967
17968 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
17969 place of find_charset_in_text. Use encode_coding_object in place
17970 of encode_coding.
17971 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
17972 decode_coding.
17973
17974 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
17975 of x_new_fontset.
17976 (w32_load_system_font): Initialize charset as unicode.
17977 font_info.encoding becomes encoding_type.
17978 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
17979 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
17980 (syms_of_w32fns): Set get_font_repertory_func.
17981
17982 * w32console.c: Include character.h. Use terminal_encode_buffer
17983 from term.c.
17984 (write_glyphs): Use new version of encode_terminal_code. Use
17985 encode_coding_object in place of encode_coding.
17986
17987 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
17988 encoding becomes encoding_type.
17989
17990 * term.c (terminal_encode_buffer): Make externally visible.
17991
17992 * makefile.w32-in: Add character.h dependancies.
17993 (character.o, chartab.o): New targets.
17994
17995 2008-02-01 Kenichi Handa <handa@m17n.org>
17996
17997 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
17998 CODING_ID_EOL_TYPE.
17999
18000 2008-02-01 Andreas Schwab <schwab@suse.de>
18001
18002 * coding.c (produce_chars): Revert last change.
18003
18004 2008-02-01 Kenichi Handa <handa@m17n.org>
18005
18006 * charset.h (charset_unicode): Extern it.
18007
18008 * charset.c (string_xstring_p): Check by (C >= 0x100).
18009 (find_charsets_in_text): Change format of the arc CHARSETS. New
18010 arg MULTIBYTE.
18011 (Ffind_charset_region, Ffind_charset_string): Adjust for the
18012 change of find_charsets_in_text.
18013 (Fsplit_char): Fix doc. Never return unknown.
18014
18015 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
18016
18017 * coding.c (Fdefine_coding_system_alias): Update
18018 Vcoding_system_list.
18019
18020 * fontset.c (load_font_get_repertory): Pay attention to the case
18021 that ENCODING of a font is specified by a char-table.
18022
18023 * xterm.c (x_get_font_repertory): Handle the case that the
18024 encoding of font is other than Unicode.
18025
18026 2008-02-01 Kenichi Handa <handa@m17n.org>
18027
18028 * term.c (encode_terminal_code): Don't handle glyph-table. Check
18029 if a character is encodable by the terminal coding system. If
18030 not, produces proper number of `?'s. Update
18031 terminal_encode_buffer and terminal_encode_buf_size if necessary.
18032 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
18033
18034 2008-02-01 Kenichi Handa <handa@m17n.org>
18035
18036 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
18037 variables.
18038 (encode_terminal_code): Change argument. Encode multiple
18039 characters at once. Store the result of encoding in
18040 terminal_encode_buffer.
18041 (write_glyphs, insert_glyphs): Adjust for the change of
18042 encode_terminal_code.
18043 (term_init): Initialize terminal_encode_buffer and
18044 terminal_encode_buf_size.
18045
18046 * coding.c (consume_chars): If coding->src_object is nil, don't
18047 check annotation.
18048
18049 2008-02-01 Kenichi Handa <handa@m17n.org>
18050
18051 * character.c (char_string): Use ASCII_CHAR_P instead of
18052 SINGLE_BYTE_CHAR_P.
18053
18054 2008-02-01 Kenichi Handa <handa@m17n.org>
18055
18056 * xdisp.c (handle_auto_composed_prop): Check if the last
18057 characters of auto-composed region is newly composed with the
18058 following characters.
18059 (handle_composition_prop): Fix checking of point being inside
18060 composition.
18061
18062 2008-02-01 Kenichi Handa <handa@m17n.org>
18063
18064 * fns.c (concat): Don't change multibyteness of the result by
18065 concatenating an 8-bit character.
18066
18067 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
18068 multibyteness of the result when newelt is an 8-bit character.
18069
18070 2008-02-01 Dave Love <fx@gnu.org>
18071
18072 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
18073 EMACS_INT.
18074
18075 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
18076
18077 * xfaces.c (face_numeric_value): Declare dim size_t.
18078 (Finternal_lisp_face_equal_p): Remove unused f.
18079
18080 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
18081 (MATRIX_ROW): Remove unused vars.
18082 (draw_glyphs, x_insert_glyphs, fast_find_position)
18083 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
18084 byte/char counts.
18085
18086 * regex.c (regex_compile): Remove unused var.
18087
18088 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
18089
18090 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
18091 (Faccessible_keymaps, where_is_internal): Remove unused vars.
18092
18093 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
18094
18095 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
18096
18097 * fileio.c (Fwrite_region): Remove unused var.
18098
18099 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
18100 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
18101
18102 * composite.c (Fremove_list_of_text_properties): Declare.
18103
18104 * coding.c (inhibit_pre_post_conversion): Remove (unused).
18105 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
18106 (coding_inherit_eol_type): Remove unused attrs.
18107 (detect_coding): Cast arg of detect_eol.
18108
18109 * charset.c (syms_of_charset): Remove unused var p.
18110 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
18111 byte/char counts.
18112
18113 * casetab.c (set_case_table): Remove unused var.
18114
18115 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
18116 unused vars.
18117
18118 2008-02-01 Dave Love <fx@gnu.org>
18119
18120 * xterm.c (x_bitmap_mask): Declare.
18121
18122 2008-02-01 Dave Love <fx@gnu.org>
18123
18124 * xterm.c (x_term_init): Fix type error.
18125
18126 * lisp.h: Add Funibyte_char_to_multibyte.
18127
18128 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
18129 (Fset_coding_system_priority): Doc fix.
18130
18131 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
18132
18133 * indent.c (check_composition): Make start and end EMACS_INT.
18134
18135 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
18136
18137 * xdisp.c (handle_composition_prop, check_point_in_composition):
18138 Make buffer positions EMACS_INT.
18139
18140 * composite.c (find_composition, run_composition_function)
18141 (update_compositions, Ffind_composition_internal): Make buffer
18142 positions EMACS_INT.
18143
18144 * composite.h (find_composition, update_compositions): Make
18145 position args EMACS_INT.
18146
18147 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
18148
18149 * intervals.c (get_property_and_range):
18150 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
18151
18152 * unexalpha.c: Don't include varargs.h.
18153
18154 2008-02-01 Dave Love <fx@gnu.org>
18155
18156 * coding.h (ENCODE_UTF_8): New.
18157
18158 * Makefile.in (gtkutil.o): Depend on coding.h.
18159
18160 * coding.c (Fset_coding_system_priority): Doc fix.
18161
18162 2008-02-01 Kenichi Handa <handa@m17n.org>
18163
18164 * fileio.c (Finsert_file_contents): Call setup_coding_system in
18165 the case of auto saving.
18166
18167 2008-02-01 Andreas Schwab <schwab@suse.de>
18168
18169 * chartab.c (map_char_table, map_char_table_for_charset): Protect
18170 `range' from GC.
18171
18172 2008-02-01 Kenichi Handa <handa@m17n.org>
18173
18174 * coding.c (decode_coding_sjis): Check bytes more rigidly.
18175
18176 2008-02-01 Kenichi Handa <handa@m17n.org>
18177
18178 * fileio.c (choose_write_coding_system): Return a decided coding system.
18179 (Fwrite_region): Set Vlast_coding_system_used to the return value
18180 of choose_write_coding_system.
18181
18182 2008-02-01 Kenichi Handa <handa@m17n.org>
18183
18184 * charset.c (Fset_charset_priority): Pay attention to duplicated
18185 arguments.
18186
18187 * coding.c (QCcategory): New variable.
18188 (syms_of_coding): Defsym it. Set all elements of
18189 Vcoding_category_table and their symbol values.
18190 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
18191 coding-category-XXX, and coding-category-list.
18192 (Fdefine_coding_system_internal): Add category in the plist.
18193
18194 2008-02-01 Kenichi Handa <handa@m17n.org>
18195
18196 * callproc.c (Fcall_process): Handle carryover correctly.
18197
18198 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
18199 (raw_text_coding_system): Check NILP (coding_system).
18200 (coding_inherit_eol_type): Check NILP (coding_system) and
18201 NILP (parent).
18202 (consume_chars): Fix for the case of raw-text.
18203
18204 * process.c (read_process_output): Handle carryover correctly.
18205
18206 2008-02-01 Dave Love <fx@gnu.org>
18207
18208 * regex.c (re_search_2): Fix last change.
18209
18210 2008-02-01 Kenichi Handa <handa@m17n.org>
18211
18212 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
18213 target_multibyte. Even in a unibyte case, return a converted
18214 multibyte char.
18215 (GET_CHAR_AFTER): New macro.
18216 (PATFETCH): Translate via multibyte char.
18217 (HANDLE_UNIBYTE_RANGE): Delete this macro.
18218 (SETUP_MULTIBYTE_RANGE): New macro.
18219 (regex_compile): Setup compiled code so that its multibyteness
18220 matches that of a target. Fix the handling of "[X-YZ]" using
18221 SETUP_MULTIBYTE_RANGE.
18222 (analyse_first) <charset>: For filling fastmap for all multibyte
18223 characters, don't check by BASE_LEADING_CODE_P.
18224 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
18225 the same as RE_MULTIBYTE_P (bufp) now.
18226 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
18227 (TARGET_CHAR_AND_LENGTH): Delete this macro.
18228 (TRANSLATE_VIA_MULTIBYTE): New macro.
18229 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
18230 It is the same as RE_MULTIBYTE_P (bufp) now.
18231 <exactn>: Translate via multibyte.
18232 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
18233 translate it.
18234 <charset, charset_not>: Fetch a character by
18235 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
18236 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
18237 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
18238 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
18239 by GET_CHAR_AFTER.
18240 (bcmp_translate): Likewise.
18241
18242 * search.c (compile_pattern): Check the member target_multibyte,
18243 not the member multibyte of buf.
18244
18245 * lread.c (read1): While reading a string, set force_singlebyte
18246 and force_multibyte correctly.
18247
18248 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
18249 up of unibyte_to_multibyte_table.
18250
18251 2008-02-01 Kenichi Handa <handa@m17n.org>
18252
18253 * coding.c (setup_coding_system): If coding has
18254 post-read-conversion or pre-write-conversion, set
18255 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
18256 respectively.
18257 (decode_coding_gap): Run post-read-conversion if any.
18258
18259 * fileio.c (Finsert_file_contents): Even if we read into a
18260 unibyte buffer, check if we must decode the result or not.
18261
18262 2008-02-01 Kenichi Handa <handa@m17n.org>
18263
18264 * coding.c (make_conversion_work_buffer): Change the work buffer
18265 name to the same one as that of Emacs 21.
18266
18267 2008-02-01 Kenichi Handa <handa@m17n.org>
18268
18269 * coding.h (make_conversion_work_buffer): Adjust prototype.
18270 (code_conversion_restore): Don't extern it.
18271
18272 * coding.c (detected_mask): Delete unused variable.
18273 (decode_coding_iso_2022): Pay attention to the byte sequence of
18274 CTEXT extended segment, and retain those bytes as is.
18275 (decode_coding_ccl): Delete unused variable `valids'.
18276 (setup_coding_system): Delete unused variable `category'.
18277 (consume_chars): Delete unused variable `category'. Make it work
18278 for non-multibyte case.
18279 (make_conversion_work_buffer): Change argument.
18280 (saved_coding): Delete unused variable.
18281 (code_conversion_restore): Don't check saved_coding->destination.
18282 (code_conversion_save): New function.
18283 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
18284 instead of record_unwind_protect.
18285 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
18286 (detect_coding_system): Delete unused variable `mask'.
18287 (Fdefine_coding_system_internal): Delete unused variable id.
18288
18289 * fileio.c (kill_workbuf_unwind): New function.
18290 (Finsert_file_contents): On replacing, call
18291 make_conversion_work_buffer with correct args, and call
18292 record_unwind_protect with the first arg kill_workbuf_unwind.
18293
18294 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
18295
18296 2008-02-01 Kenichi Handa <handa@m17n.org>
18297
18298 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
18299 (fontset_add): Fix for the case that TO is less than TO1.
18300 (Ffontset_info): Don't use fallback fontset on checking the
18301 default fontset.
18302 (dump_fontset): New function for debugging.
18303
18304 * coding.c (Fdefine_coding_system_internal): Fix for the case that
18305 coding_type is Qcharset.
18306
18307 2008-02-01 Kenichi Handa <handa@m17n.org>
18308
18309 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
18310 (map_char_table): Don't inherit the value from the parent on
18311 initializing VAL. Adjust for the above change.
18312
18313 2008-02-01 Kenichi Handa <handa@m17n.org>
18314
18315 * coding.c (Qsignature, Qendian): Delete these variables.
18316 (syms_of_coding): Don't initialize them.
18317 (CATEGORY_MASK_UTF_16_AUTO): New macro.
18318 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
18319 detect_info->found.
18320 (decode_coding_utf_16): Don't detect BOM here.
18321 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
18322 is NOT utf_16_without_bom.
18323 (setup_coding_system): For a coding system of type utf-16, check
18324 if the attribute :endian is Qbig or not (not nil or not), and set
18325 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
18326 (detect_coding): If coding type is utf-16 and BOM detection is
18327 required, detect it.
18328 (Fdefine_coding_system_internal): For a coding system of type
18329 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
18330
18331 2008-02-01 Kenichi Handa <handa@m17n.org>
18332
18333 * coding.c (coding_set_source): Fix for the case that the current
18334 buffer is different from coding->src_object.
18335 (decode_coding_object): Don't use the conversion work buffer if
18336 DST_OBJECT is a buffer.
18337
18338 2008-02-01 Dave Love <fx@gnu.org>
18339
18340 * lread.c (read_emacs_mule_char) [len==2]: Index
18341 emacs_mule_charset correctly.
18342
18343 2008-02-01 Dave Love <fx@gnu.org>
18344
18345 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
18346 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
18347 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
18348 treated specially.)
18349 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
18350 (detected_mask): Remove Big5 bits.
18351
18352 2008-02-01 Kenichi Handa <handa@m17n.org>
18353
18354 The following changes are to make the font rescaling facility
18355 compatible with Emacs 21.
18356
18357 * xfaces.c (Vface_font_rescale_alist): Rename from
18358 Vface_resizing_fonts.
18359 (struct font_name): Rename member resizing_ratio to rescale_ratio.
18360 (font_rescale_ratio): Rename from font_resizing_ratio.
18361 (split_font_name): Set font->rescale_ratio.
18362 (better_font_p): Pay attention to font->rescale_ratio.
18363 (build_scalable_font_name): Likewise. Change RESX, and RESY
18364 fields.
18365 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
18366
18367 2008-02-01 Kenichi Handa <handa@m17n.org>
18368
18369 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
18370 (Qutf_16_le): Remove these variables.
18371 (syms_of_coding): Don't DEFSYM them.
18372 (decode_coding_utf_16): Fix handling of BOM.
18373 (encode_coding_utf_16): Fix handling of BOM.
18374
18375 2008-02-01 Kenichi Handa <handa@m17n.org>
18376
18377 * fileio.c (Finsert_file_contents): On replacing, before decoding
18378 the file into the work buffer, set point of the work buffer to the end.
18379
18380 2008-02-01 Dave Love <fx@gnu.org>
18381
18382 * coding.c (Fcheck_coding_systems_region): Fix type errors.
18383
18384 2008-02-01 Dave Love <fx@gnu.org>
18385
18386 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
18387 and fix C types.
18388
18389 2008-02-01 Kenichi Handa <handa@m17n.org>
18390
18391 * xdisp.c (SKIP_GLYPHS): New macro.
18392 (set_cursor_from_row): Pay attention to string display properties.
18393
18394 * category.c (copy_category_entry): Fix for the case that RANGE
18395 is an integer.
18396
18397 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
18398
18399 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
18400
18401 2008-02-01 Kenichi Handa <handa@m17n.org>
18402
18403 * charset.c (Fcharset_id_internal): New function.
18404 (syms_of_charset): Defsubr it.
18405
18406 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
18407 with the last arg charset_list acquired from coding.
18408 (Fdefine_coding_system_internal): For ccl-based coding system, fix
18409 the attribute coding_attr_ccl_valids.
18410
18411 * coding.h (enum define_coding_ccl_arg_index): Set the first
18412 member coding_arg_ccl_decoder to coding_arg_max.
18413
18414 * ccl.h (ccl_driver): Adjust prototype.
18415
18416 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
18417 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
18418 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
18419 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
18420 last arg Qnil.
18421
18422 2008-02-01 Kenichi Handa <handa@m17n.org>
18423
18424 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
18425 call encode_char.
18426
18427 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
18428
18429 2008-02-01 Dave Love <fx@gnu.org>
18430
18431 * composite.c (syms_of_composite): Make composition_hash_table weak.
18432
18433 2008-02-01 Kenichi Handa <handa@m17n.org>
18434
18435 * dispextern.h (check_face_attributes, generate_ascii_font_name)
18436 (font_name_registry): Don't extern them.
18437 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
18438
18439 * fontset.h (Qfontset): Don't extern it.
18440 (new_fontset_from_font_name): Extern it.
18441
18442 * fontset.c: Give 8 extra slots to fontset objects.
18443 (Qfontset_info): New variable.
18444 (syms_of_fontset): Defsym it.
18445 (FONTSET_FALLBACK): New macro.
18446 (fontset_face): Try also the default fontset.
18447 (make_fontset): Realize a fallback fontset from the default fontset.
18448 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
18449 using split_font_name_into_vector and build_font_name_from_vector.
18450 (Fset_fontset_font): Access the elements of font_spec by enum
18451 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
18452 name by using split_font_name_into_vector.
18453 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
18454 generate a proper font name from the fontset name. Update
18455 Vfontset_alias_alist.
18456 (n_auto_fontsets): New variable.
18457 (new_fontset_from_font_name): New function.
18458 (Ffont_info): Store the information about fonts generated from the
18459 default fontset in the first extra slot of the returned char-table.
18460
18461 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
18462 (font_name_registry): Delete function.
18463 (split_font_name_into_vector): New function.
18464 (build_font_name_from_vector): New function.
18465 (font_list): The argument REGISTRY is now a list of registry names.
18466 (choose_face_font): If we are choosing an ASCII font, and ATTRS
18467 specifies an explicit font name, return the name as is. Make a
18468 list of registy names.
18469
18470 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
18471 of x_new_fontset.
18472 (Fx_create_frame): Don't call x_new_fontset here. Just use
18473 x_list_fonts to check the existence of fonts.
18474
18475 * xterm.h (x_new_fontset): Adjust prototype.
18476
18477 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
18478 string. Use new_fontset_from_font_name to create a fontset from a
18479 font name.
18480
18481 2008-02-01 Kenichi Handa <handa@m17n.org>
18482
18483 * syntax.c (Vfind_word_boundary_function_table): New name for
18484 Vnext_word_boundary_function_table.
18485 (find-word-boundary-function-table): New name for
18486 next-word-boundary-function-table.
18487
18488 2008-02-01 Dave Love <fx@gnu.org>
18489
18490 * Makefile.in: Fix some dependencies.
18491
18492 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
18493 set it to nil before returning.
18494
18495 * composite.c (update_compositions): Fix type error.
18496
18497 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
18498
18499 2008-02-01 Kenichi Handa <handa@m17n.org>
18500
18501 * xterm.c (x_new_font): Optimize for the case that the font is
18502 already set for the frame.
18503
18504 2008-02-01 Kenichi Handa <handa@m17n.org>
18505
18506 * chartab.c (char_table_ascii): Check if the char table contents
18507 is sub-char-table or not.
18508 (char_table_set, char_table_set_range): Fix argument to
18509 char_table_ascii.
18510
18511 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
18512 (detect_coding_utf_8, detect_coding_utf_16)
18513 (detect_coding_emacs_mule, detect_coding_iso_2022)
18514 (detect_coding_sjis, detect_coding_big5)
18515 (detect_coding_ccl, detect_coding_charset): Change argument MASK
18516 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
18517 sequence is valid in this coding system. Change callers.
18518 (MAX_ANNOTATION_LENGTH): New macro.
18519 (ADD_ANNOTATION_DATA): New macro.
18520 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
18521 ADD_ANNOTATION_DATA. Change the format of annotation data.
18522 (ADD_CHARSET_DATA): New macro.
18523 (emacs_mule_char): New argument ID. Change callers.
18524 (decode_coding_emacs_mule, decode_coding_iso_2022)
18525 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
18526 Produce charset annotation data in coding->charbuf.
18527 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
18528 to charset annotation data in coding->charbuf.
18529 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
18530 coding->common_flags if the coding system is iso-2022 based and
18531 uses designation.
18532 (produce_composition): Adjust for the new annotation data format.
18533 (produce_charset): New function.
18534 (produce_annotation): Handle charset annotation.
18535 (handle_composition_annotation, handle_charset_annotation): New
18536 functions.
18537 (consume_chars): Handle charset annotation. Utilize the above two
18538 functions.
18539 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
18540 buffer, get the deleted text as a string and set
18541 coding->src_object to that string.
18542 (detect_coding, detect_coding_system): Use the new struct
18543 coding_detection_info.
18544
18545 * coding.h (struct coding_detection_info): New structure.
18546 (struct coding_system): Adjust prototype of the member `detector'.
18547 (CODING_ANNOTATE_CHARSET_MASK): New macro.
18548
18549 2008-02-01 Kenichi Handa <handa@m17n.org>
18550
18551 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
18552
18553 2008-02-01 Dave Love <fx@gnu.org>
18554
18555 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
18556 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
18557 to new local and nullify apropos_accumulate before returning.
18558 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
18559
18560 2008-02-01 Kenichi Handa <handa@m17n.org>
18561
18562 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
18563 correctly.
18564
18565 2008-02-01 Dave Love <fx@gnu.org>
18566
18567 * fns.c (Flanginfo): Call synchronize_system_time_locale.
18568
18569 2008-02-01 Kenichi Handa <handa@m17n.org>
18570
18571 The following changes are to make character composition happen
18572 automatically on displaying.
18573
18574 * Makefile.in (lisp, shortlisp): Add composite.elc.
18575
18576 * composite.h (Qauto_composed, Vauto_composition_function)
18577 (Qauto_composition_function): Extern them.
18578
18579 * composite.c (Vcomposition_function_table)
18580 (Qcomposition_function_table): Delete variables.
18581 (Qauto_composed, Vauto_composition_function)
18582 (Qauto_composition_function): New variables.
18583 (run_composition_function): Don't call
18584 compose-chars-after-function.
18585 (update_compositions): Clear `auto-composed' text property.
18586 (compose_chars_in_text): Delete this function.
18587 (syms_of_composite): Staticpro Qauto_composed and
18588 Qauto_composition_function. Declare Vauto_composition_function as
18589 a Lisp variable.
18590
18591 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
18592
18593 * xdisp.c (it_props): Add an entry for Qauto_composed.
18594 (handle_auto_composed_prop): New function.
18595
18596 * xselect.c (selection_data_to_lisp_data): Don't call
18597 compose_chars_in_text.
18598
18599 2008-02-01 Dave Love <fx@gnu.org>
18600
18601 * keyboard.c (read_char): Modify checking around use of
18602 Vkeyboard_translate_table.
18603
18604 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
18605 and fix C types.
18606
18607 2008-02-01 Kenichi Handa <handa@m17n.org>
18608
18609 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
18610 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
18611 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
18612 the case that the last byte is '\r' correctly.
18613 (decode_coding): Flush out the unprocessed data correctly.
18614 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
18615
18616 2008-02-01 Dave Love <fx@gnu.org>
18617
18618 * xterm.c (XTread_socket): Fix changes for defined keysyms.
18619 Add XK_ISO... case.
18620 (xaw_scroll_callback): Revert last change.
18621
18622 2008-02-01 Kenichi Handa <handa@m17n.org>
18623
18624 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
18625
18626 2008-02-01 Kenichi Handa <handa@m17n.org>
18627
18628 * xfaces.c (Vface_resizing_fonts): New variable.
18629 (struct font_name): New member `resizing_ratio'.
18630 (font_resizing_ratio): New function.
18631 (split_font_name): Set font->resizing_ratio.
18632 (better_font_p): Pay attention to font->resizing_ratio.
18633 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
18634 RESX, and RESY fields.
18635 (try_alternative_families): Try scalable fonts if
18636 Vscalable_fonts_allowed is not Qt.
18637 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
18638
18639 2008-02-01 Dave Love <fx@gnu.org>
18640
18641 * xterm.c (xaw_scroll_callback): Cast correctly.
18642
18643 2008-02-01 Dave Love <fx@gnu.org>
18644
18645 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
18646 (lispy_kana_keys): Comment out.
18647 (make_lispy_event) [XK_kana_A]: Comment out.
18648
18649 * xterm.c (xaw_scroll_callback): Cast call_data.
18650 (XTread_socket): Deal with ASCII keysyms.
18651 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
18652
18653 2008-02-01 Dave Love <fx@gnu.org>
18654
18655 * xterm.c (Vx_keysym_table): New.
18656 (syms_of_xterm): Initialize it.
18657 (XTread_socket): Use it.
18658 From head: Eliminate incorrect optimization that tried to avoid
18659 decoding the output of X*LookupString.
18660 (x_get_font_repertory): Delete charset declaration.
18661
18662 2008-02-01 Kenichi Handa <handa@m17n.org>
18663
18664 * coding.c (detect_coding_charset): If only ASCII bytes are found,
18665 return 0.
18666 (Fdefine_coding_system_internal): Setup
18667 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
18668
18669 2008-02-01 Dave Love <fx@gnu.org>
18670
18671 * coding.c (Fcheck_coding_system): Doc fix.
18672
18673 * editfns.c (Finsert_byte): Return a proper value.
18674
18675 2008-02-01 Kenichi Handa <handa@m17n.org>
18676
18677 * coding.c (decode_coding): Fix args to translate_chars. Pay
18678 attention to Vstandard_translation_table_for_decode.
18679 (encode_coding): Fix args to translate_chars. Pay attention to
18680 Vstandard_translation_table_for_encode.
18681
18682 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
18683 SINGLE_BYTE_CHAR_P.
18684
18685 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
18686 not by SINGLE_BYTE_CHAR_P.
18687
18688 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
18689 SINGLE_BYTE_CHAR_P.
18690
18691 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
18692 SINGLE_BYTE_CHAR_P.
18693
18694 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
18695 by SINGLE_BYTE_CHAR_P.
18696
18697 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
18698 SINGLE_BYTE_CHAR_P.
18699
18700 2008-02-01 Dave Love <fx@gnu.org>
18701
18702 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
18703
18704 2008-02-01 Dave Love <fx@gnu.org>
18705
18706 * fns.c (Flanginfo): Fix typo.
18707
18708 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
18709
18710 2008-02-01 Kenichi Handa <handa@m17n.org>
18711
18712 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
18713 (detect_coding_emacs_mule, detect_coding_iso_2022)
18714 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
18715 incomplete byte sequence. Don't update *mask when correctly detected.
18716 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
18717 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
18718 (detect_coding, detect_coding_system): Adjust for the changes above.
18719
18720 2008-02-01 Kenichi Handa <handa@m17n.org>
18721
18722 * character.c (char_string): Rename from
18723 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
18724 (string_char): Rename from string_char.
18725
18726 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
18727 if C is greater than MAX_3_BYTE_CHAR.
18728 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
18729 string_char instead of string_char_with_unification.
18730
18731 2008-02-01 Dave Love <fx@gnu.org>
18732
18733 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
18734
18735 2008-02-01 Kenichi Handa <handa@m17n.org>
18736
18737 * keymap.c (push_key_description): Pay attention to force_multibyte.
18738
18739 * regex.c (re_search_2): Fix for the case of unibyte buffer.
18740
18741 2008-02-01 Dave Love <fx@gnu.org>
18742
18743 * charset.c (define_charset_internal): Rename `supprementary'.
18744
18745 * Makefile.in (lisp, shortlisp): Remove latin-N.
18746
18747 2008-02-01 Dave Love <fx@gnu.org>
18748
18749 * xfns.c (x_window, x_window): Use use_xim.
18750
18751 * xterm.c (use_xim): Initialize.
18752 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
18753 (x_term_init): Maybe set use_xim.
18754
18755 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
18756
18757 2008-02-01 Kenichi Handa <handa@m17n.org>
18758
18759 * search.c (search_buffer): Fix case-fold-search of multibyte
18760 characters.
18761 (boyer_moore): Rename the last argument to char_high_bits.
18762
18763 2008-02-01 Kenichi Handa <handa@m17n.org>
18764
18765 * xdisp.c (display_string): Fix for the case of zero width glyph.
18766
18767 * xfns.c (x_set_font): Change the error message of the case that
18768 x_new_fontset returns Qt.
18769
18770 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
18771 (Finternal_set_lisp_face_attribute): Use signal_error for the
18772 error of invalid fontset.
18773
18774 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
18775 fontset, return Qt.
18776
18777 2008-02-01 Dave Love <fx@gnu.org>
18778
18779 * unexelf.c (unexec): Make .got handling not SGI-specific.
18780
18781 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
18782
18783 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
18784
18785 * keyboard.c (read_key_sequence): Fix type error.
18786
18787 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
18788 type error.
18789
18790 * fontset.c (fontset_add): Return Lisp_Object.
18791
18792 2008-02-01 Dave Love <fx@gnu.org>
18793
18794 * charset.h (charset_ordered_list_tick): Declare extern.
18795
18796 2008-02-01 Kenichi Handa <handa@m17n.org>
18797
18798 The following changes (and some of 2008-02-01 changes of mine) are
18799 for handling syntax, category, and case conversion for unibyte
18800 characters by converting them to multibyte on the fly. With these
18801 changes, we don't have to setup syntax and case tables for unibyte
18802 characters in each language environment.
18803
18804 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
18805 multibyte if necessary.
18806
18807 * bytecode.c (Fbyte_code): Likewise.
18808
18809 * character.h (LEADING_CODE_LATIN_1_MIN)
18810 (LEADING_CODE_LATIN_1_MAX): New macros.
18811 (unibyte_to_multibyte_table): Extern it.
18812 (unibyte_char_to_multibyte): New macro.
18813 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
18814 (CHAR_LEADING_CODE): New macro.
18815 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
18816
18817 * character.c (unibyte_to_multibyte_table): New variable.
18818 (unibyte_char_to_multibyte): Move to character.h and define as macro.
18819 (multibyte_char_to_unibyte): If C is an eight-bit character,
18820 convert it to the corresponding byte value.
18821
18822 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
18823 not 1, signals an error. Update the elements of
18824 unibyte_to_multibyte_table.
18825 (init_charset_once): Initialize unibyte_to_multibyte_table.
18826 (syms_of_charset): Define the charset `iso-8859-1'.
18827
18828 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
18829 as is without converting it to unibyte. In a unibyte buffer,
18830 convert C to multibyte before checking the syntax.
18831
18832 * lisp.h (unibyte_char_to_multibyte): Delete extern.
18833
18834 * minibuf.c (Fminibuffer_complete_word): Use the macro
18835 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
18836
18837 * regex.h (struct re_pattern_buffer): New member target_multibyte.
18838
18839 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
18840 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
18841 that is zero, convert an eight-bit char to multibyte.
18842 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
18843 non-emacs case.
18844 (PATFETCH): Convert an eight-bit char to multibyte.
18845 (HANDLE_UNIBYTE_RANGE): New macro.
18846 (regex_compile): Setup the compiled pattern for multibyte chars
18847 even if the given regex string is unibyte. Use PATFETCH_RAW
18848 instead of PATFETCH in many places. To handle `charset'
18849 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
18850 only for ASCII chars.
18851 (analyse_first) <exactn>: Simplify because the compiled pattern
18852 is multibyte.
18853 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
18854 <charset>: Use CHAR_LEADING_CODE to get leading codes.
18855 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
18856 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
18857 multibyte always 1.
18858 (re_search_2): In emacs, set the locale variable multibyte to 1,
18859 otherwise to 0. New local variable target_multibyte. Check it
18860 to decide the multibyteness of STR1 and STR2. If
18861 target_multibyte is zero, convert unibyte chars to multibyte
18862 before translating and checking fastmap.
18863 (TARGET_CHAR_AND_LENGTH): New macro.
18864 (re_match_2_internal): In emacs, set the locale variable multibyte
18865 to 1, otherwise to 0. New local variable target_multibyte. Check
18866 it to decide the multibyteness of STR1 and STR2. Use
18867 TARGET_CHAR_AND_LENGTH to fetch a character from D.
18868 <charset, charset_not>: If multibyte is nonzero, check fastmap
18869 only for ASCII chars. Call bcmp_translate with
18870 target_multibyte, not with multibyte.
18871 <begline>: Declare the local variable C as `unsigned'.
18872 (bcmp_translate): Change the last arg name to target_multibyte.
18873
18874 * search.c (compile_pattern_1): Don't adjust the multibyteness of
18875 the regexp pattern and the matching target. Set cp->buf.multibyte
18876 to the multibyteness of the regexp pattern. Set
18877 cp->but.target_multibyte to the multibyteness of the matching target.
18878 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
18879 FETCH_STRING_CHAR_ADVANCE.
18880 (Freplace_match): Convert unibyte chars to multibyte.
18881
18882 * syntax.c (char_quoted, back_comment, scan_words)
18883 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
18884 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
18885 unibyte chars to multibyte.
18886 (skip_chars): Delete the arg syntaxp, and move the code for
18887 handling syntaxes to skip_syntaxes. Change callers.
18888 Fix the case that the multibyteness of STRING and the current
18889 buffer doesn't match.
18890 (skip_syntaxes): New function.
18891 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
18892 SINGLE_BYTE_CHAR_P.
18893
18894 2008-02-01 Kenichi Handa <handa@m17n.org>
18895
18896 * xfaces.c (QCfontset): New variable.
18897 (LFACE_FONTSET): New macro.
18898 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
18899 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
18900 (Finternal_set_lisp_face_attribute)
18901 (Finternal_get_lisp_face_attribute): Handle QCfontset.
18902 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
18903 check also LFACE_FONTSET_INDEX.
18904 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
18905 attrs[LFACE_FONT_INDEX].
18906 (syms_of_xfaces): Intern and staticpro QCfontset.
18907
18908 * dispextern.h (enum lface_attribute_index): New member
18909 LFACE_FONTSET_INDEX.
18910
18911 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
18912
18913 2008-02-01 Kenichi Handa <handa@m17n.org>
18914
18915 * coding.c (coding_set_destination): Fix coding->destination for
18916 the case converting a region.
18917 (encode_coding_utf_8): Encode eight-bit chars as single byte.
18918 (encode_coding_object): Fix coding->dst_pos and
18919 coding->dst_pos_byte for the case converting a region.
18920
18921 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
18922
18923 * character.h (BYTE8_STRING): New macro.
18924
18925 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
18926
18927 2008-02-01 Kenichi Handa <handa@m17n.org>
18928
18929 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
18930 characters by octal form.
18931
18932 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
18933
18934 * buffer.h (_fetch_multibyte_char_len): Delete extern.
18935 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
18936 _fetch_multibyte_char_len.
18937 (FETCH_CHAR_AS_MULTIBYTE): New macro.
18938
18939 * casetab.c (set_canon, set_identity, shuffle): Simplify.
18940
18941 * casefiddle.c (casify_object): Simplify. Handle the case that
18942 the case conversion change the byte length.
18943 (casify_region): Likewise.
18944
18945 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
18946
18947 * character.c (_fetch_multibyte_char_len): Delete this variable.
18948 (syms_of_character): Setup Vprintable_chars.
18949
18950 * editfns.c (Fchar_equal): Fix for the unibyte case.
18951 (Finsert_byte): New function.
18952 (syms_of_editfns): Defsubr it.
18953
18954 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
18955 of direct code 0x3ffff.
18956
18957 * search.c (Freplace_match): Fix for the unibyte case.
18958
18959 2008-02-01 Kenichi Handa <handa@m17n.org>
18960
18961 * lread.c (safe_to_load_p): Fix the logic.
18962
18963 * syntax.c (scan_words): Don't treat characters belonging to
18964 different scripts as constituting a word.
18965
18966 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
18967
18968 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
18969
18970 * emacs.c (main): In the case of --unibyte, instead of aborting on
18971 finding non-empty buffer, make it unibyte.
18972
18973 2008-02-01 Kenichi Handa <handa@m17n.org>
18974
18975 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
18976 to create a fontset.
18977
18978 2008-02-01 Dave Love <fx@gnu.org>
18979
18980 * character.c (Funibyte_char_to_multibyte): Doc fix.
18981
18982 * xfns.c [HAVE_STDLIB_H]: Fix last change.
18983
18984 2008-02-01 Kenichi Handa <handa@m17n.org>
18985
18986 * fontset.c (fontset_add): Make the type `int'.
18987 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
18988
18989 * character.c (unibyte_char_to_multibyte)
18990 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
18991 charset_unibyte, not charset_primary.
18992
18993 * charset.h (charset_unibyte): Extern it instead of charset_primary.
18994
18995 * charset.c (charset_unibyte): Rename from charset_primary.
18996 (Funibyte_charset): Rename from Fprimary_charset.
18997 (Fset_unibyte_charset): Rename from Fset_primary_charset.
18998 (syms_of_charset): Adjust for the above changes.
18999
19000 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
19001 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
19002 it->multibyte_p is zero.
19003
19004 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
19005 Delete extern.
19006
19007 2008-02-01 Kenichi Handa <handa@m17n.org>
19008
19009 * coding.c (Fdefine_coding_system_internal): Fix category setting
19010 for a coding system of type iso-2022.
19011
19012 2008-02-01 Kenichi Handa <handa@m17n.org>
19013
19014 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
19015
19016 2008-02-01 Kenichi Handa <handa@m17n.org>
19017
19018 * syntax.c (Vnext_word_boundary_function_table): New variable.
19019 (next-word-boundary-function-table): Declare it as a Lisp variable
19020 in syms_of_syntax.
19021 (scan_words): Call functions in Vnext_word_boundary_function_table
19022 if any.
19023
19024 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
19025
19026 * fontset.c (fs_load_font): If fontp->charset is not negative,
19027 return fontp without setting its members.
19028
19029 2008-02-01 Dave Love <fx@gnu.org>
19030
19031 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
19032
19033 * m/sparc.h (HAVE_ALLOCA): Delete.
19034
19035 * s/irix6-5.h: Don't include strings.h.
19036 (bcopy, bzero, bcmp): Don't undef.
19037
19038 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
19039
19040 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
19041 (TIOCSIGSEND): Don't test IRIX6.
19042 (bcopy, bzero, bcmp): Define conditionally.
19043
19044 2008-02-01 Kenichi Handa <handa@m17n.org>
19045
19046 * buffer.c (Qas, Qmake, Qto): New variables.
19047 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
19048 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
19049
19050 * callproc.c (Fcall_process): Don't call insert_1_both directly if
19051 we are inserting a process output into a multibyte buffer.
19052
19053 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
19054 multibyte_char_to_unibyte.
19055
19056 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
19057 by the primary charset, make it eight-bit char.
19058 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
19059
19060 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
19061 (charset_8_bit__control, charset_8_bit_graphic)
19062 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
19063 (define_charset_internal): New function.
19064 (syms_of_charset): Call define_charset_internal for pre-defined
19065 charsets.
19066
19067 * charset.h (charset_8_bit): Extern it.
19068
19069 * coding.c (make_conversion_work_buffer): Adjust for the change
19070 of Fset_buffer_multibyte.
19071 (encode_coding_raw_text): Increment p0 in the loop.
19072
19073 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
19074
19075 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
19076 for the change of Fset_buffer_multibyte.
19077
19078 * fns.c (Fstring_to_multibyte): New function.
19079 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
19080
19081 2008-02-01 Dave Love <fx@gnu.org>
19082
19083 * xfns.c (x_put_x_image): Declare args.
19084
19085 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
19086 (try_font_list): Declare an arg.
19087
19088 * xdisp.c (message2_nolog, set_message): Declare an arg.
19089
19090 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
19091
19092 * syntax.c (scan_sexps_forward): Declare an arg.
19093
19094 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
19095 Declare an arg.
19096
19097 * lisp.h (Fnew_fontset): Declare.
19098
19099 * keymap.c (push_key_description): Call CHARACTERP correctly.
19100
19101 * fontset.c (fontset_add): Declare args. Call make_number correctly.
19102 (face_for_char): Delete unused vars.
19103 (Fset_fontset_font): Doc fix. Delete unused vars.
19104
19105 * doc.c (Fsubstitute_command_keys): Delete unused vars.
19106
19107 * composite.c (update_compositions): Declare arg.
19108
19109 * cm.c (calccost, cmgoto): Declare args.
19110
19111 * charset.c: Remove `emacs' conditional. Doc fixes.
19112 (map_char_table_for_charset): Declare.
19113
19114 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
19115
19116 * ccl.c: Remove `emacs' conditional.
19117
19118 2008-02-01 Kenichi Handa <handa@m17n.org>
19119
19120 The following changes are to allow specifying multiple font
19121 patterns for a character range (specified by script or charset).
19122
19123 * Makefile.in (abbrev.o): Depend on syntax.h.
19124 (xfaces.o): Depend on charset.h.
19125
19126 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
19127 SINGLE_BYTE_CHAR_P.
19128
19129 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
19130
19131 * character.h (Vchar_script_table): Extern it.
19132
19133 * character.c (Vscript_alist): Delete.
19134 (Vchar_script_table, Qchar_script_table): New variable.
19135 (syms_of_character): Declare Vchar_script_table as a lisp variable
19136 and initialize it.
19137
19138 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
19139 have property char-table-extra-slots, make no extra slot.
19140
19141 * dispextern.h (struct face): Delete member `charset'.
19142 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
19143 SINGLE_BYTE_CHAR_P.
19144 (choose_face_font, lookup_non_ascii_face, font_name_registry):
19145 Add prototypes.
19146 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
19147 (generate_ascii_font_name): Rename from generate_ascii_font.
19148
19149 * fontset.h (get_font_repertory_func): New prototype.
19150 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
19151 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
19152
19153 * fontset.c (Qprepend, Qappend): New variables.
19154 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
19155 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
19156 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
19157 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
19158 (fontset_ref_and_range, fontset_add, reorder_font_vector)
19159 (load_font_get_repertory): New functions.
19160 (fontset_set): Delete.
19161 (fontset_face): New arg FACE. Return face ID, not face.
19162 Complete re-write to handle new fontset structure. Change caller.
19163 (free_face_fontset): Use ASET istead of AREF (X) = Y.
19164 (face_for_char): Don't call lookup_face.
19165 (make_fontset_for_ascii_face): New arg FACE.
19166 (fs_load_font): New arg CHARSET_ID. Don't check
19167 Vfont_encoding_alist here.
19168 (find_font_encoding): New function.
19169 (list_fontsets): Use STRINGP, not ! NILP.
19170 (accumulate_script_ranges): New function.
19171 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
19172 re-written to handle new fontset structure.
19173 (Ffontset_font): Return a copy of element.
19174 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
19175 docstring of font-encoding-alist.
19176
19177 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
19178 (Fset_fotset_font): Fix arguments to 5.
19179
19180 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
19181
19182 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
19183 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
19184 (highlight_trailing_whitespace): Adjust for the change of
19185 lookup_named_face.
19186
19187 * xfaces.c: Include charset.h.
19188 (load_face_font): Delete argument C. Change caller.
19189 (generate_ascii_font_name): Rename from generate_ascii_font.
19190 (font_name_registry): New function.
19191 (cache_face): Store ascii faces before non-ascii faces in buckets.
19192 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
19193 Lookup only ascii faces.
19194 (lookup_non_ascii_face): New function.
19195 (lookup_named_face): Delete argument C. Change caller.
19196 (lookup_derived_face): Delete argument C. Change caller.
19197 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
19198 a string, just call font_list with it.
19199 (choose_face_font): Delete arguments FACE and C. New arg
19200 FONT_SPEC. Change caller.
19201 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
19202 Change caller.
19203 (realize_non_ascii_face): New function.
19204 (realize_x_face): Call load_face_font here.
19205 (realize_tty_face): Delete argument C. Change caller.
19206 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
19207 get a face ID.
19208 (dump_realized_face): Don't print charset of FACE.
19209
19210 * xfns.c (x_set_font): Always call x_new_fontset and
19211 store_frame_parameter.
19212 (Fx_create_frame): Call x_new_fontset, not x_new_font.
19213 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
19214
19215 * xterm.h (x_get_font_repertory): Extern it.
19216
19217 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
19218 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
19219 it->multibyte_p is zero.
19220 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
19221 (x_new_fontset): If FONTSETNAME doesn't match any existing
19222 fontsets, create a new one.
19223 (x_get_font_repertory): New function.
19224
19225 2008-02-01 Kenichi Handa <handa@m17n.org>
19226
19227 * coding.c (Ffind_coding_systems_region_internal): Detect an
19228 ASCII only string correctly.
19229
19230 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
19231 version is 0.
19232
19233 2008-02-01 Kenichi Handa <handa@m17n.org>
19234
19235 * lread.c: Include "coding.h".
19236 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
19237 (load_each_byte, unread_char): New variables.
19238 (readchar_backlog): Delete.
19239 (readchar): Return a character unless load_each_byte is nonzero.
19240 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
19241 cons. If unread_char is not -1, simply return it.
19242 (unreadchar): Handle the case that readcharfun is
19243 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
19244 (read_multibyte): Delete.
19245 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
19246 (read_emacs_mule_char): New functions.
19247 (Fload): Even if the file doesn't have the extension ".elc", if
19248 safe_to_load_p returns a positive version number, assume that the
19249 file contains bytecompiled code. If the version is less than 22,
19250 load the file while decoding multibyte sequences by emacs-mule.
19251 (readevalloop): Don't use readchar_backlog.
19252 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
19253 (Fread_from_string): Pay attention to the case that STREAM is a cons.
19254 (read_escape): Delete the arg BYTEREP.
19255 (read1): Set load_each_byte to 1 temporarily while handling
19256 #@NUMBER. Don't call read_multibyte.
19257 (read_vector): Call Fread with a cons. If readcharfun is
19258 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
19259 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
19260 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
19261 and Qload_force_doc_strings.
19262
19263 2008-02-01 Kenichi Handa <handa@m17n.org>
19264
19265 * xdisp.c (face_before_or_after_it_pos): Call
19266 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
19267
19268 2008-02-01 Kenichi Handa <handa@m17n.org>
19269
19270 * character.h (TRAILING_CODE_P): New macro.
19271 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
19272 (string_char_with_unification): Fix prototype.
19273 (Vscript_alist): Extern it.
19274
19275 * character.c (Vscript_alist): New variable.
19276 (string_char_with_unification, str_as_unibyte)
19277 (string_escape_byte8): Add `const' to local variables.
19278 (syms_of_character): Declare script-alist as a Lisp variable.
19279
19280 * charset.h (Vcharset_ordered_list): Extern it.
19281 (charset_ordered_list_tick): Extern it.
19282 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
19283 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
19284 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
19285 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
19286 (Funify_charset): Adjust for the change of Funify_charset.
19287
19288 * charset.c (charset_ordered_list_tick): New variable.
19289 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
19290 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
19291 deunify intead of unify a charset.
19292 (string_xstring_p): Add `const' to local variables.
19293 (find_charsets_in_text): Add `const' to arguments and local variables.
19294 (encode_char): Adjust for the change of Funify_charset. Fix
19295 detecting of invalid code.
19296 (Fset_charset_priority): Increment charset_ordered_list_tick.
19297 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
19298 and TO_CODE.
19299
19300 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
19301 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
19302 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
19303 (decode_coding_ccl, consume_chars)
19304 (Ffind_coding_systems_region_internal)
19305 (Fcheck_coding_systems_region): Add `const' to local variables.
19306
19307 * print.c (print_object): Use octal form for printing the
19308 contents of a bool vector.
19309
19310 2008-02-01 Dave Love <fx@gnu.org>
19311
19312 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
19313 <version == 20>: Refuse to load.
19314
19315 2008-02-01 Dave Love <fx@gnu.org>
19316
19317 * fns.c: Move coding.h.
19318 (Qcodeset, Qdays, Qmonths): New.
19319 (concat): Use CHARACTERP instead of INTEGERP.
19320 (Flocale_codeset): Delete.
19321 (Flanginfo): New function.
19322 (syms_of_fns): Change accordingly.
19323
19324 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
19325
19326 2008-02-01 Dave Love <fx@gnu.org>
19327
19328 * casetab.c (init_casetab_once, init_casetab_once): Fix
19329 CHAR_TABLE_SET call.
19330
19331 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
19332
19333 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
19334
19335 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
19336 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
19337 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
19338
19339 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
19340
19341 * coding.c (ENCODE_DESIGNATION, decode_eol)
19342 (make_conversion_work_buffer, code_conversion_restore)
19343 (Fdefine_coding_system_internal): Convert Lisp types.
19344 (code_conversion_restore): Use EQ, not ==.
19345 (Fencode_coding_string): Fix code_convert_string call.
19346
19347 * coding.h (code_convert_region): Fix prototype.
19348
19349 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
19350
19351 * fontset.c (fontset_ref, fontset_set, fs_load_font)
19352 (Ffontset_info): Convert Lisp types.
19353
19354 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
19355
19356 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
19357
19358 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
19359
19360 * chartab.c: Include "...h", not <...h> in some cases.
19361
19362 * callproc.c (Fcall_process): Remove unused variables.
19363
19364 2008-02-01 Dave Love <fx@gnu.org>
19365
19366 * coding.c (Fset_coding_system_priority): Allow null arg list.
19367
19368 2008-02-01 Dave Love <fx@gnu.org>
19369
19370 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
19371 (Fself_insert_and_exit): Use CHARACTERP.
19372
19373 * callproc.c (Fcall_process): Remove unused vars.
19374
19375 * xterm.c (XTread_socket): Add extra dead keysyms.
19376
19377 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
19378
19379 * dispextern.h: Remove prototypes for redraw_frame,
19380 redraw_garbaged_frames.
19381
19382 * cmds.c (Fself_insert_command): Use CHARACTERP.
19383
19384 * chartab.c (make_sub_char_table): Remove unused var.
19385 (Fset_char_table_default, Fmap_char_table): Doc fix.
19386
19387 * keymap.c (access_keymap): Remove generic char code.
19388 (push_key_description): Use CHARACTERP.
19389
19390 2008-02-01 Dave Love <fx@gnu.org>
19391
19392 * charset.c: Doc fixes.
19393 (Funify_charset): Extra checking.
19394
19395 2008-02-01 Dave Love <fx@gnu.org>
19396
19397 * lread.c: Remove some unused variables.
19398 (safe_to_load_p): If safe, return the magic number version byte.
19399 (Fload): Maybe use load-with-code-conversion.
19400
19401 2008-02-01 Kenichi Handa <handa@m17n.org>
19402
19403 * category.c (Fmodify_category_entry): Don't modify the contents
19404 of category_set for characters out of the range. Avoid
19405 unnecessary modification.
19406
19407 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
19408 Vchar_unify_table. The default value of the table is now nil.
19409
19410 * character.c (syms_of_character): Setup Vchar_width_table for
19411 eight-bit-control and raw-byte chars.
19412
19413 * charset.h (enum define_charset_arg_index): Delete
19414 charset_arg_parents and add charset_arg_subset and
19415 charset_arg_superset.
19416 (enum charset_attr_index): Delete charset_parents and add
19417 charset_subset and charset_superset.
19418 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
19419 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
19420 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
19421 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
19422 (CHARSET_SUPERSET): New macros.
19423 (charset_work): Extern it.
19424 (ENCODE_CHAR): Use charset_work.
19425 (CHAR_CHARSET_P): Adjust for the change of encoder format.
19426 (map_charset_chars): Extern it.
19427
19428 * charset.c (load_charset_map): Set the default value of encoder
19429 and deunifier char-tables to nil.
19430 (map_charset_chars): Change argument. Change callers. Use
19431 map_char_table_for_charset instead of map_char_table.
19432 (Fmap_charset_chars): New optional args from_code and to_code.
19433 (Fdefine_charset_internal): Adjust for the change of
19434 `define-charset' (:parents -> :subset or :superset).
19435 (charset_work): New variable.
19436 (encode_char, syms_of_charset): Adjust for the change of
19437 Fdefine_charset_internal.
19438 (Ffind_charset_string): Setup the vector `charsets' correctly.
19439
19440 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
19441 the previous change.
19442 (char_table_ref_and_range): Adjust for the above change.
19443 (map_sub_char_table_for_charset): New function.
19444 (map_char_table_for_charset): New function.
19445
19446 * keymap.c (describe_vector): Handle a char-table directly here.
19447 (describe_char_table): Delete.
19448
19449 * lisp.h (map_charset_chars): Delete.
19450
19451 2008-02-01 Dave Love <fx@gnu.org>
19452
19453 * fns.c (count_combining): Comment out (unused).
19454 (Flocale_codeset): New.
19455 (syms_of_fns): Defsubr it.
19456
19457 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
19458 (size_t): Remove.
19459
19460 2008-02-01 Dave Love <fx@gnu.org>
19461
19462 * Makefile.in (chartab.o): Depend on charset.h.
19463
19464 2008-02-01 Kenichi Handa <handa@m17n.org>
19465
19466 * character.c (syms_of_character): Set the default value of
19467 Vprintable_chars to Qnil.
19468
19469 2008-02-01 Dave Love <fx@gnu.org>
19470
19471 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
19472
19473 2008-02-01 Kenichi Handa <handa@m17n.org>
19474
19475 * charset.c (load_charset_map): Handle the case that from < to
19476 correctly.
19477
19478 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
19479 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
19480 Pay attention to raw-8-bit chars.
19481
19482 2008-02-01 Kenichi Handa <handa@m17n.org>
19483
19484 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
19485 It is not bytecompiled now.
19486
19487 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
19488 (charset_jisx0208): New variables.
19489 (Fdefine_charset_internal): Setup them if appropriate.
19490 (init_charset_once): Initialize them to -1.
19491
19492 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
19493 (charset_jisx0208): Extern them.
19494
19495 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
19496 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
19497 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
19498 (setup_iso_safe_charsets): Fix arguments to Fassq.
19499 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
19500 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
19501 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
19502 (encode_coding_iso_2022): Change the 1st arg to
19503 ENCODE_ISO_CHARACTER to a variable.
19504
19505 2008-02-01 Kenichi Handa <handa@m17n.org>
19506
19507 * charset.h (enum define_charset_arg_index): New enums
19508 charset_arg_min_code and charset_arg_max_code.
19509 (struct charset): New member char_index_offset.
19510
19511 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
19512 Take charset->char_index_offset into account.
19513 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
19514 args[charset_arg_max_code]. Setup charset.char_index_offset.
19515 (syms_of_charset): Fix args to Fdefine_charset_internal.
19516
19517 2008-02-01 Dave Love <fx@gnu.org>
19518
19519 * coding.c (decode_coding_utf_8): Reject overlong sequences.
19520
19521 2008-02-01 Dave Love <fx@gnu.org>
19522
19523 * coding.c: Doc fixes.
19524 (Fcoding_system_aliases): Fix return value.
19525 (Qmac): Remove (duplicated) definition.
19526
19527 2008-02-01 Dave Love <fx@gnu.org>
19528
19529 * charset.c (Fcharset_priority_list, Fset_charset_priority):
19530 New functions.
19531
19532 * character.c (Fstring): Doc fix.
19533
19534 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
19535
19536 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
19537 (font-encoding-alist): Doc fix.
19538
19539 2008-02-01 Dave Love <fx@gnu.org>
19540
19541 * term.c (costs_set): Declare static, non-initialized for pcc.
19542 (encode_terminal_code): Remove unused var.
19543
19544 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
19545 for K&R.
19546
19547 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
19548
19549 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
19550 (suffixes): Move out of make_subsidiaries for K&R.
19551
19552 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
19553
19554 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
19555
19556 2008-02-01 Dave Love <fx@gnu.org>
19557
19558 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
19559
19560 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
19561
19562 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
19563
19564 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
19565
19566 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
19567
19568 2008-02-01 Kenichi Handa <handa@m17n.org>
19569
19570 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
19571 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
19572
19573 2008-02-01 Kenichi Handa <handa@m17n.org>
19574
19575 * coding.c (decode_coding_charset): Adjust for the change of
19576 Fdefine_coding_system_internal.
19577 (Fdefine_coding_system_internal): For a coding system of
19578 `charset' type, store a list of charset IDs in
19579 `charset_attr_charset_valids' element of coding attributes.
19580
19581 2008-02-01 Kenichi Handa <handa@m17n.org>
19582
19583 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
19584 (emacs_mule_char): New arg src. Delete arg `composition'. Change
19585 caller. Handle 2-byte and 3-byte charsets correctly.
19586 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
19587 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
19588 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
19589 (DECODE_EMACS_MULE_21_COMPOSITION): Call
19590 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
19591 sequence.
19592 (decode_coding_emacs_mule): Handle composition correctly. Rewind
19593 `src' and `consumed_chars' correctly before calling emacs_mule_char.
19594 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
19595 and alt&rule composition.
19596 (decode_coding_iso_2022): Handle composition correctly.
19597 (init_coding_once): Setup emacs_mule_bytes for private charsets.
19598
19599 * charset.c (Fdefine_charset_internal): Fix bug for the case of
19600 re-defining a charset. If the charset has :emacs-mule-id, setup
19601 emacs_mule_bytes.
19602 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
19603
19604 2008-02-01 Kenichi Handa <handa@m17n.org>
19605
19606 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
19607 (encode_coding_big5, encode_coding_charset): If coding requires safe
19608 encoding, produce a character specified by
19609 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
19610
19611 2008-02-01 Dave Love <fx@gnu.org>
19612
19613 * xterm.c (XSetIMValues): Declare.
19614
19615 * process.c: Conditionally include sys/wait.h, pty.h.
19616
19617 * print.c (print_object): Fix print format for 64-bit systems.
19618
19619 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
19620
19621 * buffer.c (emacs_strerror): Declare.
19622
19623 * fontset.c (Fclear_face_cache): Declare.
19624 (accumulate_font_info): Comment-out (unused).
19625 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
19626 variables.
19627
19628 * character.h (string_escape_byte8): Declare.
19629
19630 * charset.c (load_charset_map, load_charset_map_from_file): Remove
19631 unused vars.
19632 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
19633 (Fmap_charset_chars): Doc fix.
19634
19635 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
19636 (Fset_coding_system_priority, Fset_coding_system_priority)
19637 (Fdefine_coding_system_internal): Doc fix.
19638
19639 2008-02-01 Dave Love <fx@gnu.org>
19640
19641 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
19642
19643 2008-02-01 Kenichi Handa <handa@m17n.org>
19644
19645 * character.c (string_escape_byte8): Make multibyte string with
19646 correct size.
19647
19648 * charset.c (Fmake_char): Delete unnecessary code.
19649
19650 2008-02-01 Kenichi Handa <handa@m17n.org>
19651
19652 * xfns.c (x_encode_text): Allocate coding.destination here, and
19653 call encode_coding_object with dst_object Qnil.
19654
19655 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
19656 multibyte form correctly.
19657
19658 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
19659 against Vfont_encoding_alist.
19660
19661 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
19662 handling of charset list.
19663 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
19664 (decode_coding_object): Move point to coding->dst_pos before
19665 calling post-read-conversion function.
19666 (encode_coding_object): Give correct arguments to
19667 pre-write-conversion. Ignore the return value of
19668 pre-write-conversion function. Pay attention to the case that
19669 pre-write-conversion changes the current buffer. If dst_object is
19670 Qt, even if coding->src_bytes is zero, allocate at least one byte
19671 to coding->destination.
19672
19673 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
19674
19675 * charset.c (Fmake_char): Make it more backward compatible.
19676 (Fmap_charset_chars): Fix docstring.
19677
19678 2008-02-01 Dave Love <fx@gnu.org>
19679
19680 * coding.c: Doc fixes.
19681 (Fdefine_coding_system_alias): Use names, not symbols, in
19682 coding-system-alist.
19683
19684 2008-02-01 Kenichi Handa <handa@m17n.org>
19685
19686 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
19687 of calling free_realized_face.
19688
19689 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
19690
19691 * charset.c (read_hex): Don't treat SPC as a comment starter.
19692 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
19693 (Fdecode_char): Fix typo.
19694
19695 2008-02-01 Kenichi Handa <handa@m17n.org>
19696
19697 * charset.h (struct charset): New member `code_space_mask'.
19698
19699 * coding.c (coding_set_source): Delete the local variable beg_byte.
19700 (encode_coding_charset, Fdefine_coding_system_internal):
19701 Delete the local variable charset.
19702 (Fdefine_coding_system_internal): Setup
19703 attrs[coding_attr_charset_valids] correctly.
19704
19705 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
19706 member to check if CODE is valid or not.
19707 (Fdefine_charset_internal): Initialize `code_space_mask' member.
19708 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
19709 is within the range of charset->min_code and carset->max_code.
19710
19711 2008-02-01 Dave Love <fx@gnu.org>
19712
19713 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
19714
19715 * dispextern.h (generate_ascii_font): Fix return type.
19716
19717 * xfaces.c (generate_ascii_font): Fix arg declaration.
19718
19719 * coding.c (coding_inherit_eol_type)
19720 (Fset_terminal_coding_system_internal)
19721 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
19722
19723 2008-02-01 Kenichi Handa <handa@m17n.org>
19724
19725 * coding.c (decode_coding_charset, encode_coding_charset): Handle
19726 multiple charsets correctly.
19727
19728 2008-02-01 Kenichi Handa <handa@m17n.org>
19729
19730 * search.c (boyer_moore): Fix handling of multibyte character
19731 translation.
19732
19733 * xdisp.c (display_mode_element): When the variable `elt' is
19734 changed, update `this' and `lisp_string'.
19735
19736 2008-02-01 Kenichi Handa <handa@m17n.org>
19737
19738 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
19739
19740 * callproc.c (Fcall_process): Be sure to give the current buffer
19741 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
19742
19743 * charset.c (struct charset_map_entries): New struct.
19744 (load_charset_map): Rename from parse_charset_map. New args
19745 entries and n_entries. Change caller.
19746 (load_charset_map_from_file): Rename from load_charset_map.
19747 Change caller. New arg control_flag. Call load_charset_map at
19748 the tail.
19749 (load_charset_map_from_vector): New function.
19750 (Fdefine_charset_internal): Setup charset.compact_codes_p.
19751 (encode_char): If the charset is compact, change a character index
19752 to a code point.
19753
19754 * coding.c (coding_alloc_by_making_gap): Check the case that the
19755 source and destination are the same correctly.
19756 (decode_coding_raw_text): Set coding->consumed_char and
19757 coding->consumed to 0.
19758 (produce_chars): If coding->chars_at_source is nonzero, update
19759 coding->consumed_char and coding->consumed before calling
19760 alloc_destination.
19761 (Fdefine_coding_system_alias): Register ALIAS in
19762 Vcoding_system_alist.
19763 (syms_of_coding): Define `no-conversion' coding system at the tail.
19764
19765 * fileio.c (Finsert_file_contents): Set coding_system instead of
19766 val. If the current buffer is multibyte, always call
19767 decode_coding_gap.
19768
19769 * xfaces.c (try_font_list): Give higher priority to fontset's
19770 family than face's family.
19771
19772 2008-02-01 Kenichi Handa <handa@m17n.org>
19773
19774 * callproc.c (Fcall_process): Be sure to give the current buffer
19775 to decode_coding_c_string.
19776
19777 * xfaces.c (try_font_list): Give a family specified in a fontset
19778 higher priority than a family specified in a face.
19779
19780 2008-02-01 Kenichi Handa <handa@m17n.org>
19781
19782 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
19783 Fix arguments to insert_from_buffer.
19784
19785 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
19786
19787 2008-02-01 Kenichi Handa <handa@m17n.org>
19788
19789 * coding.c (produce_chars): Set the variable `multibytep' correctly.
19790 (decode_coding_gap): Set coding->dst_multibyte correctly.
19791
19792 2008-02-01 Kenichi Handa <handa@m17n.org>
19793
19794 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
19795 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
19796 (encode_coding_utf_16): Substitute coding->default_char for
19797 non-Unicode characters.
19798 (decode_coding): Don't call record_insert here.
19799 (setup_coding_system): Initialize `surrogate' of
19800 coding->spec.utf_16 to 0.
19801 (EMIT_ONE_BYTE): Fix for multibyte case.
19802
19803 * insdel.c (insert_from_gap): Call record_insert.
19804
19805 2008-02-01 Kenichi Handa <handa@m17n.org>
19806
19807 * casefiddle.c (casify_region): Fix multibyte case.
19808
19809 * character.c (c_string_width): Add return type `int'.
19810 (char_string_with_unification): Delete arg ADVANCED.
19811
19812 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
19813 (CHAR_STRING): Adjust for the change of char_string_with_unification.
19814 (CHAR_STRING_ADVANCE): Make it do-while statement.
19815
19816 * chartab.c (sub_char_table_set_range): Optimize for the case
19817 DEPTH == 3. Add workaround code for a GCC optimization bug.
19818
19819 * charset.c (parse_charset_map): Remove an unused variable.
19820
19821 * coding.c: Delete unused variables.
19822
19823 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
19824 earlier. If inserted is zero and the coding system doesn't
19825 require flushing, don't call decode_coding_gap.
19826
19827 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
19828
19829 2008-02-01 Kenichi Handa <handa@m17n.org>
19830
19831 The following changes are for using Unicode as an internal
19832 character model, and use UTF-8 format for buffer/string
19833 representation.
19834
19835 * .gdbinit (xchartable): Adjust for the change of char table structure.
19836 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
19837
19838 * Makefile.in (obj): Add character.o and chartab.o.
19839 (lisp, shortlisp): Remove utf-8.elc.
19840 (*.o): For many files, change dependency on charset.h to
19841 character.h, and add dependency on character.h.
19842 (character.o, chartab.o): New targets.
19843
19844 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
19845 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
19846 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
19847 of "charset.h".
19848
19849 * dired.c, filelock.c: Include "character.h".
19850
19851 * alloc.c: Include "character.h" instead of "charset.h".
19852 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
19853 (syms_of_alloc): Remove defsubr for Smake_char_table.
19854
19855 * buffer.c: Include "character.h" instead of "charset.h", don't
19856 include "coding.h".
19857 (Fset_buffer_multibyte): Adjust for UTF-8.
19858
19859 * buffer.h: EXFUN Fbuffer_live_p.
19860
19861 * callproc.c: Include "character.h" instead of "charset.h".
19862 (Fcall_process): Big change for the new code-conversion APIs.
19863
19864 * casetab.c: Include "character.h" instead of "charset.h".
19865 (set_canon, set_identity, shuffle): Adjust for the new
19866 map_char_table spec.
19867 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
19868 accessing the char table structure.
19869
19870 * chartab.c: New file that implements char table.
19871
19872 * category.c: Include "character.h".
19873 (copy_category_entry): New function.
19874 (copy_category_table): Call map_char_table and copy_category_entry.
19875 (Fmake_category_table): Initialize all top-level slots.
19876 (char_category_set): New function.
19877 (modify_lower_category_set): Delete.
19878 (Fmodify_category_entry): Call char_table_ref_and_range.
19879
19880 * category.h (CATEGORY_SET): Just call char_category_set.
19881
19882 * ccl.c: Include "character.h".
19883 (Qccl, Qcclp): New variables.
19884 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
19885 it's less than 256.
19886 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
19887 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
19888 and DST type.
19889 (ccl_driver): Change types of argument, adjust code accordingly.
19890 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
19891 ccl_driver.
19892 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
19893
19894 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
19895 New members src_multibyte, dst_multibyte, consumed, and produced.
19896 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
19897 (CODING_SPEC_CCL_PROGRAM): New macro.
19898 (ccl_driver): Update prototype.
19899 (Qccl, Qcclp, Fccl_program_p): Extern them.
19900 (CHECK_CCL_PROGRAM): New macro.
19901
19902 * character.c, character.h, chartab.c: New files.
19903
19904 * charset.c: Mostly re-written. Move character and multibyte sequence
19905 handling codes to character.c.
19906
19907 * charset.h: Mostly re-written. Move character and multibyte sequence
19908 handling codes to character.h.
19909
19910 * coding.c, coding.h: Mostly re-written.
19911
19912 * composite.c: Include "character.h" instead of "charset.h".
19913 (CHAR_WIDTH): Move to character.h.
19914 (HASH_KEY, HASH_VALUE): Delete.
19915
19916 * composite.h (enum composition_method): Change order of enumeration
19917 symbols.
19918
19919 * data.c: Include "character.h" instead of "charset.h".
19920 (Faref): Call CHAR_TABLE_REF for a char table.
19921 (Faset): Call CHAR_TABLE_SET for a char table.
19922
19923 * dispextern.h (free_realized_face, check_face_attribytes)
19924 (generate_ascii_font): Extern them.
19925 (free_realized_multibyte_face): Delete extern.
19926
19927 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
19928 table structure.
19929
19930 * editfns.c: Include "character.h" instead of "charset.h".
19931 (Fchar_to_string): Always call CHAR_STRING.
19932
19933 * emacs.c (main): Call init_charset_once, init_charset,
19934 syms_of_chartab, and syms_of_character.
19935
19936 * fileio.c: Include "character.h" instead of "charset.h".
19937 (Finsert_file_contents): Big change for the new code-conversion API.
19938 (choose_write_coding_system, Fwrite_region): Likewise.
19939 (build_annotations_2): Delete.
19940 (e_write): Big change for the new code-conversion API.
19941
19942 * fns.c: Include "character.h" instead of "charset.h".
19943 (copy_sub_char_table): Move to chartab.c.
19944 (Fcopy_sequence): Call copy_char_table for a char table.
19945 (concat): Delete codes calling count_multibyte.
19946 (string_char_to_byte, string_byte_to_char): Adjust for the new
19947 multibyte form.
19948 (internal_equal): Adjust for the change of char table structure.
19949 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
19950 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
19951 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
19952 (char_table_translate, optimize_sub_char_table)
19953 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
19954 chartab.c.
19955 (char_table_ref_and_index): Delete.
19956 (HASH_KEY, HASH_VALUE): Move to lisp.h.
19957 (Fmd5): Call preferred_coding_system instead of accessing
19958 Vcoding_category_list. Adjust for the new code-conversion API.
19959 (syms_of_fns): Move defsubr for char table related functions to
19960 chartab.c.
19961
19962 * fontset.c: Mostly re-written.
19963
19964 * fontset.h (struct font_info): Change type of the member encoding_type.
19965 (enum FONT_SPEC_INDEX): New enum.
19966 (fontset_font_pattern, fs_load_font): Update prototype.
19967 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
19968
19969 * indent.c: Include "character.h" instead of "charset.h".
19970 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
19971
19972 * insdel.c: Include "character.h" instead of "charset.h".
19973 (copy_text): Don't refer to Vnonascii_translation_table.
19974 (insert_from_gap): New function.
19975
19976 * keyboard.c: Include "character.h" instead of "charset.h".
19977 (command_loop_1): Never call direct_output_forward_char before
19978 a non-ASCII character.
19979 (read_char): If Vkeyboard_translate_table is a char table, always
19980 translate a character.
19981
19982 * keymap.c: Include "character.h".
19983 (store_in_keymap): Handle the case that IDX is a cons.
19984 (Fdefine_key): Handle the case that KEY is a cons and the car part
19985 is also a cons (range).
19986 (push_key_description): Adjust for the new character code.
19987 (describe_vector): Call describe_char_table for a char table.
19988 (describe_char_table): New function.
19989
19990 * keymap.h (describe_char_table): Extern it.
19991
19992 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
19993 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
19994 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
19995 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
19996 Delete.
19997 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
19998 structure.
19999 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
20000 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
20001 (CHARTAB_SIZE_BITS_3): New macros.
20002 (chartab_size): Extern it.
20003 (struct Lisp_Char_Table): Re-design.
20004 (struct Lisp_Sub_Char_Table): New structure.
20005 (HASH_KEY, HASH_VALUE): Move from fns.c.
20006 (CHARACTERBITS): Define as 22.
20007 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
20008 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
20009 (GC_SUB_CHAR_TABLE_P): New macro.
20010 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
20011 (code_convert_string_norecord): Deleted extern.
20012 (init_character_once, syms_of_character, init_charset)
20013 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
20014
20015 * lread.c: Include "character.h".
20016 (read_multibyte): New arg NBYTES.
20017 (read_escape): Change the meaning of returned *BYTEREP.
20018 (to_multibyte): Delete.
20019 (read1): Adjust the handling of char table and string.
20020
20021 * print.c: Include "character.h" instead of "charset.h".
20022 (print_string): Convert 8-bit raw bytes to octal form by
20023 string_escape_byte8.
20024 (print_object): Adjust for the new multibyte form. Print 8-bit
20025 raw bytes always in octal form. Handle sub char table correctly.
20026
20027 * process.c: Include "character.h" instead of "charset.h".
20028 (read_process_output, send_process): Adjust for the new
20029 code-conversion API.
20030
20031 * puresize.h (BASE_PURESIZE): Increase.
20032
20033 * regex.c: Include "character.h" instead of "charset.h".
20034 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
20035 (regex_compile): Accept a range whose starting and ending
20036 character have different leading bytes.
20037 (analyse_first): Adjust for the above change.
20038
20039 * search.c: Include "character.h" instead of "charset.h".
20040 (search_buffer, boyer_moore): Adjust for the new multibyte form.
20041 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
20042
20043 * syntax.c: Include "character.h" instead of "charset.h".
20044 (syntax_parent_lookup): Delete.
20045 (Fmodify_syntax_entry): Accept a cons as CHAR.
20046 (skip_chars): Adjust for the new multibyte form.
20047 (init_syntax_once): Call char_table_set_range instead of directly
20048 accessing the structure of a char table.
20049
20050 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
20051 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
20052 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
20053 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
20054
20055 * term.c: Include "buffer.h" and "character.h".
20056 (encode_terminal_code, write_glyphs): Adjust for the new
20057 code-conversion API.
20058 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
20059
20060 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
20061
20062 * xdisp.c: Include "character.h".
20063 (get_next_display_element): Adjust for the new multibyte form.
20064 (disp_char_vector): Adjust for the new char table structure.
20065 (decode_mode_spec_coding): Adjust for the new structure of
20066 coding system.
20067 (decode_mode_spec): Adjust for the new code-conversion API.
20068
20069 * xfaces.c: Include "character.h" instead of "charset.h".
20070 (load_face_font): Adjust for the change of choose_face_font and
20071 FS_LOAD_FONT.
20072 (generate_ascii_font): New function.
20073 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
20074 (set_font_frame_param): Adjust for the change of choose_face_font.
20075 (free_realized_face): Make it public.
20076 (free_realized_faces_for_fontset): Rename from
20077 free_realized_multibyte_face. Free also faces realized for ASCII.
20078 (choose_face_font): Change arguments. Adjust for the change of
20079 fontset_font_pattern and FS_LOAD_FONT.
20080
20081 * xfns.c: Include "character.h".
20082 (x_encode_text): Adjust for the new code-conversion API.
20083
20084 * xselect.c: Don't include "charset.h".
20085 (selection_data_to_lisp_data): Adjust for the new code conversion API.
20086
20087 * xterm.c: Include "character.h".
20088 (x_encode_char): New argument CHARSET. Change caller.
20089 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
20090 Call ENCODE_CHAR instead of SPLIT_CHAR.
20091 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
20092 CHAR_WIDTH instead of CHARSET_WIDTH.
20093 (XTread_socket): Adjust for the new code-conversion API.
20094 (x_new_font): Adjust for the change of FS_LOAD_FONT.
20095 (x_load_font): Adjust for the change of struct font.
20096
20097 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
20098
20099 * xfaces.c (face_at_buffer_position): Remove unused vars.
20100
20101 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20102
20103 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
20104 Fix overflow checking.
20105
20106 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20107
20108 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
20109 Cancel previous change.
20110
20111 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
20112
20113 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
20114 ccl->eight_bit_control. Fix check for buffer overflow.
20115 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
20116 (ccl_driver): Initialize extra_bytes to 0.
20117
20118 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
20119
20120 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
20121 return it ORed with ctrl_modifier.
20122
20123 2008-01-29 Miles Bader <miles@gnu.org>
20124
20125 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
20126
20127 2008-01-28 Jason Rumney <jasonr@gnu.org>
20128
20129 * w32.c (stat): Don't double check for networked drive.
20130
20131 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
20132
20133 * window.c (run_window_configuration_change_hook): New function.
20134 Code extracted from set_window_buffer. Set the selected frame.
20135 (set_window_buffer): Use it.
20136 * window.h (run_window_configuration_change_hook): Declare.
20137 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
20138
20139 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
20140
20141 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
20142
20143 * Makefile.in: Remove references to unused macros.
20144
20145 2008-01-26 Eli Zaretskii <eliz@gnu.org>
20146
20147 * w32.c (g_b_init_get_sid_sub_authority)
20148 (g_b_init_get_sid_sub_authority_count): New static variables.
20149 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
20150 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
20151 (init_user_info): Use them to retrieve uid and gid.
20152 Use 500/513, the Windows defaults, as Administrator's uid/gid.
20153 (fstat): Use pw_uid and pw_gid from the_passwd structure for
20154 st_uid and st_gid of the file.
20155
20156 2008-01-26 Jason Rumney <jasonr@gnu.org>
20157
20158 * w32.c (logon_network_drive): New function.
20159 (stat): Use it.
20160
20161 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
20162
20163 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
20164 invisible text covered with an ellipsis.
20165
20166 2008-01-25 Richard Stallman <rms@gnu.org>
20167
20168 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
20169 jump back to beginning. Move some other initializations after that.
20170 (Qwindow_text_change_functions, Vwindow_text_change_functions):
20171 New variables.
20172 (syms_of_xdisp): Init them.
20173
20174 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
20175
20176 * buffer.c (reset_buffer_local_variables):
20177 Implement `permanent-local-hook'.
20178 (Qpermanent_local_hook): New variable.
20179 (syms_of_buffer): Init and staticpro it.
20180
20181 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
20182
20183 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
20184
20185 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
20186
20187 * fns.c (Fclrhash): Return TABLE.
20188
20189 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20190
20191 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
20192 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
20193 is set even without positional changes.
20194 (x_scroll_bar_clear): Set bar->redraw_needed_p.
20195
20196 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
20197
20198 2008-01-23 Jason Rumney <jasonr@gnu.org>
20199
20200 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
20201
20202 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
20203 the unicode range available in MULE by locale-coding-system.
20204 Improve dbcs lead byte detection. Set event timestamp and modifiers
20205 earlier.
20206
20207 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20208
20209 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
20210 [MAC_OSX] (init_mac_osx_environment): Initialize it.
20211 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
20212 when used on child processes.
20213
20214 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
20215
20216 * dbusbind.c (Fdbus_method_return_internal): Rename from
20217 Fdbus_method_return.
20218 (Fdbus_unregister_object): Move to dbus.el.
20219 (Fdbus_call_method, Fdbus_method_return_internal)
20220 (Fdbus_send_signal): Improve debug messages.
20221
20222 2008-01-20 Martin Rudalics <rudalics@gmx.at>
20223
20224 * undo.c (undo_inhibit_record_point): New variable.
20225 (syms_of_undo): Initialize it.
20226 (record_point): Don't record point when undo_inhibit_record_point
20227 is set.
20228
20229 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
20230
20231 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
20232
20233 * xdisp.c (Qauto_hscroll_mode): New var.
20234 (syms_of_xdisp): Initialize it.
20235 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
20236 window's buffer.
20237 (hscroll_windows): Don't check automatic_hscrolling_p here.
20238
20239 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
20240 vscroll if we're setting window-buffer to the value it already has.
20241
20242 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
20243
20244 * m/intel386.h: Remove references to XENIX.
20245
20246 2008-01-17 Andreas Schwab <schwab@suse.de>
20247
20248 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
20249 instead of HAVE_X86_64_LIB64_DIR.
20250 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
20251
20252 2008-01-17 Glenn Morris <rgm@gnu.org>
20253
20254 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
20255 to HAVE_X86_64_LIB64_DIR.
20256
20257 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
20258
20259 * s/irix3-3.h:
20260 * s/irix4-0.h:
20261 * s/386-ix.h:
20262 * s/domain.h:
20263 * s/hpux9-x11r4.h:
20264 * s/hpux9shxr4.h: Remove files for systems no longer supported.
20265
20266 * sysdep.c: Remove code containing references to symbols defined
20267 by unsupported systems.
20268
20269 2008-01-16 Glenn Morris <rgm@gnu.org>
20270
20271 * coding.c (select-safe-coding-system-function): Doc fix.
20272
20273 2008-01-15 Glenn Morris <rgm@gnu.org>
20274
20275 * config.in: Revert 2008-01-13 change: this is a generated file.
20276
20277 2008-01-13 Tom Tromey <tromey@redhat.com>
20278
20279 * lisp.h: Fix typo.
20280
20281 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
20282
20283 * m/sequent-ptx.h:
20284 * m/sequent.h:
20285 * s/ptx.h:
20286 * s/ptx4-2.h:
20287 * s/ptx4.h: Remove files for systems no longer supported.
20288
20289 * callproc.c (Fcall_process): Fix previous change.
20290
20291 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
20292
20293 * unexsunos4.c: Remove file, system not supported anymore.
20294
20295 * m/mips.h:
20296 * m/intel386.h:
20297 * callproc.c:
20298 * config.in:
20299 * ecrt0.c:
20300 * emacs.c:
20301 * fileio.c:
20302 * frame.c:
20303 * getpagesize.h:
20304 * keyboard.c:
20305 * lread.c:
20306 * process.c:
20307 * puresize.h:
20308 * sysdep.c:
20309 * systty.h:
20310 * syswait.h:
20311 * unexec.c:
20312 * xdisp.c:
20313 * alloc.c: Remove code containing references to symbols defined by
20314 unsupported systems.
20315
20316 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
20317
20318 * coding.c (detect_coding_mask): Fix previous change.
20319
20320 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
20321
20322 * coding.c (detect_coding_iso2022): New arg
20323 latin_extra_code_state. Allow Latin extra codes only
20324 when *latin_extra_code_state is nonzero.
20325 (detect_coding_mask): If there is a NULL byte, detect the encoding
20326 as UTF-16 or binary. If Latin extra codes exist, detect the
20327 encoding as ISO-2022 only when there's no other proper encoding is
20328 found.
20329
20330 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20331
20332 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
20333 #ifdef MAC_OS.
20334
20335 2008-01-08 Richard Stallman <rms@gnu.org>
20336
20337 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
20338
20339 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
20340
20341 * keyboard.c (parse_menu_item): Don't enclose key bindings on
20342 menu bar in parentheses.
20343
20344 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
20345
20346 * m/7300.h:
20347 * m/acorn.h:
20348 * m/alliant-2800.h:
20349 * m/alliant.h:
20350 * m/alliant1.h:
20351 * m/alliant4.h:
20352 * m/altos.h:
20353 * m/amdahl.h:
20354 * m/apollo.h:
20355 * m/att3b.h:
20356 * m/aviion-intel.h:
20357 * m/aviion.h:
20358 * m/celerity.h:
20359 * m/clipper.h:
20360 * m/cnvrgnt.h:
20361 * m/convex.h:
20362 * m/cydra5.h:
20363 * m/delta88k.h:
20364 * m/dpx2.h:
20365 * m/dual.h:
20366 * m/elxsi.h:
20367 * m/f301.h:
20368 * m/gould-np1.h:
20369 * m/gould.h:
20370 * m/i860.h:
20371 * m/ibmps2-aix.h:
20372 * m/ibmrt-aix.h:
20373 * m/ibmrt.h:
20374 * m/irist.h:
20375 * m/is386.h:
20376 * m/isi-ov.h:
20377 * m/mega68.h:
20378 * m/mg1.h:
20379 * m/news-r6.h:
20380 * m/news-risc.h:
20381 * m/news.h:
20382 * m/nh3000.h:
20383 * m/nh4000.h:
20384 * m/ns16000.h:
20385 * m/ns32000.h:
20386 * m/nu.h:
20387 * m/orion.h:
20388 * m/orion105.h:
20389 * m/paragon.h:
20390 * m/pfa50.h:
20391 * m/plexus.h:
20392 * m/pyramid.h:
20393 * m/pyrmips.h:
20394 * m/sh3el.h:
20395 * m/sps7.h:
20396 * m/sr2k.h:
20397 * m/stride.h:
20398 * m/sun1.h:
20399 * m/sun2.h:
20400 * m/sun3-68881.h:
20401 * m/sun3-fpa.h:
20402 * m/sun3-soft.h:
20403 * m/sun3.h:
20404 * m/sun386.h:
20405 * m/symmetry.h:
20406 * m/tad68k.h:
20407 * m/tahoe.h:
20408 * m/targon31.h:
20409 * m/tek4300.h:
20410 * m/tekxd88.h:
20411 * m/tower32.h:
20412 * m/tower32v3.h:
20413 * m/ustation.h:
20414 * m/wicat.h:
20415 * m/xps100.h:
20416 * s/cxux.h:
20417 * s/cxux7.h:
20418 * s/dgux.h:
20419 * s/dgux4.h:
20420 * s/dgux5-4-3.h:
20421 * s/dgux5-4r2.h:
20422 * s/esix.h:
20423 * s/esix5r4.h:
20424 * s/hiuxmpp.h:
20425 * s/hiuxwe2.h:
20426 * s/iris3-5.h:
20427 * s/iris3-6.h:
20428 * s/isc2-2.h:
20429 * s/isc3-0.h:
20430 * s/isc4-0.h:
20431 * s/isc4-1.h:
20432 * s/newsos5.h:
20433 * s/newsos6.h:
20434 * s/osf1.h:
20435 * s/osf5-0.h:
20436 * s/riscix1-1.h:
20437 * s/riscix12.h:
20438 * s/sco4.h:
20439 * s/sco5.h:
20440 * s/sunos4-0.h:
20441 * s/sunos4-1.h:
20442 * s/sunos413.h:
20443 * s/sunos4shr.h:
20444 * s/umax.h:
20445 * s/unipl5-2.h:
20446 * s/xenix.h:
20447 * cxux-crt0.s:
20448 * unexapollo.c:
20449 * unexconvex.c:
20450 * unexenix.c:
20451 * unexsni.c: Remove files for systems no longer supported.
20452
20453 * m/intel386.h: Remove references to unsupported systems.
20454
20455 * w32.c (get_emacs_configuration): Remove reference to i860.
20456
20457 * sysdep.c: Remove dead code.
20458
20459 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
20460
20461 * s/rtu.h:
20462 * m/masscomp.h: Remove files. Platform is obsolete.
20463
20464 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
20465
20466 * dbusbind.c (Fdbus_method_return): New function.
20467 (xd_read_message): Add the serial number to the event.
20468 (Fdbus_register_method): Activate the function.
20469
20470 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
20471
20472 * keyboard.c (read_key_sequence): Fix typo.
20473
20474 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
20475
20476 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
20477 (xd_signature, xd_append_arg): Handle element type detection for
20478 empty arrays.
20479 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
20480 SDATA () calls; this must be solved more general.
20481 (Fdbus_register_signal): Use SBYTES instead of strlen.
20482
20483 2008-01-03 Magnus Henoch <magnus@zemdatav>
20484
20485 * dbusbind.c (xd_append_arg): Use unsigned char instead of
20486 unsigned int for byte values (necessary for big-endian platform).
20487 (Fdbus_call_method): Handle the case of no returned arguments.
20488
20489 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
20490
20491 * dbusbind.c (xd_read_message): Use non-static input_event struct.
20492
20493 2007-12-31 Magnus Henoch <mange@freemail.hu>
20494
20495 * dbusbind.c (xd_signature): Signature of variant is just "v".
20496
20497 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
20498
20499 * dbusbind.c: Fix several errors and compiler warnings.
20500 Reported by Tom Tromey <tromey@redhat.com>.
20501 (XD_ERROR, XD_DEBUG_MESSAGE)
20502 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
20503 (xd_append_arg): Part for basic D-Bus types rewritten.
20504 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
20505 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
20506 appropriate.
20507 (xd_read_message): Return Qnil. Don't signal an error; it is not
20508 useful during event reading.
20509 (Fdbus_register_signal): Signal an error if the check for
20510 FUNCTIONP fails.
20511 (Fdbus_register_method): New function. The implementation is not
20512 complete, the call of the function signals an error therefore.
20513 (Fdbus_unregister_object): New function, renamed from
20514 Fdbus_unregister_signal. The initial check signals an error, if
20515 the object is not well formed.
20516
20517 2007-12-30 Richard Stallman <rms@gnu.org>
20518
20519 * textprop.c (get_char_property_and_overlay):
20520 Signal error if POSITION is out of range in a buffer.
20521
20522 2007-12-29 Martin Rudalics <rudalics@gmx.at>
20523
20524 * w32fns.c (Fx_create_frame): Make copy of frame parameters
20525 because the original parameters are in pure storage now.
20526
20527 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20528
20529 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
20530
20531 2007-12-22 Eli Zaretskii <eliz@gnu.org>
20532
20533 * callint.c (syms_of_callint) <command-history>: Add reference to
20534 history-length in the doc string.
20535
20536 2007-12-17 Jason Rumney <jasonr@gnu.org>
20537
20538 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
20539 before passing as wParam.
20540
20541 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
20542
20543 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
20544 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
20545 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
20546 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
20547 as number.
20548 (Fdbus_call_method): Fix docstring.
20549
20550 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
20551
20552 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
20553 New macros.
20554 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
20555 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
20556 Simplify.
20557 (xd_signature): New function.
20558 (xd_append_arg): Compute also signatures. Major rewrite.
20559 (xd_retrieve_arg): Make debug messages friendly.
20560 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
20561 Check for signatures of arguments.
20562
20563 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
20564
20565 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
20566 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
20567 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
20568 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
20569 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
20570 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
20571 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
20572 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
20573 (xd_retrieve_value): Remove. Functionality included in ...
20574 (xd_append_arg): New function.
20575 (Fdbus_call_method, Fdbus_send_signal): Apply it.
20576
20577 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
20578
20579 * dbusbind.c (top): Include <stdio.h>.
20580 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
20581 dbus_message_new_method_call and dbus_message_new_signal.
20582 (Fdbus_register_signal): Rename unique_name to uname.
20583 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
20584 non-existing unique name. Fix typos in matching rule. Return an
20585 object which is useful in Fdbus_unregister_signal.
20586 (Fdbus_unregister_signal): Reimplementation, in order to remove
20587 only the corresponding entry.
20588 (Vdbus_registered_functions_table): Change the order of entries.
20589 Apply these changes in xd_read_message and Fdbus_register_signal.
20590
20591 2007-12-16 Andreas Schwab <schwab@suse.de>
20592
20593 * fileio.c (Finsert_file_contents): Fix overflow check to not
20594 depend on undefined integer overflow.
20595
20596 2007-12-14 Jason Rumney <jasonr@gnu.org>
20597
20598 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
20599 for characters above 127.
20600
20601 2007-12-13 Jason Rumney <jasonr@gnu.org>
20602
20603 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
20604 before dereferencing array.
20605 (lookup_vk_code): Remove zero comparison.
20606
20607 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
20608
20609 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
20610 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
20611 Use `unsigned int' instead of `uint'.
20612 (xd_read_message, Fdbus_register_signal): Split expressions into
20613 multiple lines before operators "&&" and "||", according to the
20614 GNU Coding Standards.
20615
20616 2007-12-14 Eli Zaretskii <eliz@gnu.org>
20617
20618 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
20619
20620 2007-12-12 Juri Linkov <juri@jurta.org>
20621
20622 * buffer.c (Frename_buffer): In interactive spec replace
20623 `read-buffer' with `read-string' that uses `buffer-name-history'
20624 as history, and the current buffer's name as default.
20625
20626 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
20627
20628 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
20629 manipulating the backtrace manually.
20630 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
20631 (struct backtrace, backtrace_list): Remove.
20632 (command_loop_1): Remove dead var `no_direct'.
20633
20634 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
20635 preserve non-built-in buffer-local variables.
20636 (Fkill_all_local_variables): Don't re-create&re-set permanent
20637 buffer-local variables.
20638
20639 2007-12-09 Juri Linkov <juri@jurta.org>
20640
20641 * buffer.c (Frename_buffer): Change interactive spec from "s" to
20642 Lisp code that uses `read-buffer' with current buffer as default.
20643
20644 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
20645
20646 * dbusbind.c (xd_read_message): Generate an event for every
20647 registered handler. There might be several handlers registered
20648 for the same signal.
20649 (Fdbus_register_signal): Don't overwrite a registration for the
20650 same signal. Add a new registration if handlers are different.
20651 (Vdbus_registered_functions_table): Rework doc string.
20652
20653 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
20654
20655 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
20656 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
20657 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
20658 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
20659 Unify argument lists.
20660 (xd_read_message, Fdbus_register_signal): Reorder and extend event
20661 arguments and hash table keys. Use unique name for service.
20662 (Fdbus_unregister_signal): Remove checks.
20663 (Vdbus_registered_functions_table): Fix doc string.
20664
20665 2007-12-05 Magnus Henoch <mange@freemail.hu>
20666
20667 * process.c (make_process): Initialize pty_flag to 0.
20668
20669 2007-12-05 Jason Rumney <jasonr@gnu.org>
20670
20671 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
20672 specified XBMs.
20673
20674 2007-12-05 Richard Stallman <rms@gnu.org>
20675
20676 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
20677
20678 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20679
20680 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
20681 New variable.
20682 (mac_try_close_socket) [MAC_OSX]: New function.
20683 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
20684 Update cfsockets_for_select. Replace invalid CFRunLoop source.
20685
20686 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
20687 Use mac_try_close_socket.
20688
20689 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20690
20691 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
20692 reloc_base.
20693 (copy_dysymtab): Compute relocation base here.
20694 (rebase_reloc_address) [__ppc64__]: New function.
20695 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
20696 changed.
20697
20698 2007-12-05 Jason Rumney <jasonr@gnu.org>
20699
20700 * w32proc.c (sys_spawnve): Quote args with wildcards.
20701
20702 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20703
20704 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
20705 __objc_* sections.
20706 (unrelocate) [_LP64]: Set relocation base to address of data segment.
20707
20708 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
20709
20710 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
20711 Move check for Vdbus_registered_functions_table to
20712 xd_read_queued_messages.
20713 (xd_read_queued_messages): Protect xd_read_message calls by
20714 internal_condition_case_1.
20715
20716 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
20717
20718 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
20719 Qdbus_system_bus and Qdbus_session_bus, respectively.
20720 (Vdbus_intern_symbols): Remove.
20721 (Vdbus_registered_functions_table): New hash table.
20722 (XD_SYMBOL_INTERN_SYMBOL): Remove.
20723 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
20724 Rewrite in order to manage registered functions by hash table
20725 Vdbus_registered_functions_table.
20726
20727 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
20728
20729 * xterm.c: Update URL to Window Manager Specification in comment.
20730
20731 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
20732
20733 * config.in (HAVE_DBUS): Add.
20734
20735 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
20736 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
20737 (obj): Add $(DBUS_OBJ).
20738 (LIBES): Add $(DBUS_LIBS).
20739 (dbusbind.o): New target.
20740
20741 * dbusbind.c: New file.
20742
20743 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
20744
20745 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
20746 (Qdbus_event): New Lisp symbol.
20747 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
20748 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
20749 (keys_of_keyboard): Define dbus-event.
20750
20751 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
20752
20753 2007-12-01 Richard Stallman <rms@gnu.org>
20754
20755 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
20756
20757 2007-11-30 Jason Rumney <jasonr@gnu.org>
20758
20759 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
20760 (w32con_reset_terminal_modes): Clear screen buffer.
20761 (w32_face_attributes): Don't use color indexes that are out of range.
20762 Only reverse the default colors.
20763
20764 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
20765 WINDOWSNT.
20766
20767 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
20768
20769 2007-11-29 Jason Rumney <jasonr@gnu.org>
20770
20771 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
20772 (w32_face_attributes): Use Vtty_defined_color_alist to determine
20773 if the terminal colors are initialized.
20774 (unspecified_fg, unspecified_bg): Remove unused declarations.
20775
20776 2007-11-29 Andreas Schwab <schwab@suse.de>
20777
20778 * keyboard.c (apply_modifiers): Fix typo.
20779
20780 2007-11-29 Richard Stallman <rms@gnu.org>
20781
20782 * keymap.c (Fcurrent_local_map): Doc fix.
20783
20784 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
20785
20786 * s/gnu-kfreebsd.h: New file.
20787
20788 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
20789
20790 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
20791 Don't cast redundantly.
20792
20793 * keyboard.c (KEY_TO_CHAR): New macro.
20794 (parse_modifiers, apply_modifiers): Accept integer arguments.
20795 (read_key_sequence): Use them to unify the "shift->unshift" mapping
20796 for chars and symbol keys.
20797 After doing such remapping, apply function-key-map again.
20798
20799 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
20800
20801 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
20802 compiled anymore.
20803
20804 2007-11-26 Andreas Schwab <schwab@suse.de>
20805
20806 * process.c (list_processes_1): Fix indentation level of the
20807 command column.
20808
20809 2007-11-23 Andreas Schwab <schwab@suse.de>
20810
20811 * editfns.c (Fformat): Handle %c specially since it requires the
20812 argument to be of type int.
20813
20814 2007-11-23 Markus Triska <markus.triska@gmx.at>
20815
20816 * emacs.c (main): Call init_editfns before init_process, since
20817 init_process sets Vprocess_connection_type depending on OS release.
20818
20819 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
20820
20821 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
20822 (find_symbol_value): Use do_symval_forwarding.
20823
20824 * data.c (set_internal): Set the value in the `cons-cell' (for
20825 Buffer_Local_values) not only for frame-local variables.
20826
20827 2007-11-22 Andreas Schwab <schwab@suse.de>
20828
20829 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
20830 values to sprintf.
20831 * keymap.c (Fsingle_key_description): Likewise.
20832 * print.c (print_object): Likewise.
20833
20834 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
20835
20836 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
20837 file for image is nil.
20838
20839 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
20840
20841 * term.c: Include stdarg.h.
20842 (fatal): Implement using varargs.
20843 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
20844
20845 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
20846
20847 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
20848 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
20849 Update call to buffer_slot_type_mismatch.
20850 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
20851 (buffer_slot_type_mismatch): Update.
20852 * buffer.c (buffer_local_types): Remove.
20853 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
20854 (defvar_per_buffer): Set the type in the buffer_objfwd.
20855
20856 2007-11-21 Jason Rumney <jasonr@gnu.org>
20857
20858 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
20859 CreateFileMapping returns NULL on failure.
20860
20861 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
20862
20863 * search.c (Fset_match_data): Remove the `evaporate' feature.
20864 (unwind_set_match_data): Don't use the `evaporate' feature.
20865
20866 2007-11-21 Jason Rumney <jasonr@gnu.org>
20867
20868 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
20869
20870 * w32console.c (w32con_write_glyphs): Remove unused variables.
20871
20872 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
20873
20874 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
20875
20876 * s/darwin.h (MULTI_KBOARD): Remove.
20877
20878 * macfns.c (x_create_tip_frame, Fx_create_frame)
20879 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
20880
20881 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
20882
20883 * buffer.c (Fbuffer_local_value): Remove redundant test.
20884 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
20885 than in `current-buffer' to match the comment.
20886 Do the swap using swap_in_global_binding.
20887
20888 * data.c (store_symval_forwarding, set_internal):
20889 * eval.c (specbind): Remove dead code.
20890
20891 * coding.c (detect_coding, Fupdate_coding_systems_internal):
20892 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
20893 Since we do not want to see internal Lisp_*fwd objects here.
20894
20895 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
20896
20897 * sysdep.c (init_system_name): Use getaddrinfo if available.
20898
20899 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
20900 (x_scroll_bar_note_movement): start, end, with, height in struct
20901 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
20902
20903 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
20904
20905 * puresize.h (BASE_PURESIZE): Increase to 1190000.
20906
20907 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
20908
20909 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
20910 This undoes Richard's change of 14-Oct-2002.
20911
20912 * alloc.c (allocate_other_vector):
20913 * lisp.h (allocate_other_vector): Remove.
20914
20915 * window.c (struct save_window_data): Move non-lisp data to the end
20916 and make it `int' rather than Lisp_Object.
20917 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
20918 Done wrap/unwrap integer values.
20919 (Fset_window_configuration, compare_window_configurations):
20920 Update use of fields to their new types.
20921
20922 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
20923 Turn integer fields into `int'. Merge x_window_low and x_window_high.
20924 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
20925 (SET_SCROLL_BAR_X_WINDOW): Remove.
20926 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
20927 Access the new x_window field directly.
20928 * xterm.c (x_scroll_bar_create): Use a pseudovector.
20929 Don't wrap/unwrap integers into Lisp_Objects.
20930 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
20931 (x_scroll_bar_report_motion):
20932 Don't wrap/unwrap integers into Lisp_Objects.
20933 (x_term_init): Use SDATA.
20934 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
20935 (x_scroll_bar_set_handle, x_scroll_bar_remove)
20936 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
20937 (x_scroll_bar_report_motion, x_scroll_bar_clear):
20938 * xfns.c (x_set_background_color):
20939 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
20940 Access the new x_window field directly.
20941
20942 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
20943 (allocate_pseudovector): Make non-static.
20944
20945 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
20946 (allocate_pseudovector): Declare.
20947 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
20948
20949 2007-11-15 Andreas Schwab <schwab@suse.de>
20950
20951 * editfns.c (Fformat): Correctly format EMACS_INT values.
20952 Also take precision into account when formatting an integer.
20953
20954 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
20955
20956 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
20957
20958 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
20959 (syms_of_keyboard): Defsubr it.
20960
20961 * data.c (swap_in_global_binding): Fix longstanding bug where
20962 store_symval_forwarding was not called with the right second argument,
20963 thus causing objfwd-ing from being dropped.
20964
20965 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
20966
20967 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
20968 (Fx_display_pixel_height, Fx_display_planes)
20969 (Fx_display_color_cells, Fx_server_max_request_size)
20970 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
20971 (Fx_display_visual_class, Fx_display_save_under):
20972 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
20973 (Fx_display_pixel_height, Fx_display_planes)
20974 (Fx_display_color_cells, Fx_server_max_request_size)
20975 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
20976 (Fx_display_mm_height, Fx_display_mm_width)
20977 (Fx_display_backing_store, Fx_display_visual_class)
20978 (Fw32_select_font, Fx_display_save_under):
20979 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
20980 (Fx_display_pixel_height, Fx_display_planes)
20981 (Fx_display_color_cells, Fx_server_max_request_size)
20982 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
20983 (Fx_display_save_under): Fix typos in docstrings.
20984
20985 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
20986
20987 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
20988 corresponding to deleted entries; they are an implementation detail.
20989 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
20990 Remove variables.
20991 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
20992 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
20993 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
20994 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
20995 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
20996 (Fw32_define_rgb_color, Fw32_load_color_file)
20997 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
20998 Fix typos in docstrings.
20999 (Fx_server_version): Reflow docstring.
21000 (Fw32_shell_execute): Doc fixes.
21001
21002 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
21003
21004 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
21005 if w32_parse_hot_key returned nil.
21006
21007 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
21008
21009 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
21010
21011 2007-11-09 Jason Rumney <jasonr@gnu.org>
21012
21013 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
21014
21015 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
21016
21017 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
21018 Remove W32_SCROLL_BAR_CLICK_EVENT.
21019
21020 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
21021 Add MULTIMEDIA_KEY_EVENT.
21022
21023 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
21024 (lispy_multimedia_keys) [WINDOWSNT]: New array.
21025 (make_lispy_event) [WINDOWSNT]: Use it to translate
21026 MULTIMEDIA_KEY_EVENT.
21027
21028 * w32term.h (WM_APPCOMMAND): Define if not already.
21029 (GET_APPCOMMAND_LPARAM): Likewise.
21030
21031 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
21032 WM_APPCOMMAND.
21033
21034 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
21035 (syms_of_w32fns): Export and initialize it.
21036 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
21037
21038 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
21039
21040 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
21041 twice.
21042
21043 * xdisp.c (handle_face_prop): Fix last change.
21044
21045 2007-11-09 Richard Stallman <rms@gnu.org>
21046
21047 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
21048 not just for after-strings and before-strings.
21049 Call face_for_overlay_string and pass the overlay to it.
21050 (handle_display_prop): Determine whether property came from an overlay.
21051 Pass OVERLAY arg to handle_single_display_spec.
21052 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
21053 (load_overlay_strings): Fill in it->string_overlays.
21054 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
21055
21056 * xfaces.c (face_for_overlay_string): Function renamed from
21057 face_at_buffer_position_no_overlays, and add arg OVERLAY.
21058
21059 * dispextern.h (struct it): New elt string_overlays.
21060 New elt from_overlay, also in stack.
21061 Rearrange a few elements.
21062 (face_for_overlay_string): Decl renamed from
21063 face_at_buffer_position_no_overlays, and add argument.
21064
21065 2007-11-09 Richard Stallman <rms@gnu.org>
21066
21067 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
21068 to get the base face for an overlay string.
21069
21070 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
21071
21072 * xfaces.c (face_at_buffer_position_no_overlays): New function.
21073
21074 * xdisp.c (handle_stop): Move some code out of loop.
21075
21076 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21077
21078 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
21079 Fix conversion from Lisp object to ATSUFontID.
21080
21081 2007-11-09 Jason Rumney <jasonr@gnu.org>
21082
21083 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
21084
21085 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21086
21087 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
21088 Don't assume regions are aligned to page boundary.
21089 (print_load_command_name): Add LC_UUID if defined.
21090
21091 2007-11-09 Richard Stallman <rms@gnu.org>
21092
21093 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
21094
21095 2007-11-07 Jason Rumney <jasonr@gnu.org>
21096
21097 * s/windows95.h: Remove.
21098
21099 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
21100
21101 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
21102 abort with a message on unhandled store_type values.
21103
21104 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
21105
21106 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
21107 Remove HAVE_X11R5 and HAVE_X11R4.
21108
21109 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
21110
21111 * Makefile.in: Remove references to sunfns.c and sunfns.o.
21112
21113 2007-11-01 Johan Bockgård <bojohan@gnu.org>
21114
21115 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
21116 Don't set s->stippled_p here, since it has already been set by
21117 x_set_glyph_string_gc from x_draw_glyph_string.
21118
21119 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
21120
21121 * sunfns.c: Remove file.
21122
21123 * m/sun386.h:
21124 * m/sun2.h:
21125 * m/sparc.h: Remove Sun windows code.
21126
21127 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
21128
21129 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
21130 (init_keyboard): Set current_kboard's window-system to nil.
21131 (tty_read_avail_input): Typo.
21132 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
21133
21134 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
21135
21136 * s/usg5-4.h:
21137 * s/usg5-3.h:
21138 * s/ptx.h:
21139 * m/is386.h:
21140 * m/ibmps2-aix.h:
21141 * Makefile.in: Remove all mentions of X10.
21142
21143 * dispnew.c (syms_of_display): Don't mention version 10.
21144
21145 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
21146
21147 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
21148 ($(BLD)/abbrev.$(O)): Remove.
21149
21150 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
21151
21152 Rewrite abbrev.c in Elisp.
21153 * image.c (Qcount): Don't declare as extern.
21154 (syms_of_image): Initialize and staticpro `Qcount'.
21155 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
21156 * emacs.c (main): Don't call syms_of_abbrev.
21157 * Makefile.in (obj): Remove abbrev.o.
21158 (abbrev.o): Remove.
21159 * abbrev.c: Remove.
21160
21161 2007-10-26 Martin Rudalics <rudalics@gmx.at>
21162
21163 * window.c (window_min_size_2): Don't count header-line.
21164
21165 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
21166
21167 * frame.h (struct frame): Move all bit fields after the first bit
21168 field to take advantage of the available space. Group all the
21169 chars together to reduce wasted space due to padding.
21170
21171 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
21172
21173 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
21174
21175 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
21176 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
21177 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
21178 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
21179 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
21180 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
21181 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
21182 (last_marked, mark_object_loop_halt): Make static.
21183
21184 * frame.c (syms_of_frame) <delete-frame-functions>:
21185 Fix typo in docstring.
21186
21187 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
21188
21189 * w32.c (init_environment): Fix tiny memory leak.
21190 (w32_get_resource): Remove unused variable `ok'.
21191
21192 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
21193
21194 Make `window-system' into a keyboard-local variable (rather than
21195 frame-local as done originally by multi-tty).
21196
21197 * keyboard.h (struct kboard): Add Vwindow_system.
21198 * keyboard.c (init_kboard): Set a default for Vwindow_system.
21199 (mark_kboards): Mark Vwindow_system.
21200
21201 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
21202 (init_display): Don't set the obsolete `window-system' frame-param.
21203
21204 * xterm.c (x_term_init):
21205 * w32term.c (w32_create_terminal):
21206 * term.c (init_tty): Set Vwindow_system.
21207 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
21208 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
21209
21210 * xfns.c (Fx_create_frame, x_create_tip_frame):
21211 * w32fns.c (Fx_create_frame, x_create_tip_frame):
21212 * macfns.c (Fx_create_frame):
21213 Don't set the obsolete `window-system' frame-param.
21214
21215 * frame.h (Qwindow_system): Remove.
21216 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
21217 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
21218
21219 2007-10-24 Richard Stallman <rms@gnu.org>
21220
21221 * frame.c (x_figure_window_size): For fullscreen case,
21222 set USPosition | PPosition without clobbering rest of window_prompting.
21223
21224 * keyboard.c (Fcurrent_idle_time): Doc fix.
21225
21226 * print.c (Fwith_output_to_temp_buffer): Doc fix.
21227
21228 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
21229
21230 * process.c (unwind_request_sigio): Only define if __ultrix__.
21231
21232 * callproc.c (child_setup): Remove spurious *.
21233
21234 * lisp.h (Fget_text_property): Declare.
21235 (have_menus_p): Declare it here rather than in sys-dep header files.
21236 * macterm.h (have_menus_p):
21237 * msdos.h (have_menus_p):
21238 * xterm.h (have_menus_p): Remove.
21239
21240 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
21241 (Fmake_variable_frame_local): Just check the variable's const-ness
21242 rather than checking nil or t.
21243
21244 2007-10-22 Jason Rumney <jasonr@gnu.org>
21245
21246 * w32fns.c: Include math.h.
21247 (w32_abort): Declaration moved to nt/config.nt.
21248
21249 * s/ms-w32.h (HAVE_STDLIB_H): Define.
21250 (abort): Redefinition moved to nt/config.nt.
21251
21252 * m/windowsnt.h: Remove.
21253
21254 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
21255
21256 * emacs.c (Fdump_emacs): Fix typo in message.
21257 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
21258 <installation-directory>: Reflow docstring.
21259
21260 2007-10-22 Juri Linkov <juri@jurta.org>
21261
21262 * minibuf.c: Allow minibuffer default to be a list of default values.
21263 With empty input use the first element of this list as returned default.
21264 (string_to_object)
21265 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
21266 (read_minibuf): If defalt is cons, set histstring to its car.
21267 (Fread_string): If default_value is cons, set val to its car.
21268 (Fread_buffer): If def is cons, use its car.
21269 (Fcompleting_read): If defalt is cons, set val to its car.
21270
21271 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
21272
21273 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
21274
21275 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
21276
21277 * doc.c (Fdocumentation): Check for advice in all cases.
21278
21279 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
21280
21281 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
21282
21283 2007-10-19 Richard Stallman <rms@gnu.org>
21284
21285 * doc.c (Fdocumentation): Check for and handle an advised function.
21286
21287 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
21288
21289 * process.c (Fset_process_filter): Doc fix.
21290
21291 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
21292
21293 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
21294 which caused key-translation-map to applied repeatedly (thus breaking
21295 double-mode).
21296
21297 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
21298
21299 * xselect.c (x_own_selection, x_handle_selection_clear)
21300 (x_clear_frame_selections):
21301 * w32menu.c (list_of_panes, list_of_items):
21302 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
21303 * textprop.c (validate_plist, interval_has_all_properties)
21304 (interval_has_some_properties, interval_has_some_properties_list)
21305 (add_properties, text_property_list):
21306 * process.c (Fget_buffer_process, list_processes_1, status_notify):
21307 * minibuf.c (Fassoc_string):
21308 * macselect.c (x_own_selection, x_clear_frame_selections)
21309 (Fx_disown_selection_internal):
21310 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
21311 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
21312
21313 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
21314
21315 * process.c: Link to libs for calling res_init() if available.
21316 (Fmake_network_process): Call res_init() before getaddrinfo or
21317 gethostbyname, if possible.
21318
21319 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
21320
21321 * lread.c (read1): Set pvectype for char_tables.
21322
21323 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
21324 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
21325 Add type checks.
21326 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
21327
21328 * alloc.c (free_misc): Use XMISCTYPE.
21329 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
21330
21331 2007-10-17 Glenn Morris <rgm@gnu.org>
21332
21333 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
21334 (syms_of_minibuf): Add Qcompletion_ignore_case.
21335 * dired.c (Qcompletion_ignore_case): Change to external.
21336 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
21337 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
21338 (Fread_file_name): Use it rather than intern'ing.
21339
21340 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
21341 (Fread_coding_system): Ignore case of user input.
21342
21343 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21344
21345 * xdisp.c (handle_display_prop): Ignore display specs after
21346 replacing one when string text is being replaced.
21347 (handle_single_display_spec): Pretend as if characters with display
21348 property haven't been consumed only when buffer text is being replaced.
21349
21350 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
21351
21352 * xfns.c (Fx_create_frame, Fx_display_list):
21353 * window.c (window_fixed_size_p, enlarge_window)
21354 (shrink_window_lowest_first):
21355 * macterm.c (init_font_name_table):
21356 * macfns.c (Fx_create_frame, Fx_display_list):
21357 * lread.c (close_load_descs):
21358 * keyboard.c (read_char_x_menu_prompt):
21359 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
21360 * coding.c (code_convert_region_unwind): Test the type of an object
21361 rather than just !NILP before extracting data from it.
21362
21363 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
21364
21365 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
21366 (XMISCANY): New macro.
21367 (XMISCTYPE): Use it.
21368 (struct Lisp_Misc_Any): New type.
21369 (union Lisp_Misc): Use it.
21370 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
21371 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
21372 (find_symbol_value, set_internal, default_value, Fset_default)
21373 (Fmake_variable_buffer_local, Fmake_local_variable)
21374 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
21375 (Flocal_variable_if_set_p, Fvariable_binding_locus):
21376 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
21377 * alloc.c (allocate_buffer): Set the size and tag.
21378 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
21379 Use XMISCANY.
21380 (die): Follow the GNU convention for error messages.
21381 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
21382 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
21383 tag any more.
21384 (set_buffer_internal_1):
21385 * frame.c (store_frame_param):
21386 * eval.c (specbind):
21387 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
21388
21389 * doc.c (Fsnarf_documentation): Simplify.
21390
21391 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
21392
21393 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
21394 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
21395
21396 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
21397
21398 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
21399
21400 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
21401
21402 * eval.c (do_autoload): Don't save autoloads.
21403
21404 * data.c (Ffset): Save autoload of the function being set.
21405
21406 2007-10-07 John Paul Wallington <jpw@pobox.com>
21407
21408 * xfns.c (x_create_tip_frame): Set the `display-type' frame
21409 parameter before setting up faces.
21410
21411 2007-10-13 Eli Zaretskii <eliz@gnu.org>
21412
21413 * ccl.c (Fregister_code_conversion_map):
21414 * keyboard.c (append_tool_bar_item): Reformat last change.
21415
21416 * lisp.h (eabs): Rename from `abs'. All callers changed.
21417
21418 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
21419
21420 * buffer.c (add_overlay_mod_hooklist):
21421 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
21422 * fontset.c (make_fontset):
21423 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
21424 (append_tool_bar_item):
21425 * macmenu.c (grow_menu_items):
21426 * w32menu.c (grow_menu_items):
21427 * xmenu.c (grow_menu_items): Use larger_vector.
21428
21429 2007-10-13 Eli Zaretskii <eliz@gnu.org>
21430
21431 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
21432 selected frame'' on MSDOS).
21433
21434 2007-10-12 Martin Rudalics <rudalics@gmx.at>
21435
21436 * frame.c (Qexplicit_name): New variable.
21437 (x_report_frame_params): Report it in parameter alist.
21438 (syms_of_frame): Intern and staticpro it.
21439
21440 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
21441
21442 * macfns.c (x_create_tip_frame): Set terminal for frame.
21443
21444 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
21445
21446 * frame.c (Qenvironment): Remove.
21447 (syms_of_frame) <Qenvironment>: Don't initialize.
21448 (Fdelete_frame): Don't treat the `environment' param specially.
21449 * frame.h (Qenvironment): Don't declare.
21450 * callproc.c (set_initial_environment): Don't set unused frame param.
21451
21452 * frame.c (Fframe_with_environment): Remove.
21453 (syms_of_frame) <Sframe_with_environment>: Don't declare.
21454
21455 * lisp.h (Fframe_with_environment): Don't declare.
21456
21457 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
21458
21459 * indent.c (indent_tabs_mode, last_known_column)
21460 (last_known_column_modified): Make static.
21461 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
21462
21463 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
21464
21465 * puresize.h (BASE_PURESIZE): Increase to 1170000.
21466
21467 2007-10-09 Jason Rumney <jasonr@gnu.org>
21468
21469 * w32term.c (x_set_window_size): Disable code that attempts to tell
21470 Lisp code about a size change before it actually happens.
21471
21472 2007-10-09 Richard Stallman <rms@gnu.org>
21473
21474 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
21475 return HANDLED_RETURN.
21476
21477 2007-10-08 Martin Rudalics <rudalics@gmx.at>
21478
21479 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
21480 when there's an unread command event.
21481
21482 * frame.c (focus_follows_mouse): Move here from frame.el to allow
21483 window autoselection act appropriately when leaving selected frame.
21484 (syms_of_frame): Initialize focus_follows_mouse.
21485 * frame.h (focus_follows_mouse): Extern it.
21486 * macterm.c (XTread_socket): When focus_follows_mouse is nil
21487 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
21488 * msdos.c (dos_rawgetc): Likewise.
21489 * w32term.c (w32_read_socket): Likewise.
21490 * xterm.c (handle_one_xevent): Likewise.
21491 * xdisp.c (syms_of_xdisp): In doc-string of
21492 mouse-autoselect-window mention focus-follows-mouse.
21493
21494 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21495
21496 * macterm.c (mac_load_query_font): Fix missing return value.
21497 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
21498 Add BLOCK_INPUT.
21499
21500 2007-10-08 Richard Stallman <rms@gnu.org>
21501
21502 * xdisp.c (get_window_cursor_type): Implement documented behavior
21503 for cursor-in-non-selected-windows = t.
21504
21505 2007-10-08 Jason Rumney <jasonr@gnu.org>
21506
21507 * w32.c (w32_get_resource): Always close registry keys.
21508
21509 2007-10-08 Jason Rumney <jasonr@gnu.org>
21510
21511 * makefile.w32-in (LIBS): Add COMCTL32.
21512
21513 * w32fns.c (globals_of_w32fns): Init common controls.
21514
21515 2007-10-08 Richard Stallman <rms@gnu.org>
21516
21517 * image.c (our_memory_buffer): Rename from omfib_buffer.
21518
21519 2007-10-08 Richard Stallman <rms@gnu.org>
21520
21521 * buffer.c (Foverlays_at): Doc fix.
21522
21523 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
21524
21525 * fns.c (Fplist_put): Preserve uneven tail data.
21526
21527 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
21528
21529 * termhooks.h (enum event_kind): Remove trailing comma.
21530
21531 * frame.h (enum): Remove trailing comma.
21532
21533 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
21534
21535 * w32proc.c (delete_child): Don't terminate threads of zombies.
21536
21537 2007-10-08 Martin Rudalics <rudalics@gmx.at>
21538
21539 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
21540
21541 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
21542 last-repeatable-command.
21543 (init_kboard): Initialize Vlast_repeatable_command.
21544 (command_loop_1): Set it to real_this_command unless that was
21545 bound to an input event.
21546 (mark_kboards): Mark it.
21547
21548 2007-10-08 Richard Stallman <rms@gnu.org>
21549
21550 * eval.c (condition-case): Doc fix.
21551
21552 2007-10-08 Masatake YAMATO <jet@gyve.org>
21553
21554 * xfaces.c (tty_supports_face_attributes_p): Fix code
21555 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
21556 was copied and not edited.
21557
21558 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
21559
21560 Add new `input-decode-map' keymap and use it for terminal
21561 escape sequences.
21562 * keyboard.h (struct kboard): Add Vinput_decode_map.
21563 Remove Vlocal_key_translation_map.
21564 * keyboard.c (read_key_sequence): Add support for input-decode-map.
21565 (init_kboard): Init input-decode-map.
21566 Replace local-key-translation-map back with key-translation-map.
21567 (syms_of_keyboard): Declare input-decode-map.
21568 Remove local-key-translation-map. Update docstrings.
21569 (mark_kboards): Mark Vinput_decode_map.
21570 Don't mark Vlocal_key_translation_map.
21571 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
21572 Replace local-key-translation-map back with key-translation-map.
21573 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
21574 Bind in input-decode-map rather than function-key-map.
21575
21576 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
21577 This was made redundant by the previous introduction of XSETPVECTYPE.
21578
21579 2007-10-09 Richard Stallman <rms@gnu.org>
21580
21581 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
21582
21583 2007-09-29 Richard Stallman <rms@gnu.org>
21584
21585 * eval.c (internal_condition_case_2, internal_condition_case_1)
21586 (internal_condition_case): Reenable abort if x_catching_errors ()
21587 to see if that really happens and why.
21588
21589 2007-10-06 Andreas Schwab <schwab@suse.de>
21590
21591 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
21592
21593 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
21594
21595 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
21596
21597 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
21598
21599 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
21600
21601 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
21602
21603 * window.h (struct window):
21604 * window.c (struct save_window_data, struct saved_window):
21605 * termhooks.h (struct terminal):
21606 * process.h (struct Lisp_Process):
21607 * frame.h (struct frame):
21608 * buffer.h (struct buffer):
21609 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
21610 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
21611 The size field of (pseudo)vectors is now unsigned.
21612 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
21613
21614 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
21615 Turn `count' into an integer.
21616
21617 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
21618 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
21619 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
21620 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
21621 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
21622
21623 * alloc.c (allocate_pseudovector): New fun.
21624 (ALLOCATE_PSEUDOVECTOR): New macro.
21625 (allocate_window, allocate_terminal, allocate_frame)
21626 (allocate_process): Use it.
21627 (mark_vectorlike): New function.
21628 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
21629 (mark_terminals): Use it.
21630 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
21631 (Fmake_byte_code): Use XSETPVECTYPE.
21632
21633 * frame.c (Fframe_parameters): Minor simplification.
21634
21635 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
21636
21637 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
21638
21639 * buffer.c (Fget_buffer_create, init_buffer_once):
21640 * lread.c (defsubr):
21641 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
21642
21643 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
21644 defined differently in the m/*.h files.
21645 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
21646 (XSETPVECTYPE): New macro.
21647 (XSETPSEUDOVECTOR): Use it.
21648
21649 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
21650 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
21651
21652 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
21653 * lread.c (defvar_per_buffer):
21654 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
21655
21656 * window.c (candidate_window_p): Only consider as visible frames that
21657 are on the same terminal.
21658
21659 * m/ibms390x.h (MARKBIT): Remove unused macro.
21660
21661 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
21662
21663 * lread.c (Fload): Fix typo in docstring.
21664
21665 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
21666
21667 * floatfns.c (Fexpt): Manually check for overflows, so that a power
21668 of a non-zero value can't yield zero.
21669
21670 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
21671
21672 * term.c (term_clear_mouse_face, term_mouse_highlight)
21673 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
21674
21675 * print.c (safe_debug_print): Use XHASH.
21676
21677 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
21678 Lisp elements such as tags.
21679 (XHASH): New macro.
21680 (EQ): Use it.
21681 (SREF, SSET, STRING_COPYIN): Use SDATA.
21682 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
21683
21684 * alloc.c (mark_terminal): Remove left-over declaration.
21685 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
21686 (allocate_vectorlike): Remove type argument. Adjust callers.
21687 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
21688 Only handle the one remaining MEM_TYPE_VECTORLIKE.
21689
21690 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
21691 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
21692 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
21693 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
21694 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
21695 Use them.
21696
21697 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
21698 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
21699 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
21700
21701 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
21702
21703 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
21704 loaded by default.
21705
21706 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
21707
21708 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
21709 on this tty.
21710 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
21711
21712 * term.c (mouse_face_window): Rename from Qmouse_face_window.
21713 Update all users.
21714 (handle_one_term_event): Use Gpm_DrawPointer.
21715 (Fgpm_mouse_start): Rename from Fterm_open_connection.
21716 Signal errors instead of returning nil. Always return nil.
21717 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
21718 Make it a noop if gpm-mouse was not activated.
21719 (syms_of_term): Update names.
21720
21721 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
21722
21723 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
21724 (init_sys_modes): Check that gpm_tty is the current tty.
21725
21726 * alloc.c (allocate_terminal): Set the vector size to only count the
21727 lisp fields. Initialize those to nil.
21728 (mark_object): Don't treat terminals specially.
21729 (mark_terminal): Remove.
21730 (mark_terminals): Use mark_object instead.
21731
21732 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
21733 the GC to the beginning.
21734
21735 * indent.h:
21736 * indent.c: Use EMACS_INT for ints coming from Elisp data.
21737
21738 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
21739
21740 2007-09-25 Jason Rumney <jasonr@gnu.org>
21741
21742 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
21743
21744 * w32console.c (create_w32cons_output): Remove.
21745
21746 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
21747
21748 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
21749 (reset_sys_modes): Use reset_terminal_modes_hook.
21750
21751 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
21752
21753 * eval.c (do_autoload): Don't output any message.
21754
21755 2007-09-24 Juri Linkov <juri@jurta.org>
21756
21757 * emacs.c (standard_args): Change priority of "--no-splash"
21758 from 40 to 3. Add "--no-desktop" with the same priority.
21759
21760 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
21761
21762 * alloc.c (gc_sweep): Check cons cell mark bits word by word
21763 and optimize the case where they are all 1.
21764
21765 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
21766
21767 * lisp.h (abs): Define if not defined.
21768 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
21769 Don't define `abs', since it's defined in lisp.h.
21770
21771 2007-09-22 Eli Zaretskii <eliz@gnu.org>
21772
21773 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
21774 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
21775 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
21776 (init_tty): Use DEV_TTY instead of "/dev/tty".
21777 [WINDOWSNT]: No need to protect from NAME arg being null.
21778
21779 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
21780
21781 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
21782 up the tty state.
21783
21784 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
21785
21786 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
21787 (gpm_tty): Change its type.
21788 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
21789 (gpm_tty): Change its type and initialize it.
21790 (Fterm_open_connection): Check the frame is indeed a tty.
21791 Use the new gpm_tty.
21792 (Fterm_close_connection): Use the new gpm_tty.
21793 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
21794 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
21795
21796 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
21797
21798 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
21799 underline_color, to draw strike-through.
21800
21801 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
21802
21803 * lisp.h (allocate_terminal): Declare.
21804
21805 * window.c (candidate_window_p): Consider frames that are being placed
21806 by the user as somewhere between visible and iconified.
21807 (window_loop): Prefer windows on the current frame.
21808 (Fselect_window): Move the use of select-frame to the beginning so we
21809 can just delegate all the work (it'll call us back anyway).
21810
21811 * frame.c (Qdisplay_environment_variable):
21812 * frame.h (Qdisplay_environment_variable): Delete.
21813
21814 * .gdbinit (xbacktrace): Print the arg's address rather than the value
21815 of the first arg, since that value may be a union.
21816
21817 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
21818 parameter rather than Qdisplay_environment_variable. If all else
21819 fails, look for DISPLAY in initial-environment.
21820
21821 2007-09-21 Glenn Morris <rgm@gnu.org>
21822
21823 * Makefile.in (emacstool): Remove target.
21824 (lisp, shortlisp): Remove termdev.elc.
21825
21826 2007-09-21 Markus Triska <markus.triska@gmx.at>
21827
21828 * xterm.c (x_delete_display): Compile session management conditionally.
21829
21830 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
21831
21832 * callproc.c (getenv_internal_1): New function.
21833 (getenv_internal): Use it.
21834 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
21835
21836 * terminal.c (get_terminal): Don't accept ints to represent terminals.
21837 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
21838 (Fset_terminal_parameter): Work with dead terminals as well.
21839 (Fmodify_terminal_parameters): Remove.
21840
21841 * terminal.c (get_terminal): Handle terminals.
21842 Make sure the terminal returned is live.
21843 (create_terminal): Use allocate_terminal.
21844 (mark_terminals): Move to alloc.c.
21845 (delete_terminal): Use terminal->name as liveness status.
21846 NULL out fields after freeing their contents.
21847 Don't deallocate the object.
21848 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
21849 rather than an int.
21850 (Fterminal_live_p): Accept non-integer arguments.
21851 (Fterminal_list): Return terminal objects rather than an ints.
21852
21853 * alloc.c (enum mem_type): New member for `terminal' objects.
21854 (allocate_terminal): New function.
21855 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
21856 Handle terminals.
21857 (mark_terminal): New fun.
21858 (mark_terminals): Move from terminal.c.
21859
21860 * term.c (get_tty_terminal): Don't treat output_initial specially.
21861 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
21862 (delete_tty): Use terminal->name as liveness status.
21863
21864 * termhooks.h (struct terminal): Make it into a pseudovector.
21865 Remove `deleted' replaced by checking `name's nullness.
21866
21867 * print.c (print_object): Handle terminals.
21868
21869 * lisp.h (enum pvec_type): New `terminal' pseudovector.
21870 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
21871
21872 * frame.c (make_terminal_frame):
21873 * keyboard.c (tty_read_avail_input):
21874 * w32term.c (x_delete_terminal):
21875 * xfns.c (Fx_create_frame, x_create_tip_frame):
21876 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
21877
21878 2007-09-20 Glenn Morris <rgm@gnu.org>
21879
21880 * process.c (Fmake_network_process): Doc fix.
21881
21882 2007-09-19 Jason Rumney <jasonr@gnu.org>
21883
21884 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
21885
21886 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
21887
21888 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
21889 Fix a C warning regarding variable constness.
21890
21891 * xterm.c (handle_one_xevent): Fix a C warning.
21892
21893 2007-09-18 Jason Rumney <jasonr@gnu.org>
21894
21895 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
21896
21897 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
21898
21899 * gtkutil.c (gdpy_def): New variable.
21900 (xg_initialize): Initialize gdpy_def.
21901 (xg_display_close): If no other display exists, set gdpy_def to a
21902 new connection.
21903
21904 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
21905
21906 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
21907 when we have no file name for the icon.
21908 (xg_tool_bar_expose_callback): Remove.
21909 (xg_create_tool_bar): Don't connect expose signal to
21910 xg_tool_bar_expose_callback.
21911 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
21912
21913 2007-09-16 Andreas Schwab <schwab@suse.de>
21914
21915 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
21916 values instead of zapping them.
21917
21918 2007-09-14 Glenn Morris <rgm@gnu.org>
21919
21920 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
21921 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
21922 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
21923 scope and rename to omfib_buffer for clarity.
21924 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
21925
21926 2007-09-14 Kenichi Handa <handa@m17n.org>
21927
21928 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
21929
21930 2007-09-13 Jason Rumney <jasonr@gnu.org>
21931
21932 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
21933
21934 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
21935
21936 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
21937 (mac_term_init): Call here instead, passing rif.
21938
21939 2007-09-13 Glenn Morris <rgm@gnu.org>
21940
21941 * s/hpux.h: No longer define `static' as nothing.
21942
21943 2007-09-13 Johan Bockgård <bojohan@gnu.org>
21944
21945 * callint.c (Fcall_interactively): Remove unused var `fun'.
21946
21947 2007-09-12 Romain Francoise <romain@orebokech.com>
21948
21949 * window.c (prefer_window_split_horizontally, display_buffer):
21950 Revert 2007-09-08 change.
21951
21952 2007-09-12 Glenn Morris <rgm@gnu.org>
21953
21954 * alloca.c: Remove file.
21955 * Makefile.in (alloca): Do not undef.
21956 (allocaobj, alloca.o): Remove.
21957 (otherobj): Remove allocaobj.
21958 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
21959 * regex.c (C_ALLOCA): Remove all references and code that was only
21960 used when this was defined.
21961 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
21962 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
21963 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
21964
21965 * Makefile.in (SOURCES, unlock, relock): Delete.
21966
21967 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
21968 (menu_grab_callback): All uses changed.
21969
21970 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
21971 (x_reply_selection_request): All uses changed.
21972
21973 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
21974
21975 * lread.c (load_warn_old_style_backquotes): Change message to look
21976 better when it appears in the middle of byte-compiler messages.
21977
21978 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
21979
21980 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
21981
21982 * xterm.c (x_create_terminal): Add comment.
21983
21984 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
21985
21986 2007-09-10 Richard Stallman <rms@gnu.org>
21987
21988 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
21989
21990 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
21991
21992 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
21993 (DEFUN): Document `intspec', use it instead of `prompt'.
21994
21995 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
21996
21997 * data.c (Finteractive_form): If the interactive specification starts
21998 with a `(', use it as a Lisp form.
21999
22000 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
22001 name and file modes.
22002
22003 * callint.c (Fcall_interactively): Comment fixes.
22004
22005 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
22006
22007 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
22008 and compiled functions.
22009
22010 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
22011
22012 * window.c (prefer_window_split_horizontally): New variable.
22013 (display_buffer): Consider splitting window horizontally depending
22014 on prefer_window_split_horizontally.
22015
22016 2007-09-08 Eli Zaretskii <eliz@gnu.org>
22017
22018 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
22019
22020 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
22021
22022 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
22023
22024 * frame.c (x_set_frame_parameters): Check number is positive before
22025 using XFASTINT.
22026
22027 * window.c (freeze_window_start): Don't presume selected_window holds
22028 a window object.
22029 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
22030
22031 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
22032
22033 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
22034
22035 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
22036
22037 * window.c (Vsplit_window_preferred_function): New var.
22038 (Fdisplay_buffer): Use it.
22039 (syms_of_window): Export, and initialize it.
22040
22041 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
22042
22043 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
22044
22045 2007-09-06 Glenn Morris <rgm@gnu.org>
22046
22047 * gtkutil.c (menu_grab_callback) <cnt>:
22048 * xselect.c (x_reply_selection_request) <cnt>: Move static
22049 variable to file scope.
22050
22051 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
22052
22053 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
22054 consistent values of selected_frame and selected_window.
22055
22056 2007-09-04 Jason Rumney <jasonr@gnu.org>
22057
22058 * w32console.c (initialize_w32_display): Zero unused hooks.
22059
22060 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
22061
22062 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
22063 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
22064
22065 2007-09-04 Jason Rumney <jasonr@gnu.org>
22066
22067 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
22068 in w32console.c. Set up input. Remove XXX comments that have been
22069 confirmed as correct.
22070
22071 * s/ms-w32.h (MULTI_KBOARD): Define.
22072
22073 * w32console.c (one_and_only_w32cons): Remove.
22074 (initialize_w32_display): Take terminal argument.
22075
22076 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
22077 initialize_w32_display.
22078 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
22079
22080 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
22081
22082 * keyboard.c (discard_mouse_events): Discard it.
22083 (make_lispy_event): Translate it to a lisp event.
22084 (lispy_wheel_names): Add wheel-left and right events.
22085 (syms_of_keyboard): Enlarge wheel_syms.
22086
22087 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
22088 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
22089
22090 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
22091
22092 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
22093 from WM_MOUSEHWHEEL.
22094 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
22095
22096 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
22097 terminal.
22098
22099 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
22100 keyboard for the terminal.
22101
22102 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
22103
22104 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
22105 (Vresume_tty_hook): Rename from Vresume_tty_functions.
22106 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
22107 and resume-tty-function to resume-tty-hook.
22108 (Fsuspend_tty, Fresume_tty): Use new names.
22109
22110 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
22111
22112 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
22113 if it starts with "n:".
22114
22115 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
22116
22117 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
22118
22119 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
22120
22121 * frame.h:
22122 * frame.c (Qterm_environment_variable): Remove.
22123 (syms_of_frame): Don't init and staticpro it.
22124
22125 * callproc.c (getenv_internal): Remove special case for $TERM.
22126
22127 * callproc.c (Vinitial_environment): New variable.
22128 (set_initial_environment): Initialize it.
22129 (syms_of_callproc): Declare it.
22130 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
22131 TERM under which a process runs is never related to the TERM in which
22132 Emacs is running.
22133
22134 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
22135
22136 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
22137 * s/darwin.h: ... do it here.
22138
22139 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
22140
22141 * lisp.h (set_initial_environment): Rename from set_global_environment.
22142
22143 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
22144 removed by mistake on the multi-tty branch.
22145
22146 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
22147 (Fmodify_frame_parameters): Return a value.
22148
22149 * image.c (png_load): Comment-out var only used in commented-out code.
22150
22151 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
22152 before passing it to mark_object.
22153
22154 * xfaces.c (internal_resolve_face_name): Return a value.
22155 (internal_resolve_face_name, resolve_face_name_error): Comment out.
22156
22157 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
22158 (x_icon): Comment-out var only used in commented-out code.
22159
22160 2007-08-29 Romain Francoise <romain@orebokech.com>
22161
22162 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
22163 QUIT hasn't been provided.
22164
22165 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
22166
22167 * callproc.c (child_setup, getenv_internal): Use the
22168 display-environment-variable and term-environment-variable frame params.
22169 (set_initial_environment): Initialise Vprocess_environment.
22170
22171 * config.in: Disable multi-keyboard support on a mac.
22172
22173 * frame.c (Qterm_environment_variable)
22174 (Qdisplay_environment_variable): New variables.
22175 (syms_of_frame): Intern and staticpro them.
22176 (Fmake_terminal_frame): Disable output method test.
22177
22178 * frame.h: Declare them here.
22179
22180 * macfns.c (x_set_mouse_color): Get rif from the frame.
22181 (x_set_tool_bar_lines): Don't use updating_frame.
22182 (mac_window): Add 2 new parameters for consistency with other systems.
22183 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
22184 frame parameters following what is done in X11 and w32. Don't use
22185 FRAME_MAC_DISPLAY_INFO.
22186 (Fx_open_connection, start_hourglass): Remove window-system check.
22187 (x_create_tip_frame): Get the keyboard from the terminal.
22188
22189 * macmenu.c: Reorder includes.
22190 (Fx_popup_menu): Use terminal specific mouse_position_hook.
22191
22192 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
22193 terminal parameter.
22194 (x_clear_frame): Add a frame parameter.
22195 (note_mouse_movement): Get rif from the frame.
22196 (mac_term_init): Initialize the terminal.
22197 (mac_initialize): Make static and move terminal initialization ...
22198 (mac_create_terminal): ... to this new function.
22199
22200 * macterm.h (struct mac_display_info): Add terminal.
22201 (mac_initialize): Delete declaration.
22202
22203 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
22204
22205 * sysdep.c: Comment out text after #endif.
22206
22207 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
22208 is defined. Better initialize ttys in windows. Use terminal
22209 specific mouse_position_hook.
22210
22211 * termhooks.h (union display_info): Add mac_display_info.
22212
22213 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
22214 Set the default minibuffer frame, window_system and the rest of the
22215 frame parameters following what is done in X11.
22216
22217 * w32term.c (w32_initialize): Make static.
22218
22219 * xselect.c (x_handle_selection_clear): Only access
22220 terminal->kboard when MULTI_KBOARD is defined.
22221
22222 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
22223 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
22224
22225 2007-08-29 Jason Rumney <jasonr@gnu.org>
22226
22227 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
22228 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
22229
22230 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
22231 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
22232
22233 * keyboard.c (restore_kboard_configuration): Only define when
22234 MULTI_KBOARD defined.
22235
22236 * makefile.w32-in: Update dependancies from Makefile.in.
22237 (OBJ1): Add terminal.$(O)
22238
22239 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
22240 Don't define function body.
22241 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
22242
22243 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
22244
22245 * w32.c (request_sigio, unrequest_sigio): Remove.
22246
22247 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
22248 (w32con_clear_frame, w32con_clear_end_of_line)
22249 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
22250 (w32con_delete_glyphs, w32con_set_terminal_window)
22251 (scroll_line, w32_sys_ring_bell): Add frame arg.
22252 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
22253 Add terminal arg.
22254 (PICK_FRAME): Remove.
22255 (w32con_write_glyphs): Use frame specific terminal coding.
22256 (one_and_only_w32cons): New global variable.
22257 (initialize_w32_display): Use it for storing hooks.
22258 (create_w32cons_output): New function.
22259
22260 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
22261 arg a frame.
22262
22263 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
22264 Set window_system.
22265 (x_set_tool_bar_lines): Don't use updating_frame.
22266 (Fx_create_frame): Set terminal and ref count.
22267 (Fx_open_connection): Remove window-system check.
22268
22269 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
22270
22271 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
22272 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
22273 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
22274 Add frame arg.
22275 (x_delete_terminal, w32_create_terminal): New functions.
22276 (w32_term_init): Create a terminal.
22277 (w32_initialize): Move terminal specific initialization to
22278 w32_create_terminal.
22279
22280 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
22281 (w32_clear_rect, w32_clear_area): Use background from frame.
22282 (w32_display_info): Add terminal.
22283 (w32_sys_ring_bell, x_delete_display): Declare here.
22284
22285 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
22286
22287 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
22288
22289 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
22290
22291 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
22292 Fix get_named_tty calls for the controlling tty.
22293
22294 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
22295
22296 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
22297
22298 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
22299
22300 * term.c (tty_insert_glyphs): Add missing first parameter.
22301
22302 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
22303
22304 * buffer.c (Fbuffer_list, Fbury_buffer):
22305 Take frame->buried_buffer_list into account.
22306
22307 * cm.c (current_tty): New variable, for cmputc().
22308 (cmputc): Use it.
22309 (cmcheckmagic): Add tty parameter, look up terminal streams there.
22310 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
22311 (cmgoto): Add tty parameter. Pass it on to calccost().
22312 Use emacs_tputs() instead of tputs().
22313
22314 * cm.h (emacs_tputs): New macro to set current_tty, and then call
22315 tputs().
22316 (current_tty): New variable, for cmputc().
22317 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
22318
22319 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
22320 (internal_condition_case, internal_condition_case_1)
22321 (internal_condition_case_2): Don't abort when x_catching_errors.
22322
22323 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
22324 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
22325 prevent crashes caused by bogus longjmps in read_char.
22326
22327 * keymap.h (Fset_keymap_parent): Add EXFUN.
22328
22329 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
22330 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
22331 Remove redundant definition.
22332
22333 * macfns.c (x_set_mouse_color, x_make_gc):
22334 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22335
22336 * w32term.c (x_free_frame_resources):
22337 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22338 (w32_initialize): Use the accessor macros for terminal characteristics.
22339
22340 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
22341 Use the accessor macros for terminal characteristics.
22342 * msdos.c (internal_terminal_init): Use the accessor macros for
22343 terminal characteristics.
22344 (ScreenVisualBell, internal_terminal_init):
22345 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22346
22347 * termopts.h (no_redraw_on_reenter): Declare.
22348
22349 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
22350 (mark_terminals, mark_ttys): Declare.
22351 (Fgarbage_collect): Call them.
22352 (mark_object): Mark buried_buffer_list.
22353
22354 * prefix-args.c: Include stdlib.h for exit.
22355
22356 * syssignal.h: Add comment.
22357
22358 * indent.c: Include stdio.h.
22359
22360 * window.h (Vinitial_window_system): Declare.
22361 (Vwindow_system): Delete declaration.
22362
22363 * fontset.c (Finternal_char_font): Use FRAME_RIF.
22364
22365 * image.c (lookup_image): Don't initialize `c' until the xasserts
22366 have been run.
22367
22368 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
22369 FRAME_FOREGROUND_PIXEL.
22370
22371 * print.c (print_preprocess): Don't lose print_depth levels while
22372 iterating.
22373
22374 * widget.c (update_from_various_frame_slots):
22375 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22376
22377 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
22378 frames.
22379 (window_internal_height): Remove bogus make_number call.
22380 (init_window_once): Call make_terminal_frame with two zero parameters.
22381
22382 * fileio.c (Fread_file_name): Update comment.
22383
22384 * callint.c (Fcall_interactively):
22385 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
22386 Make sure it is correctly unwound.
22387
22388 * xsmfns.c (x_session_close): New function.
22389
22390 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
22391 Delete declarations.
22392
22393 * xterm.h: Remove declaration for x_fully_uncatch_errors.
22394 (x_output): Remove background_pixel and foreground_pixel fields.
22395 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
22396 (x_delete_device, x_session_close): Declare.
22397
22398 * lread.c: Include setjmp.h. Update declaration of `read_char'.
22399 (read_filtered_event): Call `read_char' with a local
22400 `wrong_kboard_jmpbuf'.
22401
22402 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
22403 Don't call single_kboard_state. Use FRAME_RIF.
22404
22405 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
22406 systems.
22407
22408 * lisp.h (set_process_environment): Rename to `set_global_environment'.
22409 (Fframe_with_environment, Fset_input_meta_mode)
22410 (Fset_quit_char): EXFUN.
22411 (x_create_device, tty_output, terminal, tty_display_info): Declare.
22412 (init_sys_modes, reset_sys_modes): Update prototypes.
22413 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
22414
22415 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
22416 Vlocal_key_translation_map, and Vkeyboard_translate_table.
22417 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
22418 Delete declarations.
22419 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
22420 (temporarily_switch_to_single_kboard, tty_read_avail_input):
22421 New declarations.
22422
22423 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
22424 already does that during init_display(). Call syms_of_keymap
22425 before syms_of_keyboard. Call `syms_of_terminal'.
22426 Call set_initial_environment, not set_process_environment.
22427 (shut_down_emacs): Call reset_all_sys_modes() instead of
22428 reset_sys_modes().
22429
22430 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
22431 (internal_resolve_face_name, resolve_face_name_error): New functions.
22432 (resolve_face_name): Protect against loops and errors thrown by Fget.
22433 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
22434 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
22435
22436 * scroll.c: Replace CURTTY() with local variables throughout the
22437 file (where applicable).
22438 (calculate_scrolling, calculate_direct_scrolling)
22439 (scrolling_1, scroll_cost): Use the accessor macros for terminal
22440 characteristics.
22441
22442 * keymap.c (Vfunction_key_map): Remove.
22443 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
22444 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
22445 (Vkey_translation_map): Remove.
22446 (syms_of_keymap): Remove DEFVAR for key-translation-map.
22447 (Fdescribe_buffer_bindings)
22448 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
22449 Update for terminal-local key-translation-map.
22450
22451 * Makefile.in (callproc.o): Update dependencies.
22452 (lisp, shortlisp): Add termdev.elc.
22453 (obj): Add terminal.o.
22454 (terminal.o): Add dependencies.
22455 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
22456 (data.o, fns.o): Add termhooks.h dependency.
22457 (SOME_MACHINE_LISP): Add dnd.elc.
22458 (minibuf.o): Fix typo.
22459 Update dependencies.
22460
22461 * data.c (do_symval_forwarding, store_symval_forwarding)
22462 (find_symbol_value): Use the selected frame's keyboard, not
22463 current_kboard.
22464
22465 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
22466 Vwindow_system.
22467
22468 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
22469 Fmenu_bar_open.
22470 (syms_of_xmenu): Update defsubr.
22471 (mouse_position_for_popup, Fx_popup_menu)
22472 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
22473 (set_frame_menubar, free_frame_menubar)
22474 (create_and_show_popup_menu, xmenu_show)
22475 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
22476 an X frame.
22477
22478 * xselect.c (x_own_selection): Abort if not an X frame.
22479 (some_frame_on_display): Check if it is an X frame.
22480 (x_handle_selection_clear): Deal with MULTI_KBOARD.
22481
22482 * coding.c: Include frame.h and termhooks.h.
22483 (terminal_coding, keyboard_coding): Delete.
22484 (Fset_terminal_coding_system_internal)
22485 (Fset_keyboard_coding_system_internal)
22486 (Fkeyboard_coding_system)
22487 (Fterminal_coding_system): Add a terminal parameter.
22488 Get terminal_coding from the terminal.
22489 (init_coding_once): Don't call setup_coding_system here.
22490
22491 * dispextern.h (set_scroll_region, turn_off_insert)
22492 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
22493 (tty_clear_end_of_line, tty_setup_colors)
22494 (delete_tty, updating_frame)
22495 (produce_special_glyphs, produce_glyphs, write_glyphs)
22496 (insert_glyphs): Remove.
22497 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
22498 (tty_turn_off_highlight, get_tty_size): Add declaration.
22499 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
22500
22501 * frame.h (enum output_method): Add output_initial.
22502 (struct x_output): Delete.
22503 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
22504 Access foreground_pixel and background_pixel directly from the frame.
22505 (tty_display): Delete.
22506 (struct frame): Add buried_buffer_list, foreground_pixel,
22507 background_pixel and terminal. Delete kboard.
22508 (union output_data): Add tty.
22509 (FRAME_KBOARD): Get the kboard from the terminal.
22510 (FRAME_INITIAL_P): New macro.
22511 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
22512 (Qterm_environment_variable, Qdisplay_environment_variable)
22513 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
22514 New declarations.
22515
22516 * termchar.h (tty_output, tty_display_info): New structures.
22517 (tty_list): Declare.
22518 (FRAME_TTY, CURTTY): New macros.
22519 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
22520 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
22521 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
22522 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
22523
22524 * callproc.c: Include frame.h and termhooks.h, for terminal
22525 parameters.
22526 (add_env): New function.
22527 (child_setup): Use it.
22528 (child_setup, getenv_internal): Handle the new Vprocess_environment.
22529 (getenv_internal): Fix get_terminal_param call.
22530 (Fgetenv_internal, egetenv): Update doc.
22531 (syms_of_callproc): Initialize Vprocess_environment to nil.
22532 Register and initialize them. Remove obsolete defvars. Update doc
22533 strings.
22534 (child_setup): Handle Vlocal_environment_variables.
22535 (getenv_internal): Add terminal parameter.
22536 Handle Vlocal_environment_variables.
22537 (Fgetenv_internal): Add terminal parameter.
22538 (child_setup, getenv_internal, Fgetenv_internal): Store the local
22539 environment in a frame (not terminal) parameter. Update doc strings.
22540 (set_initial_environment): Rename from set_global_environment.
22541 Store Emacs environment in initial frame parameter.
22542
22543 * xdisp.c (redisplay_internal): Update references to
22544 `previous_terminal_frame'.
22545 (display_mode_line, Fformat_mode_line): Replace calls to
22546 `push_frame_kboard' with `push_kboard'.
22547 (get_glyph_string_clip_rects): Add extra parentheses and
22548 braces to prevent compiler warnings.
22549 (calc_pixel_width_or_height): Add xassert to check that the
22550 frame is alive. Don't call `lookup_image' on a termcap frame.
22551 (message2_nolog, message3_nolog, redisplay_internal)
22552 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
22553 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
22554 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
22555 (Fx_display_pixel_width, Fx_display_pixel_height)
22556 (Fx_display_planes, Fx_display_color_cells)
22557 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
22558 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
22559 (Fx_display_backing_store, Fx_display_visual_class)
22560 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
22561 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
22562
22563 * xfns.c (x_set_foreground_color x_set_background_color)
22564 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
22565 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22566 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
22567 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
22568 terminal that is being deleted.
22569 (Fx_create_frame): Use `store_frame_param' to set `window-system'
22570 frame parameter, and make sure it overrides any user-supplied setting.
22571 (Fx_close_connection, Fx_synchronize): Unify argument names with
22572 the rest of the DEFUNs.
22573
22574 * dispnew.c (Fsend_string_to_terminal): Update call to
22575 `get_tty_terminal'.
22576 (Fredraw_frame, Fsend_string_to_terminal)
22577 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
22578 FRAME_TERMCAP_P and FRAME_TTY.
22579 (window_change_signal): Don't believe width/height values that are
22580 impossibly small.
22581 (Vinitial_window_system): Rename from Vwindow_system.
22582 (termscript, Wcm, rif): Delete.
22583
22584 * termhooks.h (struct terminal): New struct containing the
22585 previously global text display hooks and new members NAME,
22586 DELETED and PARAM_ALIST.
22587 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
22588 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
22589 (FRAME_RIF): New macros.
22590 (get_terminal_param, get_device): New declarations.
22591 (termscript): Delete declaration.
22592
22593 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
22594 (XTflash, x_free_frame_resources, x_scroll_bar_create)
22595 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
22596 FRAME_FOREGROUND_PIXEL.
22597 (x_fully_uncatch_errors): Disable definition.
22598 (x_scroll_bar_expose): Fix reference to foreground pixel.
22599 (XTread_socket): Disable loop on all X displays.
22600 (x_delete_terminal): Don't set terminal->deleted and let
22601 delete_terminal delete the frames on the terminal.
22602 (x_delete_display): Doc update to reflect changes in
22603 delete_terminal.
22604 (x_display_info) <terminal>: Move member earlier in the struct.
22605 (deleting_tty): Remove old variable.
22606 (Fsuspend_tty): Call clear_tty_hooks.
22607 (Fresume_tty, init_tty): Call set_tty_hooks.
22608 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
22609 errors on X frames.
22610 (x_catch_errors_unwind): Abort if x_error_message is NULL.
22611 (handle_one_xevent): Initialize `f' to NULL.
22612 (x_delete_terminal, x_create_terminal): New functions.
22613 (XTset_terminal_modes, XTreset_terminal_modes)
22614 (XTread_socket, x_connection_closed, x_term_init)
22615 (x_term_init, x_delete_display): Add terminal parameter.
22616 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
22617 X connections.
22618
22619 * frame.c: Include termchar.h.
22620 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
22621 (Qwindow_system, Qenvironment, Qterm_environment_variable)
22622 (Qdisplay_environment_variable): New vars.
22623 (Fframep): Deal with output_initial.
22624 (Fframe-live-p): Doc fix.
22625 (Fwindow-system): New function.
22626 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
22627 (make_terminal_frame): Don't create frames on a terminal that is
22628 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22629 (store_frame_param): Check for found_for_frame before calling XFRAME.
22630 (Fmake_terminal_frame): Handle NULL tty names correctly.
22631 (syms_of_frame): Enhance doc string of `default-frame-alist'.
22632 (Fdelete_frame): Remove unused variable `count'. Don't allow other
22633 frames to refer to a deleted frame in their 'environment parameter.
22634 (Fframe_with_environment): New function.
22635 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
22636 (get_future_frame_param): New function.
22637 (Fmake_terminal_frame): Use it.
22638 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
22639
22640 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
22641 * sysdep.c (reset_sys_modes): Update for renames.
22642
22643 * keyboard.c (tty_read_avail_input): New function.
22644 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
22645 (syms_of_keyboard): Defsubr them.
22646 (Fset_input_meta_mode, Fset_quit_char): New functions.
22647 (Fset_input_mode): Split to above functions.
22648 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
22649 parameter. Use it in call to `read_char'.
22650 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
22651 Set wrong_kboard_jmpbuf correctly in recursive calls.
22652 Use current_kboard to access Vkeyboard_translate_table.
22653 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
22654 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
22655 Update longjmp invocations. Remember the original current_kboard,
22656 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
22657 changes it. Comment out unnecessary calls to
22658 `record_single_kboard_state' and `any_kboard_state'.
22659 Update recursive calls.
22660 (wrong_kboard_jmpbuf): Remove global variable.
22661 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
22662 Handle deleted interrupted_kboards correctly; that is a legal
22663 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
22664 and read_char calls. Abort if interrupted_kboard died in read_char.
22665 (any_kboard_state, single_kboard_state)
22666 (push_frame_kboard): Remove function.
22667 (pop_kboard): Switch out of single_kboard mode if the kboard has
22668 been deleted. Remove unused variable. Help debugging by not
22669 changing current_kboard unnecessarily. Set current_kboard to the
22670 kboard of the selected frame when the stored kboard object has
22671 been deleted before pop_kboard.
22672 (temporarily_switch_to_single_kboard): Change first parameter to a
22673 frame pointer. Throw an error when caller wants to change kboards
22674 while in single_kboard mode. Don't push_kboard if we weren't in
22675 single kboard state. Don't pop_kboard if we popped into any
22676 kboard state.
22677 (restore_kboard_configuration): Abort if pop_kboard changed the
22678 kboard in single_kboard mode. Call pop_kboard only after setting
22679 up single_kboard mode.
22680 (Frecursive_edit): Switch to single_kboard mode only in nested
22681 command loops.
22682 (cmd_error, command_loop, command_loop_1, timer_check):
22683 Comment out unnecessary call to `any_kboard_state' and
22684 `record_single_kboard_state'.
22685 (delete_kboard): Exit single_kboard mode if we have just deleted
22686 that kboard. Use FRAME_KBOARD.
22687 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
22688 `fatal_error_signal'.
22689 (record_single_kboard_state): Don't push_kboard if we weren't in
22690 single kboard state. Don't pop_kboard if we popped into any
22691 kboard state.
22692 (push_frame_kboard): Rename to push_kboard.
22693 (kbd_buffer_get_event): Use FRAME_TERMINAL.
22694 (read_avail_input): Read input from all terminals.
22695 (mark_kboards): Also mark Vkeyboard_translate_table.
22696 (kbd_buffer_store_event_hold): Simplify condition.
22697 (read_key_sequence): Reinitialize fkey and keytran at each replay.
22698 (Vkeyboard_translate_table): Move to struct kboard.
22699 (init_kboard): Initialize Vkeyboard_translate_table.
22700 (syms_of_keyboard): Use DEFVAR_KBOARD to define
22701 Vkeyboard_translate_table. Update doc strings. Update docs of
22702 local-function-key-map and function-key-map.
22703
22704 * terminal.c: New file.
22705
22706 * term.c: Include errno.h.
22707 (Vring_bell_function, device_list, initial_device)
22708 (next_device_id, ring_bell, update_begin, update_end)
22709 (set_terminal_window, cursor_to, raw_cursor_to)
22710 (clear_to_end, clear_frame, clear_end_of_line)
22711 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
22712 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
22713 (syms_of_term): Move their initialization to terminal.c.
22714 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
22715 (Ftty_display_color_cells)
22716 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
22717 (clear_tty_hooks, set_tty_hooks)
22718 (init_tty, maybe_fatal): New functions.
22719 (Ftty_type): Return nil if terminal is not on a tty instead of
22720 throwing an error. Doc update.
22721 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
22722 Doc update. Initialize new subrs and variables.
22723 (delete_tty): Use terminal->deleted.
22724 (tty_set_terminal_modes): Rename from set_terminal_modes.
22725 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
22726 (set_scroll_region): Rename to `tty_set_scroll_region'.
22727 (turn_on_insert): Rename to `tty_turn_on_insert'.
22728 (turn_off_insert): Rename to `tty_turn_off_insert'.
22729 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
22730 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
22731 (toggle_highligh): Rename to `tty_toggle_highlight'.
22732 (background_highlight): Rename to `tty_background_highlight'.
22733 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
22734 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
22735 (tty_set_scroll_region, tty_background_highlight)
22736 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
22737 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
22738 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
22739 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
22740 Add static modifier.
22741 (tty_reset_terminal_modes, tty_set_terminal_window)
22742 (tty_set_scroll_region, tty_background_highlight)
22743 (tty_highlight_if_desired, tty_cursor_to)
22744 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
22745 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
22746 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
22747 renames.
22748
22749 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
22750
22751 * keyboard.c: Qrtl is new.
22752 (parse_tool_bar_item): Handle :rtl keyword.
22753 (syms_of_keyboard): Intern :rtl keyword.
22754
22755 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
22756
22757 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
22758 so no Lisp code is executed.
22759 (file_for_image, find_rtl_image): New functions.
22760 (xg_get_image_for_pixmap): Use file_for_image.
22761 (update_frame_tool_bar): If direction is RTL, use RTL image if
22762 defined. Use Gtk stock images if defined.
22763
22764 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22765
22766 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
22767 for nonexistent or zero-width glyph in composition glyph.
22768
22769 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
22770
22771 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
22772
22773 * xdisp.c (Finvisible_p): New function.
22774 (syms_of_xdisp): defsubr it.
22775
22776 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
22777
22778 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
22779 Doc fixes.
22780
22781 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22782
22783 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
22784
22785 2007-08-24 Martin Rudalics <rudalics@gmx.at>
22786
22787 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
22788 whether decoding has modified buffer contents.
22789
22790 2007-08-24 Jason Rumney <jasonr@gnu.org>
22791
22792 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
22793 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
22794 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
22795 (init_svg_functions) [HAVE_NTGUI]: New function.
22796 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
22797 (svg_load_image): Use them.
22798 (svg_load_image) [HAVE_NTGUI]: Implement background.
22799
22800 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22801
22802 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
22803 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
22804 (LIBX): Remove @RSVG_LIBS@.
22805 (LIBES): Add $(RSVG_LIBS).
22806
22807 * image.c (svg_load_image): Blend with specified background if exists.
22808 Use IMAGE_BACKGROUND. Add Mac OS Support.
22809
22810 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
22811 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
22812 Remove macros.
22813 [MAC_OSX] (socket_callback): Do nothing.
22814 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
22815 ReceiveNextEvent.
22816 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
22817 socket_callback.
22818 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
22819
22820 2007-08-22 Glenn Morris <rgm@gnu.org>
22821
22822 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
22823
22824 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
22825
22826 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
22827
22828 * image.c: Add support for SVG images. Some additional comments
22829 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
22830 (svg_image_p): New function to test for SVG image.
22831 (svg_load): New function to load SVG image.
22832 (svg_load_image): New function, helper for svg_load.
22833 (Qsvg): New Lisp_object.
22834 (svg_keyword_index): New enum.
22835 (svg_format): New static `image_keyword' struct.
22836 (svg_type): New static `image_type' struct.
22837 (librsvg/rsvg.h): Include it.
22838
22839 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
22840
22841 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
22842
22843 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
22844
22845 * lread.c (Qold_style_backquotes): New var.
22846 (syms_of_lread): Init and staticpro it.
22847 (load_warn_old_style_backquotes): New fun.
22848 (Fload): Use them to warn about old style backquotes.
22849 (end_of_file_error, Fload): Remove unused vars.
22850
22851 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
22852
22853 * lread.c (Vold_style_backquotes): New var.
22854 (syms_of_lread): Init and export it to Elisp.
22855 (read1): Set it when we find an old-style (back)quote.
22856
22857 2007-08-22 Jason Rumney <jasonr@gnu.org>
22858
22859 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
22860
22861 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
22862
22863 * puresize.h (BASE_PURESIZE): Increase to 1140000.
22864
22865 2007-08-19 Richard Stallman <rms@gnu.org>
22866
22867 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
22868
22869 2007-08-19 Andreas Schwab <schwab@suse.de>
22870
22871 * alloc.c (pure): Round PURESIZE up.
22872
22873 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
22874
22875 * xterm.c (handle_one_xevent): Remove check that mouse click is in
22876 active frame.
22877
22878 2007-08-16 Richard Stallman <rms@gnu.org>
22879
22880 * eval.c (Fcommandp): Add parens to clarify.
22881
22882 * minibuf.c (Fall_completions): Use enum for type of table.
22883
22884 * emacs.c (USAGE2): Improve text.
22885
22886 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
22887
22888 * term.c (tty_default_color_capabilities): Declare static
22889 variables in file scope, to avoid HPUX compiler problem.
22890
22891 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
22892
22893 * gtkutil.c (update_frame_tool_bar): Use -1 as index
22894 to gtk_toolbar_insert.
22895
22896 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
22897
22898 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
22899
22900 * insdel.c (reset_var_on_error): New fun.
22901 (signal_before_change, signal_after_change):
22902 Use it to reset (after|before)-change-functions to nil in case of error.
22903 Bind inhibit-modification-hooks to t.
22904 Don't bind (after|before)-change-functions to nil while they run.
22905
22906 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22907
22908 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
22909 filling pixmap with stippled background.
22910
22911 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22912
22913 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
22914 Don't use invisible frame as parent window for repositioning.
22915
22916 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
22917
22918 * print.c (new_backquote_output): Rename from old_backquote_output.
22919 (print): Inverse its logic (according to its name) so as to match the
22920 behavior of new_backquote_flag in lread.c.
22921
22922 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22923
22924 * gmalloc.c (posix_memalign): New function.
22925
22926 * macterm.c (frame_highlight, frame_unhighlight): Don't call
22927 ActivateControl/DeactivateControl here.
22928 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
22929 frame-notice-user-settings is non-nil.
22930 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
22931 for kEventParamFMFontStyle.
22932 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
22933 mac_pass_command_to_system and mac_pass_control_to_system here.
22934 (XTread_socket): Call ActivateControl/DeactivateControl here.
22935 (XTread_socket) [TARGET_API_MAC_CARBON]:
22936 Check mac_pass_command_to_system and mac_pass_control_to_system here.
22937 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
22938 for window repositioning.
22939
22940 2007-08-08 Glenn Morris <rgm@gnu.org>
22941
22942 * Replace `iff' in doc-strings and comments.
22943
22944 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
22945
22946 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
22947
22948 2007-08-07 Martin Rudalics <rudalics@gmx.at>
22949
22950 * fileio.c (Finsert_file_contents): Run format-decode and
22951 after_insert_file_functions on entire buffer when REPLACE is
22952 non-nil and inhibit modification_hooks and point_motion_hooks.
22953 For consistency, run after_insert_file_functions iff something
22954 got inserted. Move signal_after_change and update_compositions
22955 after code running after_insert_file_functions. Make sure that
22956 undo_list doesn't record intermediate steps of the decoding process.
22957
22958 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22959
22960 * emacs.c (main)
22961 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
22962 Call malloc_enable_thread on interactive startup.
22963
22964 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
22965 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
22966 [USE_PTHREAD]: Conditionalize with it.
22967 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
22968 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
22969 New functions.
22970
22971 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
22972
22973 * xdisp.c (redisplay_window): When restoring original buffer
22974 position, make sure it is still valid.
22975
22976 * image.c (png_load): Ignore png-supplied background color.
22977
22978 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22979
22980 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
22981 Use kCFAbsoluteTimeIntervalSince1970.
22982
22983 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
22984 New variable.
22985 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
22986 event loop should be quit.
22987 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
22988 Quit dialog event loop if quit_dialog_event_loop is set.
22989
22990 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
22991 (Selection): New typedef. Use instead of ScrapRef.
22992 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
22993 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
22994 (mac_clear_selection): Rename from clear_scrap.
22995 (get_flavor_type_from_symbol): New argument SEL and subsume function of
22996 scrap_has_target_type. All uses changed.
22997 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
22998 (mac_selection_has_target_p): New functions.
22999 (mac_put_selection_value): Rename from put_scrap_string.
23000 (mac_get_selection_value): Rename from get_scrap_string.
23001 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
23002 (put_scrap_private_timestamp, scrap_has_target_type)
23003 (get_scrap_private_timestamp): Remove functions.
23004 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
23005 (x_own_selection, x_get_local_selection):
23006 Use mac_valid_selection_value_p.
23007 (x_own_selection): Don't use put_scrap_private_timestamp.
23008 Record OWNERSHIP-INFO into Vselection_alist instead.
23009 (x_get_local_selection): Don't check type if request is local.
23010 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
23011 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
23012
23013 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
23014
23015 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
23016 add comment explaining why.
23017
23018 2007-08-03 Richard Stallman <rms@gnu.org>
23019
23020 * fileio.c (Fvisited_file_modtime): Use make_time.
23021
23022 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
23023
23024 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
23025 build.
23026
23027 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
23028
23029 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
23030
23031 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
23032
23033 * puresize.h (BASE_PURESIZE): Increase to 1130000.
23034
23035 2007-07-30 Richard Stallman <rms@gnu.org>
23036
23037 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
23038
23039 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
23040
23041 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
23042
23043 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
23044
23045 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
23046 remote default-directory.
23047
23048 * buffer.c (mode-line-format): Update doc string.
23049
23050 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23051
23052 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
23053 scroll bar gap.
23054 (x_scroll_bar_create): Set bar->fringe_extended_p.
23055 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
23056 on frame edge. Check fringe background extension. Don't clear
23057 extended fringe background area.
23058
23059 * w32term.h (struct scroll_bar): New member fringe_extended_p.
23060 (w32_fill_area): Enclose multiple statements with do ... while (0).
23061
23062 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
23063 Extend fringe background to scroll bar gap.
23064 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
23065 Set bar->fringe_extended_p.
23066 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
23067 Put leftmost/rightmost scroll bars on frame edge. Check fringe
23068 background extension. Don't clear extended fringe background area.
23069
23070 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
23071 New member fringe_extended_p.
23072
23073 2007-07-25 Glenn Morris <rgm@gnu.org>
23074
23075 * Relicense all FSF files to GPLv3 or later.
23076
23077 * COPYING: Switch to GPLv3.
23078
23079 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
23080
23081 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
23082
23083 * data.c (Finteractive_form): Check for the presence of an
23084 `interactive-form' symbol property more thoroughly.
23085
23086 * data.c (Finteractive_form): Use an `interactive-form' property if
23087 present, analogous to the function-documentation property.
23088
23089 2007-07-24 Jason Rumney <jasonr@gnu.org>
23090
23091 * w32fns.c (x_real_positions): Get real position from OS instead of
23092 calculating it.
23093
23094 2007-07-23 Jason Rumney <jasonr@gnu.org>
23095
23096 * filelock.c (current_lock_owner): Allow for @ sign in username.
23097
23098 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
23099
23100 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
23101 remote default-directory.
23102
23103 * buffer.c (mode-line-format): Describe above case in doc string.
23104
23105 2007-07-20 Eli Zaretskii <eliz@gnu.org>
23106
23107 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
23108 Define if not defined.
23109
23110 2007-07-18 Jason Rumney <jasonr@gnu.org>
23111
23112 * w32proc.c (w32_executable_type): Handle 64 bit executables.
23113
23114 2007-07-18 Richard Stallman <rms@gnu.org>
23115
23116 * data.c (Fsetq_default): Doc fix.
23117
23118 * eval.c (Fsetq): Doc fix.
23119
23120 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
23121
23122 * coding.c (Ffind_operation_coding_system):
23123 * eval.c (For, Fand): Doc fixes.
23124 Reported by Johan Bockgård.
23125
23126 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
23127
23128 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
23129
23130 * xterm.h: Declare x_ewmh_activate_frame.
23131
23132 * xterm.c (x_ewmh_activate_frame): New function.
23133 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
23134
23135 2007-07-17 Martin Rudalics <rudalics@gmx.at>
23136
23137 * window.c (Fdisplay_buffer): If largest or LRU window is the
23138 only window, split it even if it is not eligible for splitting.
23139 This restores the original behavior broken by the 2007-07-15
23140 change.
23141
23142 2007-07-17 Glenn Morris <rgm@gnu.org>
23143
23144 * abbrev.c (abbrev_check_chars): New function.
23145 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
23146 Call abbrev_check_chars to check abbrev characters are word
23147 constituents. Doc fix.
23148
23149 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
23150
23151 * process.c (Fstart_process, Fmake_network_process)
23152 (read_process_output): Fix up last changes.
23153
23154 2007-07-16 Eli Zaretskii <eliz@gnu.org>
23155
23156 * makefile.w32-in (clean): Don't delete *~.
23157
23158 2007-07-16 Andreas Schwab <schwab@suse.de>
23159
23160 * window.c (Fdisplay_buffer): Use NILP.
23161 (Fset_window_scroll_bars): Likewise.
23162
23163 2007-07-15 Martin Rudalics <rudalics@gmx.at>
23164
23165 * window.c (window_min_size_2): New function.
23166 (window_min_size_1, size_window, Fdisplay_buffer)
23167 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
23168 windows without mode- or header-lines when window-min-height is
23169 too small.
23170 (size_window): Reset nodelete_p after testing it, following an
23171 earlier note by Kim F. Storm.
23172 (display_buffer): Do not set split_height_threshold to twice the
23173 value of window_min_height to avoid changing the value of a
23174 customizable variable. Rather explicitly check whether the
23175 height of the window that shall be splitted is at least as large
23176 as split_height_threshold.
23177 (Fwindow_full_width_p): New defun.
23178 (syms_of_window): Defsubr it.
23179
23180 * window.h: Add EXFUN for Fwindow_full_width_p.
23181
23182 2007-07-14 Jason Rumney <jasonr@gnu.org>
23183
23184 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
23185
23186 2007-07-14 Richard Stallman <rms@gnu.org>
23187
23188 * eval.c (maybe_call_debugger): New function.
23189 (find_handler_clause): Use maybe_call_debugger.
23190 Call it when the handler says `debug'.
23191 Eliminate DEBUGGER_VALUE_PTR.
23192 (Fsignal): Eliminate debugger_value.
23193 (Qdebug): New variable.
23194 (syms_of_eval): Initialize it.
23195
23196 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
23197
23198 * eval.c (Fprogn):
23199 * keyboard.c (Ftrack_mouse):
23200 * print.c (Fwith_output_to_temp_buffer):
23201 * window.c (Fsave_window_excursion): Doc fix.
23202
23203 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
23204
23205 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
23206
23207 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
23208
23209 * process.h (struct Lisp_Process): Turn slots infd, outfd,
23210 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
23211 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
23212 read_output_delay, and read_output_skip from Lisp_Objects to ints.
23213 Remove unused encoding_carryover.
23214 * process.c: Adjust all functions accordingly.
23215
23216 2007-07-12 Richard Stallman <rms@gnu.org>
23217
23218 * term.c: Include unistd.h only if HAVE_UNISTD_H.
23219
23220 2007-07-11 Jason Rumney <jasonr@gnu.org>
23221
23222 * makefile.w32-in (LIBS): Include OLE32.
23223
23224 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
23225 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
23226
23227 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
23228
23229 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
23230 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
23231 from a Lisp_Object into a bare pointer.
23232 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
23233 Adjust the code correspondingly.
23234
23235 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
23236
23237 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
23238 (term_show_mouse_face): Remove unused var `j'.
23239 (handle_one_term_event): Remove unused vars `i' and `j'.
23240 Don't cast return value of ttyname since it's not necessary.
23241
23242 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
23243
23244 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
23245 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
23246
23247 * fns.c (map_char_table): Use an array of int for `indices' rather than
23248 an array of Lisp_Objects (which are only ever integers anyway).
23249 (Fmap_char_table): Update caller.
23250 * lisp.h: Update prototype.
23251 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
23252 * fontset.c (Ffontset_info):
23253 * casetab.c (set_case_table): Update callers.
23254
23255 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
23256
23257 * keymap.c (struct accessible_keymaps_data)
23258 (struct where_is_internal_data): New structures.
23259 (accessible_keymaps_1, where_is_internal_1): Use them to change
23260 interface to adhere to the one used by map_keymap.
23261 (Faccessible_keymaps, where_is_internal): Use map_keymap.
23262 (accessible_keymaps_char_table, where_is_internal_2): Remove.
23263
23264 * keymap.h (map_keymap_function_t): More informative prototype.
23265
23266 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
23267
23268 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
23269 (looking_at_1): Don't change search_regs and last_thing_searched
23270 if `inhibit-changing-match-data' is non-nil.
23271 (string_match_1, search_buffer, set_search_regs): Likewise.
23272 (syms_of_search): Add Lisp level definition for
23273 `inhibit-changing-match-data' and set it to nil.
23274 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
23275 start and end of the match, instead of using values in search_regs.
23276
23277 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
23278
23279 * minibuf.c (Fcompleting_read): New value `confirm-only'
23280 for `require-match'.
23281
23282 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
23283
23284 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
23285 part of the 2007-06-27 change to syms_of_fileio.
23286
23287 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23288
23289 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
23290 Check WINDOWP before using XWINDOW. Consolidate return statements.
23291
23292 2007-06-27 Richard Stallman <rms@gnu.org>
23293
23294 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
23295
23296 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
23297
23298 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
23299
23300 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23301
23302 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
23303 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
23304 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
23305 (_free_internal, memalign): Use them.
23306 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
23307 Initialize to PTHREAD_MUTEX_INITIALIZER.
23308 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
23309 (morecore_nolock): Rename from morecore. All uses changed.
23310 Use only nolock versions of internal allocation functions.
23311 (_malloc_internal_nolock, _realloc_internal_nolock)
23312 (_free_internal_nolock): New functions created from
23313 _malloc_internal, _realloc_internal, and _free_internal.
23314 (_malloc_internal, _realloc_internal, _free_internal): Use them.
23315 Copy hook value to automatic variable before its use.
23316 (memalign): Copy hook value to automatic variable before its use.
23317
23318 2007-06-26 Kenichi Handa <handa@m17n.org>
23319
23320 * coding.c (Ffind_operation_coding_system): Docstring improved.
23321 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
23322
23323 2007-06-25 David Kastrup <dak@gnu.org>
23324
23325 * keymap.c (Fcurrent_active_maps): Add `position' argument.
23326 (Fwhere_is_internal): Adjust call to `current-active-maps' to
23327 cater for additional parameter.
23328
23329 * keymap.h: Adjust number of parameters to `current-active-maps'.
23330
23331 * doc.c (Fsubstitute_command_keys): Adjust call of
23332 `current-active-maps'.
23333
23334 2007-06-25 David Kastrup <dak@gnu.org>
23335
23336 * callint.c (Fcall_interactively): Make the parsing of interactive
23337 specs somewhat more readable.
23338
23339 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23340
23341 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
23342 to scroll bar gap also when bitmap fills fringe. Draw only foreground
23343 if extended background has already been filled.
23344
23345 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23346
23347 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
23348 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
23349
23350 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
23351 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
23352 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
23353 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
23354 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
23355 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
23356 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
23357 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
23358 Run timers during dialog popup.
23359 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
23360
23361 2007-06-21 Jason Rumney <jasonr@gnu.org>
23362
23363 * image.c (convert_mono_to_color_image): Swap fore and background.
23364
23365 2007-06-20 Jason Rumney <jasonr@gnu.org>
23366
23367 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
23368 (w32_free_bdf_font): Unmap memory not handle.
23369
23370 2007-06-20 Sam Steingold <sds@gnu.org>
23371
23372 * gmalloc.c (__morecore): Fix the declaration to comply with the
23373 definition.
23374
23375 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
23376
23377 * w32term.c (w32_delete_display): Remove leftover declaration.
23378 (w32_define_cursor, w32_initialize): Make static.
23379
23380 * w32.c (_wsa_errlist): Fix typo in error message.
23381 (init_environment): Ignore any environment variable from the
23382 registry having a null value.
23383
23384 2007-06-20 Glenn Morris <rgm@gnu.org>
23385
23386 * Makefile.in (LIBGIF): Default to -lgif.
23387
23388 2007-06-17 Jason Rumney <jasonr@gnu.org>
23389
23390 * w32menu.c (add_menu_item): Don't use multibyte string functions on
23391 unicode strings.
23392
23393 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
23394
23395 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
23396 Fix typo in docstring.
23397
23398 2007-06-16 Eli Zaretskii <eliz@gnu.org>
23399
23400 * w32menu.c (add_menu_item): Escape `&' characters in menu items
23401 and their keybindings.
23402
23403 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
23404
23405 * composite.c (update_compositions): Fix last fix.
23406
23407 2007-06-14 Jason Rumney <jasonr@gnu.org>
23408
23409 * w32.c (get_process_times_fn): New function pointer.
23410 (globals_of_w32): Intialize it if present in kernel32.dll.
23411 (w32_get_internal_run_time): New function.
23412
23413 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
23414
23415 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
23416
23417 * composite.c (update_compositions): Check the validness of
23418 compositions.
23419
23420 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23421
23422 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
23423 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
23424
23425 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
23426 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
23427
23428 * macgui.h (USE_MAC_TOOLBAR): New define.
23429
23430 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
23431 Return immediately unless popup is activated.
23432
23433 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
23434 background to scroll bar gap.
23435 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
23436 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
23437 scroll bars on frame edge. Check fringe background extension.
23438 Don't clear extended fringe background area.
23439 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
23440 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
23441 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
23442 [USE_MAC_TOOLBAR]: New macros.
23443 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
23444 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
23445 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
23446 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
23447 [USE_MAC_TOOLBAR]: New functions.
23448 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
23449 manually if previous repositioning has failed.
23450 (mac_handle_keyboard_event): Use precomputed event kind.
23451 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
23452 as tool bar item click. Handle mouse movement over tool bar items.
23453
23454 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
23455 toolbar_win_gravity.
23456 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
23457 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
23458 Add externs.
23459
23460 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
23461 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
23462
23463 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
23464
23465 * image.c (search_image_cache): Remove unused variable.
23466
23467 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
23468
23469 * xfns.c, xmenu.c: Link to xaw3d if available.
23470
23471 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23472
23473 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
23474 frame_foreground and frame_background.
23475
23476 * image.c (lookup_image): Save frame foreground and background colors.
23477 (search_image_cache): Check if saved and current frame colors match.
23478
23479 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
23480
23481 * regex.c (regex_compile): Remove the `regnum' counter.
23482 Use bufp->re_nsub instead. Add support for \(?N:RE\).
23483
23484 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
23485
23486 * term.c: Include intervals.h to declare Fget_text_property.
23487
23488 2007-06-10 Jason Rumney <jasonr@gnu.org>
23489
23490 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
23491
23492 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
23493
23494 * callint.c (Fcall_interactively):
23495 * editfns.c (Fdelete_and_extract_region):
23496 * fileio.c (Fread_file_name):
23497 * fns.c (Fmapconcat):
23498 * keyboard.c (cmd_error_internal):
23499 * keymap.c (Fkey_description):
23500 * lread.c (openp):
23501 * minibuf.c (read_minibuf):
23502 * search.c (wordify):
23503 * sunfns.c (sel_read):
23504 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
23505 * xfns.c (x_default_scroll_bar_color_parameter):
23506 * xmenu.c (menu_help_callback):
23507 * xselect.c (Fx_get_atom_name):
23508 * xterm.c (x_term_init): Use empty_unibyte_string.
23509
23510 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
23511
23512 * alloc.c (init_strings): Initialize canonical empty strings.
23513 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
23514 canonical empty string when the requested size is 0.
23515
23516 * emacs.c (empty_unibyte_string): Rename from empty_string.
23517 (empty_multibyte_string): New canonical empty string.
23518 (syms_of_emacs): Don't initialize empty_string.
23519
23520 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
23521 string, if appropriate.
23522 (empty_unibyte_string, empty_multibyte_string): New externs.
23523 (empty_string): Remove extern.
23524
23525 * lread.c (syms_of_lread): Use empty_unibyte_string.
23526
23527 2007-06-07 Jason Rumney <jasonr@gnu.org>
23528
23529 * s/ms-w32.h: Don't define HAVE_TZNAME.
23530
23531 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
23532
23533 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23534
23535 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
23536
23537 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
23538 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
23539
23540 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
23541 Don't call next handler.
23542 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
23543 Remove argument. Install handler to application.
23544 (set_frame_menubar): Don't change deep_p.
23545 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
23546 FRAME_OUTER_TO_INNER_DIFF_Y.
23547 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
23548 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
23549 [HAVE_DIALOGS]: New macros.
23550 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
23551 Use them.
23552 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
23553
23554 * macselect.c [MAC_OSX] (install_service_handler): Rename from
23555 init_service_handler. All callers changed. Return OSStatus value.
23556
23557 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
23558 All callers changed so as not to call SetPortWindowPort.
23559 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
23560 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
23561 mac_draw_string_common.
23562 (mac_draw_image_string_qd): Likewise.
23563 (mac_draw_string_common): Use them. Add INLINE.
23564 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
23565 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
23566 GetGlobalMouse.
23567 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
23568 and FRAME_OUTER_TO_INNER_DIFF_Y.
23569 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
23570 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
23571 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
23572 repositioning window to mac_handle_window_event.
23573 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
23574 saving window location to mac_handle_window_event
23575 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
23576 (install_menu_target_item_handler): Remove argument in extern.
23577 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
23578 Also accept command events.
23579 (do_keystroke): New function created from XTread_socket.
23580 (init_command_handler): Remove functions.
23581 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
23582 and save window location by kEventWindowShowing and kEventWindowHiding
23583 handlers here. Don't call next handler for window state change and
23584 focus events.
23585 (mac_handle_application_event, mac_handle_keyboard_event)
23586 [TARGET_API_MAC_CARBON]: New functions.
23587 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
23588 kEventWindowShowing and kEventWindowHiding events. Move installation
23589 of mouse, font, text input and menu target item handlers to
23590 install_application_handler.
23591 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
23592 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
23593 New function.
23594 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
23595 Register it.
23596 (XTread_socket) [TARGET_API_MAC_CARBON]:
23597 Consolidate SendEventToEventTarget calls.
23598 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
23599 Move application activation handler to mac_handle_application_event.
23600 Move keyboard handler to mac_handle_keyboard_event.
23601 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
23602 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
23603 init_command_handler. Call install_application_handler.
23604
23605 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
23606 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
23607
23608 2007-06-07 Glenn Morris <rgm@gnu.org>
23609
23610 * emacs.c (main): Use `emacs-copyright' in --version output.
23611
23612 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
23613
23614 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
23615
23616 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23617
23618 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
23619
23620 * macgui.h: Replace WindowPtr with WindowRef.
23621
23622 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
23623 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
23624 Replace ControlHandle with ControlRef.
23625 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
23626
23627 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
23628 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
23629 Replace ControlHandle with ControlRef.
23630 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
23631 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
23632
23633 * macterm.h (struct scroll_bar): Rename member control_handle_low
23634 and control_handle_high to control_ref_low and control_ref_high.
23635 All uses changed.
23636 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
23637 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
23638 respectively. All uses changed.
23639 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
23640 (install_window_handler, remove_window_handler): Replace WindowPtr
23641 with WindowRef in externs.
23642
23643 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
23644
23645 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
23646
23647 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
23648
23649 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
23650
23651 * frame.c (Fmouse_position, Fmouse_pixel_position):
23652 Condition on HAVE_GPM too.
23653
23654 * term.c (term_mouse_highlight): Remove unused variables.
23655 (Fterm_open_connection): Set gpm_zerobased to 1.
23656 (term_mouse_movement, term_mouse_click, handle_one_term_event):
23657 Use zero based co-ordinates.
23658 (handle_one_term_event): Report a drag as mouse movement too.
23659
23660 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
23661
23662 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
23663
23664 * image.c (search_image_cache): New function. Require background
23665 color match if background color is unspecified in the image spec.
23666 (uncache_image, lookup_image): Use it.
23667
23668 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
23669
23670 * window.c (Fshrink_window): Reflow docstring.
23671
23672 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
23673
23674 * Version 22.1 released.
23675
23676 2007-06-01 Richard Stallman <rms@gnu.org>
23677
23678 * xfns.c (x_encode_text): Add GCPRO.
23679
23680 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23681
23682 * xfns.c (x_set_name_internal): Save encoded name before
23683 x_encode_text in case string data is relocated.
23684
23685 2007-05-31 Richard Stallman <rms@gnu.org>
23686
23687 * buffer.c (syms_of_buffer): Doc fix.
23688
23689 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
23690
23691 * sysdep.c (init_sys_modes): Add rather than replace with
23692 O_NONBLOCK.
23693
23694 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
23695 term_mouse_moveto.
23696
23697 * termhooks.h (term_mouse_moveto): New extern.
23698
23699 * term.c (mouse_face_window): Rename...
23700 (Qmouse_face_window): ...to this.
23701 (term_show_mouse_face, term_clear_mouse_face)
23702 (term_mouse_highlight): Use Qmouse_face_window.
23703 (term_mouse_moveto): New function.
23704 (term_mouse_position): Make it work.
23705 (syms_of_term): Uncomment assignment to mouse_position_hook.
23706 Staticpro Qmouse_face_window.
23707
23708 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23709
23710 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
23711 around current_column call.
23712
23713 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
23714
23715 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
23716 * xdisp.c (next_element_from_buffer):
23717 * window.c (delete_window):
23718 * term.c (term_mouse_highlight):
23719 * msdos.c (getdefdir):
23720 * macterm.c (mac_create_bitmap_from_bitmap_data)
23721 (init_font_name_table):
23722 * fns.c (Fsxhash):
23723 * data.c (Fmake_local_variable):
23724 * ccl.c (ccl_driver): Likewise.
23725
23726 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23727
23728 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
23729 Call mac_wakeup_from_rne on window size change.
23730
23731 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
23732
23733 * image.c (uncache_image): Fix typo.
23734
23735 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
23736
23737 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
23738
23739 2007-05-22 Richard Stallman <rms@gnu.org>
23740
23741 * xterm.c (x_connection_closed): Remove NO_RETURN.
23742
23743 2007-05-22 Martin Rudalics <rudalics@gmx.at>
23744
23745 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
23746
23747 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
23748
23749 * image.c (uncache_image): New function.
23750 (Fimage_refresh): New function.
23751
23752 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
23753
23754 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
23755
23756 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
23757
23758 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
23759 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
23760
23761 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
23762
23763 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
23764 conditional on [HAVE_GPM_H].
23765
23766 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
23767
23768 * syntax.c (skip_chars): Update syntax-table only after we checked that
23769 the new location is valid.
23770
23771 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23772
23773 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
23774 mac_get_window_bounds.
23775
23776 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
23777
23778 * Makefile.in (LIBGPM): Allow it to be set from configure.
23779 If set then link Emacs with it.
23780
23781 * config.in: Regenerate.
23782
23783 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
23784 New externs.
23785
23786 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
23787 Include gpm.h.
23788 (handle_one_term_event, term_gpm): New externs.
23789
23790 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
23791 and allow it to be interrupted by SIGIO.
23792
23793 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
23794 (wait_reading_process_output): Wait on gpm_fd too.
23795 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
23796 (add_gpm_wait_descriptor_called_flag): New variable.
23797 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
23798
23799 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
23800 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
23801 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
23802 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
23803 (make_lispy_event): Add case GPM_CLICK_EVENT.
23804 (read_avail_input): Handle mouse input.
23805
23806 * term.c (write_glyphs_with_face): New function.
23807 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
23808 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
23809 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
23810 (mouse_face_face_id, term_gpm, pos_x, pos_y)
23811 (last_mouse_x, last_mouse_y): New variables.
23812 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
23813 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
23814 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
23815 (Fterm_close_connection): New functions.
23816 (term_init): Initialise mouse_face_window.
23817
23818 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
23819
23820 * xdisp.c (redisplay_window): If first window line is a
23821 continuation line, recompute the new window start instead of
23822 recentering.
23823
23824 2007-05-18 Glenn Morris <rgm@gnu.org>
23825
23826 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
23827 Suggested by Alfred M. Szmidt <ams@gnu.org>.
23828
23829 2007-05-17 Glenn Morris <rgm@gnu.org>
23830
23831 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
23832
23833 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23834
23835 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
23836 dead key repeat and up events.
23837
23838 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
23839
23840 * image.c (pbm_load): Check image size for monochrome pbm.
23841
23842 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
23843
23844 * xterm.c (XTread_socket): Revert last change.
23845
23846 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
23847
23848 * image.c (pbm_load): Correctly check image size for greyscale pbm.
23849
23850 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
23851
23852 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23853
23854 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
23855 mixup (YAILOM).
23856
23857 2007-05-07 Andreas Schwab <schwab@suse.de>
23858
23859 * keymap.c (Flookup_key): Fix typo in last change.
23860
23861 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23862
23863 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
23864 mapping for unibyte strings.
23865
23866 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23867
23868 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
23869 (Fx_popup_dialog) [MAC_OSX]: Likewise.
23870
23871 2007-04-29 Richard Stallman <rms@gnu.org>
23872
23873 * insdel.c (replace_range): For undo, record insertion first.
23874
23875 2007-04-29 Andreas Schwab <schwab@suse.de>
23876
23877 * lisp.h (VECSIZE): Use OFFSETOF.
23878
23879 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23880
23881 * xdisp.c (try_window_reusing_current_matrix): Fix number of
23882 disabled lines.
23883
23884 2007-04-28 Richard Stallman <rms@gnu.org>
23885
23886 * lread.c (read_escape): In a string, \s is always space.
23887
23888 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
23889
23890 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
23891
23892 * gtkutil.c (xg_update_menubar, create_menus): Create empty
23893 submenu for menu bar items.
23894
23895 See ChangeLog.10 for earlier changes.
23896
23897 ;; Local Variables:
23898 ;; coding: utf-8
23899 ;; add-log-time-zone-rule: t
23900 ;; End:
23901
23902 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
23903
23904 This file is part of GNU Emacs.
23905
23906 GNU Emacs is free software: you can redistribute it and/or modify
23907 it under the terms of the GNU General Public License as published by
23908 the Free Software Foundation, either version 3 of the License, or
23909 (at your option) any later version.
23910
23911 GNU Emacs is distributed in the hope that it will be useful,
23912 but WITHOUT ANY WARRANTY; without even the implied warranty of
23913 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23914 GNU General Public License for more details.
23915
23916 You should have received a copy of the GNU General Public License
23917 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23918
23919 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40