* src/s/sol2-6.h: Remove obsolete comments.
[bpt/emacs.git] / src / ChangeLog
1 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * s/sol2-6.h: Remove obsolete comments.
4
5 Remove unnecessary alloca.h includes.
6 * keymap.c: Do not include alloca.h, config.h does that.
7 * sysdep.c: Likewise. Do not define fwrite, not used.
8
9 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10
11 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
12 the HAVE_TERMIO where it belongs (bug#6149).
13
14 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15
16 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
17 of bug#6305).
18
19 2010-05-30 Eli Zaretskii <eliz@gnu.org>
20
21 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
22 state is always cached (bug#6306).
23
24 2010-05-29 Eli Zaretskii <eliz@gnu.org>
25
26 Fix cursor motion in bidi-reordered continued lines.
27 * xdisp.c (try_cursor_movement): Backup to non-continuation line
28 only after finding point's row. Fix the logic. Rewrite the loop
29 over continuation lines in bidi-reordered buffers. Return
30 CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
31 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
32
33 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
34
35 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
36
37 2010-05-28 Kenichi Handa <handa@m17n.org>
38
39 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
40 Don't sheck SPEC if it is nil.
41 (font_list_entities): Call font_delete_unmatched if
42 Vface_ignored_fonts is non-nil. (Bug#6287)
43
44 2010-05-28 Glenn Morris <rgm@gnu.org>
45
46 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
47
48 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
49
50 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
51 whether to trash.
52 (internal_delete_file, Frename_file): Callers changed.
53 (delete_by_moving_to_trash): Doc fix.
54 (Fdelete_directory_internal): Don't move to trash.
55
56 * callproc.c (delete_temp_file):
57 * buffer.c (Fkill_buffer): Callers changed.
58
59 * lisp.h: Update prototype.
60
61 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
62
63 * xdisp.c (redisplay_window): After redisplay, check if point is
64 still valid before setting it (Bug#6177).
65
66 2010-05-27 Glenn Morris <rgm@gnu.org>
67
68 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
69 Convert comments to Makefile format.
70
71 * Makefile.in (bootstrap-clean): No more Makefile.c.
72
73 2010-05-26 Glenn Morris <rgm@gnu.org>
74
75 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
76 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
77
78 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
79 Remove.
80 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
81
82 2010-05-26 Kenichi Handa <handa@m17n.org>
83
84 * composite.c (composition_compute_stop_pos): Fix condition for
85 backward scanning.
86
87 2010-05-25 Glenn Morris <rgm@gnu.org>
88
89 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
90 Move before TEMACS_LDFLAGS.
91 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
92 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
93
94 * Makefile.in (NOT_C_CODE): No longer define.
95 (config.h): No longer include.
96
97 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
98 variables it may reference.
99
100 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
101 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
102
103 2010-05-25 Kenichi Handa <handa@m17n.org>
104
105 * dispextern.h (struct composition_it): New members rule_idx and
106 charpos.
107
108 * xdisp.c (set_iterator_to_next): While scanning backward, assume
109 that the character positions of IT point the last character of the
110 current grapheme cluster.
111 (next_element_from_composition): Don't change character positions
112 of IT.
113 (append_composite_glyph): Set glyph->charpos to
114 it->cmp_it.charpos.
115
116 * composite.c (autocmp_chars): Change the first argument to RULE,
117 and try composition with RULE only.
118 (composition_compute_stop_pos): Record the index number of the
119 composition rule in CMP_IT->rule_idx.
120 (composition_reseat_it): Call autocmp_chars repeatedly until the
121 correct rule of the composition is found.
122 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
123 is at the last character of the current grapheme cluster when
124 CMP_IT->reversed_p is nonzero.
125
126 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
127
128 * editfns.c (Fbyte_to_string): New function.
129
130 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
131
132 * process.c (Fmake_network_process): Set :host to nil if it's not used.
133 Suggested by Masatake YAMATO <yamato@redhat.com>.
134
135 2010-05-23 Eli Zaretskii <eliz@gnu.org>
136
137 * dispextern.h (init_iterator): Sync prototype with changed definition.
138
139 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
140
141 * s/netbsd.h: If terminfo is found, use it in preference to
142 termcap. (Bug#6190) [Backport from trunk]
143
144 2010-05-19 Eli Zaretskii <eliz@gnu.org>
145
146 Redesign and reimplement bidi-aware edge positions of glyph rows.
147
148 * dispextern.h (struct glyph_row): New members minpos and maxpos.
149 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
150 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
151 and maxpos members instead of start.pos and end.pos, respectively.
152
153 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
154 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
155 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
156 (try_window_reusing_current_matrix, try_window_id):
157 Use ROW->minpos rather than ROW->start.pos.
158 (init_from_display_pos, init_iterator): Use EMACS_INT for
159 character and byte positions.
160 (find_row_edges): Rename from find_row_end. Accept additional
161 arguments for minimum and maximum buffer positions seen by
162 display_line for this row. Don't use iterator to find the
163 position following the maximum one; instead, increment the
164 position found by display_line directly. Fix logic; eol_pos
165 should be tested before the rest. Handle the case of characters
166 delivered from display vector (bug#6036). Fix tests related to
167 it->method. Handle the truncated_on_right_p rows.
168 (RECORD_MAX_MIN_POS): New macro.
169 (display_line): Use it to record the minimum and maximum buffer
170 positions for glyphs in the row being assembled. Record the
171 position of the newline that terminates the line. If word wrap is
172 in effect, restore minimum and maximum positions seen up to the
173 wrap point, when iterator returns to it.
174 (try_window_reusing_current_matrix): Give up if in bidi-reordered
175 row and cursor not already at point. Restore original pre-bidi
176 code for unidirectional buffers.
177
178 * dispnew.c (increment_row_positions, check_matrix_invariants):
179 Increment and check row->start.pos and row->end.pos, in addition
180 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
181
182 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
183 Display truncated_on_left_p and truncated_on_right_p flags.
184 Formatting fixes.
185 (pmtxrows): Display the ordinal number of each row. Don't display
186 rows beyond the last one.
187
188 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
189 it is not copied by bidi_copy_it.
190
191 2010-05-22 Eli Zaretskii <eliz@gnu.org>
192
193 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
194 (Bug#6237)
195
196 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
197
198 * image.c (Fimage_flush): Rename from image-refresh.
199
200 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
201
202 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
203 just one window.
204
205 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
206 (clear_image_cache): If the number of cached images is unusually
207 large, decrease the cache eviction delay (Bug#6230).
208
209 2010-05-21 Glenn Morris <rgm@gnu.org>
210
211 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
212 Move these rules to ns.mk.
213 * ns.mk: New file.
214
215 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
216
217 * Makefile.in (CANNOT_DUMP): New, set by configure.
218 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
219
220 2010-05-20 Juri Linkov <juri@jurta.org>
221
222 * fileio.c (Fdelete_file): Change interative spec to use
223 `read-file-name' like in `find-file-read-args' where the default
224 value is `default-directory' instead of `buffer-file-name'.
225 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
226
227 2010-05-20 Kevin Ryde <user42@zip.com.au>
228
229 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
230 (Voverriding_terminal_local_map, Vsystem_key_alist)
231 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
232
233 2010-05-20 Glenn Morris <rgm@gnu.org>
234
235 * Makefile.in (DEPDIR): New constant.
236 (DEPFLAGS): Set with configure, not cpp.
237 (MKDEPDIR): New, set by configure.
238 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
239 (clean): Use $DEPDIR.
240 (deps_frag): Include from configure.
241 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
242 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
243
244 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state): Fix
245 reallocation of the cache. (Bug#6210)
246
247 2010-05-19 Glenn Morris <rgm@gnu.org>
248
249 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
250
251 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
252 (GNULIB_VAR): Remove.
253 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
254
255 * m/ibms390x.h (LINKER):
256 * m/macppc.h (LINKER) [GNU_LINUX]:
257 * s/aix4-2.h (ORDINARY_LINK):
258 * s/cygwin.h (LINKER):
259 * s/darwin.h (ORDINARY_LINK):
260 * s/gnu.h (ORDINARY_LINK):
261 * s/netbsd.h (LINKER):
262 * s/usg5-4.h (ORDINARY_LINK):
263 Move to configure.
264
265 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
266
267 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
268
269 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
270 prevent stack overflow if number of arguments is too large
271 (Bug#6214).
272
273 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
274
275 * charset.c (load_charset_map_from_file): Don't call close after fclose.
276
277 2010-05-18 Glenn Morris <rgm@gnu.org>
278
279 * s/gnu-linux.h: Combine two conditionals.
280
281 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
282 $(POST_ALLOC_OBJ).
283
284 * Makefile.in (RALLOC_OBJ): New, set by configure.
285 (rallocobj): Replace with the previous variable.
286 (otherobj): Use $RALLOC_OBJ.
287
288 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
289 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
290
291 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
292 (gmallocobj, vmlimitobj): Replace with previous two variables.
293 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
294
295 2010-05-17 Glenn Morris <rgm@gnu.org>
296
297 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
298 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
299
300 2010-05-16 Glenn Morris <rgm@gnu.org>
301
302 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
303
304 * Makefile.in (clean): Get rid of HAVE_NS conditional.
305
306 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
307 trailing "/".
308
309 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
310 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
311
312 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
313 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
314 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
315 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
316 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
317
318 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
319 Remove ${STARTFLAGS}, nothing ever sets it.
320
321 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
322
323 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
324
325 2010-05-16 Glenn Morris <rgm@gnu.org>
326
327 * Makefile.in (LIBX_BASE): Always define.
328
329 * Makefile.in (LIBX_OTHER): Move out of cpp section.
330
331 * Makefile.in (LIBXT): Always define.
332
333 2010-05-15 Glenn Morris <rgm@gnu.org>
334
335 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
336
337 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
338 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
339
340 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
341
342 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
343 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
344
345 * emacs.c (main): Initialize initial-environment and
346 process-environment before generating from env, not after.
347
348 Handle --version reasonably in CANNOT_DUMP configuration.
349 * emacs.c (emacs_version, emacs_copyright): New string variables.
350 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
351 (syms_of_emacs): Defvar them, and initialize them from the C
352 string variables.
353 (main): If initialization hasn't been done, print initial version
354 info from the C strings, instead of starting an interactive session.
355
356 2010-05-15 Eli Zaretskii <eliz@gnu.org>
357
358 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
359 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
360 (bidi_paragraph_init): Remove redundant assertion that we are at
361 the beginning of a line after call to bidi_find_paragraph_start.
362
363 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
364 (syms_of_xdisp): Defsubr it.
365
366 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
367
368 * Makefile.in: Fix MSDOS-related comments.
369
370 2010-05-15 Glenn Morris <rgm@gnu.org>
371
372 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
373 (really-lwlib, really-oldXMenu): Always define.
374 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
375
376 * Makefile.in: Simplify cpp conditional.
377
378 * Makefile.in (${ns_appdir}): Simplify using umask.
379
380 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
381
382 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
383
384 * eval.c (specbind): Remove left-over duplicate test.
385 Disallow let-binding frame-local vars. Add comment.
386
387 2010-05-14 Eli Zaretskii <eliz@gnu.org>
388
389 Make the cache of bidi iterator states dynamically allocated.
390 * bidi.c (bidi_cache_shrink): New function.
391 (bidi_init_it): Call it.
392 (bidi_cache_iterator_state): Enlarge the cache if needed.
393
394 * bidi.c (bidi_move_to_visually_next): Rename from
395 bidi_get_next_char_visually. All callers changed.
396
397 2010-05-14 Kenichi Handa <handa@m17n.org>
398
399 * dispextern.h (struct composition_it): New member reversed_p.
400
401 * composite.c (composition_compute_stop_pos): Search backward if
402 ENDPOS < CHARPOS.
403 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
404 Set CMP_IT->reversed_p.
405 (composition_update_it): Pay attention to CMP_IT->reversed_p.
406
407 * xdisp.c (set_iterator_to_next):
408 Call composition_compute_stop_pos with negative ENDPOS if we are
409 scanning backward. Call composition_compute_stop_pos if scan
410 direction is changed.
411 (next_element_from_buffer): Call composition_compute_stop_pos with
412 negative ENDPOS if we are scanning backward.
413 (next_element_from_composition): Pay attention to
414 IT->cmp_it.reversed_p.
415
416 2010-05-14 Kenichi Handa <handa@m17n.org>
417
418 * font.c (font_range): Return the range for the font found at first.
419
420 2010-05-14 Glenn Morris <rgm@gnu.org>
421
422 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
423
424 * Makefile.in (mktime, X11, register): Move undefs to configure.
425
426 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
427 (MSDOS_X_OBJ): New variable.
428 (MSDOS_SUPPORT_REAL): New constant.
429 (MSDOS_SUPPORT): Set as a variable, not with cpp.
430 (obj): Use MSDOS_X_OBJ.
431 (lisp): Use MSDOS_SUPPORT as a variable.
432
433 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
434 (GPM_MOUSE_SUPPORT): Now it's a constant.
435 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
436 not cpp.
437
438 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
439 (ns_appresdir): Remove, unused.
440
441 * Makefile.in (SHELL): Move outside cpp section.
442
443 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
444
445 2010-05-13 Glenn Morris <rgm@gnu.org>
446
447 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
448 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
449
450 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
451 HAVE_WINDOW_SYSTEM must be too.
452
453 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
454 (lisp): Remove WINNT_SUPPORT.
455
456 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
457 Let configure set these variables (to empty) in this case as well.
458
459 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
460 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
461
462 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
463 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
464 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
465 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
466 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
467 the values output by configure.
468 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
469
470 2010-05-12 Glenn Morris <rgm@gnu.org>
471
472 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
473 (LINKER_WAS_SPECIFIED): Remove.
474
475 * Makefile.in (LIB_GCC): Set using configure, not cpp.
476 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
477 * m/arm.h (LIB_GCC) [GNU_LINUX]:
478 * s/cygwin.h (LIB_GCC):
479 * s/freebsd.h (LIB_GCC):
480 * s/gnu-linux.h (LIB_GCC):
481 * s/msdos.h (LIB_GCC):
482 * s/netbsd.h (LIB_GCC):
483 Move to configure.
484
485 2010-05-11 Karel Klic <kklic@redhat.com>
486
487 * ftfont.c: Fix incorrect parentheses of #if condition for
488 definining M17N_FLT_USE_NEW_FEATURE.
489
490 2010-05-11 Glenn Morris <rgm@gnu.org>
491
492 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
493 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
494
495 2010-05-10 Eli Zaretskii <eliz@gnu.org>
496
497 * xdisp.c (init_iterator): Don't turn on bidi reordering in
498 unibyte buffers. See
499 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
500
501 2010-05-10 Glenn Morris <rgm@gnu.org>
502
503 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
504 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
505 (LIBES): Use LIBS_SYSTEM as a variable.
506 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
507 * s/aix4-2.h (LIBS_SYSTEM):
508 * s/freebsd.h (LIBS_SYSTEM):
509 * s/hpux10-20.h (LIBS_SYSTEM):
510 * s/sol2-6.h (LIBS_SYSTEM):
511 * s/unixware.h (LIBS_SYSTEM):
512 Move to configure.
513
514 * s/aix4-2.h (MAIL_USE_LOCKF):
515 * s/bsd-common.h (MAIL_USE_FLOCK):
516 * s/darwin.h (MAIL_USE_FLOCK):
517 * s/gnu-linux.h (MAIL_USE_FLOCK):
518 * s/irix6-5.h (MAIL_USE_FLOCK):
519 * s/template.h (MAIL_USE_FLOCK):
520 Move to configure.
521
522 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
523
524 * Version 23.2 released.
525
526 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
527
528 * composite.c (autocmp_chars): Save point as marker before calling
529 auto-composition-function (Bug#5984).
530
531 * lisp.h (restore_point_unwind): Add prototype.
532
533 * fileio.c (restore_point_unwind): Remove static attribute.
534
535 2010-05-08 Kenichi Handa <handa@m17n.org>
536
537 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
538 new feature of libotf and m17n-flt.
539 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
540 Call OTF_check_features even if no specific feature is given.
541 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
542 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
543 that OUT is NULL. Use OTF_drive_gsub_with_log and
544 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
545 OTF_drive_gpos.
546 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
547 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
548 Setup mflt_enable_new_feature and mflt_try_otf.
549
550 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
551
552 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
553
554 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
555 box and toolbar (Bug #6139).
556 (xg_create_tool_bar): Remove comment (Bug #6139).
557 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
558 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
559
560 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
561
562 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
563 Update dependencies.
564
565 2010-05-08 Eli Zaretskii <eliz@gnu.org>
566
567 * fringe.c (update_window_fringes): Set up truncation bitmaps for
568 R2L lines.
569
570 2010-05-08 Glenn Morris <rgm@gnu.org>
571
572 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
573
574 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
575 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
576 (termcapobj): Replace with TERMCAP_OBJ.
577 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
578 (LIBES): Use LIBS_TERMCAP as a variable.
579
580 * s/freebsd.h (osreldate.h): No longer include, since this file
581 does not use __FreeBSD_version any more.
582
583 * s/aix4-2.h (TERMINFO):
584 * s/cygwin.h (TERMINFO):
585 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
586 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
587 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
588 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
589 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
590 * s/irix6-5.h (TERMINFO):
591 * s/netbsd.h (LIBS_TERMCAP):
592 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
593 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
594 * s/usg5-4.h (TERMINFO):
595 Move to configure.
596
597 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
598
599 * eval.c (unbind_to): Don't unbind a local binding into the global
600 binding when the local binding disappeared. Inversely, don't unbind
601 a global binding into a newly created local binding.
602 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
603 can specify the frame to use, when applicable. Adjust callers.
604
605 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
606 Stefan Monnier <monnier@iro.umontreal.ca>
607
608 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
609
610 2010-05-07 Eli Zaretskii <eliz@gnu.org>
611
612 * w32fns.c: Include w32.h.
613 (Fw32_shell_execute): Decode the error message before passing it
614 to `error'. (Bug#6126)
615
616 * msdos.c (dos_set_window_size):
617 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
618 instead of `XSYMBOL (foo)->value'.
619
620 2010-05-07 Eli Zaretskii <eliz@gnu.org>
621
622 Fix the MS-DOS build, broken by autoconfiscation.
623
624 * Makefile.in: Don't use Make-style comments past the "start of
625 cpp stuff" line.
626 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
627
628 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
629 edited directly by msdos/sed1v2.inp).
630
631 2010-05-07 Glenn Morris <rgm@gnu.org>
632
633 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
634 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
635 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
636 move out of cpp section.
637 * s/freebsd.h (LD_SWITCH_SYSTEM):
638 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
639 * s/netbsd.h (LD_SWITCH_SYSTEM):
640 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
641
642 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
643
644 Define LIB_STANDARD and START_FILES using autoconf.
645 * s/usg5-4.h (LIB_STANDARD):
646 * s/netbsd.h (START_FILES):
647 * s/irix6-5.h (LIB_STANDARD):
648 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
649 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
650 * s/freebsd.h (START_FILES):
651 * s/darwin.h (START_FILES):
652 * s/cygwin.h (START_FILES):
653 * s/aix4-2.h (LIB_STANDARD):
654 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
655 * Makefile.in (STARTFILES): Rename to START_FILES, define using
656 autoconf, not cpp.
657
658 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
659
660 Remove NEED_BSDTTY and NEED_UNISTD_H.
661 * s/hpux10-20.h (NEED_BSDTTY): Remove.
662 * s/aix4-2.h (NEED_UNISTD_H): Remove.
663 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
664 <sys/ptyio.h> and <unistd.h>.
665
666 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
667
668 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
669 * s/gnu.h (START_FILES): Remove empty definition.
670
671 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
672
673 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
674
675 2010-05-06 Glenn Morris <rgm@gnu.org>
676
677 * Makefile.in (CPP, LN_S): Remove unused variables.
678
679 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
680
681 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
682
683 2010-05-05 Lawrence Mitchell <wence@gmx.li>
684
685 * m/sparc.h: Fix typo in earlier change.
686
687 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
688
689 Misc tweaks.
690 * eval.c (Fdefvaralias): Remove unintended nested if.
691 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
692
693 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
694
695 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
696
697 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
698
699 Remove BSD_PGRPS.
700 * s/bsd-common.h (BSD_PGRPS): Remove undef.
701 * s/gnu-linux.h (BSD_PGRPS): Remove.
702 * term.c (dissociate_if_controlling_tty):
703 * sysdep.c (narrow_foreground_group, widen_foreground_group)
704 (init_sys_modes, reset_sys_modes):
705 * emacs.c (main):
706 * callproc.c (Fcall_process, child_setup): Remove code depending
707 on BSD_PGRPS.
708
709 Remove POSIX_SIGNALS.
710 * s/usg5-4.h (POSIX_SIGNALS):
711 * s/netbsd.h (POSIX_SIGNALS):
712 * s/msdos.h (POSIX_SIGNALS):
713 * s/ms-w32.h (POSIX_SIGNALS):
714 * s/hpux11.h (POSIX_SIGNALS):
715 * s/gnu.h (POSIX_SIGNALS):
716 * s/gnu-linux.h (POSIX_SIGNALS):
717 * s/freebsd.h (POSIX_SIGNALS):
718 * s/darwin.h (POSIX_SIGNALS):
719 * s/cygwin.h (POSIX_SIGNALS):
720 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
721 * s/unixware.h:
722 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
723 * process.c (create_process):
724 * syssignal.h:
725 * sysdep.c (wait_for_termination, init_signals):
726 * process.c (create_process):
727 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
728 remove all code that assumes the contrary.
729
730 2010-05-04 Glenn Morris <rgm@gnu.org>
731
732 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
733 variable.
734 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
735 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
736 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
737 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
738 LD_SWITCH_SYSTEM_tmp.
739 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
740 New variables, set by configure.
741
742 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
743 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
744 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
745 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
746 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
747
748 * s/aix4-2.h (C_SWITCH_SYSTEM):
749 * m/alpha.h (C_SWITCH_MACHINE):
750 Move to configure.in.
751 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
752 New variables, set by configure.
753 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
754 $c_switch_machine and $c_switch_system.
755
756 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
757
758 * s/hpux10-20.h (LIB_STANDARD): New definition.
759 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
760 on it, not used anymore.
761
762 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
763
764 * eval.c (internal_condition_case_n): Rename from
765 internal_condition_case_2.
766 (internal_condition_case_2): New function.
767
768 * xdisp.c (safe_call): Use internal_condition_case_n.
769
770 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
771 (internal_delete_file, Frename_file): Callers changed.
772
773 * buffer.c (Fkill_buffer):
774 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
775
776 * lisp.h: Update prototypes.
777
778 2010-05-03 Glenn Morris <rgm@gnu.org>
779
780 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
781 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
782 (LIBXT): Set with configure, not cpp.
783 (LIBX): Remove.
784 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
785
786 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
787
788 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
789 The FreeBSD is not needed, the default works, Solaris version is
790 not needed, and the remaining case is not supported by configure.
791
792 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
793
794 * xsmfns.c (CHDIR_OPT): New define.
795 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
796 restarting emacs.
797
798 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
799 shut_down_emacs.
800
801 * emacs.c (USAGE1): Mention --chdir.
802 (main): Handle --chdir.
803 (standard_args): Add --chdir.
804 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
805 #5552).
806
807 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
808
809 Remove LD_SWITCH_MACHINE.
810 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
811 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
812
813 Clean up IRIX code.
814 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
815 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
816
817 Clean up AIX code.
818 * m/ibmrs6000.inp: Remove file, unused.
819 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
820 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
821 definition ...
822 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
823
824 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
825 unused.
826
827 2010-05-01 Eli Zaretskii <eliz@gnu.org>
828
829 Emulate POSIX_SIGNALS on MS-Windows.
830
831 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
832 (SIG_SETMASK, SIG_UNBLOCK): Define.
833
834 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
835 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
836 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
837
838 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
839 New stubs.
840
841 Miscellaneous fixes of bidi display.
842
843 * xdisp.c (find_row_end): New function, refactored from display_line.
844 (display_line): Use it.
845 (extend_face_to_end_of_line): In almost-filled rows, extend only
846 if the row is R2L and not continued.
847 (display_line): Fix prepending of truncation glyphs to R2L rows.
848 Preserve overlay and string info in row->end.
849 (insert_left_trunc_glyphs): Support addition of left truncation
850 glyphs to R2L rows.
851 (set_cursor_from_row): Don't place cursor on the vertical border
852 glyph between adjacent windows. Fix a crash when a display string
853 is continued to the next line. Don't return zero if cursor was
854 found by `cursor' property of a display string.
855 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
856 test for that explicitly.
857
858 2010-05-01 Glenn Morris <rgm@gnu.org>
859
860 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
861 for clarity.
862 (OTHER_OBJ): Remove.
863 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
864 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
865
866 2010-05-01 Karel Klíč <kklic@redhat.com>
867
868 * fileio.c (Ffile_selinux_context): Context functions may return null.
869
870 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
871
872 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
873
874 2010-04-30 Glenn Morris <rgm@gnu.org>
875
876 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
877 (OTHER_OBJ): Define as a separate variable, for clarity.
878
879 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
880
881 * xsettings.c: include limits.h and update file comment.
882
883 2010-04-30 Glenn Morris <rgm@gnu.org>
884
885 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
886 Set with configure, not cpp.
887 (LIBW): Remove, replace with $TOOLKIT_LIBW.
888
889 * Makefile.in (mallocobj): Remove.
890 (otherobj): Simplify using @OTHER_OBJ@.
891
892 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
893 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
894 Don't bother making nsgui.h dependency platform-specific.
895
896 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
897
898 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
899
900 * process.c (read_process_output, exec_sentinel): Don't burp if the
901 sentinel/filter kills the current buffer (bug#6060).
902
903 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
904 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
905 Remove unused var `args'.
906 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
907 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
908 * doc.c (store_function_docstring): Use XSETCAR.
909
910 2010-04-28 Glenn Morris <rgm@gnu.org>
911
912 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
913 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
914
915 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
916
917 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
918 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
919
920 * Makefile.in (FONT_OBJ): New, set by configure.
921 (FONT_DRIVERS): Use $FONT_OBJ.
922
923 * Makefile.in (LIBXMU): Set with configure, not cpp.
924 * s/aix4-2.h (LIBXMU):
925 * s/hpux10-20.h (LIBXMU):
926 Remove definition, now set in configure.
927
928 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
929
930 * m/amdx86-64.h [i386]: Move this test to configure.in.
931
932 2010-04-27 Glenn Morris <rgm@gnu.org>
933
934 * Makefile.in (LIBXTR6): Set with configure, not cpp.
935 * s/unixware.h (NEED_LIBW): Remove definition.
936
937 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
938 (TOOLKIT_LIBW): New, set by configure.
939 (@X_TOOLKIT_TYPE@): No longer define it.
940
941 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
942 (MOTIF_LIBW): Set with configure, not cpp.
943 * s/aix4-2.h (LIB_MOTIF):
944 * s/gnu-linux.h (LIB_MOTIF):
945 * s/unixware.h (LIB_MOTIF): Move to configure.in.
946
947 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
948
949 Reduce CPP usage.
950 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
951 (obj): Use autoconf for unexec instead of cpp.
952 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE): Remove
953 definitions and undefs. Inline definitions in the only user.
954 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
955
956 2010-04-27 Glenn Morris <rgm@gnu.org>
957
958 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
959 since the defaults (set by the system file) are fine in most cases.
960 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
961 * m/ibms390x.h (START_FILES, LIB_STANDARD):
962 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
963 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
964 Remove definitions, since they are set correctly in s/gnu-linux.h.
965 * s/freebsd.h (START_FILES, LIB_STANDARD):
966 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
967 * s/hpux10-20.h (START_FILES):
968 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
969 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
970
971 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
972 (MOTIF_LIBW): Use $LIBXP.
973 (otherobj): Use $WIDGET_OBJ.
974
975 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
976
977 * Makefile.in (LIBS_MACHINE): Remove, unused.
978
979 Use autoconf instead of cpp for LIB_MATH.
980 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
981 * s/cygwin.h (LIB_MATH): Likewise.
982 * Makefile.in (LIB_MATH): Do not define with cpp.
983 (LIBES): Use autoconf for LIB_MATH.
984
985 2010-04-26 Kenichi Handa <handa@m17n.org>
986
987 * composite.c (Ffind_composition_internal): Fix the return value
988 for an automatic composition.
989
990 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
991
992 Remove all NO_ARG_ARRAY uses.
993 * fns.c (concat2, concat3, nconc2):
994 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
995 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
996 * m/xtensa.h (NO_ARG_ARRAY):
997 * m/template.h (NO_ARG_ARRAY):
998 * m/sparc.h (NO_ARG_ARRAY):
999 * m/sh3.h (NO_ARG_ARRAY):
1000 * m/mips.h (NO_ARG_ARRAY):
1001 * m/macppc.h (NO_ARG_ARRAY):
1002 * m/iris4d.h (NO_ARG_ARRAY):
1003 * m/intel386.h (NO_ARG_ARRAY):
1004 * m/ibms390x.h (NO_ARG_ARRAY):
1005 * m/ibms390.h (NO_ARG_ARRAY):
1006 * m/ibmrs6000.h (NO_ARG_ARRAY):
1007 * m/ia64.h (NO_ARG_ARRAY):
1008 * m/hp800.h (NO_ARG_ARRAY):
1009 * m/arm.h (NO_ARG_ARRAY):
1010 * m/amdx86-64.h (NO_ARG_ARRAY):
1011 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
1012
1013 2010-04-25 Eli Zaretskii <eliz@gnu.org>
1014
1015 * xdisp.c (display_line): Don't assume 2nd call to
1016 get_next_display_element cannot return zero. (Bug#6030)
1017 (iterate_out_of_display_property): New function, body from pop_it.
1018 (pop_it): Use it.
1019
1020 2010-04-24 Glenn Morris <rgm@gnu.org>
1021
1022 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
1023 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
1024 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
1025 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
1026
1027 2010-04-24 Eli Zaretskii <eliz@gnu.org>
1028
1029 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
1030 use `get_next_display_element' and `set_iterator_to_next' to
1031 advance to the next character, when looking for the character that
1032 begins the next row.
1033
1034 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
1035 definition of "struct Lisp_Symbol".
1036
1037 2010-04-24 Glenn Morris <rgm@gnu.org>
1038
1039 * Makefile.in (CRT_DIR): New variable, set by configure.
1040 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
1041 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
1042
1043 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1044
1045 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
1046
1047 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
1048
1049 Remove redundant flags.
1050 * s/freebsd.h (C_SWITCH_SYSTEM):
1051 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
1052 * s/netbsd.h (C_SWITCH_SYSTEM):
1053 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
1054 of these.
1055
1056 Simplify m/intel386.h.
1057 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
1058 user: ecrt0.c.
1059 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
1060 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
1061 the only user: s/unixware.h.
1062 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
1063 from m/intel386.h.
1064 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Definitions
1065 moved here from m/intel386.h.
1066
1067 * m/mips.h: Remove #if 0 code.
1068
1069 2010-04-23 Eli Zaretskii <eliz@gnu.org>
1070
1071 Fix display of composed characters from L2R scripts in bidi buffers.
1072 * xdisp.c (set_iterator_to_next, next_element_from_composition):
1073 After advancing IT past the composition, resync the bidi iterator
1074 with IT's position. (Bug#5977)
1075
1076 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1077
1078 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
1079 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
1080
1081 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1082
1083 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
1084
1085 2010-04-23 Eli Zaretskii <eliz@gnu.org>
1086
1087 Support `display' text properties and overlay strings in bidi buffers.
1088 * xdisp.c (pop_it): When the stack is popped after displaying
1089 from a string, bidi-iterate to exit from the text portion covered
1090 by the `display' property or overlay. (Bug#5988, bug#5920)
1091
1092 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1093
1094 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
1095 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
1096
1097 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
1098 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
1099
1100 Simplify STARTFILES definition.
1101 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
1102 relying on Makefile.in to define it.
1103 * s/cygwin.h (START_FILES): Likewise.
1104 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
1105
1106 Clean up Solaris code.
1107 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
1108 (LIB_MOTIF): Remove, configure takes care of this.
1109 (NOT_USING_MOTIF): Remove, unused.
1110 * xrdb.c: Remove #if 0-ed #include.
1111 (SYSV): Remove conditional for old SysV.
1112 * sysdep.c (closedir): Remove conditional code for Solaris,
1113 Solaris has closedir.
1114
1115 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
1116
1117 * xsettings.c (read_and_apply_settings): Check if current_font is
1118 NULL before strcmp (Bug#6001).
1119
1120 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
1121
1122 Clean up HP-UX files.
1123 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
1124 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
1125 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
1126 * s/hpux10-20.h: ... to the only user, here.
1127
1128 2010-04-21 Eli Zaretskii <eliz@gnu.org>
1129
1130 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
1131 use buffer-local values of paragraph-start and paragraph-separate.
1132 <paragraph_start_re, paragraph_separate_re>: Rename from
1133 fallback_paragraph_start_re and fallback_paragraph_separate_re.
1134 (Bug#5992)
1135
1136 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
1137
1138 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
1139 current_tool_bar_style are new.
1140 (store_config_changed_event): Rename from store_font_changed_event.
1141 (XSETTINGS_TOOL_BAR_STYLE): New define.
1142 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
1143 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
1144 HAVE_XFT.
1145 (something_changedCB): store_font_changed_event is now
1146 store_config_changed_event
1147 (parse_settings): Rename from parse_xft_settings. Read
1148 non-xft xsettings outside #ifdef HAVE_XFT.
1149 (read_settings): Renamed from read_xft_settings.
1150 (apply_xft_settings): Take current settings as parameter. Do not
1151 call read_(xft)_settings.
1152 (read_and_apply_settings): New function.
1153 (xft_settings_event): Do non-xft stuff out of HAVE_XFT. Call
1154 read_and_apply_settings if there are settings to be read.
1155 (init_xsettings): Renamed from init_xfd_settings.
1156 Call read_and_apply_settings unconditionally.
1157 (xsettings_initialize): Call init_xsettings.
1158 (Ftool_bar_get_system_style): New function.
1159 (syms_of_xsettings): Define Qmonospace_font_name and
1160 Qtool_bar_style. Initialize current_tool_bar_style to nil.
1161 defsubr Stool_bar_get_system_style. Fprovide on
1162 dynamic-setting.
1163 Move misplaced HAVE_GCONF
1164
1165 * xsettings.h (Ftool_bar_get_system_style): Declare.
1166
1167 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
1168 Qtext, Qboth, Qboth_horiz are new.
1169 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
1170 Vtool_bar_style, tool_bar_max_label_size.
1171
1172 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
1173
1174 * keyboard.c: QClabel is new.
1175 (parse_tool_bar_item): Take out QClabel from tool bar items.
1176 Try to construct a label if ther is no QClabel.
1177 (syms_of_keyboard): Intern :label as QClabel.
1178
1179 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
1180 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
1181 New.
1182
1183 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
1184 dynamic-setting.el.
1185
1186 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
1187 (xg_make_tool_item, xg_show_toolbar_item): New function.
1188 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
1189 Call xg_make_tool_item to make a tool bar item.
1190 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
1191
1192 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
1193 into account for toolbars.
1194
1195 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
1196
1197 * data.c (make_blv): Declarations before code (Bug#5993).
1198
1199 2010-04-21 Glenn Morris <rgm@gnu.org>
1200
1201 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
1202 Define using autoconf, not cpp.
1203 (LIBXSM): New variable, set by autoconf.
1204 (LIBXT): Use $LIBXSM.
1205
1206 2010-04-21 Dan Nicolaescu <local_user@dannlt>
1207
1208 Remove NOMULTIPLEJOBS, unused.
1209 * s/template.h (NOMULTIPLEJOBS):
1210 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
1211
1212 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
1213 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
1214 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
1215 detects -znocombreloc and passes it to the linker
1216 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
1217
1218 2010-04-21 Glenn Morris <rgm@gnu.org>
1219
1220 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
1221
1222 2010-04-21 Karel Klíč <kklic@redhat.com>
1223
1224 * Makefile.in (LIBSELINUX_LIBS): New.
1225 (LIBES): Add $LIBSELINUX_LIBS.
1226 * eval.c, lisp.h (call7): New function.
1227 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
1228 (Ffile_selinux_context, Fset_file_selinux_context):
1229 New functions.
1230 (Fcopy_file): New parameter preserve-selinux-context.
1231 (Frename_file): Preserve selinux context when renaming by copy-file.
1232
1233 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
1234 Eli Zaretskii <eliz@gnu.org>
1235
1236 Don't depend on cm.c or termcap.c on Windows, use stubs.
1237 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
1238 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
1239 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
1240 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
1241 (sys_tputs, sys_tgetstr): New stubs.
1242 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
1243 (tputs, tgetstr): New; define to sys_*.
1244
1245 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
1246
1247 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
1248
1249 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1250
1251 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
1252 Just signal a warning rather than an error when inside a let.
1253 (Fmake_variable_frame_local): Add the same test.
1254
1255 * font.c (syms_of_font): Make the style table vars read-only.
1256
1257 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
1258 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
1259
1260 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
1261
1262 2010-04-20 Eli Zaretskii <eliz@gnu.org>
1263
1264 Fix R2L paragraph display on TTY.
1265
1266 * xdisp.c (unproduce_glyphs): New function.
1267 (display_line): Use it when produced glyphs are discarded from R2L
1268 glyph rows.
1269 (append_composite_glyph): In R2L rows, prepend the glyph rather
1270 than appending it.
1271
1272 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
1273 rather than append it. Set up the resolved_level and bidi_type
1274 attributes of the appended glyph.
1275 (produce_special_glyphs): Mirror the backslash continuation
1276 character in R2L lines.
1277
1278 Implement display of R2L paragraphs in GUI sessions.
1279
1280 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
1281 append_stretch_glyph.
1282 (set_cursor_from_row) <cursor_x>: Remove unused variable. Fix
1283 off-by-one error in computing x at end of text in the row.
1284 (append_stretch_glyph): In reversed row, prepend the glyph rather
1285 than append it. Set resolved_level and bidi_type of the glyph.
1286 (extend_face_to_end_of_line): If the row is reversed, prepend a
1287 stretch glyph whose width is such that the rightmost glyph will be
1288 drawn at the right margin of the window. Fix off-by-one error on
1289 TTY frames in testing whether a line needs face extension. Fix
1290 face extension at ZV. If this is the last glyph row, use
1291 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
1292 region face.
1293 (set_cursor_from_row, display_line): Use
1294 MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
1295 row->continuation_lines_width.
1296 (next_element_from_buffer): Don't call bidi_paragraph_init if we
1297 are at ZV. Fixes a crash when reseated to ZV by
1298 try_window_reusing_current_matrix.
1299 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
1300 which happens with R2L glyph rows. Fixes a crash when inserting a
1301 character at end of an R2L line.
1302 (set_cursor_from_row): Don't be fooled by truncated rows: don't
1303 treat them as having zero-width characters. Improve comments.
1304 Don't reverse pos_before and pos_after for reversed glyph rows.
1305 Set cursor.x to negative value when the cursor might be on the
1306 left fringe.
1307 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
1308 left fringe, not the right one.
1309 (notice_overwritten_cursor, draw_phys_cursor_glyph)
1310 (erase_phys_cursor): For reversed cursor_row, support cursor on
1311 the left fringe.
1312
1313 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
1314 of continuation indicators on the fringes.
1315 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
1316 left fringe.
1317
1318 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
1319 draw cursor on the left fringe.
1320
1321 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
1322 cursor on the left fringe.
1323
1324 * dispnew.c (update_text_area): Handle reversed desired rows when
1325 the cursor is on the left fringe.
1326 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
1327 below, not by 0, for when the cursor is on the left fringe.
1328
1329 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
1330
1331 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
1332 widget is a scrollbar.
1333
1334 2010-04-20 Kenichi Handa <handa@m17n.org>
1335
1336 * charset.c (char_charset): Consider Vcharset_non_preferred_head
1337 only when the arg CHARSET_LIST is nil.
1338
1339 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1340
1341 Make variable forwarding explicit rather the using special values.
1342 Basically, this makes the structure of buffer-local values and object
1343 forwarding explicit in the type of Lisp_Symbols rather than use
1344 special Lisp_Objects for that. This tends to lead to slightly more
1345 verbose code, but is more C-like, simpler, and makes it easier to make
1346 sure we handled all cases, among other things by letting the compiler
1347 help us check it.
1348 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
1349 Removing forwarding objects.
1350 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
1351 (struct Lisp_Symbol): Make the various forms of variable-forwarding
1352 explicit rather than hiding them inside Lisp_Object "values".
1353 (XFWDTYPE): New macro.
1354 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
1355 (XBUFFER_LOCAL_VALUE): Remove.
1356 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
1357 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
1358 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
1359 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
1360 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
1361 Remove the Lisp_Misc_* header.
1362 (struct Lisp_Buffer_Local_Value): Redefine.
1363 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
1364 (struct Lisp_Misc_Any): Add filler to get the right size.
1365 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
1366 Lisp_Intfwd.
1367 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
1368 (DEFVAR_KBOARD): Allocate a forwarding object.
1369 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
1370 (let_shadows_global_binding_p): New function.
1371 (union Lisp_Val_Fwd): New type.
1372 (make_blv): New function.
1373 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
1374 (store_symval_forwarding, swap_in_global_binding, Fboundp)
1375 (swap_in_symval_forwarding, find_symbol_value, Fset)
1376 (let_shadows_buffer_binding_p, set_internal, default_value)
1377 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
1378 (Fkill_local_variable, Fmake_variable_frame_local)
1379 (Flocal_variable_p, Flocal_variable_if_set_p)
1380 (Fvariable_binding_locus):
1381 * xdisp.c (select_frame_for_redisplay):
1382 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
1383 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
1384 * frame.c (store_frame_param):
1385 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
1386 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
1387 value structure.
1388 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
1389 (clone_per_buffer_values): Only adjust markers into the current buffer.
1390 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
1391 (Fbuffer_local_value, set_buffer_internal_1)
1392 (swap_out_buffer_local_variables):
1393 Adapt to the new symbol value structure.
1394 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
1395 (defvar_per_buffer): Take a new arg for the fwd object.
1396 (buffer_lisp_local_variables): Return a proper alist (different fix
1397 for bug#4138).
1398 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
1399 (Fgarbage_collect): Don't handle buffer_defaults specially.
1400 (mark_object): Handle new symbol value structure rather than the old
1401 special Lisp_Misc_* objects.
1402 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
1403 * term.c (set_tty_color_mode):
1404 * bidi.c (bidi_initialize): Don't access the ->value field directly.
1405 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
1406 a buffer_local_flags.
1407 * print.c (print_object): Get rid of impossible forwarding objects.
1408
1409 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1410
1411 * bidi.c (bidi_get_type, bidi_get_category)
1412 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
1413 (bidi_type_of_next_char, bidi_level_of_next_char):
1414 Declare static. Use `INLINE' rather than `inline'.
1415
1416 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
1417
1418 * dired.c (Ffile_attributes): Fix typo in docstring.
1419
1420 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
1421
1422 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
1423 NSInteger (Bug#5811).
1424
1425 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1426
1427 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
1428 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
1429
1430 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1431
1432 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
1433
1434 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
1435
1436 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
1437 terminal frames (Bug#5837).
1438
1439 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1440
1441 * .gdbinit (xsubchartable): New command.
1442
1443 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1444
1445 * xdisp.c (display_line): Don't write beyond the last glyph row in
1446 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
1447 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
1448 and
1449 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
1450
1451 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1452
1453 * alloc.c (Fpurecopy): Hash-cons if requested.
1454 (syms_of_alloc): Update purify-flag docstring.
1455
1456 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
1457
1458 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
1459 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
1460
1461 2010-04-17 Eli Zaretskii <eliz@gnu.org>
1462
1463 Fix a crash when an NSM character is inserted at BEGV.
1464
1465 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
1466 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
1467 NEUTRAL_B or UNKNOWN_BT.
1468
1469 2010-04-16 Eli Zaretskii <eliz@gnu.org>
1470
1471 * xdisp.c (set_cursor_from_row): Don't consider possibility of
1472 other rows with cursor unless they are different from this row and
1473 this row is part of a continued line. (Bug#5943)
1474
1475 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
1476
1477 * s/freebsd.h: Restore osreldate.h include.
1478 Suggested by Naohiro Aota.
1479
1480 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
1481
1482 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
1483
1484 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
1485
1486 * s/cygwin.h: Avoid linking against static libgcc.
1487
1488 2010-04-15 Juri Linkov <juri@jurta.org>
1489
1490 * window.c: Add Qscroll_command.
1491 Remove Vscroll_preserve_screen_position_commands.
1492 (window_scroll_pixel_based, window_scroll_line_based): Check the
1493 `scroll-command' property on the last command instead of searching
1494 the last command in Vscroll_preserve_screen_position_commands.
1495 (syms_of_window): Initialize and staticpro `Qscroll_command'.
1496 Put Qscroll_command property on Qscroll_up and Qscroll_down.
1497 (scroll-preserve-screen-position): Doc fix.
1498 (Vscroll_preserve_screen_position_commands): Remove variable.
1499
1500 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
1501
1502 * xdisp.c (message): Do not use NO_ARG_ARRAY.
1503
1504 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
1505
1506 Reduce cpp use in Makefile.in.
1507 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
1508 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
1509 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
1510 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
1511 (CRT0_COMPILE): Remove, inline it in the only user.
1512
1513 2010-04-14 Juri Linkov <juri@jurta.org>
1514
1515 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
1516 `scroll-up-command' and `M-v' from `scroll-down' to
1517 `scroll-down-command'.
1518
1519 2010-04-14 Juri Linkov <juri@jurta.org>
1520
1521 * window.c (Vscroll_preserve_screen_position_commands): New variable
1522 with the default value as the list of Qscroll_down and Qscroll_up.
1523 (window_scroll_pixel_based, window_scroll_line_based): Search the
1524 last command in the list Vscroll_preserve_screen_position_commands
1525 instead of comparing with Qscroll_up and Qscroll_down.
1526
1527 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
1528
1529 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
1530 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
1531 does that.
1532
1533 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
1534 to zero.
1535
1536 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
1537
1538 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
1539
1540 Try to solve the problem of spurious EOF chars in long lines of text
1541 sent to interactive subprocesses.
1542 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
1543 (system_process_attributes): Remove unused var `ttotal'.
1544 * process.c (send_process): Don't bother breaking long line with EOF
1545 chars when talking to ttys any more.
1546 (wait_reading_process_output): Output a warning when called in such
1547 a way that it could block without being interruptible.
1548
1549 Try to detect file modification within the same second.
1550 * buffer.h (struct buffer): New field modtime_size.
1551 * buffer.c (reset_buffer): Initialize it.
1552 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
1553 (Fverify_visited_file_modtime): Check it.
1554 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
1555 (Fset_visited_file_modtime): Set (or clear) it.
1556
1557 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1558
1559 * process.c (status_notify): Remove unused var `ro'.
1560
1561 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
1562
1563 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
1564 more than one visual (Bug#5938).
1565
1566 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
1567
1568 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
1569 Undefine.
1570
1571 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
1572
1573 Remove C_SWITCH_SYSTEM_TEMACS.
1574 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
1575 (malloc, realloc, free): Use emacs, not temacs for conditional
1576 definition.
1577
1578 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
1579 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
1580
1581 Use autoconf, not cpp for some variables.
1582 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
1583 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
1584 (ALL_CFLAGS): Use them as make variables.
1585 (really-lwlib, really-oldXMenu): Do not pass them.
1586
1587 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
1588
1589 * xmenu.c (apply_systemfont_to_dialog): New.
1590 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
1591
1592 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1593
1594 * process.c (exec_sentinel): Preserve current-buffer.
1595
1596 * process.c (read_process_output): Move the save-current-buffer to
1597 apply to both the filter and the non-filter branches.
1598
1599 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
1600
1601 * s/msdos.h (UNEXEC): New definition.
1602
1603 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1604
1605 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
1606 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
1607
1608 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
1609 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
1610 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
1611 TRY_WINDOW_CHECK_MARGINS.
1612
1613 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
1614 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
1615 width only when it is for padding.
1616
1617 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
1618
1619 * xfns.c (Fx_show_tip): Call try_window in a loop until
1620 fonts_changed_p is zero (Bug#2423).
1621
1622 2010-04-08 Eli Zaretskii <eliz@gnu.org>
1623
1624 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
1625 the end of TEXT_AREA. (Bug#5856)
1626
1627 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
1628
1629 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
1630 HAVE_GCONF.
1631
1632 2010-04-08 Eli Zaretskii <eliz@gnu.org>
1633
1634 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
1635 prev.orig_type, for resolving type of NSM. (Bug#5858)
1636
1637 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
1638
1639 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
1640 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
1641 in current_font.
1642 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
1643 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
1644 New functions.
1645 (syms_of_xsettings): Initialize current_font.
1646 defsubr Sfont_get_system_normal_font.
1647
1648 * xsettings.h (Ffont_get_system_normal_font,
1649 xsettings_get_system_normal_font): Declare.
1650
1651 * xfns.c (extern xlwmenu_default_font): Remove.
1652 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
1653 to xlwmenu.c.
1654
1655 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
1656 menu items in UTF-8.
1657
1658 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
1659 (apply_systemfont_to_menu): New function.
1660 (set_frame_menubar, create_and_show_popup_menu): Call
1661 apply_systemfont_to_menu.
1662
1663 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
1664
1665 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
1666 FRAME_LINE_TO_PIXEL_Y.
1667
1668 * xterm.c (x_set_window_size_1): Don't add border_width/height to
1669 pixelwidth/height.
1670
1671 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
1672
1673 Simplify code for HP machines.
1674 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
1675 for GNU_LINUX, not needed.
1676 (UNEXEC, NEED_BSDTTY): Move definitions...
1677 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
1678
1679 * m/iris4d.h (UNEXEC): Move definition ...
1680 * s/irix6-5.h (UNEXEC): ... here.
1681
1682 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
1683
1684 * xfns.c (set_machine_and_pid_properties): New function.
1685 (Fx_create_frame): Call set_machine_and_pid_properties.
1686
1687 2010-04-03 Eli Zaretskii <eliz@gnu.org>
1688
1689 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char): Check
1690 bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
1691 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
1692
1693 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
1694 in this function. (Bug#5703)
1695
1696 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
1697
1698 * nsterm.h: Fix last change.
1699
1700 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
1701
1702 * m/intel386.h (NO_REMAP): Move definition ...
1703 * s/msdos.h (NO_REMAP): ... here.
1704
1705 * m/vax.h (CRT0_DUMMIES): Remove, unused.
1706
1707 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
1708 used on those platforms.
1709
1710 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
1711
1712 Remove extern errno declarations.
1713 * xterm.c:
1714 * xrdb.c:
1715 * w32term.c:
1716 * unexec.c:
1717 * unexaix.c:
1718 * sysdep.c:
1719 * process.c:
1720 * lread.c:
1721 * keyboard.c:
1722 * floatfns.c:
1723 * filelock.c:
1724 * fileio.c:
1725 * emacs.c (main):
1726 * ecrt0.c:
1727 * dispnew.c:
1728 * callproc.c:
1729 * buffer.c: Remove errno extern declarations.
1730 * s/netbsd.h (NEED_ERRNO): Remove.
1731
1732 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
1733
1734 Remove all uses of LIBX11_SYSTEM.
1735 * Makefile.in (LIBX11_SYSTEM): Remove.
1736 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
1737 instead.
1738
1739 2010-04-01 Eli Zaretskii <eliz@gnu.org>
1740
1741 Remove support for DJGPP v1.x (bug#5813).
1742
1743 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
1744 * s/msdos.h:
1745 * unexec.c (make_hdr, copy_text_and_data):
1746 * sysdep.c (wait_for_termination, sys_subshell):
1747 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
1748 (IT_set_terminal_modes, __write, _rename, gethostname)
1749 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
1750 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
1751 the value of __DJGPP__.
1752 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
1753 compatibility code.
1754 * lread.c:
1755 * gmalloc.c (memalign):
1756 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
1757 * emacs.c (main):
1758 * dosfns.c (init_dosfns):
1759 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
1760
1761 2010-04-01 Eli Zaretskii <eliz@gnu.org>
1762
1763 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
1764 string with `cursor' property comes from an `after-string'
1765 overlay. (Bug#5816)
1766
1767 2010-04-01 Glenn Morris <rgm@gnu.org>
1768
1769 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
1770 Define as Makefile variables.
1771 (LIBX): Use above variables rather than directly using autoconf.
1772
1773 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
1774
1775 Clean up BSD_SYSTEM use.
1776 * xterm.c:
1777 * process.c:
1778 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
1779 for including <sys/ioctl.h>.
1780 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
1781 code is only used for MSDOS.
1782
1783 2010-03-31 Juri Linkov <juri@jurta.org>
1784
1785 * image.c: Add `Qextension_data'.
1786 (syms_of_image): Initialize and staticpro `Qextension_data'.
1787 (Fimage_metadata): Rename from `Fimage_extension_data'.
1788 (gif_load): Put GIF extension data to the property
1789 `Qextension_data'.
1790
1791 2010-04-05 Chong Yidong <cyd@stupidchicken.com>
1792
1793 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
1794 terminal frames (Bug#5837).
1795
1796 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1797
1798 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
1799 * nsterm.h: Fix prototype.
1800
1801 2010-03-31 Eli Zaretskii <eliz@gnu.org>
1802
1803 * xdisp.c (highlight_trailing_whitespace): Support highlight of
1804 trailing whitespace in right-to-left rows.
1805
1806 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1807
1808 Get rid of the direct_output optimizations.
1809 * keyboard.c (nonundocount): Remove extern declaration.
1810 (command_loop_1): Remove brittle optimisation for cheap and
1811 common operations.
1812 * xdisp.c (redisplay_internal): Don't bother checking
1813 redisplay_performed_directly_p any more.
1814 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
1815 any more.
1816 * dispnew.c (redisplay_performed_directly_p)
1817 (direct_output_for_insert, direct_output_forward_char):
1818 * dispextern.h (redisplay_performed_directly_p)
1819 (direct_output_for_insert, direct_output_forward_char): Remove.
1820 * cmds.c (nonundocount): Make it static.
1821
1822 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
1823
1824 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
1825
1826 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
1827
1828 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
1829 invisible (Bug#5766).
1830
1831 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
1832
1833 * xdisp.c (x_consider_frame_title, update_window_cursor):
1834 Remove HAVE_NS conditionals.
1835 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
1836
1837 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
1838 filename for the title.
1839 (ns_set_doc_edited): Do nothing if the selected window is a
1840 minibuffer window.
1841
1842 * nsterm.h: Add prototypes for ns_set_name_as_filename and
1843 ns_set_doc_edited.
1844
1845 * nsterm.m: Remove unneeded prototype.
1846
1847 2010-03-31 Glenn Morris <rgm@gnu.org>
1848
1849 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
1850 in the DOC file. (Bug#5336)
1851
1852 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1853
1854 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
1855
1856 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1857
1858 * window.c (keys_of_window): Remove redundant/overridden bindings.
1859
1860 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1861
1862 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
1863 Restore original behavior when the iterator is not bidi_p.
1864
1865 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
1866
1867 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
1868
1869 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1870
1871 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
1872 are outside the range of cached character positions.
1873
1874 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
1875
1876 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
1877
1878 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1879
1880 Initial support for bidirectional editing.
1881
1882 * Makefile.in (obj): Include bidi.o.
1883 (bidi.o): New target.
1884
1885 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
1886 ($(BLD)/bidi.$(O)): New target.
1887
1888 * bidi.c: New file.
1889
1890 * buffer.h (struct buffer): New members bidi_display_reordering
1891 and bidi_paragraph_direction.
1892
1893 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
1894 and bidi_paragraph_direction.
1895 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
1896 and bidi-paragraph-direction.
1897 (Fbuffer_swap_text): Swap the values of
1898 bidi_display_reordering and bidi_paragraph_direction.
1899
1900 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
1901 (bidi_type_t, bidi_dir_t): New types.
1902 (bidi_saved_info, bidi_stack, bidi_it): New structures.
1903 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
1904 prev_stop, base_level_stop, and eol_pos.
1905 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
1906 (IT_STACK_SIZE): Enlarge to 5.
1907 (struct glyph_row): New member reversed_p.
1908 <string_buffer_position>: Update prototype.
1909 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
1910 glyph_row if bidi_it.paragraph_dir == R2L.
1911 (struct glyph): New members resolved_level and bidi_type.
1912
1913 * dispnew.c (direct_output_forward_char): Give up if we need bidi
1914 processing or buffer's direction is right-to-left.
1915 (prepare_desired_row): Preserve the reversed_p flag.
1916 (row_equal_p): Compare the reversed_p attributes as well.
1917
1918 * xdisp.c (init_iterator): Initialize it->bidi_p. Call
1919 bidi_init_it and set it->paragraph_embedding from the current
1920 buffer's value of bidi_paragraph_direction.
1921 (reseat_1): Initialize bidi_it.first_elt.
1922 (set_iterator_to_next, next_element_from_buffer): Use the value of
1923 paragraph_embedding to determine the paragraph direction.
1924 (set_iterator_to_next): Under bidi reordering, call
1925 bidi_get_next_char_visually. Call bidi_paragraph_init if the
1926 new_paragraph flag is set in the bidi iterator.
1927 (next_element_from_buffer): If bidi_it.first_elt is set,
1928 initialize paragraph direction and find the first character to
1929 display in the visual order. If reseated to a middle of a line,
1930 prime the bidi iterator starting at the line's beginning. Handle
1931 the situation where we overstepped stop_charpos due to
1932 non-linearity of the bidi iteration. Likewise for when we back up
1933 beyond the previous stop_charpos. When moving across stop_charpos,
1934 record it in prev_stop.
1935 (display_line): Set row->end and it->start for the next row to the
1936 next character in logical order. Always extend reversed_p rows to
1937 the end of line, even if they end at ZV. Copy the reversed_p flag
1938 to the next glyph row. Keep calling set_cursor_from_row for
1939 bidi-reordered rows even if we already have a possible candidate
1940 for cursor position. Set row_end after all the row's glyphs have
1941 been produced, by looping over the glyphs. Record the position
1942 after EOL in it->eol_pos, and use it to set end_pos of the last
1943 row produced for a continued line.
1944 <Qright_to_left, Qleft_to_right>: New variables.
1945 (syms_of_xdisp): Initialize and staticpro them.
1946 (string_buffer_position_lim): New function.
1947 (string_buffer_position): Most of code moved to
1948 string_buffer_position_lim. Last argument and return value are
1949 now EMACS_INT; all callers changed.
1950 (set_cursor_from_row): Rewritten to support bidirectional text and
1951 reversed glyph rows.
1952 (text_outside_line_unchanged_p, try_window_id): Disable
1953 optimizations if we are reordering bidirectional text and the
1954 paragraph direction can be affected by the change.
1955 (append_glyph, append_composite_glyph)
1956 (produce_image_glyph, append_stretch_glyph): Set the
1957 resolved_level and bidi_type members of each glyph.
1958 (append_glyph): If the glyph row is reversed, prepend the glyph
1959 rather than appending it.
1960 (handle_stop_backwards): New function.
1961 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
1962 (reseat): call handle_stop_backwards to recompute prev_stop and
1963 base_level_stop for the new position.
1964 (handle_invisible_prop): Under bidi iteration, skip invisible text
1965 using bidi_get_next_char_visually. If we are `reseat'ed, init the
1966 paragraph direction. Update IT->prev_stop after skipping
1967 invisible text.
1968 (move_it_in_display_line_to): New variables prev_method
1969 and prev_pos. Compare for strict equality in
1970 BUFFER_POS_REACHED_P.
1971 (try_cursor_movement): Examine all the candidate rows that occlude
1972 point, to return the best match. If rows are bidi-reordered
1973 and point moved backwards, back up to the row that is not a
1974 continuation line, and start looking for a suitable row from
1975 there.
1976
1977 * term.c (append_glyph): Reverse glyphs by pre-pending them,
1978 rather than appending, if the glyph_row's reversed_p flag is set.
1979 Set the resolved_level and bidi_type members of each glyph.
1980
1981 * .gdbinit (pbiditype): New command.
1982 (pgx): Use it to display bidi level and type of the glyph.
1983 (pitx): Display some bidi information about the iterator.
1984 (prowlims, pmtxrows): New commands.
1985
1986 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
1987
1988 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
1989 * s/usg5-4.h (LIBS_DEBUG):
1990 * s/irix6-5.h (C_DEBUG_SWITCH):
1991 * s/gnu-linux.h (LIBS_DEBUG):
1992 * s/darwin.h (LIBS_DEBUG):
1993 * s/bsd-common.h (LIBS_DEBUG):
1994 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
1995 * m/iris4d.h (LIBS_DEBUG):
1996 * m/hp800.h (LIBS_DEBUG): Remove definitions.
1997
1998 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
1999 (LIBS_DEBUG): Remove definition.
2000
2001 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
2002
2003 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
2004 Windows.
2005
2006 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2007
2008 * process.c (Fmake_network_process): Don't call turn_on_atimers around
2009 `connect' (Bug#5723).
2010
2011 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
2012
2013 * process.c (Fmake_network_process): Call `select' for interrupted
2014 `connect' rather than creating new socket (Bug#5173).
2015
2016 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
2017
2018 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
2019
2020 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
2021
2022 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
2023
2024 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2025
2026 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
2027 XLoadQueryFont.
2028
2029 2010-03-24 Kenichi Handa <handa@m17n.org>
2030
2031 * coding.c (decode_coding_ccl): Fix previous change for the
2032 multibyte case.
2033 (encode_coding_ccl): Don't setup ccl program here. Fix for the
2034 case that the output buffer is fullfilled.
2035 (encode_coding): Setup ccl program here.
2036
2037 2010-03-24 Andreas Politz <politza@fh-trier.de> (tiny change)
2038
2039 * editfns.c (Fformat): Account for string precision when computing
2040 field width (Bug#5710).
2041
2042 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
2043
2044 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
2045
2046 Simplify LIBS_MACHINE definitions.
2047 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
2048 * m/iris4d.h (LIBS_MACHINE): Likewise.
2049 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
2050 * s/aix4-2.h (LIBS_SYSTEM): ... here.
2051 * s/netbsd.h: Remove commented out code.
2052
2053 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
2054
2055 Remove dead code dealing with POSIX_SIGNALS.
2056 * atimer.c (set_alarm): Remove dead code, all USG systems define
2057 POSIX_SIGNALS.
2058 * data.c (arith_error): Likewise.
2059 * keyboard.c (input_available_signal, handle_user_signal)
2060 (interrupt_signal): Likewise.
2061 * process.c (sigchld_handler): Likewise.
2062 (create_process): Remove if 0 code. Remove HPUX conditional when
2063 !defined (POSIX_SIGNALS), it cannot be true.
2064 * syssignal.h: Remove USG5_4 and USG conditionals when
2065 !POSIX_SIGNALS, they cannot be true.
2066
2067 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
2068 NO_SOCK_SIGIO, not used anymore.
2069
2070 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
2071
2072 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
2073 support vax on BSDs.
2074
2075 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
2076 * s/aix4-2.h (ORDINARY_LINK): ... here.
2077
2078 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
2079
2080 * Makefile.in (abs_builddir): Define.
2081 (bootstrap_exe): Use it.
2082 (VPATH): Use $(srcdir) instead of @srcdir@.
2083
2084 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2085
2086 * Makefile.in (bootstrap_exe): Use an absolute name.
2087
2088 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2089
2090 Remove support for old GNU/Linux using libc version 5.
2091 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
2092 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
2093
2094 Consolidate redundant definitions in s/bsd-common.h.
2095 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2096 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2097 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
2098 doing it in all files that include this one.
2099 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2100 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2101 (LDAV_SYMBOL, KERNEL_FILE): Remove.
2102 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2103 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2104 (LDAV_SYMBOL, KERNEL_FILE): Remove.
2105 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2106 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2107 (LDAV_SYMBOL, KERNEL_FILE): Remove.
2108
2109 Consolidate redundant definitions.
2110 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
2111 it's undefined in all files that include this one.
2112 (POSIX_SIGNALS): Define here instead of doing it in all files that
2113 include this one.
2114 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
2115 (POSIX_SIGNALS): Do not define.
2116 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
2117 (POSIX_SIGNALS): Do not define.
2118 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
2119 (POSIX_SIGNALS): Do not define.
2120
2121 Remove support for old UNIX System V systems.
2122 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
2123 * s/usg-5-4-2.h: Remove.
2124
2125 Remove support for Solaris on PPC and for old versions.
2126 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
2127 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
2128 that cancel each other.
2129 * s/sol2-3.h:
2130 * s/sol2-4.h:
2131 * s/sol2-5.h: Remove.
2132 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
2133 (NO_REMAP): Remove, unused.
2134 (UNEXEC): Move definition ...
2135 * s/aix4-2.h (UNEXEC): ... here.
2136
2137 * s/openbsd.h: Remove support for non-ELF and for systems that do
2138 not support shared libraries.
2139 * s/netbsd.h:
2140 * s/freebsd.h: Likewise.
2141
2142 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2143
2144 Remove non-working support for lynxos 3.0.
2145 * s/lynxos.h: Remove file.
2146
2147 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
2148 COFF_BSD_SYMBOLS, nothing defines it anymore.
2149
2150 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2151
2152 Remove obsolete uses of HAVE_SHM.
2153 * emacs.c (standard_args):
2154 (Fdump_emacs):
2155 (syms_of_emacs): Remove code depending on HAVE_SHM.
2156
2157 * alloc.c: Remove HAVE_SHM dependent definition.
2158
2159 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
2160
2161 2010-03-18 Glenn Morris <rgm@gnu.org>
2162
2163 * emacs.c (USAGE4): Hard-code bug address.
2164 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
2165 (bug_reporting_address): Remove.
2166 (main): Don't call bug_reporting_address.
2167
2168 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
2169 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
2170
2171 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
2172
2173 * xfns.c (Fx_create_frame):
2174 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
2175 on left.
2176
2177 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
2178
2179 * editfns.c (Fformat): Account for string precision when computing
2180 field width (Bug#5710).
2181
2182 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
2183
2184 * xfns.c (Fx_create_frame): Set default to Qright.
2185
2186 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
2187 all window systems.
2188
2189 2010-03-12 Eli Zaretskii <eliz@gnu.org>
2190
2191 These changes remove termcap.c from the build on Posix platforms.
2192 * Makefile.in (termcapobj): Move termcap.o from here...
2193 (MSDOS_OBJ): ...to here.
2194 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
2195 now identical to when LIBS_TERMCAP is defined.
2196
2197 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
2198
2199 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
2200
2201 * config.in: Regenerated. (See top-level ChangeLog.)
2202
2203 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
2204
2205 * Branch for 23.2.
2206
2207 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
2208
2209 Cleanup setup of gl_state in various parts of the code.
2210 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
2211 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
2212 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
2213 (skip_chars):
2214 * regex.c (regex_compile): Use it.
2215 (re_compile_pattern): Don't set gl_state.current_syntax_table since
2216 it's now set in regex_compile when/if we need it.
2217
2218 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
2219
2220 Make it possible to C-g in a tight bytecode loop again (bug#5680).
2221 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
2222 (QUIT): Use it to consolidate code and remove redundancy.
2223 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
2224
2225 * regex.c (regex_compile): Setup gl_state as well.
2226
2227 * syntax.c (skip_chars): Setup gl_state (bug#3823).
2228 (in_classes): Use CONSP before XCAR/XCDR.
2229
2230 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
2231
2232 * keymap.c (Fwhere_is_internal): Use Fequal to compare
2233 definitions, so that keyboard macros are correctly handled
2234 (Bug#5481).
2235
2236 2010-03-02 Eli Zaretskii <eliz@gnu.org>
2237
2238 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
2239 text that could be relocated inside the call to emacs_mule_char.
2240 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
2241 (CODING_DECODE_CHAR): Add a comment describing its purpose.
2242
2243 2010-03-02 Kenichi Handa <handa@m17n.org>
2244
2245 * character.c (parse_str_as_multibyte): Fix handling of the
2246 multibyte form of raw-bytes.
2247 (str_as_multibyte): Likewise.
2248
2249 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
2250 form of raw-bytes.
2251
2252 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
2253
2254 * charset.c (load_charset_map_from_file)
2255 (load_charset_map_from_vector): Zero out allocated
2256 charset_map_entries before using them.
2257
2258 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
2259
2260 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
2261
2262 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
2263
2264 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
2265 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
2266
2267 2010-02-26 Kenichi Handa <handa@m17n.org>
2268
2269 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
2270
2271 * xdisp.c (reseat_to_string): Fix previous change.
2272
2273 2010-02-26 David Reitter <david.reitter@gmail.com>
2274
2275 * nsfont.m (nsfont_draw): ns_antialias_text should be a
2276 Lisp_Object (Bug#4736).
2277
2278 2010-02-25 Kenichi Handa <handa@m17n.org>
2279
2280 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
2281
2282 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
2283
2284 * xterm.c (XTflash): Move declarations before statements.
2285
2286 * gtkutil.c (xg_get_gdk_display): Remove (unused).
2287 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
2288 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
2289 (xg_create_tool_bar): Remove unused variables.
2290 (x_wm_set_size_hint): Move declarations before statements.
2291 (xg_create_frame_widgets): Remove variable grav.
2292
2293 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
2294
2295 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
2296
2297 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2298
2299 * term.c (fatal): Add a final \n if needed (bug#5596).
2300
2301 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
2302
2303 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
2304
2305 2010-02-18 Glenn Morris <rgm@gnu.org>
2306
2307 * callint.c (Finteractive): Doc fix.
2308
2309 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
2310
2311 * coding.c (record_conversion_result):
2312 Handle CODING_RESULT_INSUFFICIENT_DST.
2313 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
2314 memory allocation error.
2315
2316 2010-02-17 Kenichi Handa <handa@m17n.org>
2317
2318 * coding.c (decode_coding_ccl): Don't setup ccl program here.
2319 Fix for the case that the output buffer is fullfilled.
2320 (decode_coding): Setup ccl program here. Keep looping when the
2321 decoder stopped because the output buffer is
2322 fullfilled (bug#5534).
2323
2324 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
2325
2326 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
2327
2328 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
2329 bug #5571.
2330 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
2331 overdrawn.
2332
2333 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
2334
2335 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
2336 doing_interact here.
2337 (ice_connection_closed): New function.
2338 (x_session_check_input, smc_die_CB, ice_io_error_handler)
2339 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
2340 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
2341 returns I/O error.
2342 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
2343 bug #5512.
2344
2345 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
2346
2347 * nsfont.m (nsfont_open): The system's value for the font descent
2348 is negative, so round it down to avoid clipping.
2349
2350 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
2351
2352 * charset.c (load_charset_map_from_file)
2353 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
2354 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
2355
2356 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
2357
2358 * charset.c (load_charset_map_from_file): Allocate large
2359 charset_map_entries structure on the heap rather than the stack.
2360 (Bug#5526).
2361
2362 2010-01-31 Kenichi Handa <handa@m17n.org>
2363
2364 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
2365 size in NAME is invalid, return -1 (Bug#5396).
2366
2367 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
2368
2369 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
2370 <deactivated@gmail.com> (Bug#3605).
2371
2372 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
2373
2374 * fileio.c (Frename_file): Correctly rename symlinks to
2375 directories (Bug#5496).
2376
2377 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
2378
2379 * nsterm.m (ns_ring_bell): Handle visible bell like X.
2380
2381 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
2382
2383 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
2384
2385 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
2386
2387 * frame.c (DEFAULT_ROWS): Change default to 35.
2388
2389 * xfns.c (x_default_font_parameter): Change default XFT font to
2390 monospace-10 (Bug#3643).
2391
2392 2010-01-29 Eli Zaretskii <eliz@gnu.org>
2393
2394 * w32inevt.c (key_event): Remove unnecessary comparison of
2395 event->uChar.AsciiChar with 128.
2396
2397 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
2398
2399 * fileio.c (Frename_file): Fix last change (Bug#5487).
2400
2401 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
2402
2403 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
2404
2405 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
2406
2407 * xfns.c (Fx_create_frame): Remove window size matching code from
2408 2010-01-15.
2409 (x_get_current_desktop, x_get_desktop_workarea): Remove.
2410
2411 2010-01-27 Jason Rumney <jasonr@gnu.org>
2412
2413 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
2414 (key_event): Use unicode for characters 128 and higher (Bug#4567).
2415
2416 2010-01-27 Kenichi Handa <handa@m17n.org>
2417
2418 * regex.c (analyse_first): Fix setting of fastmap for unibyte
2419 pattern string (Bug#4209).
2420
2421 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
2422
2423 * fileio.c (Frename_file): Call copy-directory and
2424 delete-directory for directories, in order to handle cross-device
2425 renaming (Bug#3353).
2426
2427 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
2428
2429 * xfns.c (Fx_create_frame): If frame height is too big, try
2430 sizes 24 and 10. Bug #3643.
2431
2432 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
2433
2434 Try and fix bug#788, hopefully for real this time.
2435 * keymap.c (shadow_lookup): Add `remap' arg.
2436 (describe_map, describe_vector): Update calls to shadow_lookup.
2437 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
2438 `remapped' so this flag is applicable to `sequence'. Be careful to
2439 perform remapping during shadow_lookup check of remapped_sequences.
2440
2441 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
2442
2443 * image.c (png_load): Use png_sig_cmp instead of the obsolete
2444 png_check_sig, which has been removed in libpng 1.4.
2445
2446 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
2447
2448 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
2449 lacks this header file).
2450
2451 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2452
2453 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
2454 as in Emacs 22.
2455
2456 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2457
2458 * lisp.h (make_pure_string): String pointer arg now points to const.
2459
2460 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
2461 args now point to const.
2462
2463 2010-01-22 Eli Zaretskii <eliz@gnu.org>
2464
2465 * lread.c (Fload): Don't treat files without .elc extension as
2466 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
2467 them. (bug#5303)
2468
2469 2010-01-20 Kenichi Handa <handa@m17n.org>
2470
2471 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
2472 treat the source as actual byte sequence.
2473
2474 2010-01-19 Alan Mackenzie <acm@muc.de>
2475
2476 Fix spurious before-change-functions invocation from (insert ?\n).
2477 * textprop.c (set_text_properties): Rename parameter
2478 `signal_after_change_p' to `coherent_change_p', and make the
2479 invocation of `modify_region' conditional on it.
2480
2481 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
2482
2483 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
2484 for debug purpose.
2485 (syms_of_xsettings): Declare xft-settings.
2486
2487 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
2488
2489 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
2490
2491 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2492
2493 * xterm.c (event_handler_gdk): Block input (Bug#5037).
2494
2495 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
2496
2497 * emacs.c (standard_args): Adjust arg priorities to reflect how
2498 they are processed in startup.el.
2499
2500 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
2501
2502 * Makefile.in (lisp, shortlisp): Update.
2503
2504 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2505
2506 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
2507 code, link the new kboard into all_kboard before running Lisp code,
2508 and protect the new terminal with GCPRO (Bug#5365).
2509 (x_term_init): Remove unused var `atom'.
2510 (x_delete_display, x_delete_terminal): Remove unused var `i'.
2511
2512 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
2513
2514 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
2515 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
2516 to find out usable size of the desktop. Don't make frames larger than
2517 this. Bug #3643.
2518
2519 2010-01-15 Kenichi Handa <handa@m17n.org>
2520
2521 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
2522
2523 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
2524
2525 * nsterm.m (Qnone): Define.
2526
2527 * nsfns.m (Qnone): Move definition to nsterm.m.
2528
2529 2010-01-14 Kenichi Handa <handa@m17n.org>
2530
2531 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
2532 systems.
2533
2534 2010-01-14 Kenichi Handa <handa@m17n.org>
2535
2536 Make auto-composition work on all buffers even if they are
2537 fundamental mode.
2538
2539 * composite.c (Vauto_composition_mode): New variable.
2540 (composition_compute_stop_pos): Check Vauto_composition_mode
2541 instead of Vauto_composition_function.
2542 (composition_adjust_point, Ffind_composition_internal): Likewise.
2543 (syms_of_composite): Declare Lisp variable
2544 "auto-composition-mode" here.
2545
2546 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
2547
2548 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
2549 during call to vendor-specific-keysyms (Bug#5365).
2550
2551 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2552
2553 * keyboard.c (input_available_signal) [SYNC_INPUT]:
2554 Call SIGNAL_THREAD_CHECK (Bug#5333).
2555
2556 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
2557 Call SIGNAL_THREAD_CHECK.
2558
2559 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2560
2561 Try to fix bug#5314. This is probably not the final word, tho.
2562 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
2563 recent-auto-save-p as a side-effect.
2564 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
2565 * buffer.c (Fkill_buffer, reset_buffer):
2566 * editfns.c (Fsubst_char_in_region):
2567 * fileio.c (Finsert_file_contents, Fdo_auto_save)
2568 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
2569
2570 2010-01-13 Kenichi Handa <handa@m17n.org>
2571
2572 Display buffer name, etc. in mode line by composing correctly.
2573
2574 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
2575 STRING is not nil.
2576 (display_mode_element): Adjust for the change of
2577 decode_mode_spec and display_line.
2578 (decode_mode_spec): Change arg MULTIBYTE to STRING.
2579 (display_string): Handle the case that STRING is non-null and
2580 LISP_STRING is not nil.
2581
2582 * xterm.c (x_draw_composite_glyph_string_foreground):
2583 Pay attention to s->face->overstrike.
2584
2585 * composite.c (composition_reseat_it): Don't check PT if STRING is
2586 non nil.
2587
2588 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2589
2590 * keyboard.c (read_char): Don't apply previous change when current
2591 buffer is unchanged by command execution.
2592
2593 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
2594
2595 * keyboard.c (read_char): Return after executing from special map.
2596
2597 2010-01-12 Glenn Morris <rgm@gnu.org>
2598
2599 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
2600 bug-gnu-emacs rather than emacs-pretest-bug.
2601
2602 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
2603
2604 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
2605 initializing the Lisp variables that depend on them.
2606
2607 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2608
2609 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
2610 Clear areas that will not be updated after change of menu bar lines.
2611 Clear the menu bar window's current matrix when the window gets empty.
2612
2613 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2614
2615 * intervals.h, textprop.c (extend_property_ranges): Return value
2616 and args changed. Discard properties that begin at or after the
2617 new end (Bug#5306).
2618
2619 * editfns.c (Fformat): Caller changed.
2620
2621 * nsterm.m (ns_set_default_prefs): Delete function.
2622 (syms_of_nsterm): Initialize ns_command_modifier,
2623 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
2624 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
2625
2626 * xdisp.c (pos_visible_p): Check for invisible text at the correct
2627 position (Bug#4040).
2628
2629 2010-01-09 Eli Zaretskii <eliz@gnu.org>
2630
2631 * editfns.c (Ffloat_time): Doc fix.
2632
2633 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
2634
2635 * xfns.c (Fx_create_frame): Don't create frame larger than display
2636 by default bug#3643.
2637
2638 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2639
2640 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
2641 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
2642 windows above internal border.
2643
2644 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
2645 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
2646 windows above internal border.
2647
2648 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
2649 tool bar windows specially.
2650
2651 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
2652
2653 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
2654 specially.
2655 (XTflash): Take account of menu bar height.
2656
2657 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
2658 specially.
2659
2660 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
2661
2662 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
2663 also be true before we can return early (bug #5339).
2664
2665 2010-01-06 David Reitter <david.reitter@gmail.com>
2666
2667 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
2668 (Fns_display_usable_bounds): Rewrite, computing bounds properly
2669 (Bug#3233).
2670
2671 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
2672
2673 * font.c (font_open_entity): Enable chache and call cached_font_ok
2674 for the driver if defined.
2675 (QCuser_spec): New symbol.
2676 (font_spec_from_name): Save name as user-spec.
2677 (font_load_for_lface): Keep user-spec instead of name.
2678 (font_open_by_name): Save name as user-spec.
2679 (syms_of_font): Initialize QCuser_spec.
2680 (font_clear_prop): Clear name if it exists in font (bug#5157).
2681
2682 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
2683 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
2684 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
2685
2686 * font.h (struct font_driver): Add cached_font_ok.
2687
2688 * xterm.c (x_clear_frame): Queue draw for scroll bars.
2689
2690 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
2691
2692 * xterm.c (x_new_font): Move code for setting rows/cols before
2693 resizing ...
2694 (x_set_window_size): ... to here. Bug #2568.
2695
2696 * gtkutil.c (xg_clear_under_internal_border): New function.
2697 (xg_frame_resized, xg_frame_set_char_size):
2698 Call xg_clear_under_internal_border.
2699 (xg_update_scrollbar_pos): Clear under old scroll bar position.
2700
2701 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
2702
2703 * keyboard.c (read_key_sequence): Catch keyboard switch after
2704 making a new tty frame (Bug#5095).
2705
2706 2010-01-05 Kenichi Handa <handa@m17n.org>
2707
2708 * fontset.c (fontset_find_font): Fix getting the frame pointer.
2709
2710 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
2711
2712 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
2713 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
2714 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
2715
2716 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
2717
2718 * dbusbind.c (xd_add_watch): Improve debug message.
2719 (xd_remove_watch): Improve debug message. If DATA is the session
2720 bus, unset D-Bus session environment.
2721 (Fdbus_init_bus): Pass the bus as argument to
2722 dbus_connection_set_watch_functions. (Bug#5283)
2723
2724 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
2725
2726 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
2727
2728 * lread.c (syms_of_lread): Make it clearer that these are the
2729 names of loaded files (Bug#5068).
2730
2731 * eval.c (run_hook_with_args): Handle the case where the global
2732 value has the obsolete single-function form (Bug#5026).
2733
2734 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
2735
2736 * minibuf.c (Fall_completions): Minor optimization.
2737
2738 2009-12-26 Eli Zaretskii <eliz@gnu.org>
2739
2740 * .gdbinit (pgx): Fix display of composite glyphs.
2741 Display cmp.from and cmp.to as well.
2742 (pitx): Fix last change.
2743
2744 2009-12-25 Kenichi Handa <handa@m17n.org>
2745
2746 * composite.h (composition_adjust_point): Update prototype.
2747
2748 * composite.c (composition_reseat_it): Don't make a composition
2749 spanning over point.
2750 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
2751 composable characters.
2752 (composition_adjust_point): New arg NEW_PT. Callers changed.
2753
2754 * keyboard.c (command_loop_1): Force redisplay if the last point
2755 was within a composition.
2756 (adjust_point_for_property): Don't adjust point for automatic
2757 composition when called after buffer modification.
2758
2759 2009-12-19 Eli Zaretskii <eliz@gnu.org>
2760
2761 * .gdbinit (pitx): Don't use enum names, use their values.
2762 Remove reference to non-existing value GET_FROM_COMPOSITION.
2763 (pgx): Don't use enum names, use their values.
2764 (pitmethod): New helper command.
2765 (pitx): Use it to display iteration method.
2766 (pgrowit): New command.
2767
2768 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
2769
2770 Update dependencies in Makefile.in.
2771
2772 * Makefile.in (alloc.o): Depend on termhooks.h.
2773 (atimer.o): Depend on blockinput.h.
2774 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
2775 and frame.h.
2776 (callint.o): Depend on systime.h, coding.h, and composite.h.
2777 (callproc.o): Depend on buffer.h.
2778 (casefiddle.o): Don't depend on charset.h.
2779 (casetab.o): Depend on character.h.
2780 (ccl.o): Depend on composite.h.
2781 (chartab.o): Depend on ccl.h.
2782 (cm.o): Depend on dispextern.h.
2783 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
2784 (coding.o): Don't depend on $(INTERVALS_H).
2785 (composite.o): Don't depend on dispextern.h explicitly (it's in
2786 $(INTERVALS_H)). Depend on ccl.h.
2787 (data.o): Depend on systime.h, coding.h, composite.h,
2788 dispextern.h, font.h, and ccl.h.
2789 (dired.o): Depend on composite.h.
2790 (dispnew.o): Depend on coding.h. Don't depend explicitly on
2791 composite.h (it's in $(INTERVALS_H)).
2792 (doc.o): Depend on systime.h, coding.h, and composite.h.
2793 (editfns.o): Don't depend explicitly on dispextern.h.
2794 (emacs.o): Depend on frame.h and coding.h.
2795 (eval.o): Depend on coding.h, composite.h, and xterm.h.
2796 (fileio.o): Depend on frame.h and commands.h. Don't depend
2797 explicitly on dispextern.h.
2798 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
2799 composite.h.
2800 (fns.o): Don't depend on termhooks.h.
2801 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
2802 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
2803 coding.h, $(INTERVALS_H), window.h, xterm.h.
2804 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
2805 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
2806 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
2807 fontset.h, ccl.h, and ftfont.h.
2808 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
2809 (gtkutil.o): Depend on dispextern.h and composite.h.
2810 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
2811 termhooks.h, and ccl.h.
2812 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
2813 (intervals.o): Depend on systime.h and coding.h.
2814 (keyboard.o): Depend on composite.h and coding.h.
2815 (keymap.o): Depend on coding.h and frame.h.
2816 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
2817 (macros.o): Depend on systime.h, coding.h, and composite.h.
2818 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
2819 and atimer.h.
2820 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
2821 dispextern.h explicitly.
2822 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
2823 Don't depend explicitly on dispextern.h and composite.h.
2824 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
2825 (regex.o): Don't depend on charset.h.
2826 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
2827 (search.o): Don't depend explicitly on composite.h.
2828 (sound.o): Depend on atimer.h and systime.h.
2829 (syntax.o): Don't depend explicitly on composite.h.
2830 (sysdep.o): Depend on coding.h and composite.h.
2831 (term.o): Depend on xterm.h and buffer.h.
2832 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
2833 (textprop.o): Don't depend on dispextern.h explicitly.
2834 (undo.o): Depend on dispextern.h.
2835 (window.o): Depend on coding.h and termhooks.h. Don't depend on
2836 dispextern.h and composite.h explicitly.
2837 (xdisp.o): Depend on ccl.h.
2838 (xfaces.o): Depend on coding.h and ccl.h.
2839 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
2840 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
2841 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
2842 ftfont.h.
2843 (xgselect.o): New dependency.
2844 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
2845 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
2846 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
2847 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
2848 (xsmfns.o): Depend on frame.h and dispextern.h.
2849 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
2850 sysselect.h.
2851
2852 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
2853
2854 * font.c (Fclear_font_cache): Pass correct cache argument to
2855 font_clear_cache.
2856
2857 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
2858
2859 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
2860 twice.
2861
2862 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
2863
2864 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
2865 calling file-remote-p. Reported by Jim Meyering.
2866
2867 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
2868
2869 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
2870 avoid compiler warnings. (Bug #5217)
2871
2872 2009-12-14 Kenichi Handa <handa@m17n.org>
2873
2874 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
2875 in 8-bit encoding.
2876
2877 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
2878
2879 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
2880 tooltip windows.
2881
2882 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
2883
2884 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
2885 Xatom_net_window_type.
2886
2887 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
2888 Xatom_net_window_type.
2889
2890 * xterm.c (my_log_handler): New function.
2891 (x_term_init): Set my_log_handler as log handler during gtk_init
2892 so we can filter out buggy messages. (Bug #5120).
2893
2894 * xterm.c (xg_scroll_callback): Parameter list changed,
2895 use parameter GtkScrollType to determine scroll/line/page.
2896 Only allow dragging if a button < 4 is grabbed (bug #5177).
2897 (xg_end_scroll_callback): New function.
2898 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
2899 xg_create_scroll_bar.
2900
2901 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
2902 (scroll_end_callback): Remove.
2903 (xg_create_scroll_bar): Add parameter end_callback, bind it to
2904 button-release-event. Replace value-changed event with change-value,
2905 bug #5177,
2906 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
2907 bug #5177.
2908
2909 * gtkutil.h (XG_LAST_SB_DATA): Remove.
2910 (xg_create_scroll_bar): Add GCallback end_callback.
2911
2912 * xftfont.c (QClcdfilter): New variable.
2913 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
2914 (syms_of_xftfont): Initialize QClcdfilter.
2915
2916 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
2917
2918 * xsettings.c (struct xsettings): Add member seen.
2919 (parse_xft_settings): Update member seen with what we have read.
2920 Return non-zero if Xft-settings have been parsed, 0 otherwise.
2921 (apply_xft_settings): Only update Xft settings with what member seen
2922 indicates as new.
2923
2924 2009-12-12 Eli Zaretskii <eliz@gnu.org>
2925
2926 * dispextern.h (struct text_pos): Use EMACS_INT;
2927 (struct glyph): Use EMACS_INT for charpos.
2928 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
2929 region_beg_charpos, region_end_charpos,
2930 redisplay_end_trigger_charpos, and also for
2931 iterator_stack_entry.end_charpos and
2932 iterator_stack_entry.stop_charpos.
2933
2934 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
2935
2936 * gtkutil.c (scroll_end_callback): New function (bug #5177).
2937 (xg_create_scroll_bar): Call scroll_end_callback on button release
2938 event (bug #5177).
2939 (xg_event_is_for_scrollbar): != replaced with ==.
2940
2941 2009-12-12 Kenichi Handa <handa@m17n.org>
2942
2943 * ftfont.c (struct ftfont_info): New member matrix.
2944 (ftfont_open): Setup xftfont_info->matrix.
2945 (MFLTFontFT): New member matrix.
2946 (FLOOR, CEIL, ROUND): New macros.
2947 (ftfont_get_metrics): Handle matrix transformation.
2948 (ftfont_shape_by_flt): New arg matrix. Callers changed.
2949
2950 * xftfont.c (struct xftfont_info): New member matrix.
2951 (xftfont_open): Setup xftfont_info->matrix.
2952
2953 2009-12-10 Kenichi Handa <handa@m17n.org>
2954
2955 * xdisp.c (append_space_for_newline): Consider face-remapping.
2956
2957 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
2958
2959 * xsettings.c: Include "keyboard.h".
2960
2961 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
2962
2963 Fix implicit function declarations.
2964 * cmds.c: Include "frame.h".
2965 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
2966 * frame.h: Move declaration of delete_frame outside of
2967 HAVE_WINDOW_SYSTEM.
2968
2969 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
2970
2971 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
2972
2973 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
2974 GTK builds.
2975
2976 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
2977
2978 * unexelf.c (unexec): Don't search for .data twice.
2979
2980 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
2981
2982 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
2983 if push failed.
2984 (handle_line_prefix): Set avoid_cursor_p here. Check return value
2985 of push_display_prop (Bug#5000).
2986
2987 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
2988 value of font_list_entities (Bug#5085).
2989
2990 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
2991
2992 Fix `string-to-number' to deal consistently with integers and floats.
2993 * lread.c (isfloat_string): New argument ignore_trailing to accept all
2994 trailing characters, not just whitespace.
2995 (read1): Pass new arg 0 to keep old behavior.
2996 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
2997 trailing chars, as it is already done for integers. Doc fixes.
2998 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
2999
3000 2009-12-04 Eli Zaretskii <eliz@gnu.org>
3001
3002 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
3003 Delete unused enumeration value.
3004
3005 2009-12-03 Eli Zaretskii <eliz@gnu.org>
3006
3007 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
3008
3009 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
3010
3011 * process.c (Fmake_network_process): Fix up the tests for
3012 "connectionless socket", so they DTRT for seqpacket sockets as well.
3013
3014 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3015
3016 * process.c (Qseqpacket): New symbol.
3017 (HAVE_SEQPACKET): New macro.
3018 (Fmake_network_process): Accept new :type `seqpacket'.
3019 (init_process): Add `seqpacket' feature when applicable.
3020 (syms_of_process): Initialize Qseqpacket.
3021
3022 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3023
3024 * font.c (font_load_for_lface, font_open_by_name): Don't store name
3025 if entity is Qnil.
3026
3027 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
3028
3029 * print.c (print_preprocess): Preprocess the key_and_value table of
3030 hashtables, even tho they're "hidden" (bug#5082).
3031
3032 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
3033
3034 * frame.c (frame_make_pointer_invisible)
3035 (frame_make_pointer_visible): Declare f before statements.
3036
3037 2009-11-28 Eli Zaretskii <eliz@gnu.org>
3038
3039 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
3040 omitted dependencies on lisp.h.
3041
3042 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
3043
3044 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
3045 is NULL.
3046
3047 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
3048
3049 * frame.c (frame_make_pointer_invisible)
3050 (frame_make_pointer_visible): Just return if there isn't any selected
3051 frame.
3052
3053 * search.c (simple_search): Remove warning by making *p const.
3054
3055 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
3056
3057 * xdisp.c (power_letter): Remove duplicate const.
3058
3059 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
3060
3061 * term.c (delete_tty): Remove check for last terminal (bug#4970).
3062
3063 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
3064 defaults (bug #5025).
3065
3066 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
3067
3068 * insdel.c (adjust_markers_for_delete): Move it in the
3069 right direction! (bug#4803)
3070
3071 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3072
3073 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
3074
3075 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
3076
3077 2009-11-24 Glenn Morris <rgm@gnu.org>
3078
3079 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
3080
3081 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
3082
3083 * Makefile.in: Must create deps for ecrt0.o in its rule.
3084
3085 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
3086 because that is what Gtk+ font dialog understands.
3087
3088 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
3089 of Fcopy_sequence.
3090 (font_open_by_name): Put name given into QCname for font-object returned.
3091
3092 * frame.c (x_set_font): Save original font name as frame parameter
3093 font-parameter.
3094
3095 * xsettings.c (set_default_xft_settings): New function.
3096 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
3097 is found.
3098
3099 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
3100
3101 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
3102 searching backwards through multibyte buffer.
3103
3104 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
3105
3106 * xterm.c: #include xgselect.h.
3107 (x_initialize): Call xgselect_initialize.
3108
3109 * xsettings.c (something_changedCB): C++ comments => C comments.
3110 (init_gconf): Do not deal with any GLib file descriptors, xg_select
3111 does that now.
3112
3113 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
3114 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
3115 (scroll_bar_button_cb): Remove.
3116 (create_menus): C++ comments => C comments. Don't bind grab-notify
3117 event.
3118 (xg_create_scroll_bar): Don't bind button-press-event and
3119 button-release-event.
3120
3121 * process.c: Include xgselect.h if defined (USE_GTK) ||
3122 defined (HAVE_GCONF).
3123 (wait_reading_process_output): Call xg_select for the same condition.
3124
3125 * xgselect.c (xg_select): New function to better integrate with
3126 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
3127
3128 * xgselect.h: New file, declare xg_select, xgselect_initialize.
3129
3130 * Makefile.in (XOBJ): Add xgselect.o.
3131
3132 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
3133
3134 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
3135 Remove ignored second argument. All callers changed.
3136 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
3137 (RE_STRING_CHAR_AND_LENGTH): Likewise.
3138 * xdisp.c (string_char_and_length): Likewise.
3139
3140 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
3141
3142 * xterm.c (x_new_font):
3143 * print.c (print_object):
3144 * cmds.c (Fself_insert_command): Move declarations before statements.
3145
3146 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
3147
3148 * s/cygwin.h: Remove unneeded linker flags.
3149
3150 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
3151
3152 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
3153
3154 * xsettings.h: Declare xsettings_get_system_font.
3155
3156 * xsettings.c (xsettings_get_system_font): New function.
3157 (init_gconf): No use initiating gconf unless we have Xft also.
3158 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
3159 HAVE_GCONF.
3160
3161 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
3162 add a blank entry so it doesn't collapse into nothing.
3163
3164 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3165
3166 * lread.c (Funintern): Comment out last change.
3167
3168 2009-11-19 Richard Stallman <rms@gnu.org>
3169
3170 * lread.c (Funintern): Error if symbol is t or nil.
3171
3172 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3173
3174 * insdel.c (make_gap_larger): Don't make as many assumptions about the
3175 representation of Lisp integers.
3176 Reported by MJ Chan <mjchan.inbox@gmail.com>.
3177
3178 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
3179
3180 * lisp.h: Remove declaration of Ffont_get_system_font.
3181 * xfns.c: Move include of "xsettings.h".
3182 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
3183
3184 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
3185
3186 * xsettings.c (something_changedCB, Ffont_get_system_font):
3187 Check use_system_font.
3188 (syms_of_xsettings): DEFVAR font-use-system-font.
3189
3190 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
3191
3192 * xfns.c (x_default_font_parameter): Remove dead assignment.
3193
3194 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
3195
3196 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
3197
3198 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
3199 not have FC_LCD_*. #define them if not there.
3200
3201 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
3202
3203 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
3204
3205 * xterm.c (handle_one_xevent): Call xft_settings_event for
3206 ClientMessage, PropertyNotify and DestroyNotify.
3207 (x_term_init): If we have XFT, get DPI from Xft.dpi.
3208 Call xsettings_initialize.
3209
3210 * xftfont.c (xftfont_fix_match): New function.
3211 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
3212 Call xftfont_fix_match after XftFontMatch.
3213
3214 * xfont.c (xfont_driver): Initialize all members.
3215
3216 * xfns.c (x_default_font_parameter):
3217 Try font from Ffont_get_system_font.
3218 Do not get font from x_default_parameter if we got one from
3219 Ffont_get_system_font.
3220 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
3221
3222 * w32font.c (w32font_driver): Initialize all members.
3223
3224 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
3225
3226 * lisp.h: Declare syms_of_xsettings.
3227
3228 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
3229 Handle CONFIG_CHANGED_EVENT.
3230
3231 * ftfont.c (ftfont_filter_properties): New function.
3232
3233 * frame.c (x_set_font): Remove unused variable lval.
3234
3235 * font.h (struct font_driver): Add filter_properties.
3236
3237 * font.c (font_put_extra): Don't return if val is nil, it means
3238 boolean option is off.
3239 (font_parse_fcname): Collect all extra properties in extra_props
3240 and call filter_properties for all drivers with extra_props and
3241 font as parameter.
3242 (font_open_entity): Do not use cache, it does not pick up new
3243 fontconfig settings like hinting.
3244 (font_load_for_lface): If spec had a name in it, store it in entity.
3245
3246 * emacs.c (main): Call syms_of_xsettings.
3247
3248 * config.in: HAVE_GCONF is new.
3249
3250 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
3251 xsettings.o is new.
3252
3253 2009-11-17 Kenichi Handa <handa@m17n.org>
3254
3255 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
3256 back to the default font in case that no suitable font is found.
3257
3258 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3259
3260 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
3261 Suggested by Chad Brown <yandros@mit.edu>.
3262 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
3263
3264 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
3265
3266 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
3267
3268 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
3269
3270 * Makefile.in: Ignore errors from mkdir when creating deps directory.
3271
3272 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
3273
3274 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
3275 has a parent.
3276
3277 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
3278 dependency files in deps/. Include those files into Makefile.
3279
3280 * config.in: Generated (AUTO_DEPEND).
3281
3282 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
3283
3284 * dbusbind.c (Vdbus_registered_objects_table): Rename from
3285 Vdbus_registered_functions_table, because it contains also
3286 properties. Fix docstring.
3287 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
3288
3289 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3290
3291 * alloc.c (mark_object): Don't reprocess marked strings.
3292 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
3293 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
3294
3295 2009-11-13 Kenichi Handa <handa@m17n.org>
3296
3297 * category.c (word_boundary_p): Adjust for the change of the
3298 semantics of Vword_combining_categories.
3299 (Vword_combining_categories): Describe the slight change of the
3300 semantics.
3301
3302 2009-11-13 Eli Zaretskii <eliz@gnu.org>
3303
3304 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
3305
3306 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
3307
3308 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
3309
3310 * xdisp.c (syms_of_xdisp): Fix typo in last change.
3311
3312 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
3313
3314 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
3315
3316 2009-11-11 David Reitter <david.reitter@gmail.com>
3317
3318 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
3319 variables to fix 2009-11-09 change.
3320
3321 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
3322
3323 * process.c (ifflag_def): Make flag_sym constant.
3324 (Fnetwork_interface_info): Use a constant pointer.
3325 (ifflag_table):
3326 * xfns.c (cursor_bits):
3327 * xdisp.c (power_letter):
3328 * termcap.c (speeds, esctab):
3329 * sysdep.c (baud_convert):
3330 * keyboard.c (lispy_accent_codes, modifier_names):
3331 * image.c (xbm_format, xpm_format, pbm_format, png_format)
3332 (jpeg_format, tiff_format, gif_format, svg_format)
3333 (interlace_start, interlace_increment, gs_format):
3334 * gtkutil.c (separator_names):
3335 * fringe.c (swap_nibble):
3336 * fns.c (base64_value_to_char, base64_char_to_value):
3337 * fileio.c (make_temp_name_tbl):
3338 * coding.c (suffixes): Make constant.
3339
3340 * frame.c (make_initial_frame):
3341 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
3342 build_string.
3343 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
3344
3345 * s/freebsd.h:
3346 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
3347
3348 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
3349 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
3350
3351 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
3352 * xterm.c (syms_of_xterm):
3353 * xfaces.c (syms_of_xfaces):
3354 * xdisp.c (syms_of_xdisp):
3355 * lread.c (syms_of_lread):
3356 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
3357 build_string.
3358
3359 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
3360
3361 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3362
3363 * fns.c (Fplist_get): Merge the active and the commented out code.
3364
3365 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
3366
3367 * keyboard.h: Declare timer_check.
3368
3369 * keyboard.c (timer_check_2): New function that does what the old
3370 timer_check did.
3371 (timer_check): Call timer_check_2 until -1 or a non-zero time is
3372 returned, i.e. don't return -1 with timers pending.
3373
3374 * process.c: Remove extern declaration of timer_check.
3375
3376 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
3377 even if timer_check returned -1.
3378
3379 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
3380 xg_dialog_data.
3381 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
3382 the event loop.
3383 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
3384 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
3385 Destroy the dialog after xg_dialog_run.
3386
3387 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3388
3389 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
3390
3391 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
3392
3393 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
3394
3395 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
3396
3397 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
3398
3399 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3400
3401 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
3402 w32menu.c, and nsmenu.m.
3403 Simplify the obsolete case where position is nil.
3404 (cleanup_popup_menu): New function, moved from nsmenu.m.
3405 (struct skp): Remove slot `notreal'.
3406 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
3407 adjust callers.
3408 (single_menu_item): Adjust call to parse_menu_item.
3409 (syms_of_menu): Defsubr x-popup-menu.
3410 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
3411 (keymap_panes): Don't export any more.
3412 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
3413 (xmenu_show): Declare.
3414 * keyboard.c (parse_menu_item): Remove arg `notreal'.
3415 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
3416 * keyboard.h (parse_menu_item): Update declaration.
3417 * xmenu.c (Fx_popup_menu): Remove.
3418 (syms_of_xmenu): Don't defsubr x-popup-menu.
3419 * w32menu.c (Fx_popup_menu): Remove.
3420 (syms_of_w32menu): Don't defsubr x-popup-menu.
3421 * nsmenu.m (cleanup_popup_menu): Remove.
3422 (ns_menu_show): Rename from ns_popup_menu and remove all the code
3423 moved to menu.c's Fx_popup_menu.
3424 (Fx_popup_menu): Remove.
3425 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
3426 menu_items (it's done in menu.c already).
3427
3428 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3429
3430 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
3431 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
3432
3433 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
3434
3435 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
3436 xmenu_show. Hide any tooltip before opening a menu.
3437 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
3438 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
3439
3440 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
3441
3442 Let integers use up 2 tags to give them one extra bit and thus double
3443 their range.
3444 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
3445 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
3446 New macros.
3447 (enum Lisp_Type): Use them. Give explicit values.
3448 (Lisp_Type_Limit): Remove.
3449 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
3450 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
3451 Pay attention to USE_2_TAGS_FOR_INTS.
3452 (INTEGERP): Use LISP_INT_TAG_P.
3453 * fns.c (internal_equal): Simplify the default case.
3454 (sxhash): Use case_Lisp_Int.
3455 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
3456 any more.
3457 (Ftype_of): Use case_Lisp_Int.
3458 (store_symval_forwarding): Take into account the fact that Ints can
3459 now have more than one tag.
3460 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
3461 buffer_slot_type_mismatch):
3462 * xfaces.c (face_attr_equal_p):
3463 * print.c (print_object):
3464 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
3465 Use case_Lisp_Int.
3466
3467 2009-11-06 Eli Zaretskii <eliz@gnu.org>
3468
3469 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
3470
3471 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
3472 warning.
3473
3474 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
3475
3476 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
3477
3478 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
3479
3480 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
3481 ButtonPressRelease and MotionNotify (bug#4870).
3482
3483 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
3484
3485 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
3486
3487 * xterm.c (syms_of_xterm):
3488 * xselect.c (syms_of_xselect):
3489 * xmenu.c (syms_of_xmenu):
3490 * xfns.c (syms_of_xfns):
3491 * xfaces.c (syms_of_xfaces):
3492 * xdisp.c (syms_of_xdisp):
3493 * window.c (syms_of_window):
3494 * w32fns.c (syms_of_w32fns):
3495 * undo.c (syms_of_undo):
3496 * textprop.c (syms_of_textprop):
3497 * terminal.c (syms_of_terminal):
3498 * syntax.c (syms_of_syntax):
3499 * sound.c (syms_of_sound):
3500 * search.c (syms_of_search):
3501 * print.c (syms_of_print):
3502 * minibuf.c (syms_of_minibuf):
3503 * macros.c (syms_of_macros):
3504 * keymap.c (syms_of_keymap, initial_define_key)
3505 (initial_define_lispy_key):
3506 * keyboard.c (syms_of_keyboard):
3507 * insdel.c (syms_of_insdel):
3508 * image.c (syms_of_image):
3509 * fringe.c (syms_of_fringe):
3510 * frame.c (syms_of_frame):
3511 * fontset.c (syms_of_fontset):
3512 * fns.c (syms_of_fns):
3513 * fns.c (syms_of_fns):
3514 * fileio.c (syms_of_fileio):
3515 * fileio.c (syms_of_fileio):
3516 * eval.c (syms_of_eval):
3517 * doc.c (syms_of_doc):
3518 * dispnew.c (syms_of_display):
3519 * dired.c (syms_of_dired):
3520 * dbusbind.c (syms_of_dbusbind):
3521 * data.c (syms_of_data):
3522 * composite.c (syms_of_composite):
3523 * coding.c (syms_of_coding):
3524 * cmds.c (syms_of_cmds):
3525 * charset.c (define_charset_internal, syms_of_character):
3526 * ccl.c (syms_of_ccl):
3527 * category.c (syms_of_category, init_category_once):
3528 * casetab.c (syms_of_casetab):
3529 * casefiddle.c (syms_of_casefiddle):
3530 * callint.c (syms_of_callint):
3531 * bytecode.c (syms_of_bytecode):
3532 * buffer.c (keys_of_buffer, syms_of_buffer):
3533 * alloc.c (syms_of_alloc):
3534 * process.c (syms_of_process, init_process):
3535 * lread.c (syms_of_lread, init_obarray):
3536 * font.c (build_style_table):
3537 * emacs.c (syms_of_emacs, main): Replace calls to intern with
3538 intern_c_string, calls to make_pure_string with
3539 make_pure_c_string. Use pure_cons instead of Fcons.
3540
3541 * process.c (socket_options): Make it const.
3542 (set_socket_option, init_process): Use a const pointer.
3543
3544 * lread.c (intern_c_string): New function.
3545 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
3546 (defvar_int): Uset it. Make the name const char*.
3547
3548 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
3549 (defvar_int): Update prototypes.
3550 (DEFUN, EXFUN): Support for prototypes is now required.
3551 (intern_c_string): New prototype.
3552 (struct Lisp_Subr): Make symbol_name constant.
3553
3554 * font.c (struct table_entry): Remove unused member. Make NAMES
3555 constant.
3556 (weight_table, slant_table, width_table): Make constant.
3557
3558 * emacs.c (struct standard_args): Make name and longname constant.
3559
3560 * character.h (DEFSYM): Use intern_c_string.
3561
3562 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
3563
3564 * alloc.c (make_pure_c_string): New function.
3565
3566 * eval.c (Fautoload): Purecopy all arguments.
3567
3568 2009-11-05 Kenichi Handa <handa@m17n.org>
3569
3570 * fileio.c (Finsert_file_contents): Be sure set coding-system of
3571 the buffer in case of replace.
3572
3573 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
3574
3575 * puresize.h (BASE_PURESIZE): Increase to 1620000.
3576
3577 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
3578
3579 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
3580 when applicable (bug#4851).
3581
3582 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
3583 (P_): Support for prototypes is now required.
3584
3585 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
3586
3587 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
3588 (Bug#4827).
3589
3590 2009-10-30 Eli Zaretskii <eliz@gnu.org>
3591
3592 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
3593
3594 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
3595
3596 * puresize.h (BASE_PURESIZE): Increase to 1470000.
3597
3598 * lread.c (Fload): Purecopy the file name when building
3599 Vpreloaded_file_list.
3600
3601 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
3602
3603 * w32fns.c (syms_of_w32fns): Change default value of
3604 w32-scroll-lock-modifier to nil. (Bug#2827)
3605
3606 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
3607
3608 * minibuf.c (Fall_completions): Fix typos in docstring.
3609
3610 2009-10-26 Andreas Schwab <schwab@redhat.com>
3611
3612 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
3613
3614 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
3615
3616 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
3617 For delta < 0, skip check that only makes sense when the mini-window
3618 is going to be enlarged. (Bug#4534)
3619
3620 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
3621
3622 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
3623 string in menu maps (Bug#4471).
3624
3625 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
3626
3627 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
3628 FRAME_NS_VIEW on terminal frames (Bug#4765).
3629
3630 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
3631
3632 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
3633 DBUS_TYPE_UINTnn separately to get proper sign extension.
3634
3635 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
3636 can properly handle unsigned types.
3637 (make_uid, make_gid): Remove.
3638
3639 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
3640 types again.
3641
3642 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
3643 (system_process_attributes): Likewise.
3644
3645 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
3646
3647 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
3648
3649 * eval.c (Fautoload): Purecopy the filename. Simplify.
3650
3651 * category.c (Fdefine_category): Purecopy docstring.
3652
3653 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
3654
3655 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
3656
3657 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
3658
3659 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
3660
3661 * window.c (Fwindow_edges, Fwindow_pixel_edges)
3662 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
3663 (Bug#4775).
3664
3665 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3666
3667 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
3668 (init_fileio_once):
3669 * lisp.h (init_fileio_once): Remove.
3670 * emacs.c (main): Don't call init_fileio_once.
3671
3672 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
3673
3674 * puresize.h (BASE_PURESIZE): Increase to 1430000.
3675
3676 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
3677
3678 * doprnt.c (doprnt): Fix overflow check.
3679
3680 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
3681
3682 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
3683
3684 * xterm.h (x_wait_for_event): Declare it.
3685
3686 * xterm.c (pending_event_wait): New variable.
3687 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
3688 see pending_event_wait.eventtype.
3689 (handle_one_xevent): Don't change gravity when parent changes.
3690 (x_new_font): Call change_frame_size with new rows/columns before we
3691 try to resize the frame.
3692 (x_wait_for_event): New function.
3693 (x_set_window_size_1): Don't change gravity unless change_gravity
3694 is set.
3695 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
3696 don't change frame size, instead wait for the ConfigureNotify.
3697 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
3698 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
3699 (x_initialize): Initialize pending_event_wait.
3700
3701 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
3702 size.
3703
3704 * widget.c (EmacsFrameSetValues): Add comment.
3705 (EmacsFrameSetCharSize): Just call x_set_window_size.
3706
3707 * gtkutil.c (xg_frame_set_char_size): Flush events and call
3708 x_wait_for_event.
3709 (flush_and_sync): Remove again.
3710 (xg_get_font_name): Suggest monospace if no previous font is known.
3711
3712 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
3713
3714 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
3715 8th bit, since that only made sense in the ASCII world (bug#4751).
3716
3717 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3718
3719 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
3720 processing pending events when event is filtered for input method.
3721 (Bug#3681)
3722
3723 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
3724
3725 * fns.c: Add #endif accidentally removed in previous change.
3726
3727 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
3728
3729 * fns.c: Remove code for unsupported system: MAC_OS.
3730 * image.c: Likewise. Include setjmp.h.
3731
3732 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
3733
3734 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
3735 pixel -1 (bug #4742).
3736
3737 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
3738
3739 * process.c (create_pty): Remove conditionals for no longer
3740 supported systems: UNIPLUS and RTU.
3741
3742 * xterm.c:
3743 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
3744
3745 * alloc.c: Do not define struct catchtag.
3746 * eval.c: Move struct catchtag definition ...
3747 * lisp.h: ... here.
3748
3749 * image.c: Move png.h #include earlier to avoid warnings.
3750
3751 * xterm.c:
3752 * xsmfns.c:
3753 * xselect.c:
3754 * xrdb.c:
3755 * xmenu.c:
3756 * xftfont.c:
3757 * xfont.c:
3758 * xfns.c:
3759 * xfaces.c:
3760 * xdisp.c:
3761 * window.c:
3762 * widget.c:
3763 * w32xfns.c:
3764 * w32uniscribe.c:
3765 * w32term.c:
3766 * w32select.c:
3767 * w32reg.c:
3768 * w32proc.c:
3769 * w32menu.c:
3770 * w32inevt.c:
3771 * w32heap.c:
3772 * w32font.c:
3773 * w32fns.c:
3774 * w32console.c:
3775 * w32.c:
3776 * w16select.c:
3777 * vm-limit.c:
3778 * unexsol.c:
3779 * unexec.c:
3780 * unexcw.c:
3781 * unexaix.c:
3782 * undo.c:
3783 * tparam.c:
3784 * textprop.c:
3785 * terminfo.c:
3786 * terminal.c:
3787 * termcap.c:
3788 * term.c:
3789 * syntax.c:
3790 * sound.c:
3791 * sheap.c:
3792 * search.c:
3793 * scroll.c:
3794 * region-cache.c:
3795 * regex.c:
3796 * ralloc.c:
3797 * process.c:
3798 * print.c:
3799 * nsterm.m:
3800 * nsselect.m:
3801 * nsmenu.m:
3802 * nsimage.m:
3803 * nsfont.m:
3804 * nsfns.m:
3805 * msdos.c:
3806 * minibuf.c:
3807 * menu.c:
3808 * marker.c:
3809 * macros.c:
3810 * keymap.c:
3811 * keyboard.c:
3812 * intervals.c:
3813 * insdel.c:
3814 * indent.c:
3815 * gtkutil.c:
3816 * ftxfont.c:
3817 * ftfont.c:
3818 * fringe.c:
3819 * frame.c:
3820 * fontset.c:
3821 * font.c:
3822 * fns.c:
3823 * floatfns.c:
3824 * filelock.c:
3825 * fileio.c:
3826 * emacs.c:
3827 * editfns.c:
3828 * dosfns.c:
3829 * doprnt.c:
3830 * doc.c:
3831 * dispnew.c:
3832 * dired.c:
3833 * dbusbind.c:
3834 * data.c:
3835 * composite.c:
3836 * coding.c:
3837 * cmds.c:
3838 * cm.c:
3839 * chartab.c:
3840 * charset.c:
3841 * character.c:
3842 * ccl.c:
3843 * category.c:
3844 * casetab.c:
3845 * casefiddle.c:
3846 * callproc.c:
3847 * callint.c:
3848 * bytecode.c:
3849 * buffer.c:
3850 * atimer.c: Include setjmp.h. (Bug#4643)
3851
3852 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
3853
3854 Remove leftover table unibyte_to_multibyte_table.
3855 * character.c (unibyte_to_multibyte_table): Remove.
3856 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
3857 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
3858 * character.h (UNIBYTE_TO_CHAR): New macro.
3859 (MAKE_CHAR_MULTIBYTE): Use it.
3860 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
3861 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
3862 (message_dolog, set_message_1):
3863 * search.c (Freplace_match):
3864 * editfns.c (Fcompare_buffer_substrings):
3865 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
3866 (concat):
3867 * insdel.c (copy_text, count_size_as_multibyte):
3868 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
3869 * term.c (produce_glyphs):
3870 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
3871 * regex.c (RE_CHAR_TO_MULTIBYTE):
3872 * cmds.c (internal_self_insert):
3873 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
3874
3875 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
3876
3877 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
3878
3879 * puresize.h (BASE_PURESIZE): Increase to 1310000.
3880
3881 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
3882
3883 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
3884
3885 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
3886
3887 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
3888 still needed under Tiger.
3889
3890 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
3891
3892 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
3893 __Apple__.
3894
3895 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
3896
3897 2009-10-15 Kenichi Handa <handa@m17n.org>
3898
3899 * print.c (print_object): Escape a symbol like "2E10" too.
3900
3901 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
3902
3903 Cleanups and changes for 64-bit compile under Snow Leopard.
3904 Based on suggestions by Erik Charlebois.
3905
3906 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
3907
3908 * nsfont.m (ns_char_width): Replace deprecated call.
3909 (ns_findfonts, nsfont_list_family): Use long format in printf, and
3910 cast argument.
3911 (nsfont_open): Use ns_char_width() everywhere.
3912 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
3913
3914 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
3915
3916 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
3917 where appropriate.
3918
3919 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
3920 where appropriate.
3921 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
3922 Use stringWithUTF8String.
3923 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
3924
3925 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
3926 Add formal protocol mention to inheritance.
3927 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
3928
3929 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
3930 Fix printf format.
3931 (ns_query_color): Use CGFloat where appropriate.
3932 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
3933 (EmacsScroller-mouseDown:): Use long format in printf, and cast
3934 argument.
3935
3936 * config.in (NS_HAVE_NSINTEGER): Drop.
3937
3938 * dbusbind.c (dbus-method-return-internal)
3939 (dbus-method-error-internal): Use long format in printf, and cast
3940 argument.
3941
3942 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
3943 in printf, and cast argument.
3944
3945 * process.c (list_processes_1): Use long format in printf, and
3946 cast argument.
3947
3948 2009-10-11 Glenn Morris <rgm@gnu.org>
3949
3950 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
3951
3952 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
3953
3954 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
3955 menu bar with a small width so it doesn't enlarge the frame.
3956
3957 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
3958
3959 * fontset.c (Fset_fontset_font): Fix typos in error messages.
3960
3961 2009-10-06 Glenn Morris <rgm@gnu.org>
3962
3963 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
3964 SOME_MACHINE_LISP (this enters indirectly via DOC).
3965
3966 2009-10-05 Eli Zaretskii <eliz@gnu.org>
3967
3968 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
3969
3970 2009-10-04 Eli Zaretskii <eliz@gnu.org>
3971
3972 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
3973 Doc fix.
3974
3975 2009-10-03 Martin Rudalics <rudalics@gmx.at>
3976
3977 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
3978
3979 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
3980
3981 * lisp.h (Qdelete_directory_internal): Remove, because it is not
3982 used anymore outside fileio.c.
3983
3984 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
3985
3986 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
3987
3988 * lisp.h (Qdelete_directory_internal):
3989 Declare, instead of Qdelete_directory.
3990
3991 * w32fns.c (Fsystem_move_file_to_trash): Use it.
3992
3993 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
3994
3995 * eval.c (Fcalled_interactively_p): Add `kind' argument.
3996
3997 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
3998
3999 * fileio.c (Fdelete_directory_internal): Rename from
4000 Fdelete_directory. It is not a command anymore. It has no file
4001 name handler.
4002
4003 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4004
4005 * xdisp.c (get_next_display_element): Use an enum in last change.
4006
4007 2009-09-28 Kenichi Handa <handa@m17n.org>
4008
4009 * xdisp.c (get_next_display_element): Pay attention to
4010 unibyte_display_via_language_environment in handling
4011 Vnobreak_char_display.
4012
4013 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
4014
4015 * nsterm.h (ns_app_name): New extern variable.
4016
4017 * nsterm.m (ns_app_name): New variable.
4018 (ns_term_init): Set and use it.
4019 (ns_term_shutdown): Use it.
4020
4021 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
4022 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
4023
4024 * nsfns.m (ns_set_name_iconic, ns_set_name)
4025 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
4026 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
4027
4028 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
4029 Remove double-casting in client_data comparison.
4030
4031 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4032
4033 * keyboard.c (make_lispy_event): Remember last wheel direction.
4034 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
4035
4036 2009-09-26 Glenn Morris <rgm@gnu.org>
4037
4038 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
4039 internal.elc. Add term/pc-win.elc.
4040 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
4041 term/x-win.elc.
4042 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
4043 term/w32-win.elc.
4044 (NS_SUPPORT): New.
4045 (lisp): Add NS_SUPPORT.
4046 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
4047
4048 2009-09-25 David Reitter <david.reitter@gmail.com>
4049
4050 * nsmenu.m (EmacsMenu-clear): Recognize application menu
4051 on Mac OS X 10.6+ (bug#4513).
4052
4053 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
4054
4055 * frame.c (xrdb_get_resource): Return nil for empty string resources;
4056 some parts of Emacs code (like font selection) don't grok them.
4057 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
4058
4059 2009-09-24 Andreas Schwab <schwab@redhat.com>
4060
4061 * coding.c (decode_coding_iso_2022): Fix operator precedence.
4062
4063 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
4064
4065 * dired.c (Fdirectory_files): Fix typo in docstring.
4066
4067 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
4068
4069 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
4070 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
4071 (EmacsScroller-setPosition:portion:whole:): Remove -display call
4072 under GNUstep.
4073 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
4074
4075 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
4076 glyph advancement.
4077
4078 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
4079
4080 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
4081 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
4082
4083 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
4084 deleted (bug #4492).
4085
4086 * nsfont.m (Vns_reg_to_script): New lisp variable.
4087 (syms_of_nsfont): Declare it.
4088 (ns_registry_to_script): New function.
4089 (ns_get_req_script): Call it.
4090 (ns_findfonts): Don't give up on non-unicode registry.
4091
4092 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
4093
4094 2009-09-20 Tom Tromey <tromey@redhat.com>
4095
4096 * eval.c (find_handler_clause): Make stack-trace-on-error work in
4097 batch mode (bug#4228).
4098
4099 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
4100
4101 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
4102 carefully. (Bug #4339)
4103
4104 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
4105
4106 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
4107
4108 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
4109
4110 * emacs.c (inhibit_x_resources): Update doc string for NS.
4111 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
4112 legacy code for -NXHost. Fix error printf in daemon case.
4113
4114 * nsterm.h (ns_no_defaults): Remove.
4115
4116 * nsterm.m (ns_no_defaults): Remove.
4117 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
4118 (ns_use_qd_smoothing): Remove legacy variable.
4119 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
4120 don't update the NSWindow itself.
4121 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
4122 state detection and store user rect ourselves. (Bug #3581)
4123
4124 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
4125 ns_use_qd_smoothing.
4126
4127 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
4128 platform versions. Drop support for emacs-20-style face specs.
4129 (x-close-connection): Drop PSFlush() under OS X.
4130 (x-focus-frame): Activate the app first. (Bug #4180)
4131
4132 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
4133
4134 * emacs.c (inhibit_x_resources): New variable.
4135 (main) [HAVE_NS]: Don't process --quick command line option.
4136 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
4137
4138 * lisp.h (inhibit_x_resources): Declare it extern.
4139
4140 * w32reg.c (x_get_string_resource):
4141 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
4142
4143 2009-09-17 Eli Zaretskii <eliz@gnu.org>
4144
4145 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
4146 Add lisp/term/internal.elc.
4147
4148 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4149
4150 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
4151 (bug#4461).
4152
4153 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
4154
4155 * puresize.h (BASE_PURESIZE): Increase to 1290000.
4156
4157 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
4158 (OBJECTS_MACHINE): Remove, unused.
4159
4160 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
4161
4162 * frame.c (x_get_resource_string): Remove unused.
4163
4164 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
4165
4166 * xterm.c (x_new_font): Call change_frame_size before calling
4167 x_set_window_size, in case frame size won't change.
4168
4169 * frame.c (x_set_font): Remove dead code.
4170
4171 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
4172
4173 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
4174
4175 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4176
4177 * lread.c (Fload): Don't output a message after loading an obsolete
4178 package any more (done in Lisp now).
4179
4180 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
4181
4182 * fns.c (syms_of_fns): Doc fix (Bug#4227).
4183
4184 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4185
4186 * keymap.c (Fwhere_is_internal): Use nconc2.
4187
4188 2009-09-11 Alan Mackenzie <acm@muc.de>
4189
4190 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
4191 batch mode.
4192
4193 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
4194
4195 * xdisp.c (display_mode_element): Detect cycles.
4196
4197 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4198
4199 * keymap.c (where_is_internal): Don't erroneously return nil right after
4200 filling the cache.
4201 (where_is_internal_1): Fix up typo.
4202
4203 2009-09-11 Glenn Morris <rgm@gnu.org>
4204
4205 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
4206 share a common doc-string.
4207
4208 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4209
4210 * keymap.c (get_keymap): Return the actual keymap symbol rather than
4211 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
4212
4213 * keymap.c (QCadvertised_binding): New constant.
4214 (syms_of_keymap): Initialize it.
4215 (Fwhere_is_internal): Try and use bindings from :advertised-binding
4216 if applicable.
4217
4218 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
4219
4220 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
4221 (parse_menu_item): Streamline since bindings are recomputed all the
4222 time anyway. Don't bother checking Vdefine_key_rebound_commands any
4223 more and don't support lmenu's menu-alias any more either.
4224
4225 * keymap.c (where_is_internal_data): Make noindirect a boolean.
4226 (where_is_internal): Strip it down to only traverse the keymaps.
4227 Move the cache handling from Fwhere_is_internal to here.
4228 (Fwhere_is_internal): Move the handling of remapping and the choice of
4229 the best binding from where_is_internal to here.
4230 Unify the cached/noncached paths, so remapping is also handled
4231 correctly when the cache is used, and so the cache can be used to
4232 speed up remap-handling when applicable.
4233 Give preference to non-remapped bindings.
4234 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
4235 non-remapped bindings.
4236 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
4237 command remapping.
4238
4239 * xdisp.c (display_mode_element): Move list length limit from 50 to
4240 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
4241
4242 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
4243
4244 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
4245
4246 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
4247
4248 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
4249 (Bug#4334)
4250
4251 * keymap.c (where_is_internal): Filter out shadowed remappings.
4252 Assume that where_is_internal returns unshadowed bindings to simplify
4253 the code and get rid of the gotos. Use ASIZE.
4254
4255 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
4256
4257 * xterm.c (x_focus_changed): If we get a focusout and pointer
4258 is invisible, make it visible.
4259
4260 * xterm.h: Remove condition for declaration of
4261 x_*_window_to_frame.
4262
4263 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
4264
4265 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
4266 initial terminal as well.
4267
4268 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
4269
4270 * xterm.h: Rename x_non_menubar_window_to_frame to
4271 x_menubar_window_to_frame.
4272
4273 * xterm.c: Remove declarations also in xterm.h.
4274 (XTmouse_position): Do not return valid positions
4275 for clicks in the menubar and the toolbar for Gtk+.
4276
4277 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
4278 if the widget for the event has the same top level as a frame,
4279 return the frame.
4280 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
4281 internal windows, bug #4122.
4282 (x_non_menubar_window_to_frame): Remove.
4283
4284 2009-09-02 Glenn Morris <rgm@gnu.org>
4285
4286 * buffer.c (default-major-mode): Move most of the doc from here...
4287 (major-mode): ... to here.
4288
4289 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
4290
4291 * process.c (wait_reading_process_output): Keep the descriptor
4292 when pty is used by a non-child process, e.g., in I/O buffer of
4293 GDB this allows inferior to be restarted.
4294
4295 2009-08-29 Eli Zaretskii <eliz@gnu.org>
4296
4297 * xdisp.c (redisplay_internal): Remove redundant test and collapse
4298 both branches into one.
4299
4300 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
4301
4302 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
4303 (main): Use enable-multibyte-characters rather than
4304 default-enable-multibyte-characters. Output a warning message when
4305 running a unibyte session.
4306
4307 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4308
4309 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
4310 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
4311 (copy_data_segment): Also copy __program_vars section.
4312 (copy_dyld_info) [LC_DYLD_INFO]: New function.
4313 (dump_it) [LC_DYLD_INFO]: Use it.
4314
4315 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
4316
4317 2009-08-28 Eli Zaretskii <eliz@gnu.org>
4318
4319 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
4320 $(SRC)/buildobj.h.
4321 (buildobj.h): Renamed from $(SRC)/buildobj.h.
4322 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
4323 $(SRC)/buildobj.h.
4324 (clean): Add buildobj.h.
4325
4326 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
4327
4328 * print.c (print_object): Set escapeflag to 1 when printing
4329 hashtable keys and values.
4330
4331 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
4332
4333 * lread.c (read_integer): Use doubles (and potentially return a float
4334 number) as we do in string-to-number.
4335 (read1): Use strtol to read integers, signal errors on strtol's
4336 overflow and use floats if strtol's output is too large for
4337 Elisp integers.
4338
4339 2009-08-27 Eli Zaretskii <eliz@gnu.org>
4340
4341 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
4342 (make-buildobj-SH): Fix last change.
4343 (SRC): Move to before where it's first used.
4344
4345 2009-08-27 Kenichi Handa <handa@m17n.org>
4346
4347 * process.c (send_process): Use encode_coding_object instead of
4348 encode_coding_string to perform eol-conversion even if the string
4349 is unibyte.
4350
4351 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
4352 character.
4353
4354 * cmds.c (Fself_insert_command): Avoid unnecessay
4355 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
4356
4357 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
4358
4359 * callproc.c (Fcall_process): Remove always true #if.
4360
4361 * lisp.h: Replace #if 0 code for checking with text pointing to
4362 the --enable-checking configure flag.
4363
4364 * emacs.c (main): Mention the --enable-profiling configure flag
4365 instead of using CFLAGS.
4366
4367 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
4368
4369 * Makefile.in (buildobj.h): New target.
4370 (doc.o): Depend on it.
4371 (temacs${EXEEXT}): Don't generate buildobj.lst.
4372 (mostlyclean): Delete buildobj.h, not buildobj.lst.
4373 * makefile.w32-in ($(SRC)/buildobj.h): New target.
4374 ($(BLD)/doc.$(O)): Depend on it.
4375 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
4376 provided by Eli Zaretskii.)
4377 ($(TEMACS)): Don't generate buildobj.lst.
4378 * doc.c: Include buildobj.h.
4379 (buildobj): New static variable.
4380 (Fsnarf_documentation): Use it, instead of opening and reading
4381 buildobj.lst.
4382
4383 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
4384
4385 * dbusbind.c (Fdbus_call_method)
4386 (Fdbus_call_method_asynchronously): Use English numeric format for
4387 timeout values in doc string.
4388
4389 2009-08-25 Kenichi Handa <handa@m17n.org>
4390
4391 * alloc.c (mark_char_table): New function.
4392 (mark_object): Use mark_char_table for a char-table.
4393
4394 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
4395 (CHAR_TABLE_REF): Use it.
4396
4397 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
4398
4399 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
4400 before invoking the newly build emacs to check for load-path
4401 shadowing.
4402
4403 2009-08-22 Glenn Morris <rgm@gnu.org>
4404
4405 * Makefile.in (bootstrap_exe): New variable.
4406 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
4407 Use ${bootstrap_exe}.
4408
4409 2009-08-22 Eli Zaretskii <eliz@gnu.org>
4410
4411 * coding.h (encode_coding_string): Don't encode unibyte strings.
4412 (Bug#4047)
4413
4414 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
4415
4416 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
4417
4418 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
4419 intended as hotfix only.
4420 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
4421
4422 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
4423
4424 * nsterm.m (ns_get_color): Update documentation properly for last
4425 change, and clean up loose ends in the code left by it. Fix
4426 longstanding bug with 16-bit hex parsing, and add support for
4427 yet another X11 format (rgb:r/g/b) for compatibility.
4428 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
4429 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
4430
4431 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
4432
4433 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
4434
4435 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
4436
4437 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
4438 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
4439 (xd_initialize, xd_pending_messages): Check, whether
4440 $DBUS_SESSION_BUS_ADDRESS is set.
4441
4442 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4443
4444 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
4445
4446 * nsterm.m (ns_get_color): Remove incompatible color formats again.
4447
4448 2009-08-20 Glenn Morris <rgm@gnu.org>
4449
4450 * emacs.c (system-type): Doc fix.
4451
4452 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
4453
4454 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
4455 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
4456
4457 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
4458
4459 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
4460 New functions.
4461 (xd_initialize): Revert change from 2009-08-16.
4462
4463 2009-08-18 Kenichi Handa <handa@m17n.org>
4464
4465 * fontset.c (Ffontset_font): If a nil element is found in a
4466 font-group vector, return nil.
4467
4468 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
4469
4470 * process.c (status_notify): Don't perform redisplay.
4471 (Fdelete_process, list_processes_1, process_send_signal):
4472 Expliticly perform redisplay.
4473 (wait_reading_process_output): Always check process status, but
4474 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
4475
4476 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
4477
4478 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
4479 (XFLOAT_INIT): New macro for storing a float value.
4480 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
4481 * fns.c (sxhash): Copy out the value of a float in order to
4482 examine its bytes.
4483 * dbusbind.c (xd_append_arg): Likewise.
4484
4485 * emacs.c (main): Don't call syms_of_data twice.
4486
4487 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
4488
4489 * dbusbind.c (xd_initialize): Add connection file descriptor to
4490 input_wait_mask, in order to let select() detect, whether a new
4491 message has been arrived.
4492 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
4493
4494 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
4495
4496 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
4497 New functions.
4498
4499 * lisp.h (xd_pending_messages): Declare.
4500
4501 * keyboard.c (readable_events): Call xd_pending_messages.
4502
4503 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
4504
4505 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
4506
4507 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
4508
4509 * buffer.c (set_buffer_internal_1)
4510 (swap_out_buffer_local_variables): Check for unbound local
4511 variables (Bug#4138).
4512
4513 2009-08-14 Eli Zaretskii <eliz@gnu.org>
4514
4515 * process.c (create_pty): Fix last change.
4516
4517 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
4518
4519 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
4520 (xbm_load_image): Caller changed.
4521 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
4522
4523 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
4524
4525 * process.c (create_pty): New function.
4526 (Fstart_process): Use it to allow Emacs to just associate a pty
4527 with the buffer. See associated change in gdb-mi.el.
4528 (list_processes_1): Deal with no program name.
4529 (start_process_unwind): Use pid == -2 to mean no process.
4530
4531 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4532
4533 * cmds.c (nonundocount): New global variable.
4534 (keys_of_cmds): Initialize it.
4535 (Fself_insert_command): Use it to combine upto 20 sequential chars
4536 into a single undo entry, just like the Qself_insert_command code in
4537 keyboard.c does.
4538 Call frame_make_pointer_invisible, also like the Qself_insert_command
4539 code in keyboard.c does.
4540 * keyboard.c (command_loop_1): Use the new global nonundocount rather
4541 than its own local replacement for it.
4542
4543 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
4544
4545 * fns.c (concat): Don't re-set string length to its current value.
4546
4547 * coding.h (decode_coding_string, encode_coding_string):
4548 Use SBYTES macro.
4549
4550 * doprnt.c (doprnt_lisp): Delete unused function.
4551 (doprnt): Merge with doprnt1, discarding lispstrings code.
4552 * lisp.h (doprnt_lisp): Don't declare.
4553
4554 2009-08-07 Juri Linkov <juri@jurta.org>
4555
4556 * puresize.h (BASE_PURESIZE): Increase to 1270000.
4557
4558 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
4559
4560 * print.c (syms_of_print): Undo previous change.
4561
4562 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
4563
4564 * lread.c (read1, syms_of_lread): Read hashtables back from the
4565 readable format.
4566
4567 * print.c (print_preprocess, print_object): Print hashtables fully
4568 and readably.
4569 (syms_of_print): Provide 'hashtable-print-readable.
4570
4571 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
4572
4573 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
4574 no family set.
4575 (nsfont_open): Handle case when entity has no family.
4576
4577 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
4578
4579 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
4580 element, not a list, for match case.
4581
4582 2009-07-28 Kenichi Handa <handa@m17n.org>
4583
4584 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
4585 rigidly.
4586
4587 * xfont.c (xfont_list_pattern): Don't ignore the return value of
4588 font_parse_xlfd. Check font properties more rigidly.
4589
4590 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
4591
4592 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
4593 bsd-common.h.
4594
4595 2009-07-27 Kenichi Handa <handa@m17n.org>
4596
4597 * xfaces.c (face_with_height): Call font_clear_prop.
4598
4599 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
4600
4601 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
4602
4603 * xterm.c (x_term_init): Use Qx.
4604
4605 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
4606
4607 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
4608 (ns_get_color): Revert 2009-07-16 change.
4609
4610 2009-07-25 Eli Zaretskii <eliz@gnu.org>
4611
4612 * lread.c (syms_of_lread) <force_load_messages>: New variable.
4613 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
4614
4615 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
4616
4617 * coding.h (decode_coding_string, encode_coding_string):
4618 Use SCHARS macro.
4619
4620 * lread.c: Rewrite 2009-07-21 changes.
4621 (load_depth): Delete.
4622 (Qload_in_progress): New variable.
4623 (load_unwind): Don't reference load_depth or load_in_progress.
4624 (Fload): Likewise; specbind Qload_in_progress instead.
4625 (init_lread): Don't initialize load_depth.
4626 (syms_of_lread): Initialize and protect Qload_in_progress.
4627
4628 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
4629
4630 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
4631
4632 2009-07-23 Yavor Doganov <yavor@gnu.org>
4633
4634 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
4635
4636 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
4637
4638 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
4639 Bugs 3792, 3720, 2402.
4640 (ns_lookup_indexed_color): Check for bad index.
4641 (ns_index_color): Init unused slot to 0.
4642 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
4643 Bug 3714, possibly 3082.
4644
4645 2009-07-22 Jason Rumney <jasonr@gnu.org>
4646
4647 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
4648 Position IME window at cursor (Bug#2570).
4649 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
4650 (globals_of_w32fns): Dynamically load functions required above.
4651
4652 * w32term.c (w32_draw_window_cursor): Send message to reposition
4653 any IME window.
4654
4655 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
4656
4657 * fileio.c: Revert 2009-07-16 changes.
4658 (Vauto_save_include_big_deletions): New variable.
4659 (Fdo_auto_save): Disable auto-save only if
4660 auto-save-include-big-deletions is nil.
4661
4662 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
4663
4664 * xdisp.c (move_it_to): For continued lines ending in a tab, take
4665 the overflowed pixels into account (Bug#3879).
4666
4667 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
4668
4669 * lread.c (load_depth): New variable.
4670 (Fload, load_unwind, init_lread): Set it to the load recursion
4671 depth; set load_in_progress as a simple boolean based on the
4672 current load_depth. (Bug#3892)
4673
4674 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
4675
4676 * nsfont.m (ns_has_attribute): Remove.
4677 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
4678
4679 2009-07-18 Juri Linkov <juri@jurta.org>
4680
4681 * process.c (Fset_process_query_on_exit_flag): Mention killing
4682 a buffer in docstring.
4683
4684 2009-07-17 Kenichi Handa <handa@m17n.org>
4685
4686 * casetab.c (shuffle): Fix the logic of setting up the cycle.
4687
4688 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4689
4690 * nsfns.m (Fns_set_alpha): Remove function.
4691 (syms_of_nsfns): Don't defsubr it.
4692
4693 * nsterm.m (ns_get_color): Remove incompatible color formats.
4694 (ns_color_to_lisp): Generate #rrggbb color format string.
4695
4696 2009-07-16 Richard Stallman <rms@gnu.org>
4697
4698 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
4699 (Fset_buffer_auto_saved): Handle save_length = -2.
4700
4701 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
4702
4703 * xterm.c (Qx_gtk_map_stock): New var.
4704
4705 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
4706 of calling intern each time.
4707
4708 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4709
4710 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
4711 does tiling.
4712
4713 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
4714
4715 2009-07-14 Kenichi Handa <handa@m17n.org>
4716
4717 * font.c (font_vconcat_entity_vectors): New function.
4718 (struct font_sort_data): New member font_driver_preference.
4719 (font_compare): Check font_driver_preference.
4720 (font_sort_entities): The format of the first argument changed.
4721 (font_delete_unmatched): Likewise.
4722 (font_list_entities): The return type changed.
4723 (font_select_entity): The format of the second argument changed.
4724 (font_find_for_lface): Adjuste for the above changes.
4725 Don't suppress the checking of C even if the repertory supports it.
4726 (Flist_fonts): Adjust for the above changes.
4727
4728 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
4729 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
4730 Reject a font who has adstyle property that is different from a
4731 langname derived from registry property.
4732 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
4733
4734 2009-07-13 Eli Zaretskii <eliz@gnu.org>
4735
4736 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
4737 local copy of dirfilename.
4738
4739 2009-07-13 Kenichi Handa <handa@m17n.org>
4740
4741 * chartab.c (sub_char_table_ref_and_range): Fix the range check
4742 against max_char.
4743
4744 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
4745 calling XSYMBOL (sym).
4746
4747 2009-07-11 Eli Zaretskii <eliz@gnu.org>
4748
4749 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
4750 New function.
4751 (directory_files_internal) [WINDOWSNT]:
4752 Bind w32-get-true-file-attributes to either t or nil, depending whether
4753 the filesystem of the directory is fast or slow.
4754
4755 * w32.c (logon_network_drive): Don't assume PATH is an absolute
4756 file name.
4757 (is_slow_fs): New function.
4758 (stat): Use it to determine whether to issue more system calls to
4759 get accurate file attributes, when w32-get-true-file-attributes is
4760 `local'.
4761
4762 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
4763
4764 * xfns.c (Fx_select_font): Remember last font selected in
4765 x_last_font_name and use that the next time. Also try the frame
4766 parameter font-parameter as default to the font dialog.
4767
4768 2009-07-10 Kenichi Handa <handa@m17n.org>
4769
4770 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
4771
4772 2009-07-09 Eli Zaretskii <eliz@gnu.org>
4773
4774 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
4775
4776 * w32.c (stat): Treat UNC file names as residing on remote
4777 drives. (Bug#3542)
4778
4779 2009-07-09 Kenichi Handa <handa@m17n.org>
4780
4781 * fontset.c (fontset_find_font): Fix previous change.
4782
4783 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
4784
4785 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
4786 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
4787 error flag.
4788
4789 2009-07-08 Kenichi Handa <handa@m17n.org>
4790
4791 * fontset.c (fontset_find_font): Fix the logic of handling
4792 charset_matched.
4793 (font_for_char): Delete unused var.
4794 (generate_ascii_font_name): Delete it.
4795
4796 * coding.h (JIS_TO_SJIS2): Fix the code range check.
4797
4798 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
4799 (encode_coding_sjis): Fix the code range check.
4800
4801 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
4802
4803 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
4804 (Fexpand_file_name): Copy string data properly (Bug#3772).
4805
4806 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
4807
4808 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
4809 first MapNotify.
4810
4811 2009-07-07 Kenichi Handa <handa@m17n.org>
4812
4813 * character.h (unibyte_has_multibyte_table): Delete extern.
4814 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
4815
4816 * charset.c (Fset_charset_priority): Update charset_unibyte.
4817 (syms_of_charset): Initialize charset_unibyte.
4818
4819 * character.c (unibyte_has_multibyte_table): Delete it.
4820 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
4821 charset_unibyte.
4822 (multibyte_char_to_unibyte_safe): Likewise.
4823 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
4824
4825 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
4826 (x_produce_glyphs): Likewise.
4827
4828 * .gdbinit (xcharset): Fix the treating $arg0.
4829
4830 2009-07-04 Eli Zaretskii <eliz@gnu.org>
4831
4832 Emulation of `getloadavg' on MS-Windows.
4833 * w32.c: Include float.h.
4834 (g_b_init_get_native_system_info, g_b_init_get_system_times)
4835 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
4836 (get_native_system_info, get_system_times): New functions.
4837 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
4838 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
4839 (globals_of_w32): Initialize g_b_init_get_native_system_info,
4840 g_b_init_get_system_times, and num_of_processors.
4841
4842 2009-07-03 Jason Rumney <jasonr@gnu.org>
4843
4844 * w32term.c (w32_initialize): Use standard types.
4845
4846 2009-07-03 Eli Zaretskii <eliz@gnu.org>
4847
4848 * dired.c (Ffile_attributes): Decode user and group names by the
4849 locale's encoding. (Bug#3443)
4850
4851 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
4852
4853 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
4854 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
4855
4856 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
4857
4858 * term.c (init_tty): Remove spurious #ifdef.
4859
4860 * m/mips.h: Mention this file is also used for netbsd.
4861 * m/pmax.h: Remove file.
4862
4863 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
4864
4865 * xterm.h (struct x_display_info): Add invisible_cursor.
4866 (struct x_output): Add current_cursor.
4867
4868 * xterm.c (XTtoggle_invisible_pointer): New function.
4869 (x_define_frame_cursor): Don't define cursor if invisible or the
4870 same as before. Set current_cursor.
4871 (x_create_terminal): Set toggle_invisible_pointer_hook.
4872
4873 * xfns.c (make_invisible_cursor): New function.
4874 (x_set_mouse_color): Call make_invisible_cursor.
4875 Set current_cursor.
4876 (x_window): Set current_cursor.
4877
4878 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
4879
4880 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
4881 inserting a character.
4882 (read_avail_input): Call frame_make_pointer_visible.
4883
4884 * frame.c (Vmake_pointer_invisible): New variable.
4885 (frame_make_pointer_invisible, frame_make_pointer_visible):
4886 New functions.
4887 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
4888
4889 * frame.h: Declare frame_make_pointer_invisible and
4890 frame_make_pointer_visible.
4891 (struct frame): Add pointer_invisible.
4892
4893 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
4894
4895 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
4896 frame isn't visible.
4897 (xg_frame_resized): If width/height is -1, get size of window
4898 from X server.
4899
4900 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
4901 for MapNotify.
4902
4903 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
4904 here or call change_frame_size. Just call flush_and_sync.
4905 (flush_and_sync): Reintroduce.
4906
4907 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
4908
4909 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
4910
4911 * xterm.c (x_handle_net_wm_state): Also look for sticky.
4912 (x_term_init): Initialize Xatom_net_wm_state_sticky.
4913
4914 * frame.h: Declare Qsticky.
4915
4916 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
4917
4918 * nsfns.m (ns_frame_parm_handlers): Ditto.
4919
4920 * frame.c: Declare Qsticky.
4921 (frame_parms): Add sticky.
4922
4923 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
4924
4925 * xterm.h: Declare x_set_sticky.
4926
4927 * xterm.c (x_set_sticky): New function.
4928
4929 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
4930 (xg_tool_bar_menu_proxy): Attach enter/leave events to
4931 xg_tool_bar_proxy_help_callback.
4932
4933 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
4934
4935 * frame.c: Qmaximized is new.
4936 (x_set_frame_parameters): Do not handle fullscreen specially.
4937 Only set width and height if explicitly set.
4938 (x_set_fullscreen): Handle Qmaximized.
4939 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
4940 (syms_of_frame): Initialize Qmaximized.
4941
4942 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
4943 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
4944
4945 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
4946 for Expose event. Add call to x_check_fullscreen for MapNotify event.
4947 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
4948 set gravity to NorthWestGravity when USE_GTK.
4949 (set_wm_state): New function.
4950 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
4951 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
4952 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
4953 or the case when no window manager is running. That means remove calls
4954 to x_real_positions and x_fullscreen_adjust.
4955
4956 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
4957 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
4958 flush_and_sync.
4959 (xg_height_changed): New function.
4960 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
4961 and gtk_window_set_policy. Set frame gravity after parsing the
4962 geometry string.
4963 (xg_update_frame_menubar, free_frame_menubar)
4964 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
4965 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
4966 Remove calls to xg_frame_set_char_size.
4967
4968 2009-07-01 Kenichi Handa <handa@m17n.org>
4969
4970 * keyboard.c (decode_keyboard_code): New function.
4971 (tty_read_avail_input): Decode the input bytes if necessary.
4972
4973 * coding.c (setup_coding_system):
4974 Initialize coding->carryover_bytes to 0.
4975 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
4976 use Qno_conversion.
4977
4978 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4979
4980 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
4981
4982 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
4983
4984 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
4985
4986 2009-06-30 Jason Rumney <jasonr@gnu.org>
4987
4988 * w32term.c (w32_initialize): Use GetModuleHandle for library that
4989 is already loaded.
4990 Set user model ID if supported (bug#1849).
4991
4992 2009-06-29 Jim Meyering <meyering@redhat.com>
4993
4994 Remove useless if-before-xfree test.
4995 * nsfont.m (nsfont_close): Remove useless test.
4996 * term.c (delete_tty): Likewise.
4997 * w32.c (system_process_attributes): Likewise.
4998 * w32font.c (w32font_close): Likewise.
4999 * xfaces.c (x_free_gc): Likewise.
5000 * xselect.c (buffer): Likewise.
5001
5002 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
5003
5004 * process.c (send_process): Keep decoded string in a local
5005 variable and protect it from GC. (Bug#3521)
5006
5007 2009-06-28 Eli Zaretskii <eliz@gnu.org>
5008
5009 * term.c (create_tty_output) [MSDOS]: #ifdef away.
5010 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
5011
5012 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
5013
5014 * xdisp.c (start_display, handle_face_prop)
5015 (move_it_vertically_backward, cursor_row_fully_visible_p)
5016 (redisplay_window, try_window_id, produce_image_glyph):
5017 Delete some #ifdef-ed out code chunks that are now obsolete.
5018
5019 * xterm.c (x_update_window_begin, x_new_focus_frame)
5020 (x_scroll_bar_handle_click, handle_one_xevent)
5021 (handle_one_xevent, XTread_socket, x_focus_on_frame)
5022 (x_make_frame_visible, x_make_frame_invisible)
5023 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
5024 code chunks that are now obsolete.
5025
5026 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
5027
5028 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
5029 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
5030 for hours, when optimzation is enabled.
5031 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
5032 (xd_read_message): Make them static.
5033
5034 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
5035
5036 * term.c (turn_on_face): Allow simultaneously bold and dim
5037 terminal faces (Bug#3530).
5038
5039 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
5040
5041 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
5042
5043 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
5044 truncation glyphs (Bug#3686).
5045
5046 2009-06-27 Glenn Morris <rgm@gnu.org>
5047
5048 * m/pmax.h: Restore file, with only netbsd portions.
5049
5050 2009-06-26 David Reitter <david.reitter@gmail.com>
5051
5052 * nsterm.m (keydown): Avoid infinite loop.
5053
5054 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
5055
5056 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
5057 the arg FORCE_SYMBOL.
5058
5059 2009-06-25 Kenichi Handa <handa@m17n.org>
5060
5061 * fontset.c (fontset_find_font): When a usable rfont_def is found
5062 in a fallback font-group, make it the first element of the group.
5063
5064 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
5065
5066 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
5067
5068 2009-06-24 Kenichi Handa <handa@m17n.org>
5069
5070 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
5071 set for C.
5072 (fontset_font): Record the availability of a font for C both in
5073 the realized fontsets of the current one and the default one.
5074
5075 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
5076
5077 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
5078 conditional, it is always defined on AIX.
5079
5080 2009-06-23 Miles Bader <miles@gnu.org>
5081
5082 * window.c (Vrecenter_redisplay): New variable.
5083 (syms_of_window): Initialize it.
5084 (Qtty): New extern declaration.
5085 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
5086
5087 2009-06-23 Jim Meyering <meyering@redhat.com>
5088
5089 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
5090 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
5091 pointer dereferences are guaranteed to be valid.
5092
5093 2009-06-23 Kenichi Handa <handa@m17n.org>
5094
5095 * emacs.c (main): Call init_font ().
5096
5097 * font.h (Vfont_log): Extern it.
5098 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
5099
5100 * font.c (font_sort_entities, font_list_entities)
5101 (font_matching_entity, font_open_entity)
5102 (font_close_object): Change font_add_log to FONT_ADD_LOG.
5103 (Vfont_log): Delete static.
5104 (font_log_env_checked): Delete this variable.
5105 (font_add_log): Don't check font_log_env_checked.
5106 (font_deferred_log): Check Vfont_log.
5107 (init_font): New function.
5108
5109 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
5110
5111 * w32font.c: Change font_add_log to FONT_ADD_LOG.
5112
5113 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
5114
5115 * xfont.c: Change font_add_log to FONT_ADD_LOG.
5116
5117 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
5118 (face_for_char): Don't call font_deferred_log here.
5119 (font_for_char): Likewise.
5120
5121 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
5122
5123 * w32term.c (x_draw_glyph_string): Use the glyph string's width
5124 rather than its background_width for drawing the overline and
5125 underline (Bug#489).
5126
5127 * xterm.c (x_draw_glyph_string): Use the glyph string's width
5128 rather than its background_width for drawing the overline and
5129 underline (Bug#489).
5130 (xg_default_icon_file): New variable.
5131 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
5132 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
5133
5134 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
5135 (load_overlay_strings): Remove externs.
5136 (fast_find_position): Function deleted.
5137 (mouse_face_from_buffer_pos): New function, based on
5138 fast_find_position. Correctly handle before-strings,
5139 display-strings, and after-strings (Bug#1220).
5140 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
5141
5142 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
5143
5144 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
5145 (move_it_in_display_line_to, move_it_in_display_line_to)
5146 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
5147
5148 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
5149
5150 * Branch for 23.1.
5151
5152 2009-06-21 Jason Rumney <jasonr@gnu.org>
5153
5154 * w32term.c (keyboard_codepage): New static variable.
5155 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
5156 (w32_read_socket) [WM_CHAR]: Use it to decode character
5157 input (bug#3237).
5158 (w32_initialize): Initialize it.
5159 (codepage_for_locale): New function.
5160
5161 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
5162
5163 * process.c (status_message): Pass Faset index argument as a lisp
5164 object, so as to work with USE_LISP_UNION_TYPE.
5165
5166 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5167
5168 * coding.c (Ffind_coding_systems_region_internal):
5169 Cache checked characters.
5170
5171 2009-06-18 Kenichi Handa <handa@m17n.org>
5172
5173 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
5174
5175 2009-06-18 Andreas Schwab <aschwab@redhat.com>
5176
5177 * xdisp.c (redisplay_internal): Check that the frame is still
5178 live after redisplay of its windows.
5179 (redisplay_windows): Check that the window is still live.
5180
5181 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
5182
5183 * coding.c (detect_coding_utf_16): Fix previous change.
5184
5185 2009-06-16 Kenichi Handa <handa@m17n.org>
5186
5187 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
5188 UTF-16 by checking the dispersion of Eth and Oth bytes.
5189
5190 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
5191
5192 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
5193
5194 2009-06-15 Kenichi Handa <handa@m17n.org>
5195
5196 * process.c (status_message): Fix previous change. Be sure to
5197 decode a localized string.
5198
5199 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5200
5201 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
5202 add comment explaining why.
5203
5204 2009-06-14 Sidney Markowitz <sidney@sidney.com>
5205
5206 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
5207
5208 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
5209
5210 * nsfont.m (ns_attribute_value): Remove.
5211 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
5212 (ns_has_attribute): Shrink the normal range.
5213 (ns_findfonts): Don't worry about requested spec in determining
5214 need for synthItal.
5215 (ns_get_covering_families): Retain scriptToFamilies.
5216
5217 2009-06-14 Seiji Zenitani <zenitani@mac.com>
5218
5219 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
5220
5221 2009-06-11 Kenichi Handa <handa@m17n.org>
5222
5223 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
5224 overhang for the static composition case.
5225
5226 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5227
5228 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
5229 overhang for the automatic composition case.
5230
5231 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
5232 composition case.
5233
5234 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
5235
5236 * xdisp.c (get_next_display_element): When handling wrap-prefix
5237 and line-prefix, treat \n as a control character (bug#3502).
5238
5239 2009-06-10 Kenichi Handa <handa@m17n.org>
5240
5241 * font.c (font_parse_family_registry): Fix for one-char foundry.
5242 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
5243
5244 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
5245
5246 * process.c (status_message): Fix handling of multibyte signal
5247 string (Bug#3499).
5248
5249 2009-06-09 Jim Meyering <meyering@redhat.com>
5250
5251 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
5252 color name is missing.
5253
5254 2009-06-09 Kenichi Handa <handa@m17n.org>
5255
5256 * charset.c (Fmap_charset_chars): In docstring, state clearly that
5257 FROM-CODE and TO-CODE are codepoints of CHARSET.
5258
5259 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
5260
5261 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
5262
5263 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
5264
5265 Changes to support :script/:lang/:otf in NS font driver.
5266 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
5267 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
5268 indicate not part of font driver interface, and change callers.
5269 (ns_get_family): Remove pointless null check.
5270 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
5271 ns_spec_to_descriptor, ns_descriptor_to_entity.
5272 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
5273 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
5274 (ns_spec_to_descriptor, ns_descriptor_to_entity)
5275 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
5276 (ns_get_req_script, ns_accumulate_script_ranges)
5277 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
5278 New functions.
5279 (nsfont_list, nsfont_match): Use ns_findfonts.
5280 (nsfont_open): Use font descriptor instead of traits.
5281 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
5282 (dump_glyphstring): Rename to ns_dump_glyphstring.
5283
5284 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
5285
5286 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
5287
5288 * fontset.c (fontset_from_font): Remove NS-specific code.
5289
5290 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
5291
5292 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
5293 nonactive windows.
5294
5295 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
5296
5297 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
5298
5299 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
5300
5301 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
5302
5303 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
5304
5305 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
5306 account for the overflowing of newlines into the last glyph on the
5307 display line (Bug#3482).
5308
5309 2009-06-05 David Reitter <david.reitter@gmail.com>
5310
5311 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
5312 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
5313 Fns_selection_exists_p, Fns_selection_owner_p.
5314
5315 2009-06-03 Jason Rumney <jasonr@gnu.org>
5316
5317 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
5318 available. (Bug#3379)
5319
5320 2009-05-29 Kenichi Handa <handa@m17n.org>
5321
5322 * coding.c (get_translation_table):
5323 Check Venable_character_translation.
5324
5325 2009-05-26 David Reitter <david.reitter@gmail.com>
5326
5327 * nsterm.m (ns_raise_frame): Only raise frame if visible.
5328 (x_make_frame_visible): Move frame to front rather than calling
5329 ns_raise_frame().
5330 (keyDown:): Do not swallow events that aren't re-sent if frame
5331 isn't key window.
5332 (drawRect:): Do not set visibility/iconified flags because
5333 drawRect may be called by NSView even if the frame is hidden.
5334
5335 * nsfns.m (Fx_create_frame): Follow other ports in
5336 determining visibility; default to t. Ensure async_visible is set.
5337
5338 2009-05-23 Eli Zaretskii <eliz@gnu.org>
5339
5340 * dired.c (Ffile_attributes): Doc fix.
5341
5342 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
5343
5344 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
5345
5346 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
5347
5348 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
5349 and xfont_scratch_props.
5350 (syms_of_xfont): Do it here instead.
5351 (xfont_find_ccl_program): Delete, unused.
5352 (xfont_open): Delete unused var `i'.
5353
5354 2009-05-21 Kenichi Handa <handa@m17n.org>
5355
5356 * fontset.c (Qlatin): Don't make it static.
5357
5358 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
5359 New functions.
5360 (xfont_scripts_cache, xfont_scratch_props): New variables.
5361 (Qlatin, Vscalable_fonts_allowed): Extern it.
5362 (xfont_list_pattern): Argument changed. Callers changed.
5363 Check Vscalable_fonts_allowed. Check the support of a script.
5364 (xfont_list): Don't reject a font spec with :script property.
5365 (xfont_has_char): Fix setting of encoding.
5366 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
5367 xfont_scratch_props.
5368
5369 2009-05-19 Kenichi Handa <handa@m17n.org>
5370
5371 * font.c (font_sort_entities): Rename from font_sort_entites.
5372 Callers changed.
5373
5374 2009-05-18 Kenichi Handa <handa@m17n.org>
5375
5376 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
5377
5378 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
5379
5380 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
5381 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
5382
5383 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5384
5385 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
5386 (x_delete_terminal): Dissociate resource database from display and
5387 then call XrmDestroyDatabase before closing display.
5388
5389 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
5390
5391 * nsterm.m (ns_read_socket): Remove unused variable.
5392 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
5393 whether selected frame is viable before raising it (based on patch
5394 by David Reitter), and improve commentary.
5395 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
5396
5397 2009-05-15 Kenichi Handa <handa@m17n.org>
5398
5399 * font.c (Ffont_spec): Check arguments.
5400
5401 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
5402
5403 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
5404 weight when testing attributes (Bug#3282).
5405
5406 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5407
5408 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
5409 what we expect to get in the next ConfigureNotify event.
5410
5411 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
5412 before Xft one (Bug#1696).
5413
5414 2009-05-07 David Reitter <david.reitter@gmail.com>
5415
5416 * nsfns.m (Fx_display_planes): Compute bitplanes using
5417 NSBitsPerPixelFromDepth (Bug#3207).
5418
5419 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
5420
5421 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
5422
5423 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
5424
5425 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
5426
5427 2009-05-07 David Reitter <david.reitter@gmail.com>
5428
5429 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
5430 Respect mouse face background.
5431
5432 2009-05-07 David Reitter <david.reitter@gmail.com>
5433
5434 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
5435 Mouse movement/highlight: bracket drawing operations
5436 in ns_update_begin and ns_update_end.
5437
5438 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5439
5440 * nsfns.m (ns_get_screen): Rewrite.
5441 Don't presume selected-frame is of type `ns'.
5442
5443 * font.c (font_update_drivers): Sanity fallback to avoid disabling
5444 all drivers.
5445
5446 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
5447
5448 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5449
5450 * keyboard.h (add_user_signal): Fix typo in extern.
5451
5452 * lisp.h (add_user_signal): Remove extern.
5453
5454 * unexelf.c (unexec): Consider a section to precede the .bss section
5455 if its addresses overlap that of .bss.
5456 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
5457 instead of dumping process.
5458
5459 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5460
5461 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
5462
5463 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
5464
5465 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
5466
5467 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
5468
5469 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
5470 any statements.
5471
5472 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
5473
5474 * process.c (read_process_output): Make sure the current buffer is
5475 always restored.
5476
5477 * coding.c (record_conversion_result): Don't modify
5478 Vlast_code_conversion_error for successful result.
5479 (alloc_destination): Don't clobber conversion result. (Bug#1650)
5480
5481 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5482
5483 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
5484 (load_charset_map): Remove unnecessary code.
5485
5486 2009-04-30 David Reitter <david.reitter@gmail.com>
5487
5488 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
5489 through f24.
5490
5491 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
5492
5493 * xfaces.c (face_at_buffer_position): New arg base_face_id.
5494
5495 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
5496 face_at_buffer_position.
5497 (face_before_or_after_it_pos, get_next_display_element)
5498 (note_mouse_highlight): Update face_at_buffer_position call.
5499
5500 * term.c (term_mouse_highlight):
5501 * msdos.c (IT_note_mouse_highlight):
5502 * fontset.c (Finternal_char_font):
5503 * font.c (font_at, font_range): Update face_at_buffer_position call.
5504
5505 * dispextern.h (face_at_buffer_position): Update prototype.
5506
5507 2009-04-30 Kenichi Handa <handa@m17n.org>
5508
5509 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
5510
5511 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
5512
5513 * callproc.c (Fcall_process): Fix GC protection. Make sure
5514 current buffer is always restored.
5515
5516 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5517
5518 * atimer.c (init_atimer): Also clear stopped_atimers.
5519
5520 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
5521
5522 * process.c (create_process): Clean up merger residues of
5523 2008-07-17 change.
5524
5525 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
5526
5527 * lread.c (Vread_circle): New variable.
5528 (read1): Disable recursive read if Vread_circle is nil.
5529
5530 2009-04-29 Kenichi Handa <handa@m17n.org>
5531
5532 * fontset.h (set_default_ascii_font): Delete extern.
5533
5534 * fontset.c (set_default_ascii_font): Delete this unused function.
5535
5536 * frame.c (x_set_font): When ARG is a font-object, check if the
5537 font-object matches with the ASCII font-spec of the frame's
5538 fontset. If not, create a new fontset for the frame. (Bug #3075)
5539
5540 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
5541
5542 * fns.c (Flocale_info): Protect vector from GC during decoding.
5543
5544 * process.c (Fstart_process): Protect argv strings from GC during
5545 encoding.
5546
5547 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
5548
5549 * sysdep.c: Include <ctype.h>.
5550
5551 2009-04-27 David Reitter <david.reitter@gmail.com>
5552
5553 * nsfont.m (nsfont_open): Remove unused variable shrink.
5554 Remove commented-out code.
5555
5556 2009-04-26 Johan Bockgård <bojohan@gnu.org>
5557
5558 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
5559
5560 2009-04-25 Jason Rumney <jasonr@gnu.org>
5561
5562 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
5563
5564 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5565
5566 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
5567 Swap bytes in short integer if fringe bitmap width > 8.
5568
5569 2009-04-23 Kenichi Handa <handa@m17n.org>
5570
5571 * xfaces.c (Fx_list_fonts): If a font size is specified in
5572 PATTERN, set it in returned scalable fonts.
5573
5574 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
5575
5576 * keyboard.c (Fset_input_meta_mode): Doc fix.
5577
5578 * dispnew.c (Fsend_string_to_terminal): Doc fix.
5579
5580 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
5581
5582 * coding.c (Fterminal_coding_system): Doc fix.
5583
5584 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
5585 (Fx_display_pixel_height, Fx_display_planes)
5586 (Fx_display_color_cells, Fx_server_max_request_size)
5587 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
5588 (Fx_display_mm_height, Fx_display_mm_width)
5589 (Fx_display_backing_store, Fx_display_visual_class)
5590 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
5591 Doc fixes, replacing "terminal id" with "terminal object".
5592 (check_x_display_info): Handle terminal objects instead of
5593 terminal ids.
5594
5595 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
5596 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
5597 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
5598 Doc fixes, replacing "terminal id" with "terminal object".
5599
5600 2009-04-21 Kenichi Handa <handa@m17n.org>
5601
5602 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
5603 (font_score): Check AVGWIDTH too.
5604
5605 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
5606 worst case.
5607 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
5608 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
5609
5610 2009-04-19 Jason Rumney <jasonr@gnu.org>
5611
5612 The following changes fix Bug#3005 for wide glyphs on each platform,
5613 without reintroducing Bug#1258 for stretch glyphs.
5614
5615 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
5616 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
5617 get_phys_cursor_geometry.
5618
5619 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
5620 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
5621 using get_phys_cursor_geometry.
5622
5623 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
5624 correctly calculated.
5625
5626 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
5627
5628 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
5629 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
5630 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
5631 is deprecated.
5632
5633 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
5634
5635 * font.c (font_put_frame_data): Use xfree instead of free.
5636
5637 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
5638
5639 * w32font.c (Qja, Qko): Remove declarations.
5640 (syms_of_w32font): Don't DEFSYM them.
5641
5642 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
5643
5644 * font.c (Qja, Qko): Move definitions here from ftfont.c.
5645
5646 * font.h (Qja, Qko): Extern them.
5647
5648 * ftfont.c (Qja, Qko): Remove declarations.
5649
5650 * xfont.c (Qja, Qko): Remove declarations.
5651
5652 2009-04-17 Kenichi Handa <handa@m17n.org>
5653
5654 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
5655 string from a vector to handle Latin-1 characters correctly.
5656
5657 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
5658 entity even if the cache hits.
5659
5660 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
5661
5662 * search.c (boyer_moore): Use zero as marker value for a possible
5663 match instead of depending on overflow behavior. (Bug#2844)
5664
5665 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
5666 * lisp.h: Adjust prototypes.
5667
5668 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
5669
5670 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
5671 change (Bug#3003).
5672
5673 2009-04-16 Kenichi Handa <handa@m17n.org>
5674
5675 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
5676
5677 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
5678 adstyle.
5679
5680 * ftfont.c (Qja, Qko): Don't make them static.
5681 (enum ftfont_cache_for): New enum.
5682 (fc_charset_table): Undo the previous change.
5683 (ftfont_get_latin1_charset): Delete it.
5684 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
5685 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
5686 non-scarable font, try to get AVERAGE_WIDTH.
5687 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
5688 Change ft_face_cache from a list of a hash-table. Don't check
5689 `ja' and `ko' adstyle here.
5690 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
5691 FTFONT_CACHE_FOR_CHARET.
5692 (ftfont_get_charset): Undo the previous change.
5693 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
5694 (ftfont_close): Likewise.
5695 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
5696
5697 * font.c (font_sort_entites): Change the meaning of the arg
5698 BEST-ONLY. Don't optimize for VEC of lenght 1.
5699 (font_select_entity): Just return the value of font_sort_entites.
5700
5701 * xfaces.c (merge_face_vectors): Reflect font properties in
5702 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
5703 font_clear_prop if a face attribute doesn't change.
5704
5705 * charset.h (charset_ksc5601): Extern it.
5706
5707 * charset.c (charset_ksc5601): New variable.
5708 (Fdefine_charset_internal): Set charset_ksc5601.
5709 (init_charset_once): Initialize charset_ksc5601 to -1.
5710
5711 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
5712
5713 * fileio.c (history_delete_duplicates): Remove unused declaration.
5714
5715 * callint.c (history_delete_duplicates): New declaration.
5716 (Fcall_interactively): Remove command history duplicates when
5717 history_delete_duplicates is true.
5718
5719 2009-04-14 Eli Zaretskii <eliz@gnu.org>
5720
5721 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
5722
5723 2009-04-14 Kenichi Handa <handa@m17n.org>
5724
5725 * font.c (Ffont_info): Fix docstring. Fix the second element of
5726 the returned value (bug#2949).
5727
5728 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
5729
5730 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
5731
5732 2009-04-14 Kenichi Handa <handa@m17n.org>
5733
5734 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
5735 encoding charset is ascii_compatible.
5736
5737 * charset.c (Fdefine_charset_internal): Make charset
5738 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
5739 code_offset is 0, and covers all ASCII characters.
5740
5741 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5742
5743 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
5744 (ns_string_to_pasteboard_internal):
5745 * nsmenu.m (process_dialog):
5746 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
5747 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
5748 * lisp.h (Fx_load_color_file): Declare.
5749
5750 2009-04-13 Kenichi Handa <handa@m17n.org>
5751
5752 * font.c (font_delete_unmatched): Preserve the order of list elements.
5753 (font_select_entity): Suppress the code to optimize for the same
5754 kind of fonts.
5755 (font_load_for_lface): Get a font that supports at least ASCII
5756 characters.
5757
5758 * ftfont.c (Qja, Qko): New variables.
5759 (fc_charset_table): Delete uniquifier data for iso8859-1.
5760 (ftfont_get_latin1_charset): New function.
5761 (get_adstyle_property): New function.
5762 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
5763 bitmap fonts.
5764 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
5765 Delete iso-8859-1 range from the charset of fonts whose adstyle is
5766 `ko' or `ja'.
5767 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
5768 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
5769 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
5770 property.
5771 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
5772 (syms_of_ftfont): DEFSYM Qja and Qko.
5773
5774 2009-04-09 Kenichi Handa <handa@m17n.org>
5775
5776 * charset.c (map_charset_chars): For a charset of `superset'
5777 method, fix calculation of code range.
5778
5779 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
5780 from the list of extra properties.
5781 (font_clear_prop): Be sure to delete `:name' font property.
5782
5783 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5784
5785 * dispnew.c (redraw_overlapping_rows): Fix detection of
5786 overlapping for topmost and bottommost rows.
5787
5788 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
5789
5790 2009-04-06 Jason Rumney <jasonr@gnu.org>
5791
5792 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
5793
5794 2009-04-06 Kenichi Handa <handa@m17n.org>
5795
5796 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
5797
5798 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
5799
5800 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5801
5802 * ftfont.c (ftfont_open): Fix checking of the return value of
5803 FT_Load_Char. Fix setting font->underline_thickness.
5804
5805 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
5806
5807 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
5808 (Fterminal_parameters, Fterminal_parameter)
5809 (Fset_terminal_parameter): In doc string, refer to terminal
5810 objects rather than terminal ids.
5811
5812 2009-04-04 Eli Zaretskii <eliz@gnu.org>
5813
5814 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
5815 ret_lim_data. (Bug#2867)
5816
5817 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
5818
5819 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
5820 so they don't get wider than the window, matching 2006-01-23
5821 change to the partner function in xdisp.c (Bug#2800).
5822
5823 2009-04-03 Kenichi Handa <handa@m17n.org>
5824
5825 * print.c (print_object): Make each lowest sub_char_table start a
5826 new line (Bug#2866).
5827
5828 2009-04-02 Kenichi Handa <handa@m17n.org>
5829
5830 * fontset.c (fontset_font): Record no-font when a fontset
5831 explicitly tells not to try another font-specs.
5832
5833 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
5834
5835 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
5836
5837 2009-03-30 Kenichi Handa <handa@m17n.org>
5838
5839 * fontset.c (fontset_from_font): Specify only registry in a
5840 font-spec for all characters supported by that registry.
5841
5842 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
5843 even if HAVE_M17N_FLT is not defined.
5844
5845 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
5846
5847 * ftfont.c: Conditionalize prototyping and use of
5848 ftfont_variation_glyphs.
5849
5850 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
5851
5852 * frame.c (delete_frame): Work around compiler bug.
5853
5854 * editfns.c (general_insert_function): Adjust to insdel.c changes.
5855 * insdel.c (prepare_to_modify_buffer, signal_before_change):
5856 Some more EMACS_INT.
5857 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
5858
5859 * xdisp.c (dump_glyph): Fix typo.
5860
5861 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
5862 (adjust_markers_gap_motion, adjust_markers_for_delete)
5863 (adjust_markers_for_insert, adjust_point)
5864 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
5865 (make_gap, copy_text, count_size_as_multibyte, insert)
5866 (insert_and_inherit, insert_before_markers)
5867 (insert_before_markers_and_inherit, insert_1)
5868 (count_combining_before, count_combining_after, insert_1_both)
5869 (insert_from_string, insert_from_string_before_markers)
5870 (insert_from_string_1, insert_from_gap, insert_from_buffer)
5871 (insert_from_buffer_1, adjust_after_replace)
5872 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
5873 (replace_range_2, del_range, del_range_1, del_range_byte)
5874 (del_range_both, del_range_2, modify_region)
5875 (prepare_to_modify_buffer, signal_before_change)
5876 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
5877 for buffer positions and sizes.
5878 * lisp.h: Adjust prototypes accordingly.
5879
5880 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
5881 (non_regular_inserted, non_regular_nbytes, read_non_regular)
5882 (Finsert_file_contents): Use EMACS_INT for buffer positions.
5883
5884 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
5885
5886 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
5887
5888 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
5889 lines and columns so we keep the same pixel height and width.
5890
5891 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
5892 the property _NET_WM_STATE has changed.
5893 (x_handle_net_wm_state): New function to update frame parameter
5894 fullscreen.
5895 (x_term_init): Initialize atoms for _NET_WM_STATE.
5896
5897 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
5898
5899 2009-03-27 Kevin Ryde <user42@zip.com.au>
5900
5901 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
5902 Gpm_GetEvent as an error that justifies closing the filedescriptor.
5903 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
5904 (Fgpm_mouse_stop): Pass that new parameter.
5905 * termhooks.h (close_gpm): Adjust prototype.
5906
5907 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
5908
5909 * lisp.h (Fx_focus_frame): Declare.
5910
5911 * callint.c (Fcall_interactively): For '^' just delegate the work to
5912 handle-shift-selection.
5913 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
5914
5915 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
5916
5917 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
5918
5919 * data.c (Qinteractive_form): New variable.
5920 (Finteractive_form): Use it.
5921
5922 * eval.c (Fcommandp): Use Qinteractive_form.
5923
5924 2009-03-24 Jason Rumney <jasonr@gnu.org>
5925
5926 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
5927 Calculate total size precisely. Decode environment variables
5928 before substituting. (Bug#38)
5929
5930 2009-03-24 Kenichi Handa <handa@m17n.org>
5931
5932 * font.c (find_font_encoding): Return Qnil for unsupported
5933 encoding (Bug#2722).
5934
5935 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
5936
5937 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
5938 that gdpy is set.
5939
5940 2009-03-22 Alan Mackenzie <acm@muc.de>
5941
5942 * callint.c (Finteractive): Clarify the doc string - even
5943 promptless elements need \n separators.
5944
5945 2009-03-22 Jason Rumney <jasonr@gnu.org>
5946
5947 * w32term.c (syms_of_w32term): Doc fix for
5948 x-use-underline-position-properties.
5949
5950 2009-03-21 Eli Zaretskii <eliz@gnu.org>
5951
5952 * w32.c (getpwuid): Change argument type to unsigned.
5953 (struct w32_id): Change type of `rid' member to unsigned.
5954 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
5955 argument ID to unsigned. All callers changed.
5956 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
5957
5958 2009-03-20 Eli Zaretskii <eliz@gnu.org>
5959
5960 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
5961 negative, produce a float value.
5962
5963 * dired.c (make_uid, make_gid): New functions.
5964 (Ffile_attributes): Use them to avoid negative UID and GID.
5965
5966 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
5967
5968 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
5969 (syms_of_keyboard) <command-hook-internal, input-method-function>:
5970 Fix typos in docstrings.
5971
5972 2009-03-19 Kenichi Handa <handa@m17n.org>
5973
5974 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
5975 changed, use font_load_for_lface to get a new font object.
5976 Call free_realized_fontset after handling ASCII font change.
5977
5978 * frame.c (x_set_font): Handle the case that ARG is a cons.
5979
5980 2009-03-19 Glenn Morris <rgm@gnu.org>
5981
5982 * fileio.c (Fsubstitute_in_file_name): Doc fix.
5983
5984 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
5985
5986 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
5987
5988 2009-03-19 Kenichi Handa <handa@m17n.org>
5989
5990 * charset.c (load_charset_map_from_file): When a mapfile can't be
5991 loaded, signal an error.
5992
5993 2009-03-18 Eli Zaretskii <eliz@gnu.org>
5994
5995 * dired.c (Ffile_attributes): Make sure UID and GID are always
5996 positive, even if the value is too large for a positive EMACS_INT.
5997 Doc fix.
5998
5999 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
6000
6001 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6002
6003 * xmenu.c (xdialog_show): Move Fredisplay call ...
6004 (Fx_popup_dialog): ... here.
6005
6006 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
6007
6008 * dired.c (file_name_completion): Disable the first optimization just
6009 installed, since it is not implemented correctly.
6010
6011 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
6012
6013 * dired.c (file_name_completion): Check completion-ignored-extensions
6014 only if the entry can affect bestmatch.
6015 Stop the search early, as Ftry_completion already does.
6016
6017 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
6018
6019 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
6020
6021 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
6022
6023 * keyboard.c (parse_menu_item): Don't display remappings as menu
6024 equivalent bindings (Bug#788).
6025
6026 2009-03-15 Jason Rumney <jasonr@gnu.org>
6027
6028 * w32term.h (WM_EMACS_PAINT): New message.
6029 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
6030 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
6031 before passing to lisp thread. (Bug#950)
6032
6033 2009-03-14 David Reitter <david.reitter@gmail.com>
6034
6035 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
6036 variable as it was never reset.
6037 (ns_term_init): Remove initialization of Lisp-settable defaults
6038 and ns_expand_space.
6039 (-setPanelFromDefaultValues): Remove ns_expand_space.
6040 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
6041 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
6042 i.e. no additional spacing, similar to Carbon port.
6043
6044 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
6045 * nsfns.m (ns-popup-prefs-panel): Remove.
6046
6047 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
6048
6049 * sound.c (alsa_configure): Remove call to deprecated
6050 snd_pcm_sw_params_set_xfer_align.
6051
6052 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
6053
6054 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
6055 after clicking in a detached tool bar.
6056 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
6057
6058 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
6059
6060 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
6061 int/Lisp_Object mixup).
6062
6063 2009-03-13 Kenichi Handa <handa@m17n.org>
6064
6065 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
6066 Handle NAME nil and t correctly. Callers changed.
6067 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
6068 (set_fontset_font): Change ARG to a vector. Handle range_list in
6069 ARG correctly.
6070 (Fset_fontset_font): Fix the case that TARGET is both a script
6071 name and charset name. Adjust the arg to set_fontset_font for
6072 the above change.
6073 (fontset_from_font): Fix previous change.
6074 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
6075 entry. If FONTSET is the default fontset, don't set the extra
6076 slot of the returning char-table.
6077
6078 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
6079
6080 * nsfns.m (Fx_close_connection): Doc fix.
6081 (Fns_do_applescript): Reflow docstring.
6082 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
6083 (Fx_display_pixel_width, Fx_display_pixel_height)
6084 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
6085 Fix typos in docstrings.
6086 (Fns_set_alpha): Fix typos in error messages.
6087
6088 2009-03-12 David Reitter <david.reitter@gmail.com>
6089
6090 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
6091 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
6092 were used for such events.
6093
6094 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
6095 (toggleToolbar, performDragOperation, runHelp): Use it.
6096
6097 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
6098 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
6099
6100 2009-03-11 Kenichi Handa <handa@m17n.org>
6101
6102 * font.h (font_open_by_spec): Extern it.
6103
6104 * font.c (font_open_by_spec): New function.
6105 (font_open_by_name): Use font_open_by_spec.
6106
6107 * frame.c (x_set_font): When ARG is a font-object, don't alter the
6108 fontset of the frame.
6109
6110 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
6111 modify the default font of frames that use this fontset.
6112 (num_auto_fontsets): New variable.
6113 (fontset_from_font): Use num_auto_fontsets to decide a fontset
6114 name. Be sure to set FONTSET_ASCII to the correct font name.
6115 (update_auto_fontset_alist): New function.
6116
6117 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
6118
6119 * makefile.w32-in: Update dependencies.
6120
6121 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
6122
6123 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
6124
6125 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
6126
6127 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
6128
6129 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
6130
6131 * lread.c (Feval_buffer): Doc fix.
6132
6133 2009-03-09 Kenichi Handa <handa@m17n.org>
6134
6135 * charset.c (Qfile_name_handler_alist): Extern it.
6136 (load_charset_map_from_file): Temporarily bind
6137 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
6138
6139 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
6140
6141 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
6142 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
6143
6144 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
6145
6146 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
6147 (x_set_window_size): Change back to calculated method of setting
6148 toolbar height under Cocoa. (Bug#2546)
6149 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
6150 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
6151
6152 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
6153
6154 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
6155 accelerator in parens under GNUstep.
6156
6157 2009-03-06 Kenichi Handa <handa@m17n.org>
6158
6159 These changes are to detect incorrect composition sequence without
6160 looking ahead the source. (Bug#2370)
6161
6162 * coding.h: Include "composite.h".
6163 (enum compisition_state): New enum.
6164 (struct compisition_status): New struct.
6165 (struct iso_2022_spec): New member cmp_status.
6166 (struct emacs_mule_spec): New struct.
6167 (struct coding_system): New members ctext_extended_segment_len and
6168 embedded_utf_8. Change the union member
6169 spec.emacs_mule_full_support to spec.emacs_mule.
6170
6171 * coding.c (CODING_ISO_CMP_STATUS): New macro.
6172 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
6173 (MAX_ANNOTATION_LENGTH): Define to 5.
6174 (ADD_COMPOSITION_DATA): New arg nbytes.
6175 (emacs_mule_char): New arg cmp_status.
6176 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
6177 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
6178 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
6179 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
6180 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
6181 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
6182 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
6183 (EMACS_MULE_COMPOSITION_END): New macro.
6184 (emacs_mule_finish_composition): New function.
6185 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
6186 (decode_coding_emacs_mule): Avoid long looking ahead while
6187 handling composition.
6188 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
6189 (ENCODE_COMPOSITION_RULE): New macro.
6190 (finish_composition): New function.
6191 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
6192 (DECODE_COMPOSITION_START): New implementation.
6193 (DECODE_COMPOSITION_END): Likewise.
6194 (STORE_COMPOSITION_RULE): New macro.
6195 (decode_coding_iso_2022): Avoid long looking ahead while handling
6196 composition, CTEXT extended segment, and embedded UTF-8.
6197 (setup_coding_system): For a coding of type iso-2022, reset
6198 CODING_ISO_EXTSEGMENT_LEN (coding) and
6199 CODING_ISO_EMBEDDED_UTF_8 (coding).
6200 (get_translation): Delete arguments last_block, from_nchars,
6201 to_nchars. Callers changed.
6202 (produce_chars): Don't modify charbuf. Adjusted for the change of
6203 get_translation.
6204 (produce_composition): Adjust for the new annotation sequence.
6205 (handle_composition_annotation): Likewise.
6206 (consume_chars): Adjust for the change of get_translation.
6207
6208 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
6209
6210 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
6211
6212 2009-03-05 Kenichi Handa <handa@m17n.org>
6213
6214 * font.c (font_select_entity): New function.
6215 (font_find_for_lface): Use font_select_entity to select a font.
6216
6217 * fontset.c (fontset_find_font): If a font found without
6218 restricting to the characters C doesn't support C, try to find a
6219 font with C restriction.
6220
6221 2009-03-04 Nikolaj Schumacher <me@nschum.de>
6222
6223 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
6224
6225 2009-03-04 Jason Rumney <jasonr@gnu.org>
6226
6227 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
6228 characters that have already been read. (Bug#2569)
6229
6230 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
6231 Log an error message if check_image_size failed.
6232 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
6233 (gs_load): Mention max-image-size in size error message. (Bug#2560)
6234
6235 2009-03-02 Eli Zaretskii <eliz@gnu.org>
6236
6237 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
6238 when decoding process output.
6239
6240 2009-03-01 Richard M Stallman <rms@gnu.org>
6241
6242 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
6243
6244 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
6245
6246 2009-02-28 Eli Zaretskii <eliz@gnu.org>
6247
6248 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
6249 (decode_coding_emacs_mule, decode_coding_iso_2022)
6250 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6251 (decode_coding_raw_text, decode_coding_charset)
6252 (setup_coding_system, decode_eol, decode_coding, consume_chars):
6253 Honor inhibit-eol-conversion. (Bug #2186)
6254
6255 2009-02-28 Jason Rumney <jasonr@gnu.org>
6256
6257 * coding.c (detect_coding_charset): If not checking latin extra,
6258 fail on characters between 0x80 and 0xA0. (Bug#2354)
6259
6260 2009-02-28 Eli Zaretskii <eliz@gnu.org>
6261
6262 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
6263 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
6264
6265 2009-02-27 Glenn Morris <rgm@gnu.org>
6266
6267 * callint.c (Finteractive): Doc fix.
6268
6269 2009-02-27 Kenichi Handa <handa@m17n.org>
6270
6271 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
6272
6273 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
6274
6275 * font.c (font_style_to_value): Set value for unknown symbols to
6276 100 instead of 255.
6277 (weight_table, slant_table, width_table): Treat "unspecified" as
6278 the default value.
6279
6280 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
6281
6282 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
6283
6284 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
6285
6286 * lread.c (Fload): Stop checking Vloads_in_progress and signal
6287 error as soon as a recursive load is detected.
6288
6289 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
6290
6291 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
6292 before caching.
6293
6294 2009-02-24 Kenichi Handa <handa@m17n.org>
6295
6296 * fontset.c (fontset_find_font): Fix the condition for checking
6297 unavailable font.
6298
6299 2009-02-24 Glenn Morris <rgm@gnu.org>
6300
6301 * xfaces.c (Finternal_set_font_selection_order): Remove leading
6302 whitespace that confuses documentation.
6303
6304 2009-02-23 Miles Bader <miles@gnu.org>
6305
6306 * process.c (Flist_system_processes, Fprocess_attributes)
6307 (syms_of_process): Rename `system-process-attributes' to
6308 `process-attributes'.
6309
6310 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
6311
6312 * coding.h (struct coding_system): Make safe_charsets a pointer to
6313 unsigned char.
6314 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
6315 being 255.
6316 (SAFE_CHARSET_P): Likewise.
6317 (setup_iso_safe_charsets): Properly setup safe_charsets.
6318 (Fdefine_coding_system_internal): Likewise.
6319 (setup_coding_system): Likewise. Remove unneeded casts.
6320 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
6321 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
6322 unneeded casts.
6323
6324 * insdel.c (del_range_2): Don't modify gap contents when called
6325 from decode_coding_object. (Bug#1809)
6326
6327 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
6328
6329 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
6330 Qfont_object.
6331 (Ftype_of): Recognize font objects.
6332
6333 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
6334
6335 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
6336 moved to data.c.
6337
6338 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
6339
6340 * nsterm.m (x_make_frame_invisible): Unset async_visible,
6341 async_iconified. Based on a patch by Christian Lynbech
6342 <christian.lynbech@tieto.com>.
6343 (EmacsView-windowDidMiniaturize:): Unset async_visible.
6344
6345 2009-02-20 Glenn Morris <rgm@gnu.org>
6346
6347 * syntax.c (Fskip_chars_forward): Fix doc typo.
6348
6349 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
6350
6351 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
6352
6353 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
6354
6355 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
6356
6357 2009-02-19 Kenichi Handa <handa@m17n.org>
6358
6359 * coding.c (detect_coding): Preserve coding->mode.
6360 Don't overflow coding->carryover. (Bug#2370)
6361
6362 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
6363
6364 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
6365
6366 2009-02-18 Kenichi Handa <handa@m17n.org>
6367
6368 * font.c (font_check_otf_features): Fix handling of `nil' element.
6369 (Ffont_spec): Describe :lang and :otf in the docstring.
6370
6371 2009-02-16 Andreas Schwab <schwab@suse.de>
6372
6373 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
6374 string.
6375
6376 2009-02-16 Kenichi Handa <handa@m17n.org>
6377
6378 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
6379 (Bug#1723)
6380
6381 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
6382
6383 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
6384
6385 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
6386 (handle_line_prefix): Suppress wrapping of wrap prefixes.
6387
6388 2009-02-14 Eli Zaretskii <eliz@gnu.org>
6389
6390 * msdos.c (MAX_SCREEN_BUF): New macro.
6391 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
6392 Encode the entire run of glyphs sharing the same face, instead of
6393 doing that one glyph at a time (fixes a bug with displaying
6394 double-size characters).
6395
6396 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
6397
6398 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
6399
6400 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
6401 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
6402 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
6403
6404 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
6405 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
6406
6407 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
6408
6409 * keyboard.c (adjust_point_for_property): Allow stopping between two
6410 invisible areas.
6411
6412 2009-02-12 Jason Rumney <jasonr@gnu.org>
6413
6414 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
6415 (add_font_entity_to_list): Call check_face_name even when family
6416 is unspecified.
6417
6418 * w32term.c (x_display_pixel_height, x_display_pixel_width):
6419 Release DC when finished. Use NULL window to refer to desktop.
6420 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
6421
6422 * w32font.c (add_font_entity_to_list): Fix check for substituted
6423 raster fonts. (Bug#2219)
6424
6425 2009-02-12 Kenichi Handa <handa@m17n.org>
6426
6427 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
6428 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
6429 (autocmp_chars): Use fast_looking_at. Don't compose more
6430 characters than MAX_COMPOSITION_COMPONENTS.
6431 (find_automatic_composition): While looking forward and backward,
6432 check static composition. Fix where to stop looking forward.
6433 (composition_adjust_point): Fix checking of static composition.
6434 (Fcomposition_get_gstring): Pay attention to
6435 MAX_COMPOSITION_COMPONENTS.
6436
6437 * lisp.h (fast_looking_at): Extern it.
6438
6439 * search.c (fast_looking_at): New function.
6440
6441 * term.c (encode_terminal_code): Adjust for the change of
6442 <struct glyph>.u.cmp.to.
6443 (append_composite_glyph): Likewise.
6444
6445 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
6446 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
6447 composition.
6448 (append_composite_glyph): Adjust for the change of
6449 <strcut glyph>.u.cmp.to.
6450
6451 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
6452
6453 * casetab.c (init_casetab_once):
6454 * coding.c (ALLOC_CONVERSION_WORK_AREA):
6455 * font.c (font_update_lface):
6456 * fontset.c (Fnew_fontset):
6457 * ftfont.c (ftfont_drive_otf):
6458 * xfont.c (xfont_open):
6459 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
6460
6461 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6462
6463 * fileio.c (Fwrite_region): !NILP -> CONSP.
6464
6465 2009-02-10 Andreas Schwab <schwab@suse.de>
6466
6467 * process.c (send_process): Properly relocate pointer into data
6468 when using encoded data. (Bug#2272)
6469
6470 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
6471
6472 * coding.c (detect_coding_charset): Fix previous change.
6473
6474 2009-02-08 Jason Rumney <jasonr@gnu.org>
6475
6476 * w32fns.c (w32_hide_hourglass): Handle case where frame
6477 disappeared while hourglass was displayed. (Bug #2193)
6478
6479 2009-02-07 Andreas Schwab <schwab@suse.de>
6480
6481 * unexelf.c (unexec): Fix error message.
6482
6483 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
6484
6485 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
6486 when modal window is active. (Bug #2152)
6487 (applicationShouldTerminate:): Remove now-unneeded while loop
6488 around NSRunAlertPanel.
6489
6490 * nsmenu.m (popupSession): New file-global variable.
6491 (pop_down_menu): End the popupSession before closing dialog.
6492 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
6493 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
6494 don't query NSApp for events (just sleep instead).
6495
6496 2009-02-07 Eli Zaretskii <eliz@gnu.org>
6497
6498 * coding.c (syms_of_coding) <translation-table-for-input>:
6499 Modify doc string to discourage use for character code unification.
6500
6501 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6502
6503 * atimer.c (run_timers): Update pending_atimers.
6504
6505 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
6506
6507 * image.c (svg_load_image): Fix last change.
6508
6509 * xfns.c (Fx_create_frame): Signal an error if no font is
6510 found (Bug#2147).
6511
6512 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
6513
6514 * character.c (syms_of_character) <script-representative-chars>:
6515 Fix typo in docstring.
6516
6517 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
6518
6519 * nsmenu.m (pop_down_menu): New function.
6520 (ns_popup_dialog): Call it on unwind.
6521 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
6522 call timer_check() (Bug#2154).
6523 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
6524 handling_signal is set.
6525 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
6526
6527 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
6528
6529 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
6530
6531 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
6532
6533 * keyboard.c (poll_for_input_1, handle_async_input):
6534 Set handling_signal under HAVE_NS.
6535
6536 2009-02-04 Glenn Morris <rgm@gnu.org>
6537
6538 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
6539
6540 2009-02-04 Kenichi Handa <handa@m17n.org>
6541
6542 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
6543
6544 * charset.c (Fchar_charset): New optional arg restriction.
6545
6546 * coding.h (coding_system_charset_list): Extern it.
6547
6548 * coding.c (coding_system_charset_list): New function.
6549
6550 * composite.c: Include coding.h and termhooks.h.
6551 (composition_gstring_p): Fix for the terminal case.
6552 (composition_gstring_width): Likewise.
6553 (fill_gstring_body): Likewise.
6554 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
6555 the frame.
6556 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
6557 is within a composition.
6558 (Fcomposition_get_gstring): Fix the terminal case.
6559
6560 * term.c (encode_terminal_code): Fix handling of composition.
6561 (produce_composite_glyph): For static composition, get pixel_width
6562 from struct composition.
6563
6564 2009-02-02 Andreas Schwab <schwab@suse.de>
6565
6566 * unexelf.c (unexec): Handle unaligned bss offset.
6567
6568 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6569
6570 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
6571 XT,w32read_socket changes to ns_read_socket.
6572
6573 * keyboard.c (handle_interrupt): Don't call
6574 quit_throw_to_read_char() under NS.
6575
6576 * blockinput.h: Remove NS-specific code.
6577
6578 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
6579
6580 * dispnew.c (window_change_signal): Don't try to get the size of a
6581 suspended tty frame.
6582 * term.c (Fresume_tty): Resize if the size has changed while the
6583 tty was suspended.
6584
6585 * alloc.c (mark_stack): Properly conditionalize previous change.
6586
6587 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
6588
6589 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
6590 * w32term.c (w32_read_socket) [SYNC_INPUT]:
6591 Remove; this code is not used on Windows.
6592
6593 2009-01-30 Eli Zaretskii <eliz@gnu.org>
6594
6595 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
6596 EOLs that also has stray ^M characters.
6597
6598 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
6599
6600 * atimer.c (run_timers, alarm_signal_handler):
6601 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
6602 * w32inevt.c (w32_console_read_socket):
6603 * w32term.c (w32_read_socket):
6604 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
6605
6606 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
6607
6608 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
6609 Initialize it as a relative filename pattern.
6610 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
6611 (Fcall_process_region): Simplify temp file creation using
6612 temporary-file-directory.
6613
6614 2009-01-29 Eli Zaretskii <eliz@gnu.org>
6615
6616 * msdos.c: Rename pending_signals to msdos_pending_signals.
6617 (sig_suspender, sigprocmask): Adjust.
6618
6619 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
6620
6621 * keyboard.c (pending_signals): New var.
6622 (poll_for_input, input_available_signal, init_keyboard): Set it.
6623 (process_pending_signals): New function.
6624
6625 * lisp.h (QUIT): Check pending_signals instead of
6626 interrupt_input_pending. Use process_pending_signals.
6627
6628 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
6629
6630 * process.c (wait_reading_process_output): Use process_pending_signals.
6631
6632 * sysdep.c (emacs_write): Use process_pending_signals.
6633
6634 * xterm.c (XTread_socket): Update pending_signals.
6635
6636 * w32term.c (w32_read_socket): Update pending_signals.
6637
6638 * w32inevt.c (w32_console_read_socket): Update pending_signals.
6639
6640 2009-01-29 Kenichi Handa <handa@m17n.org>
6641
6642 * xftfont.c (xftfont_has_char): New function.
6643 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
6644
6645 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
6646
6647 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
6648 under GNUstep.
6649 (ns_query_color): New declaration.
6650
6651 * nsterm.m (ns_confirm_quit): New variable.
6652 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
6653 (EmacsApp-applicationShouldTerminate:): Use it.
6654 (EmacsPrefsController): Let user set it.
6655 (ns_query_color): New function.
6656 (ns_defined_color): Use it.
6657 (ns_initialize): Drop.
6658 (ns_term_init): Add two lines from ns_initialize(), and set
6659 input_interrupt_mode to nil.
6660
6661 * image.c (svg_load_image): Don't right-shift background RGB when
6662 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
6663
6664 2009-01-28 Kenichi Handa <handa@m17n.org>
6665
6666 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
6667 (fontset_get_font_group): Remember that no font-group is specified
6668 for C.
6669
6670 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
6671
6672 * fns.c (concat): Check for string overflow (bug#1787).
6673
6674 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
6675 Quadruple undo limits (bug#1501).
6676
6677 2009-01-27 Kenichi Handa <handa@m17n.org>
6678
6679 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
6680 directly use GT_Get_Char_index.
6681
6682 * xftfont.c (struct xftfont_info): New member `index'.
6683
6684 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
6685 (Ffontset_font): Adjust for the change of fontset entry.
6686
6687 2009-01-26 Kenichi Handa <handa@m17n.org>
6688
6689 * fontset.c (fontset_find_font): Fix handling of non-cons return
6690 value of fontset_get_font_group.
6691 (fontset_font): Revert last change.
6692
6693 2009-01-26 Jason Rumney <jasonr@gnu.org>
6694
6695 * w32font.c (w32font_list_internal): Return quickly if registry is
6696 unknown. Simplify final return.
6697 (add_font_entity_to_list): Break complex logic down into more
6698 manageable chunks. Move unknown registry check to
6699 w32font_list_internal.
6700
6701 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
6702
6703 Changes to remove Feval calls from GUI under NS.
6704
6705 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
6706 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
6707 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
6708
6709 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
6710 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
6711 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
6712 instead of NON_ASCII_KEYSTROKE_EVENT.
6713 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
6714 (EmacsApp-applicationShouldTerminate:): Query user.
6715 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
6716 instead of Feval.
6717
6718 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
6719
6720 * keyboard.c (kbd_buffer_get_event): Check for it.
6721 (keys_of_keyboard): Define lispy keys for
6722 ns-put/unput-working-text.
6723
6724 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
6725 versions.
6726 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
6727
6728 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
6729
6730 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
6731 setting current_buffer directly. (Bug#2044)
6732
6733 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
6734
6735 * fontset.c (fontset_font): If we know there is no font, don't do
6736 any work. (Bug#1952, bug#1990).
6737
6738 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
6739
6740 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
6741
6742 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
6743 (ns_no_defaults): New declaration.
6744 (main): Use it.
6745
6746 * nsterm.h (ns_no_defaults): New declaration.
6747
6748 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
6749
6750 * nsterm.m (ns_no_defaults): New variable.
6751 (ns_initialize): Don't read defaults when ns_no_defaults.
6752 (EmacsView-readSelectionFromPasteboard:)
6753 (writeSelectionToPasteboard:types:): New stubbed-out methods for
6754 NSServicesRequests protocol. (Bug#1435)
6755 (ns_dumpglyphs_stretch): New function.
6756 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
6757 of 2008-11-15 to other terms. (Bug#615)
6758
6759 * nsimage.m (setPixmapData:): Set to ignore image DPI.
6760
6761 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
6762
6763 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
6764 call for Sparc64.
6765
6766 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
6767
6768 * nsfns.m:
6769 * nsgui.h:
6770 * nsmenu.m:
6771 * nsselect.m:
6772 * nsterm.h:
6773 * nsterm.m: Remove '23' comments that indicated code added during
6774 update from emacs-20 -> emacs-23.
6775
6776 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
6777
6778 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
6779 ns_alternate_modifier. (Bug#1217)
6780
6781 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
6782 Display all shortcuts, including those w/o super modifier.
6783
6784 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
6785
6786 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
6787
6788 * fileio.c (Vwrite_region_post_annotation_function)
6789 (Vwrite_region_annotation_buffers): New vars.
6790 (build_annotations_unwind): Just reset
6791 Vwrite_region_annotation_buffers.
6792 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
6793 Call write-region-post-annotation-function.
6794 (build_annotations): Add to Vwrite_region_annotation_buffers if
6795 buffer changes.
6796
6797 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
6798
6799 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
6800 Tiger.
6801 * nsfns.m (ns_do_applescript):
6802 Conditionalize typeUTF16ExternalRepresentation on Tiger.
6803
6804 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
6805
6806 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
6807
6808 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
6809
6810 * nsmenu.m (NSMENUPROFILE): Change #if style.
6811
6812 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
6813
6814 * nsterm.m (x_set_frame_alpha): Add prototype.
6815 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
6816 handle Ctrl-tab. (Bug#1841)
6817 (ns_get_color): Use unsigned long long for scanned hex string value.
6818 (ns_term_shutdown): Abort on non SIGTERM signals.
6819 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
6820 (EmacsPrefsController-setPanelFromDefaultValues): New function.
6821 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
6822 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
6823 (ns_defined_color): Fix settings of the XColor variable fields:
6824 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
6825
6826 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
6827 DPI. (Bug#1316)
6828 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
6829 values in onTiger section.
6830
6831 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
6832
6833 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
6834 Check return value of font_spec_from_name.
6835 (Fx_list_fonts): Doc fix. (Bug#1951)
6836
6837 * font.c (font_spec_from_name): Return Qnil if font name could not
6838 be parsed.
6839 (font_parse_name): Treat a `?' character as part of an XLFD.
6840
6841 * fns.c (Fsubstring): Doc fix.
6842
6843 2009-01-19 Kenichi Handa <handa@m17n.org>
6844
6845 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
6846 (ftfont_list): Likewise.
6847
6848 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
6849
6850 * dbusbind.c (Fdbus_register_signal):
6851 * process.c (conv_sockaddr_to_lisp):
6852 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
6853
6854 * callproc.c (Fgetenv_internal): Doc fix.
6855
6856 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
6857
6858 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
6859 it is not even used.
6860
6861 2009-01-16 Glenn Morris <rgm@gnu.org>
6862
6863 * font.c (Ffont_variation_glyphs): Silence compiler.
6864
6865 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
6866
6867 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
6868 Reported by David Robinow <drobinow@gmail.com>.
6869
6870 2009-01-15 Kenichi Handa <handa@m17n.org>
6871
6872 * coding.c (detect_coding_system): Fix handling of null_byte_found.
6873
6874 2009-01-14 Jason Rumney <jasonr@gnu.org>
6875
6876 * frame.c (x_set_font): Always store a font to the font parameter,
6877 never a fontset. (Bug#1562)
6878
6879 2009-01-14 Kenichi Handa <handa@m17n.org>
6880
6881 * coding.c (TWO_MORE_BYTES): New macro.
6882 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
6883
6884 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
6885
6886 * font.c (font_clear_prop): If clearing the family, clear the font
6887 width index too.
6888
6889 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
6890
6891 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
6892
6893 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
6894 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
6895 functions, use sizeof.
6896
6897 2009-01-12 Martin Rudalics <rudalics@gmx.at>
6898
6899 * keyboard.c (read_char): Fix case where last_nonmenu_event
6900 returned a bad value with submenus. (Bug#447)
6901
6902 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
6903
6904 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
6905 family, clear the font width index too.
6906
6907 2009-01-11 Jason Rumney <jasonr@gnu.org>
6908
6909 * keyboard.c (cmd_error_internal): Exit when errors occur before
6910 frame creation and not in daemon mode. (Bug#1836)
6911
6912 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
6913
6914 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
6915 of a display vector, backtrack.
6916 (try_window_reusing_current_matrix): Check glyph type before
6917 referencing charpos member.
6918
6919 2009-01-10 Eli Zaretskii <eliz@gnu.org>
6920
6921 Fix Bug #876:
6922
6923 * coding.c (inhibit_null_byte_detection): New variable.
6924 (detect_coding, detect_coding_system): Don't pay attention to null
6925 bytes if inhibit_null_byte_detection is non-zero.
6926 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
6927 <inhibit-iso-escape-detection>: Doc fix.
6928
6929 2009-01-09 Jason Rumney <jasonr@gnu.org>
6930
6931 * w32font.c (add_font_entity_to_list): Don't report unknown
6932 Windows charset as any unrecognized registry. (Bug#1548)
6933 Only report Unicode Plane 2 fonts as unicode-sip.
6934
6935 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
6936
6937 * xfaces.c (Fx_font_family_list): Delete function.
6938 Move compatibility version to faces.el.
6939
6940 * font.c (Ffont_family_list): Return a list of strings, not symbols.
6941
6942 2009-01-09 Martin Rudalics <rudalics@gmx.at>
6943
6944 * frame.c (x_set_frame_parameters): Remember requested value for
6945 fullscreen before it's reset by the parameter handler.
6946
6947 2009-01-09 Glenn Morris <rgm@gnu.org>
6948
6949 * keyboard.c (last_command_char): For clarity, rename to...
6950 (last_command_event): ... and update all users.
6951 (last_input_char): For clarity, rename to...
6952 (last_input_event): ... and update all users.
6953 (last-command-char, last-input-char): Move to subr.el as aliases.
6954 * cmds.c, commands.h: Update for last_command_char rename.
6955
6956 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
6957
6958 * font.c (font_open_for_lface): Handle unspecified height attribute.
6959
6960 2009-01-08 Jason Rumney <jasonr@gnu.org>
6961
6962 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
6963 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
6964 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
6965 Don't declare.
6966 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
6967 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
6968
6969 2009-01-07 Kenichi Handa <handa@m17n.org>
6970
6971 * fileio.c (Finsert_file_contents): In the case of replace,
6972 remember the coding system used for decoding in
6973 coding_system (Bug#1039).
6974
6975 * coding.c (decode_coding_utf_8): Check byte_after_cr before
6976 breaking the loop. (Bug#870)
6977 (decode_coding_utf_16, decode_coding_emacs_mule)
6978 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6979 (decode_coding_charset): Likewise.
6980
6981 2009-01-05 Martin Rudalics <rudalics@gmx.at>
6982
6983 * frame.c (x_set_frame_parameters): Make sure height (width) get
6984 applied when fullwidth (fullheight) is set. (Bug#1522)
6985
6986 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
6987
6988 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
6989 (utc_base): Declare as ULONGLONG, not long double.
6990 (convert_time_raw): Delete.
6991 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
6992 (initialize_utc_base): New function.
6993 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
6994 (convert_from_time_t): Use initialize_utc_base; compute result with
6995 64-bit arithmetic.
6996 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
6997
6998 2009-01-03 Eli Zaretskii <eliz@gnu.org>
6999
7000 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
7001 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
7002 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
7003 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
7004 [!subprocesses]: Define.
7005 (syms_of_process) [!subprocesses]: Intern and staticpro them.
7006 (Flist_system_processes, Fsystem_process_attributes)
7007 [!subprocesses]: Call list_system_processes and
7008 system_process_attributes instead of returning Qnil.
7009
7010 * dosfns.c (system_process_attributes, list_system_processes):
7011 New functions.
7012
7013 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
7014
7015 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
7016 Don't use the default (no-op) implementation.
7017
7018 2009-01-03 Jason Rumney <jasonr@gnu.org>
7019
7020 * keyboard.c (parse_modifiers_uncached): Wheel events are
7021 clicks (bug#687).
7022
7023 * w32term.c (x_query_colors, x_query_color): New functions.
7024
7025 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
7026 (svg_load_image): Cast returned pointers from dynamically loaded
7027 functions. Eliminate W32 specific code.
7028
7029 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
7030
7031 * nsfns.m (x_set_foreground_color, x_set_background_color)
7032 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
7033 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
7034 x_ prefix instead of ns_. Update references.
7035 (syms_of_nsfns): Add a FIXME comment.
7036
7037 * nsterm.m (x_set_cursor_type): New prototype.
7038 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
7039
7040 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
7041 for Solaris instead of incorrectly providing Qutime and Qcutime.
7042
7043 2009-01-02 Eli Zaretskii <eliz@gnu.org>
7044
7045 * w32.c (process_times): Compute sum of utime and stime.
7046 (system_process_attributes): Add Qtime to the alist.
7047
7048 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
7049 and add them to the alist.
7050
7051 * process.c (top level) <Qtime, Qctime>: New variables.
7052 (syms_of_process): staticpro them.
7053 (Fsystem_process_attributes): Add their documentation to the doc
7054 string.
7055
7056 * process.h: Declare Qtime and Qctime.
7057
7058 2009-01-02 Jason Rumney <jasonr@gnu.org>
7059
7060 * image.c (Qgobject): New symbol.
7061 (syms_of_image): Initialize it.
7062 (init_svg_functions): Load some functions from gobject library.
7063
7064 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
7065
7066 * frame.c (make_terminal_frame): Remove redundant code and useless
7067 block.
7068
7069 2009-01-01 Andreas Schwab <schwab@suse.de>
7070
7071 * process.c (conv_sockaddr_to_lisp): Add workaround for
7072 getsockname bug on BSD.
7073
7074 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
7075
7076 * xfns.c (x_create_tip_frame): Set border width of the X window.
7077
7078 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
7079
7080 2009-01-01 Jason Rumney <jasonr@gnu.org>
7081
7082 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
7083 Don't block input, as per earlier xterm.c changes.
7084
7085 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
7086
7087 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
7088 (ns_appkit_version_int): New function.
7089 (x-server-version): Use ns_appkit_version_int and follow 21+
7090 convention of returning 3 integers.
7091
7092 2008-12-30 Kenichi Handa <handa@m17n.org>
7093
7094 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
7095 (CHAR_SURROGATE_PAIR_P): New macro.
7096
7097 * font.h (struct font_driver): New member get_variation_glyphs.
7098
7099 * font.c (font_range): Don't require a font for a variation selector.
7100 (Ffont_variation_glyphs): New function.
7101 (syms_of_font): Defsubr it.
7102
7103 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
7104 ftfont_variation_glyphs.
7105 (setup_otf_gstring): New function.
7106 (ftfont_drive_otf): Use it.
7107 (ftfont_shape_by_flt): Handle variation selector.
7108 (ftfont_variation_glyphs): New function.
7109
7110 2008-12-30 Martin Rudalics <rudalics@gmx.at>
7111
7112 * frame.c (Vemacs_iconified): Remove.
7113
7114 2008-12-30 Jason Rumney <jasonr@gnu.org>
7115
7116 * frame.c (store_frame_param, x_get_arg): Enable newer code on
7117 WINDOWSNT too, as related changes have already been synced. (Bug#117)
7118
7119 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
7120
7121 * indent.c (Fvertical_motion): Don't advance iterator if we have
7122 reseated to the desired position.
7123
7124 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
7125 checking for pos match.
7126
7127 2008-12-30 Kenichi Handa <handa@m17n.org>
7128
7129 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
7130 just get the low 8-bit of the code.
7131
7132 * font.c (font_intern_prop): Validate str as multibyte.
7133
7134 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
7135
7136 * dispextern.h (struct face): Move lface and hash from the middle
7137 of bitfields.
7138
7139 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
7140
7141 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
7142
7143 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
7144 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
7145 instead of intervals.h.
7146
7147 2008-12-26 Andreas Schwab <schwab@suse.de>
7148
7149 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
7150 cons.
7151
7152 2008-12-26 Martin Rudalics <rudalics@gmx.at>
7153
7154 * textprop.c (Qminibuffer_prompt): New variable.
7155 (syms_of_textprop): Initialize it.
7156 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
7157 in minibuffer-prompt face. (Bug#1662)
7158
7159 2008-12-25 Jason Rumney <jasonr@gnu.org>
7160
7161 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
7162
7163 2008-12-24 Jason Rumney <jasonr@gnu.org>
7164
7165 * ralloc.c (r_alloc_reset_variable): New function.
7166
7167 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
7168 record of what points where. (Bug#716)
7169
7170 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
7171
7172 * minibuf.c (read_minibuf): Follow the non-interactive case when
7173 running as a daemon, before detaching.
7174
7175 2008-12-22 Andreas Schwab <schwab@suse.de>
7176
7177 * buffer.c (init_buffer): Use realloc instead of xrealloc.
7178 * gtkutil.c (free_widget_value): Use xfree instead of free.
7179
7180 2008-12-22 Martin Rudalics <rudalics@gmx.at>
7181
7182 * frame.c (delete_frame): New function derived from
7183 Fdelete_frame to handle Qnoelisp value for FORCE argument.
7184 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
7185 (Fdelete_frame): Call delete_frame. Remove line from doc-string
7186 saying that FORCE non-nil doesn't run `delete-frame-functions'.
7187 * frame.h: Extern delete_frame.
7188 * window.c (window_loop):
7189 * terminal.c (delete_terminal):
7190 * xterm.c (x_connection_closed):
7191 * xfns.c (Fx_hide_tip):
7192 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
7193
7194 2008-12-21 Jason Rumney <jasonr@gnu.org>
7195
7196 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
7197 when character maps to .notdef character.
7198
7199 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
7200
7201 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
7202
7203 2008-12-20 Jason Rumney <jasonr@gnu.org>
7204
7205 * frame.c (Fmake_terminal_frame): Raise an error when called from
7206 a graphical frame on Windows. (Bug#1325)
7207
7208 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
7209
7210 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
7211
7212 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
7213
7214 * minibuf.c (Fread_buffer): Doc fix.
7215
7216 2008-12-20 Jason Rumney <jasonr@gnu.org>
7217
7218 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
7219 server name in UNC paths. (Bug#719)
7220
7221 * coding.c (decode_coding): Clear chars_at_source flag when using
7222 charbuf. (Bug#1035)
7223
7224 2008-12-19 Daniel Engeler <engeler@gmail.com>
7225
7226 * sysdep.c (serial_configure): Fix typo.
7227
7228 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
7229
7230 * sysdep.c: Include alloca.h.
7231 (system_process_attributes): Add implementation for Solaris.
7232
7233 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
7234
7235 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
7236
7237 Reorganize implementation of Flist_system_processes and
7238 Fsystem_process_attributes. No functional changes.
7239 * process.c: Don't #include pwd.h, grp.h and limits.h.
7240 (Flist_system_processes): Just call list_system_processes.
7241 (Fsystem_process_attributes): Just call system_process_attributes.
7242 (procfs_list_system_processes, time_from_jiffies)
7243 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
7244 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
7245
7246 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
7247 (list_system_processes): Rename from
7248 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
7249 Provide a do nothing implementation.
7250 (system_process_attributes): Rename from
7251 procfs_list_system_processes.
7252 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
7253 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
7254
7255 * w32.c (list_system_processes): Rename from
7256 w32_list_system_processes.
7257 (system_process_attributes): Rename from
7258 w32_system_process_attributes.
7259
7260 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
7261
7262 * process.h (w32_list_system_processes)
7263 (w32_system_process_attributes): Remove.
7264 (list_system_processes, system_process_attributes):
7265 New prototypes.
7266
7267 2008-12-19 Kenichi Handa <handa@m17n.org>
7268
7269 * xfont.c (xfont_decode_coding_xlfd): New function.
7270 (xfont_encode_coding_xlfd): New function.
7271 (xfont_list_pattern): Decode XLFD by iso-8859-1.
7272 (xfont_list): Decode and encode XLFD by iso-8859-1.
7273 (xfont_match): Likewise.
7274 (xfont_list_family): Likewise.
7275 (xfont_open): Likewise.
7276
7277 * ftfont.c (ftfont_open): Generate a multibyte string if given
7278 names are utf-8.
7279
7280 * xftfont.c (xftfont_open): Generate a multibyte string if given
7281 names are utf-8.
7282
7283 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
7284
7285 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
7286 changed.
7287 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
7288 clicked on a detached tool bar button.
7289
7290 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
7291
7292 * emacs.c (main): Print and error and exit when no data is read
7293 from the pipe.
7294
7295 2008-12-17 Jason Rumney <jasonr@gnu.org>
7296
7297 * w32font.c (w32font_has_char): Always return -1.
7298
7299 2008-12-16 Kenichi Handa <handa@m17n.org>
7300
7301 * font.c (font_open_entity): Fix previous change.
7302
7303 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
7304
7305 * process.c: Include <limits.h>.
7306
7307 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
7308
7309 * font.c (font_update_drivers): Fix mistake in reconstructing the
7310 driver list.
7311
7312 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
7313
7314 * font.c (font_clear_cache): Fix format of font cache data.
7315
7316 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
7317
7318 * xftfont.c (xftfont_open): Free Xft font pattern if
7319 XftFontOpenPattern fails.
7320
7321 * xterm.c (x_free_frame_resources): Remove extraneous call to
7322 free_frame_faces.
7323
7324 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7325
7326 * xterm.c (x_delete_display): Move xim_close_dpy call to
7327 x_delete_terminal.
7328 (x_delete_terminal): Call xim_close_dpy.
7329
7330 2008-12-13 Jason Rumney <jasonr@gnu.org>
7331
7332 * w32font.c (intern_font_name): New function.
7333 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
7334 (w32font_open_internal, Fx_select_font): Decode font name.
7335 (fill_in_logfont, list_all_matching_fonts): Encode font name.
7336
7337 * w32font.h (intern_font_name): Declare new function.
7338
7339 * w32uniscribe.c (add_opentype_font_name_to_list):
7340 Use intern_font_name.
7341
7342 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7343
7344 * frame.c (Fdelete_frame): Call free_font_driver_list.
7345
7346 * font.c (free_font_driver_list): Implement missing function.
7347
7348 * w32term.c (w32_term_init): Don't initialize the image cache
7349 here; it will be done in init_frame_faces.
7350
7351 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
7352 (struct x_display_info): Remove unused member null_pixel. New
7353 member xim_callback_data.
7354
7355 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
7356 (xim_initialize): Save pointer to callback function data.
7357 (xim_close_dpy): Free callback function data. Call XCloseIM,
7358 reverting 2008-11-04 change by David Smith.
7359 (x_term_init): Don't initialize the image cache here; it will be
7360 done in init_frame_faces. Remove ancient "null_pixel" cruft.
7361 (x_delete_display): Free x_dnd_atoms member.
7362
7363 2008-12-13 Kenichi Handa <handa@m17n.org>
7364
7365 * font.c (font_rescale_ratio): Moved from xfaces.c.
7366 Argument type changed. Handle a font-spec too.
7367 (font_score): Check Vface_font_rescale_alist.
7368 (font_open_entity): Likewise. (Bug#1547)
7369
7370 * xfaces.c (font_rescale_ratio): Moved to font.c.
7371
7372 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7373
7374 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
7375
7376 2008-12-12 Jason Rumney <jasonr@gnu.org>
7377
7378 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
7379 Vwindow_system_version to the real w32 major version.
7380
7381 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
7382
7383 * term.c (init_tty): Move setting the terminal name before the
7384 potential user: maybe_fatal.
7385
7386 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
7387
7388 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
7389 all callers changed. Call free_frame_faces to free the face cache.
7390
7391 2008-12-11 Jason Rumney <jasonr@gnu.org>
7392
7393 * w32font.c (fill_in_logfont): Don't assume symbol script means
7394 SYMBOL_CHARSET. (Bug#547)
7395
7396 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
7397 size for surrogates. (Bug#1096, bug#872)
7398
7399 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7400
7401 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
7402
7403 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7404
7405 * process.c (Fsystem_process_attributes, syms_of_process):
7406 Fix typo in name of Ssystem_process_attributes.
7407 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
7408
7409 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7410
7411 * syntax.c (Fmodify_syntax_entry): Doc fix.
7412
7413 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
7414
7415 * font.c (Ffont_spec): Move usage to end of docstring.
7416
7417 2008-12-10 Jason Rumney <jasonr@gnu.org>
7418
7419 * w32font.c (Qcham): New symbol.
7420 (font_supported_scripts): Add cham, and comments for other new
7421 scripts in bitfield from OpenType spec.
7422 (add_font_entity_to_list): Limit unicode-sip fonts to those that
7423 contain characters beyond the bmp.
7424
7425 2008-12-10 Kenichi Handa <handa@m17n.org>
7426
7427 * ftfont.c (fc_charset_table): Add "unicode-sip".
7428 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
7429 Qunicode_sip.
7430
7431 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
7432
7433 * coding.c (QCdefault_char): Rename from QCdefalut_char.
7434 (Fcoding_system_put): Use QCdefault_char.
7435 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
7436
7437 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
7438
7439 * xftfont.c (syms_of_xftfont): Fix typo.
7440
7441 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
7442
7443 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
7444
7445 * emacs.c (main): Close daemon_pipe on exec.
7446
7447 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
7448
7449 * termchar.h (struct tty): New members termcap_term_buffer and
7450 termcap_strings_buffer.
7451
7452 * term.c (encode_terminal_code): Free any previous memory blocks
7453 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
7454 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
7455 All callers changed.
7456 (init_tty): Store termcap data and string buffers in new struct
7457 tty members termcap_term_buffer and termcap_strings_buffer.
7458 (delete_tty): Free them.
7459 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
7460
7461 2008-12-07 Seiji Zenitani <zenitani@mac.com>
7462
7463 * nsfns.m (ns_set_background_color): Remove code duplication.
7464 It was a substitute for face-transparency on OS X 10.3.
7465
7466 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
7467
7468 * coding.c (make_conversion_work_buffer): Disable buffer
7469 modification hooks in the work buffer.
7470
7471 2008-12-05 Eli Zaretskii <eliz@gnu.org>
7472
7473 * process.c (procfs_system_process_attributes): If `nread' has a
7474 negative value, assign zero to it.
7475
7476 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
7477
7478 * eval.c (Vdebug_on_error): Doc fix.
7479
7480 2008-12-05 Kenichi Handa <handa@m17n.org>
7481
7482 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
7483 second character is a combining character.
7484
7485 2008-12-05 Eli Zaretskii <eliz@gnu.org>
7486
7487 * process.c (procfs_system_process_attributes): Don't use cmd,
7488 cmdsize, and q without initializing them first.
7489
7490 2008-12-04 Jason Rumney <jasonr@gnu.org>
7491
7492 * w32font.c (w32font_draw): Initialize orig_clip before getting
7493 it, and delete it when finished.
7494
7495 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
7496
7497 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
7498 case when running as a daemon before detaching.
7499
7500 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
7501
7502 * w32.c (init_environment): Don't unload library shell32.dll.
7503
7504 2008-12-03 Kenichi Handa <handa@m17n.org>
7505
7506 * font.c (font_at): Set `multibyte' at first.
7507
7508 * coding.c (decode_coding_charset): Check type of an element of
7509 vector VALIDS.
7510 (encode_coding_emacs_mule): Be sure to set `code'.
7511
7512 * fontset.c (face_for_char): Handle invalid charset property correctly.
7513 (font_for_char): Likewise.
7514
7515 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
7516
7517 * font.c (Fopen_font): Compute pixel size correctly.
7518 (font_update_lface): Handle fonts with corrupted size specs,
7519 i.e. non-int and non-float.
7520
7521 * ftfont.c (ftfont_match): Initialize entity variable.
7522 (ftfont_resolve_generic_family): Avoid using uninitialized var.
7523 (ftfont_list_family): Initialize list var earlier.
7524
7525 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
7526
7527 * xterm.c (x_draw_glyph_string): Fall back on
7528 underline_minimum_offset for underline position.
7529
7530 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
7531
7532 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
7533
7534 * character.c (c_string_width): Specify the type for LEN.
7535
7536 2008-12-03 Kenichi Handa <handa@m17n.org>
7537
7538 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
7539 (decode_coding_utf_8): Likewise.
7540 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
7541 (produce_chars): Initialize consumed_chars to 0.
7542
7543 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
7544
7545 * keyboard.c (make_lispy_position): Only use PT if the selected
7546 window is current.
7547
7548 2008-12-02 Andreas Schwab <schwab@suse.de>
7549
7550 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
7551
7552 * doprnt.c (doprnt1): Fix size of charbuf.
7553
7554 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
7555
7556 * keyboard.c (timer_check): Revert last change.
7557
7558 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
7559
7560 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
7561
7562 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
7563
7564 * makefile.w32-in: Update dependencies.
7565 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
7566
7567 2008-12-01 Andreas Schwab <schwab@suse.de>
7568
7569 * font.c (register_font_driver): Use xmalloc.
7570 (font_put_frame_data): Likewise.
7571
7572 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
7573
7574 * xfaces.c (realize_x_face): Make abort condition clearer.
7575
7576 * gtkutil.c (update_frame_tool_bar): Initialize variable.
7577
7578 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
7579
7580 * keyboard.c (timer_check): After a timer runs, ensure that the
7581 selected window's buffer is current.
7582
7583 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
7584
7585 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
7586 It was accidentally restored by the Unicode merge.
7587
7588 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
7589
7590 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
7591
7592 * w32proc.c: Include "coding.h".
7593 (Fw32_short_file_name): Encode filename passed to Windows API.
7594 (Fw32_long_file_name): Encode filename passed to Windows API and
7595 decode back the result. (Bug#1433)
7596
7597 2008-11-29 Kenichi Handa <handa@m17n.org>
7598
7599 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
7600 not before accessing it.
7601
7602 * charset.c (Fdefine_charset_internal): After calculating
7603 min_char, max_char, and fastmap, copy the charset structure again.
7604 (encode_char): Fix the previous change.
7605
7606 2008-11-28 Seiji Zenitani <zenitani@mac.com>
7607
7608 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
7609
7610 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
7611
7612 * nsterm.m (x_set_frame_alpha): New function.
7613
7614 2008-11-27 Eli Zaretskii <eliz@gnu.org>
7615
7616 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
7617
7618 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
7619
7620 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
7621 pointer to check_face_name.
7622
7623 2008-11-27 Kenichi Handa <handa@m17n.org>
7624
7625 * category.h (SET_CATEGORY_SET): Call set_category_set.
7626 (set_category_set): Extern it.
7627
7628 * category.c (hash_get_category_set): New function.
7629 (Fmodify_category_entry): Adjusted for the change of
7630 char_table_ref_and_range. Call hash_get_category_set to get a
7631 category set to store in the table.
7632
7633 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
7634 Funify_charset.
7635
7636 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
7637 (DECODE_CHAR): Check if the decoder vector is ready.
7638 (ENCODE_CHAR): Check if the encoder char-table is ready.
7639 (maybe_unify_char): Extern it.
7640
7641 * charset.c (Vchar_unified_charset_table): Delete it.
7642 (inhibit_load_charset_map): New variable.
7643 (temp_charset_work): New variable.
7644 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
7645 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
7646 New macros.
7647 (load_charset_map): Meaning of control_flag changed. If
7648 inhibit_load_charset_map is nonzero, setup a table in
7649 temp_charset_work.
7650 (load_charset): New argument control_flag.
7651 (map_charset_for_dump): New function.
7652 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
7653 map_charset_for_dump.
7654 (Fdefine_charset_internal): If the charset method is MAP, load
7655 mapping tables by calling load_charset.
7656 (Funify_charset): Don't load a mapping table but directly set
7657 Vchar_unify_table.
7658 (maybe_unify_char): New function.
7659 (decode_char): Don't handle the deleted method MAP_DEFERRED.
7660 Handle the case of inhibit_load_charset_map being nonzero.
7661 (encode_char): Don't handle the deleted method MAP_DEFERRED.
7662 Handle the case of inhibit_load_charset_map being nonzero.
7663 (Fclear_charset_maps): Just free temp_charset_work.
7664 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
7665 variable.
7666
7667 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
7668 change of char_table_ref_and_range.
7669 (char_table_ref_and_range): Change the meaning of argument FROM
7670 and TO. Now the caller must provide initial values for *FROM
7671 and *TO.
7672
7673 * fontset.c (fontset_add): Adjusted for the change of
7674 char_table_ref_and_range.
7675 (fontset_get_font_group): Likewise.
7676 (Ffontset_info): Likewise.
7677
7678 * keymap.c (describe_vector): Adjusted for the change of
7679 char_table_ref_and_range. For char-table, put boundary between
7680 non-ASCII and 8-bit characters.
7681
7682 * print.c (print_object): For bool-vector, delete unnecessary
7683 check of ASCII_BYTE_P.
7684
7685 2008-11-26 Jason Rumney <jasonr@gnu.org>
7686
7687 * w32font.c (w32font_open_internal): Don't include external
7688 leading in font height. (Bug#879)
7689
7690 2008-11-26 Glenn Morris <rgm@gnu.org>
7691
7692 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
7693 redefinition with ifdef. (Bug#1383)
7694
7695 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
7696
7697 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
7698
7699 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
7700
7701 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
7702 New EmacsView methods.
7703 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
7704 Fixes bug #1048,1357,1414.
7705
7706 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
7707
7708 Fix bug #1362.
7709 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
7710 is not an indexed color.
7711 * nsterm.m (free_indexed_color): Add argument checking.
7712 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
7713
7714 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
7715
7716 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
7717 Document confirm-after-completion value for
7718 minibuffer-completion-confirm.
7719
7720 2008-11-24 Jason Rumney <jasonr@gnu.org>
7721
7722 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
7723 warning.
7724
7725 2008-11-23 Jason Rumney <jasonr@gnu.org>
7726
7727 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
7728 restored before returning.
7729
7730 * w32font.c (check_face_name): New function.
7731 (add_font_entity_to_list): Use it to filter out common substituted
7732 fonts. (Bug#642)
7733
7734 2008-11-22 Martin Rudalics <rudalics@gmx.at>
7735
7736 * buffer.c (Fswitch_to_buffer): Reword and mention new option
7737 confirm-nonexistent-file-or-buffer in doc-string.
7738
7739 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7740
7741 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
7742 Fix copy/paste typo. Add checks.
7743
7744 2008-11-21 Kenichi Handa <handa@m17n.org>
7745
7746 * coding.c (detect_coding_iso_2022): Reject invalid composition
7747 sequence.
7748 (DECODE_COMPOSITION_START): If the current source is the last
7749 block, and the current composition doesn't end, regard this
7750 sequence as invalid.
7751 (decode_coding_iso_2022): Handle invalid composition sequence.
7752
7753 2008-11-20 Martin Rudalics <rudalics@gmx.at>
7754
7755 * window.c (coordinates_in_window): Don't return
7756 ON_VERTICAL_BORDER for the rightmost position of a mode/header
7757 line when the window is not the rightmost one. (Bug#1372)
7758
7759 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
7760
7761 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
7762
7763 2008-11-15 Eli Zaretskii <eliz@gnu.org>
7764
7765 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
7766 and bright_bg if noninteractive is non-zero.
7767
7768 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7769
7770 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
7771 x_draw_glyph_string_background.
7772
7773 * w32term.c (x_draw_glyph_string): Likewise.
7774
7775 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
7776
7777 * xterm.c (x_draw_glyph_string): Stop drawing the background of
7778 the next glyph string once past the overhang width.
7779
7780 * nsterm.m (ns_draw_glyph_string): Likewise.
7781
7782 * w32term.c (x_draw_glyph_string): Likewise.
7783
7784 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
7785
7786 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
7787 double file close.
7788
7789 2008-11-14 Martin Rudalics <rudalics@gmx.at>
7790
7791 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
7792 dedicated status of window before attempting to display another
7793 buffer in it.
7794
7795 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
7796
7797 * msdos.c (Fmsdos_long_file_names):
7798 (syms_of_msdos) <dos-unsupported-char-glyph>:
7799 * dosfns.c (Fint86): Fix typos in docstrings.
7800
7801 2008-11-14 Eli Zaretskii <eliz@gnu.org>
7802
7803 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
7804
7805 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
7806
7807 * puresize.h (BASE_PURESIZE): Increase to 1260000.
7808
7809 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
7810
7811 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
7812
7813 * frame.h: Negative alpha means "don't touch".
7814
7815 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
7816
7817 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
7818
7819 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
7820
7821 * hftctl.c:
7822 * chpdef.h:
7823 * acldef.h: Remove files used only for systems no longer supported.
7824
7825 * Makefile.in: Fix .o alphabetical ordering.
7826 (hftctl.o): Remove dependency, file removed.
7827 (keymap.o, print.o): Depend on charset.h.
7828
7829 2008-11-10 Kenichi Handa <handa@m17n.org>
7830
7831 * character.c (Fget_byte): Fix and make it faster for unibyte target.
7832
7833 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
7834
7835 * dired.c (file_name_completion): If completion_ignore_case is
7836 enabled, ignore case when checking completion-regexp-list.
7837
7838 2008-11-08 Eli Zaretskii <eliz@gnu.org>
7839
7840 * vm-limit.c (get_lim_data): Fix last change.
7841
7842 2008-11-08 Kenichi Handa <handa@m17n.org>
7843
7844 * character.c (Fget_byte): New function.
7845 (syms_of_character): Defsubr Fget_byte.
7846
7847 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
7848
7849 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
7850 cursor position is valid after scrolling.
7851
7852 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
7853
7854 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
7855
7856 2008-11-06 Glenn Morris <rgm@gnu.org>
7857
7858 * xterm.c (handle_one_xevent): Don't let popup menus cause
7859 mouse-autoselect-window related window switching. (Bug#1261)
7860
7861 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
7862
7863 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
7864
7865 2008-11-04 Andreas Schwab <schwab@suse.de>
7866
7867 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
7868
7869 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
7870
7871 * xfns.c (Fx_wm_set_size_hint): New function.
7872
7873 2008-11-03 Martin Rudalics <rudalics@gmx.at>
7874
7875 * textprop.c (Fprevious_single_char_property_change): Return 0
7876 when there's no change in a string. (Bug#1301)
7877
7878 2008-11-02 Martin Rudalics <rudalics@gmx.at>
7879
7880 * frame.c (do_switch_frame): New argument NORECORD passed to
7881 Fselect_window.
7882 (Fselect_frame): New argument NORECORD passed to
7883 do_switch_frame.
7884 (Fset_frame_selected_window): New argument NORECORD passed to
7885 Fselect_frame.
7886 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
7887 in call of do_switch_frame.
7888 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
7889 Handle NORECORD argument in call of Fselect_frame.
7890 * lisp.h (do_switch_frame, Fselect_frame)
7891 (Fset_frame_selected_window): Adjust declarations.
7892 * window.c (select_frame_norecord): New function.
7893 (run_window_configuration_change_hook): Use it and call
7894 Fselect_frame with NORECORD set.
7895 (Fselect_window): Pass NORECORD to Fselect_frame.
7896 (Fset_window_configuration): Handle NORECORD argument in call of
7897 do_switch_frame.
7898 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
7899 Fset_frame_selected_window.
7900 * keyboard.c (command_loop_1): Handle NORECORD in call of
7901 Fselect_frame (currently ifdefd).
7902
7903 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
7904
7905 * emacs.c (USAGE2): Untabify.
7906
7907 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
7908
7909 * composite.c (fill_gstring_header): Fix copy/paste typo.
7910
7911 2008-10-31 Martin Rudalics <rudalics@gmx.at>
7912
7913 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
7914 (Fother_window): Rename argument and rewrite doc-string.
7915 (select_window_norecord): Fix return value. (Bug#1276)
7916
7917 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
7918
7919 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
7920 new frames overriding foreground for tooltips. Based on similar patch
7921 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
7922
7923 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
7924
7925 * emacs.c (Fdaemon_initialized): Initialize nfd.
7926
7927 2008-10-29 Martin Rudalics <rudalics@gmx.at>
7928
7929 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
7930 (Fwindow_text_height): Clarify doc-strings.
7931 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
7932 doc-string of window-scroll-functions.
7933
7934 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
7935
7936 * category.c (syms_of_category): Fix typo in docstring.
7937
7938 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
7939
7940 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
7941 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
7942 Fix typos in docstrings.
7943
7944 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
7945
7946 * emacs.c (daemon_pipe): Make non-static.
7947 (IS_DAEMON): Move definition ...
7948 * lisp.h (IS_DAEMON): ... here.
7949 (daemon_pipe): Declare.
7950 (is_daemon): Remove.
7951 * dispnew.c (init_display): Use IS_DAEMON.
7952
7953 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7954
7955 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
7956 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
7957
7958 * emacs.c (is_daemon): Remove.
7959 (main): Don't set is_daemon.
7960 (IS_DAEMON): New macro.
7961 (Fdaemonp, Fdaemon_initialized): Use it.
7962 (Fdaemon_initialized): Write a char into the pipe to make sure the
7963 parent exits.
7964 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
7965
7966 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
7967
7968 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
7969 over-sized glyph, draw it with the default glyph width.
7970
7971 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
7972 glyph, draw it with the default glyph width.
7973
7974 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
7975 glyph, draw it with the default glyph width.
7976
7977 * xdisp.c (try_scrolling): When computing the distance from the
7978 scroll margin to PT, try moving some distance past the window
7979 bottom before giving up.
7980
7981 2008-10-27 Martin Rudalics <rudalics@gmx.at>
7982
7983 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
7984 (Fset_window_buffer): Explain in doc-string that a window can be
7985 "strongly" dedicated to its buffer.
7986
7987 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
7988
7989 * emacs.c (daemon_name): New variable.
7990 (main): Deal with --daemon=SERVER_NAME.
7991 (Fdaemonp): Return a name if one was passed to --daemon.
7992
7993 2008-10-26 Romain Francoise <romain@orebokech.com>
7994
7995 * emacs.c (daemon_pipe): New variable.
7996 (main): Create a pipe before forking, make the parent exit only after
7997 the child has closed its end of the pipe. Move closing the
7998 descriptors ...
7999 (Fdaemon_initialized): ... here. New function.
8000
8001 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8002
8003 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
8004 the previous unoptimized table.
8005
8006 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
8007 the distinction between non-nil and non-t value of `dedicated'.
8008
8009 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
8010
8011 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
8012 read_char_minibuf_menu_text is large enough to hold the menu string.
8013
8014 2008-10-25 Martin Rudalics <rudalics@gmx.at>
8015
8016 * window.c (Fget_buffer_window, Fdelete_windows_on)
8017 (Freplace_buffer_in_windows): Make buffer argument optional and
8018 rename to buffer_or_name.
8019
8020 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
8021
8022 * xdisp.c (handle_single_display_spec, handle_display_prop):
8023 Undo 2005-05-16 change.
8024 (handle_stop): Pop iterator if it's loaded with an empty string.
8025 (get_overlay_strings_1): Don't save iterator if it's loaded with
8026 an empty string (bug#1201).
8027
8028 2008-10-24 Kenichi Handa <handa@m17n.org>
8029
8030 * ftfont.c (ftfont_otf_features): Fix previous change.
8031 (ftfont_otf_capability): Check FeatureList.FeatureCount before
8032 calling ftfont_otf_features.
8033
8034 2008-10-24 Kenichi Handa <handa@m17n.org>
8035
8036 * font.c (font_match_p): Fix for the case that a vector of
8037 characters is in script-representative-chars.
8038
8039 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
8040
8041 * dbusbind.c (xd_in_read_queued_messages): New variable.
8042 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
8043 (xd_read_queued_messages): Catch Qdbus_error from the macros.
8044 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
8045 macro. (Bug#1186)
8046
8047 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
8048
8049 * s/sol2-10.h: New file.
8050
8051 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
8052
8053 * xdisp.c (fill_glyph_string): Fix typo in source (though the
8054 poor beast has survived 9+ years and the jump from xterm.c!).
8055
8056 2008-10-23 Martin Rudalics <rudalics@gmx.at>
8057
8058 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
8059 Reword doc-string.
8060 (Fbury_buffer): In doc-string say what happens to the buffer's window.
8061
8062 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
8063
8064 * character.c (syms_of_character) <script-representative-chars>:
8065 <unicode-category-table>: Doc fixes.
8066
8067 2008-10-23 Noah Friedman <friedman@splode.com>
8068
8069 * coding.c (make_conversion_work_buffer): Check that
8070 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
8071 Fget_buffer_create.
8072
8073 2008-10-23 Kenichi Handa <handa@m17n.org>
8074
8075 * font.c (font_add_log): Check the values of extra properties.
8076
8077 2008-10-22 Martin Rudalics <rudalics@gmx.at>
8078
8079 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
8080 Reword doc-string.
8081 (Fset_window_parameter): Use NILP.
8082 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
8083 (Frecenter): Use "selected" instead of "current" window in doc-strings.
8084
8085 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
8086
8087 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
8088
8089 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8090
8091 * nsfns.m (ns_appkit_version): New function.
8092 (x-server-version): Use it.
8093 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
8094 (x-server-vendor): Don't check_ns().
8095
8096 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
8097
8098 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
8099
8100 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
8101 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
8102
8103 2008-10-22 Kenichi Handa <handa@m17n.org>
8104
8105 * syntax.c (scan_words): Call word_boundary_p instead of comparing
8106 scripts.
8107
8108 * category.c (word_boundary_p): Check scripts instead of charset.
8109 Handle nil value in word-separating-categories and
8110 word-combining-categories.
8111 (syms_of_category): Fix docstrings of word-separating-categories
8112 and word-combining-categories.
8113
8114 2008-10-21 Eli Zaretskii <eliz@gnu.org>
8115
8116 * coding.c (Fencode_coding_region, Fdecode_coding_region)
8117 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
8118
8119 2008-10-21 Martin Rudalics <rudalics@gmx.at>
8120
8121 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
8122 Rename arg "buffer" to "buffer_or_name".
8123 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
8124 it optional.
8125 (no_switch_window): Remove since the return value is not used.
8126 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
8127 Consider window as dedicated when Fwindow_dedicated_p returns a
8128 non-nil value.
8129 * lisp.h: Remove prototype for no_switch_window.
8130
8131 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
8132
8133 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
8134 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
8135
8136 2008-10-21 Kenichi Handa <handa@m17n.org>
8137
8138 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
8139 check Vlatin_extra_code_table.
8140
8141 2008-10-20 Eli Zaretskii <eliz@gnu.org>
8142
8143 * fileio.c (Fset_file_modes): Doc fix.
8144
8145 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
8146
8147 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
8148 in arrays.
8149
8150 2008-10-19 Martin Rudalics <rudalics@gmx.at>
8151
8152 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
8153 Mention kill-buffer in doc-string.
8154 (Fset_window_buffer): Reinsert tem check removed in last commit.
8155 (Fenlarge_window, Fshrink_window): Have argument names and
8156 doc-string follow Elisp manual more closely.
8157
8158 2008-10-18 Eli Zaretskii <eliz@gnu.org>
8159
8160 * fileio.c (Fset_file_modes): Doc fix.
8161
8162 2008-10-18 Martin Rudalics <rudalics@gmx.at>
8163
8164 * window.c (Fwindow_width, Fset_window_start)
8165 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
8166 (Fdelete_windows_on, Freplace_buffer_in_windows):
8167 Make doc-strings follow code and Elisp manual more closely.
8168 (Fwindow_dedicated_p): Make window argument optional.
8169 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
8170 (Fset_window_buffer): Respect any non-nil dedicated value for
8171 window. Rename "buffer" argument to "buffer_or_name".
8172
8173 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
8174
8175 * m/sh3.h: New file, machine description for SuperH.
8176
8177 2008-10-17 Martin Rudalics <rudalics@gmx.at>
8178
8179 * window.c (Fsplit_window): Rename arg horflag to horizontal.
8180
8181 2008-10-17 Kenichi Handa <handa@m17n.org>
8182
8183 * ftfont.c (ftfont_otf_features): Fix indexing
8184 gsub_gpos->FeatureList.Feature. Check the validity of indices.
8185
8186 2008-10-16 Magnus Henoch <mange@freemail.hu>
8187
8188 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
8189 (Fdbus_call_method_asynchronously): Ditto.
8190 This change makes C-h f display the argument list.
8191
8192 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
8193
8194 * fileio.c (Fexpand_file_name): Doc fix.
8195
8196 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
8197 of :foreground and :background equivalent to unspecified (20.x
8198 compatibility).
8199
8200 2008-10-15 Eli Zaretskii <eliz@gnu.org>
8201
8202 * buffer.c (syms_of_buffer): Doc fix.
8203
8204 2008-10-14 Kenichi Handa <handa@m17n.org>
8205
8206 * font.c (font_clear_prop): When clearing font width, clear the
8207 average width field too.
8208
8209 2008-10-12 Andreas Schwab <schwab@suse.de>
8210
8211 * ftfont.c (ftfont_shape_by_flt): Make static.
8212 * ftfont.h (ftfont_shape_by_flt): Don't declare.
8213
8214 * font.c: Don't include <m17n-flt.h>.
8215
8216 2008-10-10 Eli Zaretskii <eliz@gnu.org>
8217
8218 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
8219
8220 2008-10-09 Eli Zaretskii <eliz@gnu.org>
8221
8222 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
8223 away code.
8224
8225 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
8226
8227 * dispnew.c (update_text_area): Avoid looping due to large glyph
8228 overhangs (bug#1070).
8229
8230 2008-10-09 Kenichi Handa <handa@m17n.org>
8231
8232 * fontset.c (face_for_char): If face->fontset is negative, just
8233 return ascii_face.
8234
8235 * font.c (font_delete_unmatched): Fix previous change.
8236 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
8237
8238 2008-10-09 Martin Rudalics <rudalics@gmx.at>
8239
8240 * frame.c (Fraise_frame): On text-only terminals select frame in
8241 order to make it visible. (Bug#1061)
8242
8243 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
8244
8245 * fontset.c (fontset_find_font): Check frame validity.
8246
8247 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
8248
8249 * gtkutil.c (xg_display_open): Reset default display if none exists.
8250 (xg_display_close): Allow Emacs to close all displays (bug#985).
8251
8252 2008-10-06 Andreas Schwab <schwab@suse.de>
8253
8254 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
8255
8256 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
8257
8258 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
8259
8260 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
8261
8262 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
8263 during initialization.
8264
8265 2008-10-04 Eli Zaretskii <eliz@gnu.org>
8266
8267 * xdisp.c (redisplay_internal): If frame switched, redisplay the
8268 whole thing on MSDOS frames as well as on a TTY.
8269
8270 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
8271 well as for TTY.
8272 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
8273 well as on a TTY.
8274
8275 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
8276 as well as for TTY.
8277
8278 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
8279
8280 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
8281 MSDOS frames as well.
8282
8283 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
8284
8285 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
8286 correct arguments.
8287 * menu.c (find_and_return_menu_selection): Add cast.
8288
8289 2008-10-03 Glenn Morris <rgm@gnu.org>
8290
8291 * emacs.c (USAGE1): Add --daemon.
8292
8293 2008-10-02 Eli Zaretskii <eliz@gnu.org>
8294
8295 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
8296 100, so it's in percents as advertised.
8297
8298 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
8299
8300 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
8301 (ns_output.current_cursor, ns_output.desired_cursor)
8302 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
8303 (FRAME_NEW_CURSOR_COLOR): Remove.
8304
8305 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
8306 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
8307 enumeration (HOLLOW_BOX_CURSOR, etc.).
8308
8309 * nsterm.m (ns_frame_rehighlight): Remove commented code.
8310 (draw_window_cursor): Simplify code.
8311 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
8312 Don't change cursor type. In latter, call rehighlight instead of doing
8313 updates manually.
8314 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
8315 Use core Emacs cursor types.
8316
8317 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
8318
8319 2008-10-02 Martin Rudalics <rudalics@gmx.at>
8320
8321 * process.c (Faccept_process_output): Fix doc-string.
8322
8323 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
8324
8325 * gmalloc.c (__sbrk): Also define for uClibc.
8326
8327 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
8328 for uClibc.
8329
8330 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8331
8332 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
8333 styles.
8334 (nsfont_open): Reenable the cache.
8335
8336 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8337
8338 * font.c (font_matching_entity): Reflect ATTRS in font selection.
8339 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
8340
8341 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
8342
8343 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
8344 a suspended terminal.
8345
8346 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
8347
8348 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
8349
8350 2008-09-30 Eli Zaretskii <eliz@gnu.org>
8351
8352 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
8353
8354 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
8355
8356 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
8357 in a continued line coincides with a line beginning.
8358
8359 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
8360
8361 * nsfont.m (nsfont_trait_distance): Fix bug.
8362 (nsfont_list): Return a list rather than a vector (syncs with Handa
8363 changes of 2008-05-14).
8364 (nsfont_open): Improve logging.
8365
8366 2008-09-29 Andreas Schwab <schwab@suse.de>
8367
8368 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
8369
8370 2008-09-28 Martin Rudalics <rudalics@gmx.at>
8371
8372 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
8373 name as char-resolve-modifiers.
8374 Reported by: Markus Triska <markus.triska@gmx.at>
8375
8376 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
8377
8378 * dispnew.c (init_display): Return earlier when running as a daemon.
8379
8380 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8381
8382 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
8383
8384 2008-09-27 Eli Zaretskii <eliz@gnu.org>
8385
8386 * composite.c (Fcomposition_get_gstring)
8387 (Fcompose_region_internal, Fcompose_string_internal)
8388 (Ffind_composition_internal): Doc fix.
8389 (syms_of_composite) <compose-chars-after-function>: Doc fix.
8390 (syms_of_composite) <auto-composition-function>: Doc fix.
8391 (syms_of_composite) <composition-function-table>: Doc fix.
8392
8393 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
8394
8395 * search.c (wordify): New argument for lax word-ends.
8396 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
8397
8398 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
8399
8400 * lisp.h (is_daemon): Declare.
8401 * dispnew.c (init_display): Do not try to initialize the terminal
8402 when running as a daemon.
8403
8404 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
8405
8406 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
8407 x_display_pixel_height.
8408
8409 2008-09-22 Martin Rudalics <rudalics@gmx.at>
8410
8411 * undo.c (record_point): Don't call Fundo_boundary for first
8412 change. (Bug#731)
8413
8414 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
8415
8416 * emacs.c (Fdaemonp): Doc fix.
8417
8418 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
8419
8420 * emacs.c (main): Place #ifdef in the proper place.
8421
8422 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
8423
8424 * emacs.c (standard_args): Add --daemon.
8425 (main): Disconnect from the terminal when --daemon is passed.
8426 (is_daemon): New variable.
8427 (Fdaemonp): New function.
8428 (syms_of_emacs): Defsubr it.
8429
8430 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
8431
8432 * xdisp.c (get_next_display_element): Handle string display
8433 correctly when checking for the end of a box run.
8434
8435 2008-09-20 Glenn Morris <rgm@gnu.org>
8436
8437 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
8438 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
8439 (Frename_file): Avoid copying to trash if a rename involves
8440 a delete. (Bug#964).
8441
8442 2008-09-20 Eli Zaretskii <eliz@gnu.org>
8443
8444 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
8445 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
8446 frames as well as termcap frames.
8447 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
8448 get_named_tty.
8449
8450 2008-09-19 Eli Zaretskii <eliz@gnu.org>
8451
8452 * process.c (procfs_system_process_attributes): Fix cmdline in
8453 case /proc/PID/cmdline is empty.
8454
8455 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
8456 x_display_pixel_height.
8457
8458 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
8459
8460 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
8461
8462 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
8463 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
8464
8465 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
8466
8467 * dispextern.h (struct it): Move line_wrap away from the middle of
8468 bitfields. Move voffset in struct iterator_stack_entry after the
8469 bitfields. Move tab_width near after another short.
8470
8471 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
8472
8473 * frame.h (struct frame): Move alpha from the middle of bitfields.
8474
8475 * window.h (struct window): Move frozen_window_start_p after the
8476 rest of the bitfields to reduce padding.
8477
8478 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
8479
8480 * xterm.h (x_display_info): Remove `height' and `width' members.
8481
8482 * nsterm.h (ns_display_info): Remove `height' and `width' members.
8483
8484 * w32term.h (w32_display_info): Remove `height', `width',
8485 `height_in', and `width_in' members.
8486
8487 * xterm.c (x_display_pixel_height, x_display_pixel_width):
8488 New functions.
8489 (x_calc_absolute_position): Use them.
8490 (x_term_init): Omit removed `height' and `width' members.
8491
8492 * w32term.c (x_display_pixel_height, x_display_pixel_width):
8493 New functions.
8494 (w32_read_socket, x_calc_absolute_position): Use them.
8495 (w32_initialize_display_info, w32_term_init): Omit removed members
8496 of w32_display_info.
8497
8498 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
8499 New functions.
8500 (ns_initialize_display_info): Omit removed members of ns_display_info.
8501
8502 * xterm.c (x_display_pixel_height, x_display_pixel_width):
8503 New functions.
8504 (x_calc_absolute_position): Use them.
8505 (x_term_init): Omit removed `height' and `width' members.
8506
8507 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
8508 (compute_tip_xy):
8509 * frame.c (x_fullscreen_adjust):
8510 * xmenu.c (menu_position_func): Use x_display_pixel_height and
8511 x_display_pixel_width.
8512
8513 2008-09-18 Kenichi Handa <handa@m17n.org>
8514
8515 * composite.c (fill_gstring_header): Don't check FROM and TO here.
8516 (composition_compute_stop_pos): Fix handling of static composition.
8517 (Fcomposition_get_gstring): Check FROM and TO at first.
8518
8519 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8520
8521 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
8522 mixup (YAILOM).
8523
8524 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
8525
8526 * indent.c (Fvertical_motion): Use position reported by iterator
8527 instead of PT for determining screen motion (bug#943).
8528
8529 2008-09-17 Romain Francoise <romain@orebokech.com>
8530
8531 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
8532
8533 2008-09-17 Kenichi Handa <handa@m17n.org>
8534
8535 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
8536
8537 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
8538 if necessary.
8539
8540 2008-09-16 Kenichi Handa <handa@m17n.org>
8541
8542 * coding.c (make_conversion_work_buffer): Avoid calling
8543 Fget_buffer_create if it is not necessary.
8544
8545 2008-09-15 Martin Rudalics <rudalics@gmx.at>
8546
8547 * window.c (Fselect_window): Don't update window_select_count and
8548 use_time when norecord is not nil.
8549
8550 2008-09-14 Kenichi Handa <handa@m17n.org>
8551
8552 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
8553 specpdl_ptr.
8554
8555 2008-09-12 Kenichi Handa <handa@m17n.org>
8556
8557 * indent.c (scan_for_column): Don't handle automatic composition
8558 if the current buffer is not associated with a window.
8559
8560 * composite.c (composition_reseat_it): If the current buffer is
8561 not associated with a window, ignore the automatic composition.
8562 (find_automatic_composition): Likewise.
8563
8564 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8565
8566 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
8567 (Fgpm_mouse_stop): Use it.
8568 * termhooks.h (close_gpm): Declare.
8569 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
8570 connection if Gpm_GetEvent fails.
8571
8572 * window.c (set_window_buffer): Always preserve current-buffer.
8573
8574 2008-09-12 Glenn Morris <rgm@gnu.org>
8575
8576 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
8577
8578 2008-09-11 Glenn Morris <rgm@gnu.org>
8579
8580 * charset.c (charset-map-path): Doc fix.
8581
8582 2008-09-10 Kenichi Handa <handa@m17n.org>
8583
8584 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
8585
8586 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
8587 compose a grapheme cluster with the preceding base glyph.
8588
8589 * composite.c (composition_compute_stop_pos): Fix previous change.
8590 Reset cmp_it->id to -1 at first.
8591
8592 2008-09-10 Glenn Morris <rgm@gnu.org>
8593
8594 * Makefile.in (character.o, chartab.o): Fix config.h typo.
8595
8596 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
8597
8598 * keyboard.c (read_key_sequence): Reapply translation maps when
8599 switching keyboards.
8600
8601 2008-09-09 Kenichi Handa <handa@m17n.org>
8602
8603 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
8604 characters.
8605
8606 * composite.c (FORWARD_CHAR): Fix calculation
8607 of (POSITION).pos_byte.
8608 (composition_compute_stop_pos): Limit the search of composition to
8609 at most 500 characters ahead. If we reach the limit or find a
8610 newline, set cmp_it->ch to -2 and return 0.
8611 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
8612
8613 2008-09-08 Kenichi Handa <handa@m17n.org>
8614
8615 * indent.c (Fvertical_motion): Be sure to set
8616 it_overshoot_expected if it.cmp_it.id is non-negative.
8617
8618 2008-09-07 Andreas Schwab <schwab@suse.de>
8619
8620 * callproc.c (Fcall_process): Don't hold references to string data
8621 across garbage collection. Move initialisation of new_argv down
8622 to avoid compiler bug.
8623
8624 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8625
8626 * process.c (Fsystem_process_attributes): Doc fix.
8627
8628 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
8629
8630 * callproc.c (Fcall_process): Canonicalize current directory name.
8631
8632 * xdisp.c (move_it_to): When moving by vpos, ensure that the
8633 iterator advances to the next line if the current line ends in a
8634 continued tab.
8635
8636 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
8637
8638 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
8639 member to point to cmp_from.
8640
8641 * xdisp.c: Doc fix for references to gidx data member.
8642
8643 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
8644
8645 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
8646
8647 2008-09-07 Kenichi Handa <handa@m17n.org>
8648
8649 * composite.c (FORWARD_CHAR): Check STOP after
8650 incrementing (POSITION).pos.
8651
8652 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8653
8654 * process.c (Fsystem_process_attributes): Doc fix.
8655
8656 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
8657
8658 * keyboard.c (Ftop_level): Doc fix.
8659
8660 2008-09-06 Eli Zaretskii <eliz@gnu.org>
8661
8662 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
8663 minibuffer, don't let lower part of menu invade the echo area.
8664
8665 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
8666 "char *q" to access menu text and advance through it. Revert the
8667 change that displayed ">" instead of ASCII character 0x10.
8668
8669 2008-09-05 Eli Zaretskii <eliz@gnu.org>
8670
8671 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
8672 toggle boxes and radio buttons on MS-DOS as well.
8673
8674 2008-09-05 Kenichi Handa <handa@m17n.org>
8675
8676 * composite.c (autocmp_chars): Check lookback count.
8677 (composition_compute_stop_pos): Set cmp_it->lookback.
8678 (composition_reseat_it): Check lookback count.
8679 (struct position_record): New struct.
8680 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
8681 (find_automatic_composition): New function.
8682 (composition_adjust_point): Use find_automatic_composition.
8683
8684 * dispextern.h (struct composition_it): New member lookback.
8685
8686 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
8687
8688 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
8689 if moving by a single line.
8690
8691 2008-09-02 Andreas Schwab <schwab@suse.de>
8692
8693 * xterm.c (x_delete_display): Fix merge error.
8694
8695 * fileio.c (Fexpand_file_name): Remove unused variables.
8696
8697 2008-09-02 Eli Zaretskii <eliz@gnu.org>
8698
8699 * fileio.c (Fexpand_file_name): Copy argument `name' into local
8700 storage on all platforms, not just on DOS_NT.
8701
8702 2008-09-02 Jason Rumney <jasonr@gnu.org>
8703
8704 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
8705 Ensure mouse is not grabbed after menu is finished.
8706
8707 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
8708
8709 * xfaces.c (Finternal_set_alternative_font_family_alist)
8710 (Finternal_set_alternative_font_registry_alist): Properly copy
8711 entire alist structure.
8712
8713 2008-09-01 Kenichi Handa <handa@m17n.org>
8714
8715 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
8716 representative chars of the script is a vector.
8717 (ftfont_list): Handle the case where the representative chars of
8718 the script is a vector.
8719
8720 * character.c (syms_of_character): Docstring of
8721 script-representative-chars fixed.
8722
8723 2008-08-31 Eli Zaretskii <eliz@gnu.org>
8724
8725 * msdos.c (BUILD_CHAR_GLYPH): New macro.
8726 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
8727 the menu. Allocate larger buffer for `text', to account for
8728 possible ^C characters.
8729
8730 2008-08-31 Martin Rudalics <rudalics@gmx.at>
8731
8732 * xdisp.c (prepare_menu_bars): Don't call
8733 Vwindow_size_change_functions with arg Qt.
8734
8735 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
8736
8737 * font.h (font_range):
8738 * fileio.c (report_file_error):
8739 * composite.c (composition_update_it): Yet another int/Lisp_Object
8740 mixup (YAILOM).
8741
8742 2008-08-30 Glenn Morris <rgm@gnu.org>
8743
8744 * data.c (Fmake_variable_frame_local): Doc fix.
8745
8746 * frame.c (Fmodify_frame_parameters): Doc fix.
8747
8748 2008-08-30 Eli Zaretskii <eliz@gnu.org>
8749
8750 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
8751 needed by GetTokenInformation.
8752 (w32_system_process_attributes): Check return values of all system
8753 APIs.
8754
8755 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
8756 only when the state changes.
8757 (IT_update_begin, IT_update_end): Add termscript trace.
8758
8759 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
8760 clipboard is unavailable. Set dst to NULL if it doesn't point to
8761 malloc'ed data.
8762 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
8763 passing random values to xfree.
8764
8765 * dispnew.c (init_display): Set `tty's association in frame's
8766 parameters alist to the name of the terminal device, if that is known.
8767
8768 2008-08-29 Jason Rumney <jasonr@gnu.org>
8769
8770 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
8771
8772 2008-08-29 Eli Zaretskii <eliz@gnu.org>
8773
8774 * composite.c (fill_gstring_body): Avoid compiler warnings.
8775
8776 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
8777 LGLYPH_SET_CODE to avoid compiler warnings.
8778
8779 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
8780
8781 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
8782
8783 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
8784 LGLYPH_SET_CODE.
8785
8786 2008-08-29 Kenichi Handa <handa@m17n.org>
8787
8788 * fileio.c (report_file_error): Don't downcase the first character
8789 of errstring if it is still unibyte.
8790
8791 2008-08-29 Kenichi Handa <handa@m17n.org>
8792
8793 These changes are to re-implement the automatic composition so
8794 that it doesn't use text properties.
8795
8796 * Makefile.in (ftfont.o): Depend on composite.h.
8797 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
8798
8799 * character.h (Vunicode_category_table): Extern it.
8800
8801 * character.c (Vunicode_category_table): New variable.
8802 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
8803
8804 * chartab.c (optimize_sub_char_table): Perform more greedy
8805 optimization.
8806
8807 * composite.h (enum composition_method):
8808 Delete COMPOSITION_WITH_GLYPH_STRING.
8809 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
8810 (Vcomposition_function_table): Extern it.
8811 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
8812 (composition_gstring_put_cache, composition_gstring_from_id)
8813 (composition_gstring_p, composition_gstring_width)
8814 (composition_compute_stop_pos, composition_reseat_it)
8815 (composition_update_it, composition_adjust_point): Extern them.
8816 (Fcomposition_get_gstring): EXFUN it.
8817
8818 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
8819 (Vcomposition_function_table)
8820 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
8821 (gstring_hash_table, gstring_work, gstring_work_headers):
8822 New variables.
8823 (gstring_lookup_cache, composition_gstring_put_cache)
8824 (composition_gstring_from_id, composition_gstring_p)
8825 (composition_gstring_width, fill_gstring_header)
8826 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
8827 (composition_reseat_it, composition_update_it)
8828 (composition_adjust_point, Fcomposition_get_gstring): New functions.
8829 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
8830 and gstring_work_headers. DEFVAR_LISP composition-function-table.
8831 Defsubr composition_get_gstring.
8832
8833 * dispextern.h (struct glyph): New union u.cmp. Delete the member
8834 cmp_id.
8835 (struct glyph_string): Delete the member gidx. New members
8836 cmp_id, cmp_from, and cmp_to.
8837 (enum it_method): Delete GET_FROM_COMPOSITION.
8838 (struct composition_it): New struct.
8839 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
8840 Delete c, len, cmp_id, cmp_len in u.comp.
8841
8842 * font.h (enum lgstring_indices): Delete it.
8843 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
8844 (enum lglyph_indices): Likewise.
8845 (font_range): Adjust extern.
8846 (font_fill_lglyph_metrics): Extern it.
8847
8848 * font.c (QCf): New variable.
8849 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8850 (font_prepare_composition): Delete this function.
8851 (font_range): Type and arguments changed.
8852 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
8853 (font_fill_lglyph_metrics): New function.
8854 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
8855 (syms_of_font): DEFSYM QCf. Delete defsubr for
8856 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
8857 Defsubr Sfont_shape_gstring.
8858
8859 * fontset.h (font_for_char): Extern it.
8860
8861 * fontset.c (font_for_char): New function.
8862
8863 * ftfont.c: Include composite.h.
8864 (ftfont_resolve_generic_family): Add langset "en" to pattern.
8865 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8866
8867 * indent.c: Include composite.h and dispextern.h.
8868 (check_composition): Delete this function.
8869 (scan_for_column): Handle composition by
8870 composition_compute_stop_pos, composition_reseat_it, and
8871 composition_update_it.
8872 (compute_motion): Likewise.
8873 (Fvertical_motion): Fix checking of composition.
8874
8875 * keyboard.c (adjust_point_for_property): Check composition by
8876 composition_adjust_point.
8877
8878 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
8879 struct glyph_string.
8880
8881 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
8882 (append_composite_glyph): Adjust for the change of struct it and
8883 struct glyph.
8884 (produce_composite_glyph): Likewise.
8885
8886 * w32term.c (x_draw_composite_glyph_string_foreground):
8887 Adjust for the change of struct glyph_string.
8888 (x_draw_glyph_string): Likewise.
8889
8890 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
8891 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8892
8893 * xdisp.c: Include font.h.
8894 (it_props): Delete the entry for Qauto_composed.
8895 (init_iterator): Initialize it->cmp_it.id to -1.
8896 (compute_stop_pos): Call composition_compute_stop_pos.
8897 (face_before_or_after_it_pos): Adjust for the change of struct it.
8898 (handle_auto_composed_prop): Delete it.
8899 (handle_composition_prop): Handle only static composition.
8900 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
8901 from xassert. Initialize it->cmp_it.stop_pos.
8902 (push_it): Adjust for the change of struct it.
8903 (pop_it): Likewise.
8904 (get_next_element): Delete next_element_from_composition.
8905 (CHAR_COMPOSED_P): New macro.
8906 (get_next_display_element): For automatic composition, get a face
8907 from the font in the glyph-string.
8908 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
8909 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
8910 (next_element_from_string): Check if the character at the current
8911 position is composed by CHAR_COMPOSED_P.
8912 (next_element_from_buffer): Likewise.
8913 (next_element_from_composition): Adjust for the change of struct it.
8914 Update it->cmp_it.
8915 (dump_glyph): Adjust for the change of struct glyph.
8916 (fill_composite_glyph_string): Adjust for the change of struct
8917 it and struct glyph. Don't handle automatic composition here.
8918 (fill_gstring_glyph_string): New function.
8919 (x_get_glyph_overhangs): Handle automatic composition.
8920 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
8921 (BUILD_GSTRING_GLYPH_STRING): New macro.
8922 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
8923 automatic composition.
8924 (append_composite_glyph): Adjust for the change of struct it and
8925 struct glyph.
8926 (x_produce_glyphs): Adjust for the change of struct it.
8927
8928 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
8929 the change of struct glyph_string.
8930 (x_draw_glyph_string): Likewise.
8931
8932 2008-08-29 Glenn Morris <rgm@gnu.org>
8933
8934 * buffer.c (word-wrap): Doc fix.
8935 * xdisp.c (truncate-partial-width-windows): Doc fix.
8936 Increase default to 50.
8937
8938 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
8939
8940 * xdisp.c (update_tool_bar_unwind): New function.
8941 (update_tool_bar): Temporarily set selected frame before building
8942 tool-bar items.
8943
8944 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
8945
8946 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
8947 snprintf, respectively.
8948 (xd_append_arg): Convert strings with Fstring_make_unibyte.
8949
8950 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
8951
8952 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
8953 LDFLAGS to GNUstep CC invocation.
8954
8955 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
8956
8957 * indent.c (Fvertical_motion): Revert last change. Handle the
8958 general case where we are moving forward, and PT spans multiple
8959 screen lines.
8960
8961 * eval.c (find_handler_clause): Temporarily increase
8962 max-lisp-eval-depth while printing the backtrace buffer, to
8963 guarantee that help-mode code can run.
8964
8965 2008-08-27 Eli Zaretskii <eliz@gnu.org>
8966
8967 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
8968 colors under -rv.
8969 (IT_set_frame_parameters): Don't swap foreground and background
8970 colors if `(reverse . t)' is present in the frame properties.
8971 (internal_terminal_init): Call init_frame_faces only for the
8972 initial frame.
8973
8974 2008-08-27 Andreas Schwab <schwab@suse.de>
8975
8976 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
8977
8978 2008-08-27 Andreas Schwab <schwab@suse.de>
8979
8980 * search.c (search_buffer): Set char_base to zero only at the end.
8981
8982 2008-08-27 Kenichi Handa <handa@m17n.org>
8983
8984 * fileio.c (report_file_error): Fix handling of multibyte error string.
8985
8986 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
8987
8988 * xterm.c (x_term_init): Temporarily hide the partially
8989 initialized terminal while calling vendor-specific-keysyms.
8990
8991 2008-08-26 Eli Zaretskii <eliz@gnu.org>
8992
8993 * msdos.c (internal_terminal_init): Most initializations done only
8994 once, especially initial_screen_colors[] and termscript open.
8995
8996 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
8997
8998 * eval.c (Fcondition_case): Doc fix.
8999
9000 * widgetprv.h (EmacsFramePart): Change font member to the new font
9001 struct.
9002
9003 * widget.c: Include character.h and font.h for XSETFONT.
9004 (setup_frame_gcs): Compute X font id from font struct, just once.
9005
9006 2008-08-26 Eli Zaretskii <eliz@gnu.org>
9007
9008 * term.c (get_named_tty): Fix last change.
9009
9010 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
9011
9012 * indent.c (Fvertical_motion): If moving forward starting from a
9013 multi-line string, move the iterator to the last line of that string.
9014
9015 2008-08-25 Eli Zaretskii <eliz@gnu.org>
9016
9017 * frame.c (do_switch_frame): Mark previously displayed frame as
9018 obscured for FRAME_MSDOS_P frames as well.
9019
9020 2008-08-24 Eli Zaretskii <eliz@gnu.org>
9021
9022 * frame.c (make_terminal_frame): Initialize f->terminal,
9023 f->terminal->reference_count, and scroll bars on MS-DOS as well.
9024 Set the top frame to newly created frame.
9025 (Fmake_terminal_frame): Reuse the_only_display_info.
9026
9027 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
9028 estimating available memory.
9029
9030 2008-08-23 David Reitter <david.reitter@gmail.com>
9031
9032 * nsterm.m (ns_draw_window_cursor): Don't call
9033 NSDisableScreenUpdates and NSEnableScreenUpdates on
9034 non-NS_IMPL_COCOA systems.
9035
9036 2008-08-23 Andreas Schwab <schwab@suse.de>
9037
9038 * process.c (procfs_system_process_attributes): Fix use of
9039 uninitialized variables.
9040
9041 2008-08-23 Eli Zaretskii <eliz@gnu.org>
9042
9043 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
9044
9045 * dispnew.c (init_display): Remove MS-DOS specific conditions for
9046 calling tty-set-up-initial-frame-faces.
9047
9048 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
9049 Allow MSDOS frames along with X frames.
9050
9051 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
9052 addition to output_termcap.
9053
9054 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
9055
9056 * termchar.h (FRAME_TTY): Support output_msdos_raw.
9057 (struct tty_display_info) [MSDOS]: Add fields related to mouse
9058 highlight.
9059
9060 * process.c [!subprocesses]: Define QCname.
9061 (syms_of_process): Intern and staticpro it.
9062
9063 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
9064 Adjust for changes in encoding/decoding routines.
9065 Use encode_coding_object and decode_coding_object instead of
9066 encode_coding and decode_coding.
9067
9068 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
9069
9070 * dosfns.c: Include frame.h before termhooks.h.
9071 (dos_cleanup): Use CURTTY ()->termscript instead of a global
9072 variable termscript.
9073
9074 * s/msdos.h (USER_FULL_NAME): Define.
9075 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
9076
9077 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
9078 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
9079 pw->pw_gecos.
9080
9081 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
9082 SELECTED_FRAME as additional (1st) argument.
9083 (tty_read_avail_input): Handle output_msdos_raw in
9084 addition to output_termcap.
9085
9086 * msdos.c: Include frame.h before termhooks.h.
9087 (mouse_on, mouse_off, mouse_moveto, mouse_init)
9088 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
9089 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
9090 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
9091 (IT_set_terminal_modes, IT_reset_terminal_modes)
9092 (IT_set_frame_parameters): Use tty->termscript instead of a global
9093 variable termscript.
9094 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
9095 global variable terminal_coding. Don't refer to
9096 Vnonascii_translation_table.
9097 (internal_terminal_init): Set Vwindow_system in current_kboard.
9098 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
9099 Announce date and time of session start, if termscript is open.
9100 Don't zero out the_only_display_info (it is done in
9101 term.c:init_tty). Open termscript only of not already open.
9102 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
9103 here instead of dos_ttraw. Don't initialize display if this is an
9104 initial tty. Don't set FRAME_FONT.
9105 (Vwindow_system_version): Bump to 23.
9106 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
9107 is available, set up mouse_position_hook.
9108 (dos_ttraw, IT_set_terminal_modes): If called with initial
9109 terminal, do nothing.
9110 (IT_set_frame_parameters): Handle the Qtty_type frame
9111 parameter by calling internal_terminal_init.
9112 (dos_set_window_size, show_mouse_face)
9113 (clear_mouse_face, IT_note_mode_line_highlight)
9114 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
9115 (dos_rawgetc): Use tty_display_info instead of x_display_info.
9116 (initialize_msdos_display): New function.
9117 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
9118 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
9119 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
9120 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
9121 Accept additional argument: a pointer to a frame. Update all callers.
9122 (request_sigio, unrequest_sigio): Don't define, now defined on
9123 sysdep.c.
9124 (IT_write_glyphs): Rewrite to use encode_terminal_code.
9125
9126 * term.c [MSDOS]: Include msdos.h.
9127 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
9128 conditional to DOS_NT. Allow only one call to this function in a
9129 session. Don't allocate a new struct tty_display_info; instead,
9130 reuse the_only_display_info. Call get_tty_size to get screen
9131 dimensions. Call init_baud_rate to set bad_rate.
9132 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
9133 (Fsuspend_tty) [MSDOS]: Don't close input and output.
9134 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
9135 (get_tty_terminal, get_named_tty, Ftty_type)
9136 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
9137 output_termcap.
9138 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
9139 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
9140 only when subprocesses are supported.
9141
9142 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
9143 f->output_data.x.
9144 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
9145 terminal devices.
9146
9147 * msdos.h: Remove definition of struct x_display_info and struct
9148 x_output.
9149 (FRAME_FONT): Use output_data.tty.
9150 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
9151 (struct x_display_info): Rename from display_info. Update all users in
9152 msdos.c.
9153 (struct x_output): Remove background_pixel and foreground_pixel.
9154 (the_only_display_info): Rename from the_only_x_display.
9155 (dos_ttraw): Update prototype.
9156
9157 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
9158 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
9159
9160 2008-08-23 Jason Rumney <jasonr@gnu.org>
9161
9162 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
9163 (fn_TIFFSetDirectory): New library function used.
9164 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
9165 (tiff_load): Use :index to select among multiple images. Set count
9166 property when multiple images exist.
9167 (gif_format): Use :index, not :image.
9168
9169 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
9170
9171 * xdisp.c (try_scrolling): Check INT_MAX instead of
9172 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
9173 to obtain INT_MAX.
9174
9175 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
9176
9177 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
9178
9179 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
9180
9181 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
9182 GNUstep library location.
9183
9184 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
9185
9186 * xfaces.c (x_update_menu_appearance): Check validity of menu font
9187 before using it.
9188
9189 * puresize.h (BASE_PURESIZE): Increase to 1250000.
9190
9191 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
9192
9193 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
9194 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
9195 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
9196 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
9197 (EmacsApp-cursor_blink_handler): Remove declaration.
9198 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
9199 match 01 Feb 2008 changes in xterm.c.
9200 (ns_read_socket): Add cast to avoid warning.
9201 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
9202 GNUstep.
9203
9204 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
9205
9206 * xselect.c (x_get_foreign_selection): Return nil if desired
9207 selection could not be obtained, instead of signalling an error.
9208
9209 2008-08-20 David Reitter <david.reitter@gmail.com>
9210
9211 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
9212 * nsterm.m: Remove ns-specific code for cursor blinking.
9213 (ns_draw_window_cursor): Clear cursor properly rather than
9214 redrawing the area. Respect width of bar cursors.
9215 These changes enable the use of generic blink-cursor-mode and
9216 generic cursor types in NS and support smooth cursor movements (do
9217 not blink off after command).
9218 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
9219 Nextstep, too.
9220
9221 2008-08-19 Kenichi Handa <handa@m17n.org>
9222
9223 * font.c (Vfont_log_deferred): New variable.
9224 (font_add_log): Check Vfont_log_deferred.
9225 (font_deferred_log): New function.
9226
9227 * font.h (font_deferred_log): Extern it.
9228
9229 * fontset.c (reorder_font_vector): Use encoding charset of fonts
9230 for sorting.
9231 (face_for_char): Use deferred log.
9232
9233 2008-08-18 Kenichi Handa <handa@m17n.org>
9234
9235 * fontset.c (face_for_char): Add font log.
9236
9237 * font.c (font_add_log): Add the font properties :script, :lang,
9238 and :otf in the log.
9239
9240 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
9241
9242 * xdisp.c: Remove dead code.
9243 (handle_invisible_prop, next_overlay_string): Defer call to
9244 setup_for_ellipsis.
9245 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
9246
9247 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
9248
9249 * xfaces.c (lookup_derived_face): Properly handle possible zero
9250 return value of get_lface_attributes.
9251 (merge_faces): Don't tell lookup_derived_face to signal an error
9252 if face is not found.
9253
9254 * dired.c (Fdirectory_files): Doc fix.
9255
9256 * process.c (make_process): Initialize kill_without_query struct
9257 member.
9258
9259 2008-08-15 Eli Zaretskii <eliz@gnu.org>
9260
9261 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
9262 Alternative calculation of totphys for Visual Studio 6.
9263
9264 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
9265
9266 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
9267 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
9268 All users changed.
9269 (stat): Only root directory passed to GetDriveType. Allow RAM
9270 disk as well as local fixed disk when w32-get-true-file-attributes
9271 is set to `local'.
9272 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
9273 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
9274 (w32_cached_id, w32_add_to_cache): New functions.
9275 (get_name_and_id): Look account names in the cache before calling
9276 lookup_account_sid.
9277 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
9278 New initialization flags.
9279 (globals_of_w32): Initialize them to zero.
9280 (w32_system_process_attributes): Use w32_cached_id and
9281 w32_add_to_cache.
9282
9283 2008-08-14 Lawrence Mitchell <wence@gmx.li>
9284
9285 * lread.c (Fread_char, Fread_char_exclusive): If no character
9286 event is read before timeout is reached, return nil, rather than
9287 converting to a number.
9288
9289 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
9290
9291 * fns.c (use_dialog_box): Doc fix.
9292
9293 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
9294 on OS X.
9295
9296 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
9297
9298 * frame.c (Qns_parse_geometry): New var.
9299 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
9300
9301 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
9302
9303 * xdisp.c (x_produce_glyphs): Handle the case when font has no
9304 space character in calculating tabs.
9305
9306 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
9307
9308 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
9309
9310 2008-08-10 Glenn Morris <rgm@gnu.org>
9311
9312 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
9313 silence gcc "limited range of data type" warnings in some
9314 make_fixnum_or_float calls.
9315
9316 2008-08-09 Eli Zaretskii <eliz@gnu.org>
9317
9318 * w32.c (w32_system_process_attributes): If the process does not
9319 exist, return nil.
9320
9321 * w32.c: Include thelp32.h, psapi.h and coding.h.
9322 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
9323 declarations.
9324 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
9325 (Process32Next_Proc): New typedefs.
9326 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
9327 (g_b_init_process32_next, g_b_init_open_thread_token)
9328 (g_b_init_impersonate_self, g_b_init_revert_to_self)
9329 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
9330 (g_b_init_get_process_working_set_size)
9331 (g_b_init_global_memory_status_ex): New static variables.
9332 (globals_of_w32): Initialize them.
9333 (create_toolhelp32_snapshot, process32_first, process32_next)
9334 (open_thread_token, impersonate_self, revert_to_self)
9335 (get_process_memory_info, get_process_working_set_size)
9336 (global_memory_status, global_memory_status_ex): New wrapper
9337 functions.
9338 (w32_list_system_processes, w32_system_process_attributes)
9339 (enable_privilege, restore_privilege, ltime, process_times):
9340 New functions.
9341 (convert_time_raw): New function.
9342 (convert_time): Remove conversion of FILETIME into time in 100
9343 nsec units, call convert_time_raw instead.
9344
9345 * process.h (w32_list_system_processes, w32_system_process_attributes):
9346 Add prototypes.
9347 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
9348 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
9349 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
9350 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
9351
9352 * process.c (Fsystem_process_attributes): Doc fix.
9353
9354 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
9355
9356 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
9357 a continued multi-char glyph; if so, advance to the actual glyph.
9358
9359 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
9360
9361 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
9362
9363 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
9364 (.m.o): Use it.
9365 * config.in: Regenerate.
9366
9367 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
9368
9369 * xdisp.c (redisplay_window): Revert last change.
9370 (try_window): Check bottom scroll margin too.
9371
9372 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
9373
9374 * config.in: Regenerate.
9375
9376 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
9377 -list-load-path-shadows'.
9378 (nsgui.h): Reduce number of things depending on it.
9379
9380 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
9381
9382 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
9383 instead of window-end which does the wrong thing at eob.
9384 (try_cursor_movement): Minor optimization.
9385 (redisplay_window): If scroll margin is defined, don't assume
9386 window doesn't need scrolling.
9387
9388 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
9389
9390 * config.in: Regenerate.
9391
9392 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
9393 (mostlyclean): Don't delete *.d under NS.
9394
9395 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
9396
9397 2008-08-06 Kenichi Handa <handa@m17n.org>
9398
9399 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
9400
9401 2008-08-06 Andreas Schwab <schwab@suse.de>
9402
9403 * config.in: Regenerate.
9404
9405 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
9406
9407 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
9408 forcing a window start.
9409
9410 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
9411 (auto_save_1): Update modtime when auto-save-list-file-name is on.
9412
9413 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9414
9415 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
9416 argument.
9417
9418 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
9419
9420 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
9421 <scroll-down-aggressively, before-change-functions>:
9422 <after-change-functions>: Reflow docstrings.
9423
9424 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9425 Ken Raeburn <raeburn@gnu.org>
9426
9427 Dock menu customization, based on a patch by Ken Raeburn, plus some
9428 other fixes.
9429 * nsmenu.m (dockMenu): New variable.
9430 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
9431
9432 * nsterm.h (dockMenu): Declare.
9433
9434 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
9435 (ns_term_init): Initialize dockMenu.
9436 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
9437 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
9438 left.
9439
9440 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
9441
9442 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
9443
9444 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
9445
9446 * config.in: Regenerate.
9447
9448 2008-08-04 Seiji Zenitani <zenitani@mac.com>
9449
9450 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
9451
9452 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
9453
9454 * nsterm.h (find_and_call_menu_selection): Fix prototype.
9455
9456 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9457
9458 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
9459
9460 * keyboard.h: Comment an #endif.
9461
9462 * lisp.h (have_menus_p): Adjust comment.
9463
9464 * menu.c (find_and_return_menu_selection): Fix comparison with
9465 client_data.
9466
9467 * nsmenu.m (popup_activated_flag): New variable.
9468 (popup_activated): New function.
9469 (menu-or-popup-active-p): New exported lisp definition.
9470 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
9471 when popup done.
9472 (ns_popup_dialog): Set popup_activated_flag.
9473
9474 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
9475 version for GNUstep (handled by conditional typedef in nsterm.m).
9476 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
9477 in rgb.txt).
9478
9479 * process.c (init_process): Use DARWIN_OS, not DARWIN.
9480
9481 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
9482
9483 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
9484
9485 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
9486 shortcircuit if popup_activated like GTK and X toolkit.
9487
9488 * m/inter386.h: Change DARWIN to DARWIN_OS.
9489
9490 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
9491 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
9492 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
9493 comment on NO_SOCK_SIGIO.
9494
9495 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
9496
9497 * nsterm.m (windowDidResize): Remove stopModal call.
9498
9499 2008-08-03 Andreas Schwab <schwab@suse.de>
9500
9501 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
9502 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
9503
9504 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
9505
9506 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
9507 Don't use uninitialized pointer variable when using getrlimit.
9508
9509 2008-08-02 Jason Rumney <jasonr@gnu.org>
9510
9511 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
9512
9513 2008-08-02 Eli Zaretskii <eliz@gnu.org>
9514
9515 * alloc.c (NSTATICS): Bump to 0x640.
9516
9517 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
9518
9519 * lisp.h: Add prototype for directory_files_internal.
9520
9521 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
9522 New functions.
9523 (syms_of_process): Defsubr them. Add initializations for various
9524 Q* symbols used in procfs_system_process_attributes.
9525 (procfs_list_system_processes, procfs_system_process_attributes)
9526 [HAVE_PROCFS]: New functions.
9527 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
9528 (procfs_get_total_memory): New functions.
9529
9530 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
9531
9532 * xfaces.c (Fx_load_color_file): Fix previous change;
9533 it is #ifdef WINDOWSNT, not WINDOWS_NT.
9534
9535 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
9536
9537 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
9538
9539 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9540
9541 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
9542
9543 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
9544
9545 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
9546
9547 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
9548 define NSApplicationDelegateReplySuccess.
9549 (EmacsView -converstationIdentifier): Use long instead of
9550 NSInteger for GNUstep, since it doesn't have NSInteger.
9551
9552 * xmenu.c: Revert last change.
9553
9554 * keyboard.h: Fix last change.
9555
9556 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
9557
9558 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
9559 on Windows.
9560
9561 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9562
9563 Warning clearing and clean-up in NS port.
9564 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
9565 Add prototypes.
9566 * nsgui.h (FACE_DEFAULT): Remove, unused.
9567 (XGCValues): Change colors to unsigned long.
9568 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
9569 nsterm.m.
9570 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
9571 (ns_list_fonts): Remove, unused.
9572 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
9573 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
9574 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
9575 (nsfont_draw): Compare face colors to 0, not nil.
9576 * nsmenu.m (struct widget_value): Drop unneeded declaration.
9577 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
9578 (-addSubmenuWithTitle:): Use NSMenuItem class.
9579 (ns_popup_menu): Use NO, not NULL, for enabled setting.
9580 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
9581 (ns_clip_to_row): Make gc arg a BOOL.
9582 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
9583 ns_clip_to_row() call.
9584 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
9585 used). Cast FRAME_FONT assignments.
9586 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
9587 (ns_string_to_lispmod): Change arg to const char.
9588 (ns_term_init): Use NSMenuItem class.
9589 (EmacsApp -openFile:): Move to different section of file.
9590 (EmacsApp -application:openFiles:): Don't return a value, call
9591 -replyToOpenOrPrint:.
9592 (EmacsView -keyDown:): Fix up cast.
9593 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
9594 (EmacsView -menuDown:): Cast tag in call to
9595 find_and_call_menu_selection().
9596 (ns_list_fonts): Remove, unused.
9597 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
9598 (ns_fontname_to_xlfd): Make static.
9599 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
9600 Remove prototypes (now in keyboard.h).
9601 (next_menubar_widget_id): Remove, unused.
9602 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
9603 Remove prototypes (now in keyboard.h).
9604 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
9605
9606 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
9607
9608 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
9609 (floatfns.o): Depend on syssignal.h.
9610 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
9611
9612 * systty.h: Fix previous change that removed BSD_TERMIOS.
9613 Add comments to #ifdefs.
9614
9615 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9616
9617 * w32fns.c (w32-load-color-file): Remove.
9618 (x-open-connection): Use renamed Fx_load_color_file.
9619 * xfaces.c (x-load-color-file): Add.
9620 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
9621 Emacs.clr.
9622 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
9623
9624 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
9625
9626 * dbusbind.c (Fdbus_call_method_asynchronously)
9627 (Fdbus_method_error_internal): New defuns.
9628 (xd_read_message): Handle also reply messages.
9629 (Vdbus_registered_functions_table): Extend docstring.
9630
9631 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
9632
9633 * keyboard.c (gobble_input): Fix previous change.
9634
9635 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
9636
9637 * bitmaps/README:
9638 * xfns.c:
9639 * termcap.c:
9640 * term.c:
9641 * syswait.h:
9642 * systty.h:
9643 * systime.h:
9644 * syssignal.h:
9645 * sysdep.c:
9646 * process.h:
9647 * process.c:
9648 * print.c:
9649 * ndir.h:
9650 * lread.c:
9651 * keyboard.c:
9652 * getpagesize.h:
9653 * floatfns.c:
9654 * fileio.c:
9655 * emacs.c:
9656 * doc.c:
9657 * dispnew.c:
9658 * dired.c:
9659 * data.c:
9660 * callproc.c:
9661 * buffer.c:
9662 * README:
9663 * Makefile.in:
9664 * s/template.h:
9665 * s/msdos.h:
9666 * m/vax.h: Remove VMS support.
9667 * s/vms.h:
9668 * vlimit.h:
9669 * uaf.h:
9670 * temacs.opt:
9671 * param.h:
9672 * ioctl.h: Remove file.
9673
9674 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
9675
9676 * s/ms-w32.h (MULTI_KBOARD): Remove.
9677 * xterm.c:
9678 * xselect.c:
9679 * xfns.c:
9680 * window.c:
9681 * w32term.c:
9682 * w32fns.c:
9683 * terminal.c:
9684 * termhooks.h:
9685 * term.c:
9686 * sysdep.c:
9687 * keyboard.h:
9688 * keyboard.c:
9689 * frame.h:
9690 * frame.c:
9691 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
9692 * config.in: Regenerate.
9693
9694 2008-07-30 Jason Rumney <jasonr@gnu.org>
9695
9696 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
9697
9698 * w32font.c (w32font_encode_char): Leave as unicode if in range.
9699 (w32font_open_internal): Get unicode version of textmetrics.
9700 Don't enable or disable glyph indices here.
9701 (w32font_open): Disable use of glyph indices.
9702
9703 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
9704
9705 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
9706
9707 * minibuf.c (Vread_buffer_function): Doc fix.
9708
9709 2008-07-30 John Paul Wallington <jpw@pobox.com>
9710
9711 * minibuf.c (read_buffer_completion_ignore_case): New var.
9712 (Fread_buffer): Use it.
9713
9714 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
9715
9716 * systty.h (sensemode): Remove empty #if. Remove reference to
9717 BSD_TERMIOS, unused.
9718
9719 * sysdep.c: Remove reference to DGUX.
9720 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
9721
9722 * config.in: Regenerate.
9723
9724 2008-07-30 Jason Rumney <jasonr@gnu.org>
9725
9726 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
9727
9728 2008-07-29 Jason Rumney <jasonr@gnu.org>
9729
9730 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
9731 is populated.
9732 (uniscribe_encode_char): Always use uniscribe.
9733 Avoid using context if cache is populated.
9734
9735 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
9736
9737 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
9738 open menu.
9739
9740 * gtkutil.c (menu_nav_ended): Remove.
9741 (create_menus): Remove signal connect for menu_nav_ended.
9742
9743 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
9744
9745 * xdisp.c (redisplay_window): Check return value of
9746 compute_window_start_on_continuation_line before forcing a window
9747 start.
9748
9749 2008-07-28 Jason Rumney <jasonr@gnu.org>
9750
9751 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
9752
9753 * w32term.c (w32_enable_unicode_output, cleartype_active):
9754 Remove obsolete display options.
9755 (x_draw_glyph_string_background): Don't use old cleartype_active
9756 workaround.
9757 (w32_initialize): Remove cleartype_active initialization.
9758 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
9759
9760 2008-07-28 Andreas Schwab <schwab@suse.de>
9761
9762 * lisp.h (init_weak_hash_tables, syms_of_font)
9763 (xd_read_queued_messages, syms_of_dbusbind): Declare.
9764 (remove_hash_entry): Don't declare.
9765 * eval.c (maybe_call_debugger): Make static and move before use.
9766 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
9767 * xdisp.c: Include "gtkutil.h" if USE_GTK.
9768 * xterm.h (x_set_frame_alpha): Declare.
9769
9770 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
9771
9772 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
9773 (create_menus): Connect selection-done to menu_nav_ended.
9774
9775 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
9776
9777 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
9778 Set Vx_resource_name to a fallback. Replace read of 'buffered'
9779 parameter with read of 'alpha' one.
9780 (Qns_frame_parameter): Remove.
9781 * nsselect.m (selection-coding-system)
9782 (next-selection-coding-system, Vselection_coding_system)
9783 (Vnext_selection_coding_system): Drop.
9784
9785 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
9786
9787 * nsfns.m (do-applescript, do_applescript): Rename to
9788 ns-do-applescript, ns_do_applescript, and move within file.
9789
9790 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
9791
9792 Remove support for Mac Carbon.
9793 * mactoolbox.c:
9794 * macterm.h:
9795 * macterm.c:
9796 * macselect.c:
9797 * macmenu.c:
9798 * macgui.h:
9799 * macfns.c:
9800 * mac.c: Remove file.
9801 * s/darwin.h:
9802 * m/intel386.h:
9803 * xfaces.c:
9804 * xdisp.c:
9805 * window.c:
9806 * tparam.c:
9807 * termhooks.h:
9808 * termcap.c:
9809 * term.c:
9810 * syssignal.h:
9811 * sysselect.h:
9812 * sysdep.c:
9813 * process.c:
9814 * lread.c:
9815 * lisp.h:
9816 * keyboard.c:
9817 * image.c:
9818 * fringe.c:
9819 * frame.h:
9820 * frame.c:
9821 * fontset.c:
9822 * font.h:
9823 * font.c:
9824 * fns.c:
9825 * fileio.c:
9826 * emacs.c:
9827 * dispnew.c:
9828 * dispextern.h:
9829 * config.in:
9830 * atimer.c:
9831 * Makefile.in: Remove code for Carbon.
9832
9833 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9834
9835 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
9836
9837 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9838
9839 * macterm.h (kCGBitmapByteOrder32Host): New define for
9840 non-universal SDKs.
9841
9842 * image.c (mac_create_cg_image_from_image, image_load_image_io)
9843 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
9844
9845 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
9846 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
9847
9848 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
9849
9850 * w32inevt.c: Include dispextern.h.
9851
9852 2008-07-26 Andreas Schwab <schwab@suse.de>
9853
9854 * print.c (print_object): Fix off-by-one in last change.
9855
9856 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
9857
9858 * term.c (syms_of_term): Don't initialize default_orig_pair,
9859 default_set_foreground and default_set_background on Windows.
9860
9861 2008-07-25 Jason Rumney <jasonr@gnu.org>
9862
9863 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
9864 ScriptItemize. Clean up return value checking. Remove unused
9865 variables.
9866 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
9867 shaping engine.
9868
9869 * w32font.c (w32font_has_char): Handle the case where we can't
9870 determine the script for a character.
9871
9872 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
9873
9874 * term.c (syms_of_term): Initialize default_orig_pair,
9875 default_set_foreground, and default_set_background.
9876
9877 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
9878 clash (bug#86).
9879 (getloadavg): Callers changed.
9880
9881 * image.c (svg_load_image): Fix last change.
9882 (svg_load_image): Use rsvg_handle_get_dimensions to check that
9883 image size is valid. Use g_object_unref instead of deprecated
9884 rsvg_handle_free to free rsvg handle.
9885 (x_from_xcolors): Don't initialize pixmap (silence compiler).
9886
9887 2008-07-25 Jason Rumney <jasonr@gnu.org>
9888
9889 * w32font.c (w32font_encode_char): Encode characters outside BMP as
9890 surrogates before looking up glyph index.
9891 (w32font_text_extents): Encode as surrogates if falling back to
9892 functions that need UTF-16 wide chars.
9893
9894 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
9895 BMP as surrogates before looking up glyph index.
9896
9897 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
9898
9899 * image.c (svg_load_image): Check for failure in return value of
9900 rsvg_handle_get_pixbuf. Free rsvg handle when done.
9901
9902 2008-07-25 Jason Rumney <jasonr@gnu.org>
9903
9904 * w32font.c (Fx_select_font): Reverse sense of second arg.
9905
9906 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
9907
9908 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
9909 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
9910
9911 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
9912 (PURESIZE): Use it.
9913
9914 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
9915
9916 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
9917 * m/alpha.h (TEXT_END):
9918 * m/ibmrs6000.h (TEXT_END):
9919 * m/macppc.h (TEXT_END):
9920 * s/darwin.h (TEXT_END):
9921 * s/msdos.h (TEXT_END): Remove, unused.
9922 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
9923 * s/cygwin.h: Remove comment.
9924
9925 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
9926 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
9927 * m/intel386.h (DOT_GLOBAL_START):
9928 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
9929 (USG): Remove, file not used on USG platforms.
9930
9931 * Makefile.in (HAVE_X11): Remove empty #else.
9932
9933 2008-07-24 Andreas Schwab <schwab@suse.de>
9934
9935 * fileio.c (Finsert_file_contents): Properly adjust undo list
9936 after format conversion.
9937
9938 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
9939
9940 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
9941 (menu_nav_ended): Remove.
9942 (create_menus): Remove signal connect for menu_nav_ended.
9943 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
9944 create_menus.
9945 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
9946
9947 2008-07-23 Jason Rumney <jasonr@gnu.org>
9948
9949 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
9950 with opened font.
9951 (w32font_open): Set font type to gdi.
9952
9953 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
9954
9955 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
9956
9957 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
9958 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
9959 defines it.
9960 * unexec.c (ADDR_CORRECT): Define unconditionally.
9961
9962 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
9963
9964 * unexec.c: Remove code depending on !COFF and USG, the file is
9965 not used for such systems.
9966
9967 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
9968 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
9969 (LD_SWITCH_SYSTEM_1): Remove, update users.
9970
9971 * s/darwin.h (DATA_END):
9972 * m/intel386.h (DATA_END):
9973 * m/ibmrs6000.h (DATA_END):
9974 * m/alpha.h (DATA_END): Remove, unused.
9975
9976 * config.in: Regenerate.
9977 * s/ms-w32.h (subprocesses): Define unconditionally.
9978 * s/template.h (subprocesses): Update comment.
9979 * s/vms.h (subprocesses):
9980 * s/usg5-4.h (subprocesses):
9981 * s/hpux10-20.h (subprocesses):
9982 * s/gnu-linux.h (subprocesses):
9983 * s/cygwin.h (subprocesses):
9984 * s/bsd-common.h (subprocesses):
9985 * s/aix4-2.h (subprocesses):
9986 * s/darwin.h (subprocesses): Do not define, defined by default now.
9987
9988 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
9989 Remove all references.
9990 (temacs): Add GNUstep specific ld flags.
9991
9992 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
9993 similarly to what X does.
9994
9995 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
9996
9997 * nsfns.m (x-list-fonts): Remove.
9998 (syms_of_nsfns): Drop the x-list-fonts declaration.
9999 * nsterm.m: Get rid of remaining "//" comments.
10000
10001 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
10002
10003 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
10004
10005 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
10006 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
10007 (Fns_own_selection_internal, Fx_disown_selection_internal)
10008 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
10009
10010 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
10011 ... */' style of docstrings. Doc fixes.
10012
10013 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
10014
10015 * terminfo.c (UP, BC, PC): Undo previous change.
10016
10017 * nsfns.m: Rename ns prefixed functions/variables to the
10018 corresponding x versions. Update references.
10019
10020 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
10021
10022 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
10023
10024 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
10025
10026 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
10027 Remove forwarding functions.
10028 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
10029 non-static.
10030 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
10031 non-static.
10032 (ns_frame_parm_handlers): Use the new names.
10033 (syms_of_nsfns): Move to the end of file.
10034
10035 * nsterm.m (syms_of_nsterm): Move to the end of file.
10036
10037 * dispnew.c (init_display): Remove code for X10.
10038
10039 2008-07-22 Jason Rumney <jasonr@gnu.org>
10040
10041 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
10042 bare drive.
10043
10044 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
10045
10046 * nsterm.m (syms_of_nsterm): Remove debugging println.
10047
10048 2008-07-22 David Reitter <david.reitter@gmail.com>
10049
10050 * nsfns.m (do_applescript, F_do_applescript): NS version of the
10051 Carbon implementation of the same functionality: execute arbitrary
10052 AppleScript code.
10053
10054 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
10055
10056 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
10057 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
10058 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
10059 (Fx_display_mm_height, Fx_display_mm_width)
10060 (Fx_display_backing_store, Fx_display_visual_class)
10061 (Fx_display_save_under, Fx_open_connection)
10062 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
10063 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
10064 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
10065 (Fx_display_pixel_width, Fx_display_pixel_height)
10066 (Fx_display_usable_bounds, Fx_display_planes)
10067 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
10068 ... */' style of docstrings.
10069
10070 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
10071
10072 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
10073 on this platform.
10074 (mips):
10075 * m/iris4d.h (mips): Do not define.
10076 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
10077
10078 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
10079
10080 * image.c:
10081 * nsfns.m:
10082 * nsselect.m:
10083 * nsterm.h:
10084 * nsterm.m: Rename ns prefixed functions/variables to the
10085 corresponding x versions. Update references.
10086
10087 * m/ibms390x.h (NO_REMAP): Do not undefine.
10088
10089 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
10090
10091 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
10092
10093 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
10094 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
10095 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
10096 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
10097 (Fns_display_mm_height, Fns_display_mm_width)
10098 (Fns_display_backing_store, Fns_display_visual_class)
10099 (Fns_display_save_under, Fns_open_connection)
10100 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
10101 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
10102 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
10103 (Fns_display_pixel_width, Fns_display_pixel_height)
10104 (Fns_display_usable_bounds, Fx_display_planes)
10105 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
10106
10107 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
10108
10109 * print.c (print_object): Check print_depth before searching for
10110 circularities.
10111
10112 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
10113
10114 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
10115 only sprintf.
10116
10117 2008-07-21 Kenichi Handa <handa@m17n.org>
10118
10119 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
10120
10121 2008-07-20 Andreas Schwab <schwab@suse.de>
10122
10123 * syntax.c (find_start_pos, find_start_value)
10124 (find_start_value_byte, find_start_begv, find_defun_start)
10125 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
10126
10127 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
10128
10129 * s/sol2-3.h: Insert contents of s/sol2.h.
10130 (LD_SWITCH_SYSTEM): Remove redundant definition.
10131 * s/sol2.h: Remove, unused.
10132
10133 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
10134
10135 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
10136
10137 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
10138
10139 * Makefile.in (ns_appdir): Fix typo in find command.
10140
10141 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
10142
10143 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
10144
10145 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
10146 added not supported anymore.
10147
10148 * s/usg5-4-2.h (LIBS_SYSTEM):
10149 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
10150
10151 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
10152 * s/lynxos.h (GETPGRP_NO_ARG):
10153 * s/hpux10-20.h (NO_SIOCTL_H):
10154 * s/gnu.h (GETPGRP_NO_ARG):
10155 * s/gnu-linux.h (NO_SIOCTL_H):
10156 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
10157 * s/cygwin.h (GETPGRP_NO_ARG):
10158 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
10159 (C_DEBUG_SWITCH): Remove duplicate definition.
10160
10161 * m/ibms390.h: Remove boilerplate comments.
10162
10163 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
10164
10165 * process.c (HAVE_SERIAL): Consolidate ifdefs.
10166 (wait_reading_process_output): Remove code for SunOS, platform not
10167 supported anymore. Use SOLARIS2 instead of sun.
10168
10169 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10170
10171 * font.c (font_open_by_name): Under NS, default lface height to zero.
10172 (font_open_for_lface): Under NS, set size based on frame fontsize.
10173 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
10174 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
10175
10176 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10177
10178 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
10179 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
10180 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
10181 YES/NO.
10182 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
10183 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
10184 * Makefile.in (clean): Clear out build destination dir.
10185
10186 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10187
10188 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
10189 xterm, xselect.
10190 * lisp.h: Remove declaration of hash_remove.
10191 * nsgui.h: Remove redefinitions of hash_remove.
10192 * fns.c (hash_remove): Rename to hash_remove_from_table.
10193
10194 2008-07-19 Seiji Zenitani <zenitani@mac.com>
10195
10196 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
10197 strdup() the family UTF8String before modifying it.
10198
10199 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10200
10201 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
10202 NS_FACE_BACKGROUND with 0 instead of nil.
10203 * nsfont.m (nsfont_draw): Same.
10204
10205 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
10206
10207 * nsfns.m (ns_set_background_color): Fix crash.
10208
10209 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
10210
10211 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
10212
10213 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
10214
10215 * puresize.h (BASE_PURESIZE): Increase to 1240000.
10216
10217 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10218
10219 * gtkutil.c: Include <config.h> instead of "config.h".
10220
10221 * lisp.h (Foverlay_buffer): Add EXFUN.
10222
10223 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
10224 child process to complete child_setup. Undo 2005-09-21 change.
10225
10226 * s/darwin.h: Mention setsid after vfork.
10227
10228 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10229
10230 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
10231 Depend on macgui.h.
10232
10233 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
10234 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
10235
10236 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
10237 and f19.
10238 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
10239
10240 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
10241 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
10242 Remove enumerators.
10243
10244 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
10245 Check if FACE_FROM_ID returns NULL.
10246
10247 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
10248
10249 * w32inevt.c (change_frame_size): Remove extern declaration.
10250 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
10251 change_frame_size.
10252
10253 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
10254
10255 * getloadavg.c: Revert last change (2008-07-15).
10256
10257 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
10258
10259 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
10260 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
10261 from configure.
10262
10263 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
10264
10265 * s/sol2.h:
10266 * s/sol2-4.h: Reorganize conditionals.
10267
10268 * ecrt0.c: Remove code depending on m68000, not used anymore.
10269
10270 * fns.c (hash_remove): Make static.
10271 * lisp.h (hash_remove): Don't prototype.
10272
10273 * m/ibmrs6000.h:
10274 * m/ibms390x.h:
10275 * m/macppc.h: Remove boilerplate comments.
10276
10277 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
10278 Solaris, which does not need them.
10279
10280 * m/vax.h: Remove comments about unsupported systems.
10281
10282 * s/darwin.h: Reorganize ifdefs.
10283
10284 2008-07-17 Andreas Schwab <schwab@suse.de>
10285
10286 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
10287
10288 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
10289
10290 Use SDATA. Follow coding convention of placing operators at
10291 beginning of next line rather than end of previous line, and placing
10292 spaces around infix operators.
10293
10294 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
10295 in case it was defined already.
10296 USE @GNUSTEP_MAKEFILES@ rather than envvars.
10297 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
10298 ns_default.
10299 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
10300 Lisp_Objects.
10301 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
10302 (ns_defined_color, ns_color_to_lisp): Declare.
10303 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
10304 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
10305 it's accepted even with USE_LISP_UNION_TYPE.
10306 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
10307 (update_frame_tool_bar): Remove apparently obsolete tests for
10308 non-integerness of f->tool_bar_lines.
10309 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
10310 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
10311 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
10312 (nsfont_open): Don't confuse NULL for Qnil.
10313 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
10314 * menu.h (find_and_call_menu_selection):
10315 * menu.c (find_and_call_menu_selection): Use just int for vector size.
10316 (find_and_return_menu_selection): Always return something.
10317 * frame.h: Include dispextern.h for Display_Info.
10318 (display_x_get_resource): Declare.
10319
10320 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
10321
10322 * syntax.c: Remove stdio.h include accidentally introduced in
10323 Emacs.app commit.
10324 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
10325 NS_IMPL_COCOA.
10326 * keyboard.c (handle_async_input, input_available_signal): Remove
10327 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
10328
10329 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
10330
10331 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
10332 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
10333 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
10334 Use SDATA.
10335
10336 * keymap.c: Remove all NS-specific code.
10337 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
10338 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
10339 where_is_preferred_modifier, return a different value depending on how
10340 preferred is the binding.
10341 (where_is_internal): Adjust accordingly.
10342 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
10343 Adjust to new preferred_sequence_p.
10344 (syms_of_keymap): Declare `where-is-preferred-modifier'.
10345 * keyboard.c (parse_solitary_modifier): Not static any more.
10346 * keyboard.h (parse_solitary_modifier): Declare.
10347
10348 2008-07-16 Andreas Schwab <schwab@suse.de>
10349
10350 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
10351 of easymenu.
10352
10353 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
10354
10355 * xdisp.c (move_it_in_display_line): Account for word wrap, so
10356 that we don't move off the line.
10357
10358 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
10359
10360 * keyboard.c (Qsuper): Remove.
10361 (parse_menu_item): Don't call where_is_internal specially for NS.
10362
10363 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10364
10365 * s/gnu-linux.h: Remove boilerplate comments.
10366
10367 * m/alpha.h (__ELF__): Consolidate conditions.
10368
10369 * m/m68k.h (linux): Use GNU_LINUX instead.
10370 Remove boilerplate comments.
10371
10372 * m/intel386.h: Undo refactoring from previous change.
10373 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
10374 too, remove dead code.
10375 (linux): Use GNU_LINUX instead.
10376
10377 2008-07-16 Jason Rumney <jasonr@gnu.org>
10378
10379 * w32gui.h: Repeat 26 June changes lost by last change.
10380
10381 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10382
10383 * systty.h: Remove code for Aix on 386, unsupported platform.
10384
10385 * s/ms-w32.h: Remove boilerplate comments.
10386 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
10387
10388 * s/gnu-linux.h (TERM): Remove support.
10389 (HAVE_SYSVIPC): Remove, unused.
10390 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
10391 for this system.
10392
10393 * process.c: Remove support for IRIS, unused.
10394 Remove support for TERM, not relevant anymore.
10395
10396 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
10397 used with the definition.
10398
10399 * s/aix4-2.h (static): Do not undef.
10400
10401 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
10402 only used on Aix.
10403 (HAVE_SYSVIPC): Remove, unused.
10404
10405 * m/hp800.h (CANNOT_DUMP): Do not undef.
10406
10407 * m/alpha.h: Fix comment.
10408
10409 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
10410 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
10411 used by this configuration.
10412 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
10413 * unexec.c: Remove code depending on HPUX and
10414 USG_SHARED_LIBRARIES, not used with this file. Remove code
10415 depending on IRIS, unused. Remove if 0-ed code.
10416
10417 * s/template.h: Remove comments about static.
10418
10419 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
10420 Remove if 0-ed code.
10421 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
10422 were the same as the default.
10423 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
10424 Remove boilerplate comments.
10425 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
10426 (HAVE_SYSVIPC): Remove, unused.
10427 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
10428
10429 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10430 Remove boilerplate comments.
10431 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10432 Remove boilerplate comments.
10433 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10434 Remove boilerplate comments.
10435 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
10436
10437 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
10438 USG systems which do not use DATA_SEG_BITS.
10439 Refactor code. Remove boilerplate comments.
10440
10441 * m/ibms390.h:
10442 * m/m68k.h:
10443 * s/bsd-common.h:
10444 * s/cygwin.h:
10445 * s/darwin.h:
10446 * s/freebsd.h:
10447 * s/gnu.h:
10448 * s/msdos.h: Remove boilerplate comments.
10449
10450 * m/iris4d.h: Remove boilerplate comments and code for systems that
10451 do not use this file.
10452 (IRIS_4D): Remove, unused.
10453
10454 * m/mips.h: Remove boilerplate comments and code for systems that
10455 do not use this file.
10456 (SIGN_EXTEND_CHAR):
10457 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
10458 * unexmips.c: Remove file, unused.
10459
10460 * editfns.c (Fuser_full_name): Replace the only use of
10461 USER_FULL_NAME with its value.
10462 * config.in: Regenerate.
10463
10464 2008-07-16 David Reitter <david.reitter@gmail.com>
10465
10466 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
10467 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
10468
10469 2008-07-16 Glenn Morris <rgm@gnu.org>
10470
10471 * emacs.c (system-type): Doc fix.
10472
10473 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
10474
10475 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
10476 If the cache doesn't work, let's fix it, rather than work around it.
10477
10478 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10479
10480 * Makefile.in: Correct additions for nsfont.o in last commit.
10481 * nsfont.m: New file (forgot last commit).
10482
10483 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
10484
10485 * callproc.c (set_initial_environment): Initialize
10486 Vprocess_environment under CANNOT_DUMP (fixes crash when
10487 batch-compiling for bootstrap).
10488
10489 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
10490 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10491
10492 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
10493 fix crash due to different init order.
10494
10495 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10496
10497 Changes and additions for NeXTstep windowing system (Cocoa and
10498 GNUstep) support.
10499
10500 * Makefile.in:
10501 * config.in: Support defines and build commands for NS port.
10502 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
10503 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
10504 * dispextern.h: Include nsgui.h and add needed typedefs under NS
10505 windowing.
10506 (struct face): Add synth_ital field.
10507 * dispnew.c: Include nsterm.h when compiling under NS windowing.
10508 (init_display): Initialize Vinitial_window_system to "ns" when so
10509 compiled.
10510 * emacs.c: Include GSConfig.h when compiling under GNUstep.
10511 (display_arg): Use under NS.
10512 (main): Under NS, allocate autorelease pool and handle command line
10513 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
10514 (standard_args): Add NS-specific args.
10515 (shut_down_emacs): Shut down NS terminal if compiled under NS.
10516 * font.c (DEFAULT_ENCODING): New variable.
10517 (font_find_for_lface): Use it.
10518 (syms_of_font): Load syms_of_nsfont under NS.
10519 * font.h: Declare nsfont_driver when compiled under NS.
10520 * fontset.c: When compiling under NS, include nsterm.h.
10521 (fontset_from_font): Autoconstruct fontset under NS.
10522 * frame.c (various): Under NS, include nsterm.h, add Qns window system
10523 symbol, document and use it.
10524 (do_switch_frame): When for_deletion under Cocoa, add
10525 Fraise_frame(Qnil).
10526 (x_set_frame_parameters): Ensure font attribute changes are picked up.
10527 (x_get_arg): Allow "yes" and "no" as boolean values.
10528 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
10529 Qright under Cocoa.
10530 (focus-follows-mouse): Default to 0 under NS.
10531 * frame.h (enum output_method): Add output_ns.
10532 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
10533 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
10534 (FRAME_WINDOW_P): NS-specific definition.
10535 * fringe.c (max_used_fringe_bitmap): Make public.
10536 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
10537 (getloadavg): Use NeXT code under descendant OS's.
10538 * image.c (includes and header section, x_create_bitmap_from_data)
10539 (x_create_bitmap_from_file, free_bitmap_record, image_background)
10540 (image_background_transparent, x_clear_image_1)
10541 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
10542 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
10543 (x_to_xcolors, x_from_xcolors, x_disable_image)
10544 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
10545 other GUIs, including XPM support using code originally written for
10546 Carbon GUI.
10547 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
10548 using NS API.
10549 (image_ascent): Use font metrics macros instead of direct struct field
10550 access.
10551 * keyboard.c (includes): Add nsterm.h when compiling under NS.
10552 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
10553 Also, handle NS as GTK for menu bar purposes.
10554 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
10555 toolkit where they differ.
10556 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
10557 use cachelist, still needed under NS.
10558 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
10559 (struct widget_value): Define it here for menu.c.
10560 * keymap.c (includes): Include modifier internals.
10561 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
10562 NS.
10563 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
10564 support for preferring sequences using certain modifiers, specified by
10565 the FIRSTONLY argument.
10566 * lisp.h (hash_remove): Rename to avoid name clash when compiling
10567 under NS GNUstep implementation.
10568 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
10569 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
10570 * menu.c: Include nsterm.h under NS.
10571 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
10572 (free_menubar_widget_tree_value, update_submenu_strings)
10573 (find_and_call_menu_selection): Treat NS as X and NT.
10574 (find_and_return_menu_selection): New function, used for popup menus.
10575 * nsgui.h:
10576 * nsterm.h:
10577 * nsfns.m:
10578 * nsimage.m:
10579 * nsmenu.m:
10580 * nsselect.m:
10581 * nsterm.m: New files.
10582 * process.c (wait_reading_process_output): Under NS, call ns_select()
10583 instead of plain select().
10584 * syntax.c (char_quoted): Under NS, avoid a crash when called near
10585 beginning of buffer.
10586 * sysselect.h (init_process): Rename when compiling under Cocoa to
10587 avoid name conflict.
10588 * termhooks.h (display_info): Add ns_display_info to union.
10589 * terminal.c (Fterminal_live_p): Add ns to terminal types.
10590 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
10591 COCOA environment.
10592 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
10593 unexec() signature. (Note, this will dump, but the resulting file
10594 crashes; unexosx is used instead; keeping around for reference and
10595 possible aid in getting dump working under GNUstep.)
10596 * w32gui.h (button_type, widget_value): Remove definitions (now in
10597 keyboard.h).
10598 * window.c: Include nsterm.h when compiling under NS.
10599 * xdisp.c (includes): Include nsterm.h when compiling under NS.
10600 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
10601 other GUI windowing systems.
10602 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
10603 GTK.
10604 (x_consider_frame_title): Under NS, set icon type and frame
10605 modified-state indicator; use ns_set_name_as_filename() when using
10606 formatted title.
10607 (update_window_cursor): Make public when compiling under NS.
10608 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
10609 (hourglass_atimer, Vhourglass_delay
10610 * xfaces.c (header section, init_frame_faces, clear_font_table)
10611 (defined_color, unload_color, x_face_list_fonts)
10612 (prepare_face_for_display): Add NS support parallel to other GUIs.
10613 Emulate GCs like other non-X GUIs.
10614 (split_font_name): Don't lowercase font name under NS.
10615 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
10616 under NS.
10617 * s/darwin.h: Add support for compilation under NS.
10618
10619 2008-07-15 Jason Rumney <jasonr@gnu.org>
10620
10621 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
10622 (w32_show_hourglass): Rename from show_hourglass.
10623 (w32_hide_hourglass): Rename from hide_hourglass.
10624 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
10625 (Vhourglass_delay): Declare extern.
10626 (hourglass_started): Remove.
10627
10628 * xdisp.c (Vhourglass_delay): Remove static.
10629 (hourglass_started, start_hourglass, cancel_hourglass):
10630 Don't include these versions on WINDOWSNT.
10631
10632 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10633
10634 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
10635 variables (formerly in xfns.c).
10636 (show_hourglass, hide_hourglass): New prototypes (same).
10637 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
10638 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
10639 in xfns.c).
10640 (syms_of_xdisp): Declare/initialize display-hourglass,
10641 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
10642 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
10643 formerly in xfns.c.
10644 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
10645 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
10646 (start_hourglass, cancel_hourglass): Remove.
10647 (show_hourglass, hide_hourglass): Remove prototypes and static
10648 modifiers.
10649 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
10650 hourglass_atimer, hourglass_shown_p declaration/initialization.
10651 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
10652 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
10653 (start_hourglass, cancel_hourglass): Remove.
10654 (show_hourglass, hide_hourglass): Remove prototypes and static
10655 modifiers.
10656 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
10657 hourglass_atimer, hourglass_shown_p declaration/initialization.
10658 * w32fns.c (display_hourglass_p, Vhourglass_delay)
10659 (DEFAULT_HOURGLASS_DELAY): Remove.
10660 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
10661 hourglass_shown_p declaration/initialization.
10662
10663 2008-07-14 Jason Rumney <jasonr@gnu.org>
10664
10665 * w32fns.c (w32_get_arg): Remove wrapper function.
10666 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
10667 directly.
10668 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
10669
10670 2008-07-14 Kenichi Handa <handa@m17n.org>
10671
10672 * xfont.c (xfont_open): Add workaround for X's bug.
10673
10674 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
10675
10676 * fontset.c: Include <stdio.h> unconditionally.
10677
10678 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
10679
10680 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
10681 for filtering.
10682
10683 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
10684
10685 * s/vms.h: Use __GNUC__ instead of _GNUC_.
10686
10687 * m/macppc.h:
10688 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
10689
10690 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
10691 (SPECIAL_EMACS_INT):
10692 * m/ia64.h (SPECIAL_EMACS_INT):
10693 * m/amdx86-64.h (SPECIAL_EMACS_INT):
10694 * s/gnu.h (NLIST_STRUCT):
10695 * s/aix4-2.h (X11R5_INHIBIT_I18N):
10696 * s/gnu-linux.h (LINUX):
10697 * s/msdos.h (HAVE_FACES):
10698 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
10699
10700 * systty.h:
10701 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
10702 anymore.
10703
10704 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
10705
10706 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
10707 always defined as int.
10708
10709 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
10710 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
10711 * s/gnu-linux.h (HAVE_WAIT_HEADER):
10712 * s/freebsd.h (HAVE_WAIT_HEADER):
10713 * s/bsd-common.h (HAVE_UNION_WAIT):
10714 * s/aix4-2.h (HAVE_WAIT_HEADER):
10715 * m/mips.h (HAVE_UNION_WAIT):
10716 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
10717 (COFF, static): Do not define, they are undefined later in the file.
10718
10719 * process.c (update_status): Don't use a union.
10720 (status_convert):
10721 (sigchld_handler): Use int instead of WAITTYPE.
10722
10723 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
10724
10725 * indent.c (Fvertical_motion): Restore hscroll before moving to
10726 goal column.
10727
10728 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
10729
10730 * lisp.h: Remove left over code.
10731
10732 2008-07-11 Andreas Schwab <schwab@suse.de>
10733
10734 * lisp.h: Fix logic in last change.
10735
10736 * menu.h: New file.
10737 * menu.c: Include it.
10738 * xmenu.c: Likewise.
10739 * Makefile.in: Update dependencies.
10740
10741 2008-07-11 Kenichi Handa <handa@m17n.org>
10742
10743 * fontset.c (fontset_from_font): Cancel the previous change.
10744
10745 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
10746
10747 * lisp.h:
10748 * w32heap.c:
10749 * emacs.c:
10750 * alloc.c: Replace all references of NO_UNION_TYPE with
10751 USE_LISP_UNION_TYPE.
10752
10753 * m/xtensa.h (NO_UNION_TYPE):
10754 * m/vax.h (NO_UNION_TYPE):
10755 * m/template.h (NO_UNION_TYPE):
10756 * m/sparc.h (NO_UNION_TYPE):
10757 * m/mips.h (NO_UNION_TYPE):
10758 * m/macppc.h (NO_UNION_TYPE):
10759 * m/m68k.h (NO_UNION_TYPE):
10760 * m/iris4d.h (NO_UNION_TYPE):
10761 * m/intel386.h (NO_UNION_TYPE):
10762 * m/ibms390x.h (NO_UNION_TYPE):
10763 * m/ibms390.h (NO_UNION_TYPE):
10764 * m/ibmrs6000.h (NO_UNION_TYPE):
10765 * m/ia64.h (NO_UNION_TYPE):
10766 * m/hp800.h (NO_UNION_TYPE):
10767 * m/arm.h (NO_UNION_TYPE):
10768 * m/amdx86-64.h (NO_UNION_TYPE):
10769 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
10770 defining it the same.
10771
10772 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
10773
10774 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
10775
10776 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
10777
10778 * fileio.c:
10779 * sysdep.c:
10780 * systty.h:
10781 * m/ibmrs6000.h:
10782 * m/iris4d.h:
10783 * s/aix4-2.h:
10784 * s/freebsd.h:
10785 * s/gnu-linux.h:
10786 * s/hpux10-20.h:
10787 * s/hpux11.h:
10788 * s/netbsd.h:
10789 * s/sol2-3.h:
10790 * s/sol2-4.h:
10791 * s/sol2.h:
10792 * s/usg5-4.h:
10793 * s/vms.h: Remove references to unused variables.
10794
10795 2008-07-10 Andreas Schwab <schwab@suse.de>
10796
10797 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
10798 pattern before matching the generic family.
10799
10800 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
10801
10802 * unexec.c:
10803 * s/vms.h:
10804 * s/usg5-4-2.h:
10805 * s/sol2-5.h:
10806 * s/freebsd.h:
10807 * s/darwin.h: Remove dead code.
10808
10809 * m/template.h:
10810 * m/sparc.h:
10811 * m/mips.h:
10812 * m/m68k.h:
10813 * m/iris4d.h:
10814 * m/intel386.h:
10815 * m/ibms390x.h:
10816 * m/ibms390.h:
10817 * m/ia64.h:
10818 * m/hp800.h:
10819 * m/arm.h:
10820 * m/amdx86-64.h: Remove dead code and references to unused
10821 and compiler defined symbols.
10822
10823 * unexmips.c:
10824 * unexelf.c: Remove references to desupported systems.
10825
10826 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
10827
10828 * m/powermac.h: Remove boilerplate comments.
10829 (NO_REMAP): Remove unused definition.
10830
10831 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
10832 define them.
10833
10834 2008-07-10 Kenichi Handa <handa@m17n.org>
10835
10836 * xfont.c (xfont_open): Log the reason of failure.
10837
10838 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
10839
10840 * fontset.c (fontset_get_font_group):
10841 * font.c (font_check_otf): Specify argument types.
10842
10843 2008-07-09 Kenichi Handa <handa@m17n.org>
10844
10845 * coding.c (detect_coding_utf_8): Set detect_info->found only when
10846 non-ASCII char is found.
10847
10848 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
10849 (reorder_font_vector): Change the arg preferred_family to font.
10850 Prefer the spec matching with font.
10851 (fontset_get_font_group): New function.
10852 (fontset_find_font): Change the format of an element of a realized
10853 fontset. Use fontset_get_font_group.
10854 (fontset_font): Try the current fontset, the default fontset, the
10855 fallbacks of the current fontset, and the fallbacks of the default
10856 fontset in this order.
10857 (face_for_char): Delete the shortcut to use the current font.
10858 (fontset_from_font): Don't set fonts for Latin in the fontset.
10859
10860 * font.h (font_make_object, font_match_p): Adjust prototypes.
10861
10862 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
10863
10864 * font.c (font_make_object): New arg entity and pixelsize.
10865 (font_check_otf_features, font_check_otf): New functions.
10866 (font_match_p): Check :lang, :script, and :otf properties.
10867
10868 * xfont.c (xfont_open): Adjust it for the change of
10869 font_make_object.
10870 (xfont_text_extents): Fix initial setting of metrics.
10871
10872 * ftfont.c (struct ftfont_info): New member index, delete member
10873 fc_charset_idx. Make the member order compatible with struct
10874 xftfont_info.
10875 (fc_charset_table): Change charset names to registry names.
10876 (ftfont_pattern_entity): Delete the args registry and
10877 fc_charset_idx. Change the value of :font-entity property
10878 to (FONTNAME . INDEX). Always set :registry property to
10879 `iso10646-1'.
10880 (struct ftfont_cache_data): New struct.
10881 (ftfont_lookup_cache): New arg for_face.
10882 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
10883 (ftfont_driver): Set the member otf_capability.
10884 (ftfont_get_charset): Adjust it for the change of
10885 fc_charset_table.
10886 (OTF_TAG_SYM): New macro.
10887 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
10888 for the change of fc_charset_table.
10889 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
10890 ftfont_pattern_entity. Add FC_INDEX to objset.
10891 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
10892 and ftfont_pattern_entity.
10893 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
10894 font_make_object, struct ftfont_info.
10895 (ftfont_has_char): Use ftfont_get_fc_charset.
10896 (ftfont_otf_features, ftfont_otf_capability): New functions.
10897 (ftfont_shape): Use ftfont_get_otf.
10898 (ftfont_text_extents): Fix initial setting of metrics.
10899
10900 * xftfont.c (struct xftfont_info): New member ft_size. Make the
10901 member order compatible with struct ftfont_info.
10902 (xftfont_open): Add FC_CHARSET to the pattern. Set
10903 xftfont_info->ft_size. Don't unlock the face. Check BDF
10904 properties if appropriate.
10905 (xftfont_close): Unlock the face.
10906 (xftfont_anchor_point, xftfont_shape): Deleted.
10907 (syms_of_xftfont): Don't set members anchor_point and shape of
10908 xftfont_driver.
10909
10910 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
10911 font_make_object.
10912
10913 * w32font.c (w32font_open): Adjust it for the change of
10914 font_make_object.
10915 (w32font_open_internal): Don't set properties of font_object here.
10916
10917 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
10918
10919 * macfns.c (x_create_tip_frame):
10920 * w32fns.c (x_create_tip_frame):
10921 * xfns.c (x_create_tip_frame): Pass parameter argument to
10922 face-set-after-frame-default.
10923
10924 * xfaces.c (Finternal_merge_in_global_face): Save merged
10925 attributes for the default face back into the face vector.
10926
10927 2008-07-08 Andreas Schwab <schwab@suse.de>
10928
10929 * fontset.h: Declare fontset_from_font. Don't declare
10930 new_fontset_from_font and fontset_from_font_name.
10931 * xterm.c: Include "fontset.h".
10932 * Makefile.in (xterm.o): Update dependencies.
10933
10934 2008-07-08 Glenn Morris <rgm@gnu.org>
10935
10936 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
10937 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
10938
10939 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
10940
10941 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
10942 (x_set_frame_parameters): Don't bind it.
10943
10944 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
10945
10946 * w32fns.c (map_w32_filename): Declare extern.
10947
10948 2008-07-07 Jason Rumney <jasonr@gnu.org>
10949
10950 * w32term.c (WS_EX_LAYERED): Define if not already.
10951
10952 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
10953
10954 * xfaces.c (set_font_frame_param): Don't try to set the font
10955 parameter if it is still unspecified in the lface.
10956
10957 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
10958
10959 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
10960 face if it didn't already exist.
10961
10962 * xdisp.c (try_window_id): Give up if word-wrapping is on.
10963
10964 2008-07-05 Andreas Schwab <schwab@suse.de>
10965
10966 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
10967
10968 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
10969
10970 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
10971 word-wrapping.
10972 (IT_DISPLAYING_WHITESPACE): New macro.
10973 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
10974 when word-wrapping. Simplify word-wrapping logic. Use correct
10975 pixel positions when saving copies of the iterator.
10976 (display_line): Use proper wrap point if the last character on a
10977 line was preceded by whitespace.
10978
10979 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10980
10981 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
10982
10983 2008-07-04 Kenichi Handa <handa@m17n.org>
10984
10985 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
10986
10987 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
10988
10989 2008-07-02 Jason Rumney <jasonr@gnu.org>
10990
10991 * xfns.c (syms_of_xfns): Only define x-select-font when both
10992 HAVE_FREETYPE and USE_GTK.
10993
10994 * xdisp.c (next_element_from_display_vector): Move assignment out
10995 of if statement.
10996
10997 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
10998
10999 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
11000
11001 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
11002 (syms_of_fileio): Initialize and export them.
11003 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
11004
11005 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
11006 (Fsystem_move_file_to_trash): New function.
11007 (syms_of_w32fns): Export it to lisp.
11008
11009 2008-07-01 Jason Rumney <jasonr@gnu.org>
11010
11011 * w32font.c (w32font_text_extents): Don't count overhang as part
11012 of width.
11013
11014 2008-06-30 Miles Bader <miles@gnu.org>
11015
11016 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
11017 Add `avoid_cursor_p' field.
11018
11019 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
11020 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
11021 (append_glyph, append_composite_glyph, produce_image_glyph)
11022 (append_stretch_glyph): Initialize avoid_cursor_p.
11023 (get_it_property): Rename from `get_line_height_property'.
11024 (x_produce_glyphs): Use get_it_property.
11025 (handle_line_prefix, push_display_prop): New functions.
11026 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
11027 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
11028 New variables.
11029 (syms_of_xdisp): Initialize them.
11030
11031 2008-06-30 Kenichi Handa <handa@m17n.org>
11032
11033 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
11034 XftDefaultSubstitute (they are called in XftFontMatch).
11035 (xftfont_open): Fix args to ftfont_font_format.
11036
11037 * ftfont.c (fc_charset_table): New member lang.
11038 (ftfont_resolve_generic_family): New arg pattern.
11039 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
11040 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
11041 (ftfont_open): Fix args to ftfont_font_format.
11042 (ftfont_font_format): New arg filename.
11043
11044 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
11045
11046 * xfaces.c (Finternal_merge_in_global_face): If default face was
11047 modified, realize it again. Update the font face attribute.
11048
11049 2008-06-29 Jason Rumney <jasonr@gnu.org>
11050
11051 * w32term.c (x_set_frame_alpha): Fix logic.
11052
11053 2008-06-29 Kenichi Handa <handa@m17n.org>
11054
11055 * fontset.c (Finternal_char_font): Return font-object instead of
11056 font-name.
11057
11058 * composite.c (get_composition_id): Fix the width calculation for TAB.
11059
11060 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
11061
11062 * indent.c (Fvertical_motion): Properly handle float column arg.
11063
11064 2008-06-28 Jason Rumney <jasonr@gnu.org>
11065
11066 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
11067 (pfnSetLayeredWindowAttributes): New function pointer.
11068 (w32_initialize): Initialize it when supported.
11069 (x_set_frame_alpha): New function.
11070
11071 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
11072 (w32_frame_parm_handlers): Set alpha handler.
11073
11074 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
11075
11076 2008-06-27 Jason Rumney <jasonr@gnu.org>
11077
11078 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
11079 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
11080 (w32_to_x_charset, x_to_w32_charset)
11081 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
11082 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
11083 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
11084 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
11085 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
11086 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
11087 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
11088 (Qw32_charset_unicode): Remove.
11089 (syms_of_w32fns): Update for above changes.
11090
11091 * w32font.c (w32_to_x_charset, x_to_w32_charset)
11092 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
11093 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
11094 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
11095 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
11096 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
11097 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
11098 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
11099 (syms_of_w32font): Update for above changes.
11100
11101 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
11102
11103 * s/usg5-4.h: Fix previous change: keep the correct branch of a
11104 removed #if.
11105 (USG_SHARED_LIBRARIES): Remove duplicate definition.
11106
11107 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
11108 Eli Zaretskii <eliz@gnu.org>
11109
11110 * makefile.w32-in (LOCAL_FLAGS):
11111 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
11112
11113 * sysdep.c (_spawnlp, _getpid):
11114 Declare with explicit _cdecl instead of _CRTAPI1.
11115
11116 * editfns.c (Fget_internal_run_time):
11117 Check for WINDOWSNT with #ifdef, not #if.
11118
11119 2008-06-26 Jason Rumney <jasonr@gnu.org>
11120
11121 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
11122
11123 * w32term.c (x_draw_glyph_string_foreground)
11124 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
11125 Use FONT_HANDLE macro.
11126 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
11127
11128 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
11129 (uniscribe_encode_char): Use FONT_HANDLE macro.
11130
11131 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
11132 (w32font_text_extents): Use precast w32_font.
11133 (w32font_close): Free cached metrics.
11134 (w32font_open_internal): Allocate space for name on stack.
11135
11136 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
11137
11138 * xdisp.c (extend_face_to_end_of_line): Fix last change.
11139
11140 2008-06-26 Jason Rumney <jasonr@gnu.org>
11141
11142 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
11143 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
11144
11145 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
11146
11147 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
11148
11149 2008-06-26 Jason Rumney <jasonr@gnu.org>
11150
11151 * w32bdf.c, w32bdf.h: Remove obsolete files.
11152
11153 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
11154
11155 * w32gui.h: Don't include w32bdf.h.
11156 (XCharStruct, enum w32_char_font_type, W32FontStruct):
11157 Remove obsolete font support.
11158
11159 * w32font.h (struct w32font_info): Remove compat_w32_font.
11160 Add hfont member.
11161 (FONT_COMPAT): Remove obsolete macro.
11162
11163 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
11164 (w32font_encode_char, w32font_text_extents): Use new hfont member.
11165 (w32font_open_internal): Remove compat code. Set new hfont member.
11166 (Fx_select_font): Use new hfont member.
11167
11168 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
11169 (uniscribe_encode_char): Use new hfont member.
11170
11171 * w32term.c (x_draw_glyph_string_foreground)
11172 (x_draw_composite_glyph_string_foreground): Use new hfont member.
11173 (x_draw_glyph_string): Use metrics in w32font_info.
11174
11175 2008-06-26 Kenichi Handa <handa@m17n.org>
11176
11177 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
11178
11179 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
11180
11181 * unexnext.c:
11182 * m/ews4800.h:
11183 * m/hp9000s300.h:
11184 * m/ibm370aix.h:
11185 * m/mips-siemens.h:
11186 * m/ncr386.h:
11187 * m/next.h:
11188 * m/pmax.h:
11189 * m/powerpcle.h:
11190 * m/tandem-s2.h:
11191 * s/386bsd.h:
11192 * s/bsd386.h:
11193 * s/bsd4-1.h:
11194 * s/bsd4-2.h:
11195 * s/bsdos2-1.h:
11196 * s/bsdos2.h:
11197 * s/bsdos3.h:
11198 * s/bsdos4.h:
11199 * s/nextstep.h:
11200 * s/ultrix4-3.h:
11201 * s/usg5-0.h:
11202 * s/usg5-2-2.h:
11203 * s/usg5-2.h:
11204 * s/usg5-4-3.h:
11205 * s/ux4800.h:
11206 * s/uxpds.h:
11207 * s/uxpv.h: Remove support for obsolete systems.
11208 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
11209 Remove, insert contents in s/hpux10-20.h.
11210 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
11211 Remove, insert contents in s/aix4-2.h.
11212 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
11213 * s/bsd4-3.h: Rename to ...
11214 * s/bsd-common.h: ... this.
11215 * data.c:
11216 * doc.c:
11217 * ecrt0.c:
11218 * emacs.c:
11219 * fileio.c:
11220 * floatfns.c:
11221 * keyboard.c:
11222 * mem-limits.h:
11223 * print.c:
11224 * process.c:
11225 * sysdep.c:
11226 * syssignal.h:
11227 * systty.h:
11228 * syswait.h:
11229 * term.c:
11230 * unexec.c:
11231 * unexelf.c:
11232 * unexhp9k800.c:
11233 * m/hp800.h:
11234 * m/ibmrs6000.h:
11235 * m/mips.h:
11236 * m/vax.h:
11237 * s/darwin.h:
11238 * s/freebsd.h:
11239 * s/gnu.h:
11240 * s/ms-w32.h:
11241 * s/msdos.h:
11242 * s/netbsd.h:
11243 * s/template.h: Remove references to obsolete variables.
11244
11245 * Makefile.in: Add dependencies for all unexec files.
11246 (admindir): Remove unused variable.
11247 (UNEXEC_SRC): Remove references.
11248
11249 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
11250
11251 * xfns.c (x_default_font_parameter): If Xft is available, first
11252 try Monospace-12 for the default font.
11253
11254 2008-06-25 Jason Rumney <jasonr@gnu.org>
11255
11256 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
11257
11258 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11259
11260 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
11261
11262 * buffer.c (syms_of_buffer): Remove default-word-wrap.
11263
11264 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
11265
11266 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
11267 <scroll-conservatively>: Fix typo in docstring.
11268
11269 * xselect.c (Fx_send_client_event): Doc fix.
11270
11271 2008-06-25 Kenichi Handa <handa@m17n.org>
11272
11273 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
11274
11275 * font.c (font_parse_fcname): Remove unused variables.
11276 (font_sort_entites): Delete the arg SPEC. Caller changed.
11277 Fix for the case of ! best_only.
11278 (font_delete_unmatched): Check DPI and AVGWIDTH too.
11279
11280 * lisp.h (Fstring_to_unibyte): EXFUN it.
11281
11282 * character.h (str_to_unibyte): Extern it.
11283
11284 * character.c (str_to_unibyte): New function.
11285
11286 * fns.c (Fstring_to_unibyte): New function.
11287 (syms_of_fns): Defsubr it.
11288
11289 2008-06-24 Kenichi Handa <handa@m17n.org>
11290
11291 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
11292 DPI too.
11293 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
11294
11295 2008-06-24 Andreas Schwab <schwab@suse.de>
11296
11297 * Makefile.in (${lispsource}loaddefs.el): Rename from
11298 ../lisp/loaddefs.el.
11299 (bootstrap-clean): Do what distclean does but don't remove
11300 Makefile.
11301 (distclean): Depend on bootstrap-clean and remove Makefile.
11302
11303 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
11304
11305 * buffer.h (struct buffer): New member word_wrap.
11306
11307 * buffer.c (syms_of_buffer): New variables default-word-wrap and
11308 word-wrap.
11309 (init_buffer_once): Initialize them.
11310
11311 * dispextern.h (struct it): Replace bool truncate_lines_p with a
11312 line_wrap enum possessing three possible values.
11313
11314 * termopts.h: Replace truncate_partial_width_windows with
11315 Vtruncate_partial_width_windows.
11316
11317 * dispnew.c (direct_output_for_insert): Avoid direct output when
11318 inserting a space with word wrap on.
11319
11320 * indent.c (compute_motion): Obey integer values of
11321 truncate-partial-width-windows.
11322
11323 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
11324 replacing truncate_partial_width_windows.
11325 (init_iterator): If Vtruncate_partial_width_windows is an integer,
11326 truncate only if the window width is below that integer.
11327 (start_display, resize_mini_window, produce_stretch_glyph)
11328 (display_string, move_it_in_display_line_to): Use line_wrap.
11329 (back_to_previous_visible_line_start, reseat_1): Reset
11330 string_from_display_prop_p.
11331 (display_line): Extend default face to end of line when wrapping.
11332
11333 2008-06-24 Kim F. Storm <storm@cua.dk>
11334
11335 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
11336 to wrap continued lines at word boundaries.
11337
11338 2008-06-24 Jason Rumney <jasonr@gnu.org>
11339
11340 * font.c (Ffont_face_attributes): Multiply pixel size before point
11341 conversion to avoid multiplying rounding error.
11342
11343 2008-06-23 Jason Rumney <jasonr@gnu.org>
11344
11345 * w32term.c (x_draw_glyph_string_background)
11346 (x_draw_glyph_string): Remove old bdf font code.
11347
11348 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
11349
11350 2008-06-22 Kenichi Handa <handa@m17n.org>
11351
11352 * font.c (font_find_for_lface): Try the adstyle specified in
11353 the property of LFACE_FONT of LFACE (if any).
11354
11355 2008-06-21 Seiji Zenitani <zenitani@mac.com>
11356 Ryo Yoshitake <ryo@shiftmode.net>
11357
11358 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
11359
11360 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
11361
11362 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
11363 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
11364 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
11365 (witness-emacs): Remove.
11366 (lisp, shortlisp): Move loaddefs.el earlier.
11367 (mostlyclean): Forget about witness-emacs.
11368
11369 2008-06-22 Glenn Morris <rgm@gnu.org>
11370
11371 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
11372 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
11373
11374 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11375
11376 * Makefile.in (PRECOMP): Remove.
11377 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
11378 (witness-emacs): Run `compile-first'.
11379 (.el.elc): Use the new compile-onefile target.
11380
11381 2008-06-21 Kenichi Handa <handa@m17n.org>
11382
11383 * xftfont.c (xftfont_open): Handle QCembolden only when
11384 FC_EMBOLDEN is defined.
11385
11386 2008-06-21 Andreas Schwab <schwab@suse.de>
11387
11388 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
11389 (.el.elc): Likewise.
11390
11391 2008-06-21 Miles Bader <miles@gnu.org>
11392
11393 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
11394 build dir, not the lisp source dir.
11395
11396 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11397
11398 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
11399 (bootstrapclean): Remove.
11400 (.el.elc): New rule.
11401 (PRECOMP): New var.
11402 (../lisp/subdirs.el): Remove.
11403 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
11404 (witness-emacs): New target.
11405 (mostlyclean): Remove witness-emacs as well.
11406 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
11407 Add witness-emacs dependency.
11408
11409 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
11410
11411 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
11412 defined by the font.
11413
11414 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11415
11416 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
11417 (bootstrap-clean): New target that keeps TAGS around.
11418 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
11419 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
11420
11421 2008-06-20 Jason Rumney <jasonr@gnu.org>
11422
11423 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
11424 Remove obsolete font code.
11425
11426 * w32font.c (font_matches_spec): Use csb bitfield from font signature
11427 to determine language support.
11428
11429 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11430
11431 * sysdep.c (cfsetspeed): New fun extracted from the code.
11432 (cfmakeraw): Move before first use.
11433
11434 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
11435
11436 * sysdep.c (cfmakeraw): Provide fallback implementation.
11437 (serial_configure): Provide fallback implementation of cfsetspeed.
11438
11439 2008-06-20 Kenichi Handa <handa@m17n.org>
11440
11441 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
11442 the pattern.
11443
11444 * fontset.c (fontset_from_font): Copy font_spec before changing
11445 the elements.
11446
11447 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
11448
11449 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11450
11451 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
11452 for explicit `font' parameters.
11453
11454 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
11455
11456 2008-06-19 Kenichi Handa <handa@m17n.org>
11457
11458 * frame.c: Include <ctype.h>.
11459 (x_set_font_backend): Allow spacing characters in the X resource
11460 for FontBackend.
11461
11462 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
11463
11464 * w32fns.c, xfns.c (Qfont_param): New var.
11465 (syms_of_w32fns): Initialize it.
11466 (x_default_font_parameter): Record explicit `font' into
11467 `font-parameter'.
11468
11469 2008-06-18 Kenichi Handa <handa@m17n.org>
11470
11471 * font.c (font_parse_xlfd): Fix previous change.
11472 (font_parse_fcname): Don't use :fc-unknown-spec.
11473 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
11474 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
11475 (font_add_log): Prepend the driver name to the resulting fonts.
11476
11477 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
11478 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
11479 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
11480
11481 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
11482 (QCembolden): New variables.
11483 (syms_of_xftfont): DEFSYM them.
11484 (xftfont_open): Call XftFontMatch. Don't trust the result of
11485 XftTextExtents8 if the pixel_size is less than 5.
11486
11487 2008-06-18 Andreas Schwab <schwab@suse.de>
11488
11489 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
11490 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
11491
11492 2008-06-18 Jason Rumney <jasonr@gnu.org>
11493
11494 * w32font.c (w32font_list, w32font_match): Add logging.
11495
11496 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
11497
11498 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
11499
11500 * font.c (font_parse_fcname): Store divider characters for
11501 unknown-spec list. For known key symbols, intern using correct
11502 symbol name.
11503
11504 2008-06-17 Kenichi Handa <handa@m17n.org>
11505
11506 * xfaces.c (realize_default_face): If the frame is not on window
11507 system, set the fontset of face to nil.
11508
11509 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
11510
11511 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
11512
11513 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
11514
11515 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
11516 (build_font_name_from_vector): Delete externs.
11517
11518 * xfaces.c (struct font_name): Don't declare.
11519
11520 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
11521
11522 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
11523
11524 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
11525
11526 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
11527
11528 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
11529
11530 * font.c (Ffont_spec): Fix usage in docstring.
11531 (Ffont_face_attributes): Doc fix.
11532
11533 2008-06-16 Andreas Schwab <schwab@suse.de>
11534
11535 * font.c (Ffont_face_attributes): Fix definition.
11536
11537 2008-06-16 Jason Rumney <jasonr@gnu.org>
11538
11539 * font.h (font_style_symbolic_from_value): Remove.
11540
11541 * font.c (font_style_symbolic_from_value): Remove.
11542 (font_style_symbolic): Revert to pre 2008-06-13 version.
11543
11544 * w32font.c (w32_to_fc_weight): New function.
11545 (w32font_full_name, logfont_to_fcname): Use it.
11546
11547 2008-06-16 Kenichi Handa <handa@m17n.org>
11548
11549 * font.c (font_check_object): Delete it.
11550 (font_clear_cache): Check if a font-object is alive.
11551 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
11552 font-object to nil.
11553 (font_close_object): Don't check FONT_CLOSE_OBJECT.
11554 (font_at): Don't call font_check_object.
11555 (Ffont_get): Return a symbol for :weight, :slant, and :width.
11556
11557 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
11558
11559 * puresize.h (BASE_PURESIZE): Increase to 1230000.
11560
11561 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
11562
11563 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
11564
11565 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
11566
11567 * font.c (font_parse_fcname): Only one decimal point.
11568 (font_unparse_fcname): Handle data in family and foundry indices
11569 as symbols, not strings.
11570 (font_unparse_gtkname, Ffont_face_attributes): New functions.
11571
11572 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
11573
11574 * font.h (font_unparse_gtkname): Add prototype.
11575
11576 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
11577
11578 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
11579
11580 2008-06-15 Andreas Schwab <schwab@suse.de>
11581
11582 * font.c (font_update_drivers): Fix crash when no drivers match.
11583
11584 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
11585
11586 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
11587 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
11588
11589 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
11590
11591 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
11592
11593 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
11594
11595 * process.c (Fserial_process_configure, Fprocess_send_eof):
11596 Use EQ to compare Lisp_Objects.
11597
11598 2008-06-13 Jason Rumney <jasonr@gnu.org>
11599
11600 * w32fns.c (Fw32_select_font): Remove old font API function.
11601
11602 * w32font.c (logfont_to_fcname): New function.
11603 (Fx_select_font): New font dialog function compatible with
11604 GTK/fontconfig version.
11605
11606 * font.c (font_style_symbolic_from_value): New function.
11607 (font_style_symbolic): Use it.
11608
11609 * font.h (font_style_symbolic_from_value): Declare new function.
11610
11611 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
11612
11613 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
11614 <font-width-table>: Fix typos in docstrings.
11615
11616 2008-06-13 Daniel Engeler <engeler@gmail.com>
11617
11618 These changes add serial port access.
11619 * process.c: Add HAVE_SERIAL.
11620 (Fdelete_process, Fprocess_status, Fset_process_buffer)
11621 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
11622 (list_processes_1, select_wrapper, Fstop_process)
11623 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
11624 (status_notify): Modify to handle serial processes.
11625 [HAVE_SERIAL] (Fserial_process_configure)
11626 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
11627 New functions.
11628 * process.h (struct Lisp_Process): Add `type'.
11629 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
11630 New functions.
11631 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
11632 serial ports.
11633 (serial_open, serial_configure): New functions.
11634 * w32.h: Add FILE_SERIAL.
11635 (struct _child_process): Add ovl_read, ovl_write.
11636
11637 2008-06-13 Kenichi Handa <handa@m17n.org>
11638
11639 * dispextern.h (enum lface_attribute_index): New member
11640 LFACE_FOUNDRY_INDEX.
11641
11642 * font.c (font_score): Delete arg alternate_families. Check only
11643 weight, slant, width, and size. Ignore the difference of alias
11644 style symbols.
11645 (font_sort_entites): Adjust for the above change. Reflect the
11646 order of font-driver to scores.
11647 (font_list_entities): Don't check alternate_familes here.
11648 (font_clear_prop): Handle foundry.
11649 (font_update_lface): Don't parse "foundry-family" form here.
11650 Handle FONT_FOUNDRY_INDEX.
11651 (font_find_for_lface): Likewise. Handle alternate families here.
11652 If registry is nil, try iso8859-1 and ascii-0.
11653 (font_open_for_lface): Pay attention to size in ENTITY.
11654 (font_open_by_name): Simplify by calling font_load_for_lface.
11655 (free_font_driver_list): Delete it.
11656 (font_update_drivers): Preserve the order of backends.
11657 (syms_of_font): Setting of sort_shift_bits adjusted for the change
11658 of font_score and font_sort_entites.
11659 (font_update_sort_order): Likewise.
11660
11661 * xfaces.c (LFACE_FOUNDRY): New macro.
11662 (check_lface_attrs): Check foundry.
11663 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
11664 (merge_face_vectors): Check foundry.
11665 (merge_face_ref): Likewise.
11666 (Finternal_set_lisp_face_attribute): Likewise.
11667 (x_update_menu_appearance): Likewise.
11668 (Finternal_get_lisp_face_attribute): Likewise.
11669 (lface_hash): Likewise.
11670 (lface_same_font_attributes_p): Likewise.
11671 (x_supports_face_attributes_p): Likewise.
11672 (tty_supports_face_attributes_p): Likewise.
11673 (Finternal_set_alternative_font_family_alist): Intern strings.
11674 (Finternal_set_alternative_font_registry_alist): Downcase strings.
11675 (realize_default_face): Set LFACE_FOUNDRY (lface).
11676
11677 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
11678 font-driver at first.
11679
11680 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
11681
11682 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
11683
11684 * lread.c (Fload): Use xfree, not free on saved_doc_string.
11685
11686 2008-06-12 Jim Meyering <meyering@redhat.com>
11687
11688 Make unexec_free handle NULL the same way free does.
11689 * unexmacosx.c (unexec_free): Ignore a NULL argument.
11690
11691 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
11692
11693 * character.h (CHAR_TO_BYTE_SAFE): New macro.
11694 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
11695 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
11696 (WEAK_ALIAS): Simplify.
11697 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
11698 when searching a unibyte buffer.
11699
11700 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
11701
11702 * xfns.c (Fx_select_font): Rename from x-font-dialog.
11703
11704 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
11705
11706 * w32font.c: Include ctype.h.
11707
11708 2008-06-11 Jason Rumney <jasonr@gnu.org>
11709
11710 * w32font.c (w32font_encode_char): Detect missing glyphs that are
11711 misreported as space.
11712 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
11713 as aliases for registry iso10646-1.
11714
11715 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11716
11717 * buffer.c (clone_per_buffer_values): Skip `name'.
11718
11719 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
11720
11721 * font.c (font_parse_fcname): Fix last change; accept decimal
11722 points in font size.
11723
11724 2008-06-10 Jason Rumney <jasonr@gnu.org>
11725
11726 * w32uniscribe.c (add_opentype_font_name_to_list):
11727 Skip non unicode fonts.
11728
11729 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
11730
11731 * xfns.c (Fx_font_dialog): New function.
11732
11733 * gtkutil.c (xg_dialog_response_cb): Rename from
11734 xg_file_response_callback.
11735 (pop_down_dialog): Rename from pop_down_file_dialog.
11736 (xg_get_file_name): Callers changed.
11737 (xg_get_font_name): New function.
11738
11739 * gtkutil.h (xg_get_font_name): Insert prototype.
11740
11741 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
11742
11743 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
11744 x_underline_minimum_display_offset.
11745 (syms_of_xdisp): Declare it here rather than in xterm.c.
11746 * dispextern.h (underline_minimum_offset): Declare it.
11747 * w32term.c (x_draw_glyph_string): Use it.
11748 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
11749 (syms_of_xterm): Don't declare it any more.
11750 (x_draw_glyph_string): Adjust to the new name.
11751
11752 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
11753
11754 * xterm.c (x_underline_minimum_display_offset): New var.
11755 (x_draw_glyph_string): Use it.
11756 (syms_of_xterm): Declare it.
11757
11758 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
11759
11760 * font.c (font_parse_fcname): Accept GTK-style font names too.
11761
11762 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
11763
11764 * dired.c (file_name_completion): Don't return t if the match is exact
11765 but with different capitalization.
11766 * minibuf.c (Ftry_completion): Simplify.
11767
11768 * window.c (Vwindow_point_insertion_type): New var.
11769 (set_window_buffer): Use it.
11770 (syms_of_window): Init and export it to Lisp.
11771
11772 2008-06-10 Kenichi Handa <handa@m17n.org>
11773
11774 * font.h (font_intern_prop): Prototype adjusted.
11775
11776 * font.c (font_intern_prop): New arg force_symbol.
11777 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
11778 Adjust for the change of font_intern_prop.
11779
11780 * ftfont.c (ftfont_pattern_entity):
11781 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
11782 (w32_registry):
11783 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
11784 the change of font_intern_prop.
11785
11786 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
11787
11788 * w32menu.c (digest_single_submenu): Declare extern.
11789
11790 2008-06-09 Jason Rumney <jasonr@gnu.org>
11791
11792 * w32term.c (x_make_frame_visible): Use alternate restore flags.
11793
11794 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
11795 (parse_single_submenu): Remove.
11796 (digest_single_submenu): Remove.
11797 (syms_of_w32menu): Don't initialise variables that have moved
11798 to menu.c.
11799 (set_frame_menubar): Sync with version in xmenu.c.
11800 (w32_menu_show): Sync with xmenu_show in xmenu.c.
11801
11802 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
11803 Make static again.
11804
11805 2008-06-09 Jason Rumney <jasonr@gnu.org>
11806
11807 Changes to w32 files related to the move of common menu code
11808 to menu.c on 2008-06-08 by Chong Yidong.
11809
11810 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
11811 defs to w32gui.h.
11812 (single_keymap_panes, push_menu_item, push_menu_pane):
11813 Make globally visible.
11814
11815 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
11816 (local_free, malloc_widget_value, free_widget_value)
11817 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
11818 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
11819 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
11820 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
11821 (menu_items, menu_items_allocated, menu_items_used)
11822 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
11823 (init_menu_items, finish_menu_items, discard_menu_items)
11824 (grow_menu_items, push_submenu_start, push_submenu_end)
11825 (push_left_right_boundary, push_menu_pane, push_menu_item)
11826 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
11827 (free_menubar_widget_tree_value, parse_single_submenu)
11828 (update_submenu_strings): Remove functions.
11829 (xmalloc_widget_value): Remove and declare extern.
11830
11831 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
11832 (OBJ1): Build it.
11833
11834 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
11835 (local_heap, local_alloc, local_free, malloc_widget_value)
11836 (free_widget_value): Define here.
11837
11838 2008-06-09 Kenichi Handa <handa@m17n.org>
11839
11840 * font.h (Qascii_0): Extern it.
11841
11842 * font.c (Qascii_0): New variable.
11843 (syms_of_font): DEFSYM it.
11844 (font_open_by_name): If the registry "iso8859-1" fails, try also
11845 "ascii-0".
11846
11847 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
11848
11849 2008-06-08 Kenichi Handa <handa@m17n.org>
11850
11851 * .gdbinit (xfont): New command.
11852
11853 2008-06-08 Andreas Schwab <schwab@suse.de>
11854
11855 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
11856 * Makefile.in (menu.o): Update dependencies.
11857
11858 * Makefile.in (obj): Always add menu.o.
11859 * emacs.c (main): Always call syms_of_menu.
11860 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
11861
11862 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
11863
11864 * Makefile.in: Compile menu.c.
11865
11866 * lisp.h: Declare syms_of_menu.
11867
11868 * emacs.c (main): Call syms_of_menu.
11869
11870 * keyboard.h: Relocate platform-independent menu definitions from
11871 xmenu.c.
11872
11873 * menu.c: New file. Relocate platform-independent menu
11874 definitions from xmenu.c. Suggested by Adrian Robert.
11875
11876 * xmenu.c: Remove platform-independent menu definitions.
11877 (menu_items, menu_items_inuse, menu_items_allocated)
11878 (menu_items_used, menu_items_n_panes)
11879 (menu_items_submenu_depth): Move to keyboard.h.
11880 (init_menu_items, finish_menu_items, unuse_menu_items)
11881 (discard_menu_items, restore_menu_items, save_menu_items)
11882 (grow_menu_items, push_submenu_start, push_submenu_end)
11883 (push_left_right_boundary, push_menu_pane, push_menu_item)
11884 (keymap_panes, single_keymap_panes, single_menu_item)
11885 (list_of_panes, list_of_items, find_and_call_menu_selection)
11886 (xmalloc_widget_value, free_menubar_widget_value_tree)
11887 (parse_single_submenu, digest_single_submenu)
11888 (update_submenu_strings): Move to menu.c.
11889
11890 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11891
11892 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
11893
11894 2008-06-06 Miles Bader <miles@gnu.org>
11895
11896 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
11897 face, not frame default.
11898
11899 2008-06-05 Martin Rudalics <rudalics@gmx.at>
11900
11901 * window.c (pop_up_windows, pop_up_frames)
11902 (display_buffer_reuse_frames, Vpop_up_frame_function)
11903 (Vdisplay_buffer_function, Veven_window_heights)
11904 (Vspecial_display_buffer_names, Vspecial_display_regexps)
11905 (Vspecial_display_function, Vsame_window_buffer_names)
11906 (Vsame_window_regexps, split_height_threshold)
11907 (Vsplit_window_preferred_function): Move those vars to window.el.
11908 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
11909 (Fdisplay_buffer): Move those functions to window.el.
11910 (syms_of_window): Remove corresponding declarations.
11911 (display_buffer): New function.
11912 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
11913 * dispnew.c (Flast_nonminibuf_frame): New function.
11914 * buffer.c (Fpop_to_buffer): Move to window.el.
11915
11916 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11917
11918 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
11919
11920 2008-06-05 Kenichi Handa <handa@m17n.org>
11921
11922 * coding.c (detect_coding): Fix previous change.
11923 (detect_coding_system): Likewise.
11924
11925 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11926
11927 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
11928
11929 * keymap.c (Vminibuffer_local_filename_must_match_map):
11930 Rename from Vminibuffer_local_must_match_filename_map.
11931 (syms_of_keymap):
11932 * minibuf.c (Fcompleting_read): Adjust accordingly.
11933 * commands.h: Rename declaration as well.
11934
11935 2008-06-05 Kenichi Handa <handa@m17n.org>
11936
11937 * font.c (Ffont_spec): Don't use font_parse_family_registry for
11938 family name.
11939 (Ffont_put): Likewise.
11940
11941 * fontset.c (fontset_find_font): Call font_open_for_lface with the
11942 current font-spec.
11943
11944 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
11945 is unspecified.
11946
11947 * xfaces.c (realize_x_face): If the font-related face attributes
11948 are the same as those of default face, realize a new fontset from
11949 default->fontset.
11950 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
11951
11952 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11953
11954 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
11955 (move_it_in_display_line): New wrapper.
11956
11957 * window.c (window_scroll_pixel_based_preserve_x)
11958 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
11959 (window_scroll_pixel_based, window_scroll_line_based):
11960 Use them to preserve column positions.
11961 (syms_of_window): Initialize them.
11962
11963 * indent.c (Fvertical_motion): Extend first arg to allow passing an
11964 (HPOS . VPOS) pair.
11965
11966 * dispextern.h (move_it_in_display_line): Declare.
11967
11968 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
11969
11970 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
11971 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
11972 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
11973
11974 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
11975
11976 * window.c (Fset_window_parameter): Doc fix.
11977 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
11978
11979 2008-06-04 Joakim Verona <joakim@verona.se>
11980
11981 * window.h (struct window): Add new member window_parameters.
11982
11983 * window.c (Fwindow_parameters, Fwindow_parameter)
11984 (Fset_window_parameter): New defuns.
11985 (syms_of_window): Defsubr the new defuns.
11986 (make_window): Initialize window_parameters to nil.
11987
11988 2008-06-04 John Paul Wallington <jpw@pobox.com>
11989
11990 * eval.c (Fdefmacro): Doc fix.
11991
11992 2008-06-04 Kenichi Handa <handa@m17n.org>
11993
11994 * coding.c (detect_coding): Fix handling of coding->head_ascii.
11995 Be sure to call setup_coding_system when we find a proper coding system.
11996 (detect_coding_system): Fix handling of coding->head_ascii.
11997
11998 2008-06-03 Andreas Schwab <schwab@suse.de>
11999
12000 * font.c (font_prop_validate_spacing): Fix last change.
12001
12002 2008-06-03 Kenichi Handa <handa@m17n.org>
12003
12004 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
12005 (font_parse_fcname): Fix handling of unknown key.
12006
12007 * xfont.c (xfont_list): Try an alias.
12008
12009 * charset.c (char_charset): Return NULL if the arg charset_list is
12010 specified and C doesn't belong to any of them.
12011
12012 2008-06-02 Chip Coldwell <coldwell@redhat.com>
12013
12014 * font.c (font_pixel_size): Don't take cdr of an integer.
12015
12016 2008-06-02 Jim Meyering <meyering@redhat.com>
12017
12018 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
12019 * alloc.c (xfree): Return right away for a NULL arg.
12020 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
12021 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
12022 * mac.c (create_apple_event_from_event_ref): Likewise.
12023 (create_apple_event_from_drag_ref, cfstring_create_normalized):
12024 Likewise.
12025 * doprnt.c (doprnt1): Likewise.
12026 * frame.c (frame): Likewise.
12027 * keyboard.c (wipe_kboard): Likewise.
12028 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
12029 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
12030 * term.c (tty_default_color_capabilities, maybe_fatal)
12031 (delete_tty): Likewise.
12032 * w16select.c (string): Likewise.
12033 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
12034 * w32bdf.c (w32_free_bdf_font): Likewise.
12035 * w32fns.c (w32_unload_font): Likewise.
12036 * w32font.c (w32font_close): Likewise.
12037 * window.c (size_window): Likewise.
12038 * xselect.c (receive_incremental_selection): Likewise.
12039 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
12040 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
12041 * w32.c (stat): Likewise.
12042
12043 Remove useless if-before-free tests.
12044 * editfns.c (Fset_time_zone_rule): Likewise.
12045 * lread.c (nosuffix): Likewise.
12046 * ralloc.c (get_bloc): Likewise.
12047 * regex.c (reg_free): Likewise.
12048 * xftfont.c (xftfont_open, xftfont_close): Likewise.
12049 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
12050 * xsmfns.c (smc_save_yourself_CB): Likewise.
12051
12052 2008-06-02 Kenichi Handa <handa@m17n.org>
12053
12054 * font.c (font_find_for_lface): Handle float font size.
12055 (font_open_for_lface): Likewise.
12056
12057 * xfaces.c (x_supports_face_attributes_p): Check face->font before
12058 comparing the properties.
12059
12060 2008-06-01 Jason Rumney <jasonr@gnu.org>
12061
12062 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
12063 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
12064 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
12065 Don't add empty script list.
12066 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
12067
12068 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
12069
12070 * Makefile.in (dot, dotdot): Remove, update users.
12071 ".." has been used elsewhere in the file for a long time.
12072 (LIBXT_STATIC): Remove conditional based on unused variable.
12073
12074 2008-06-01 Miles Bader <miles@gnu.org>
12075
12076 * xfaces.c (Vface_remapping_alist): New variable.
12077 (syms_of_xfaces): Initialize it.
12078 (enum named_merge_point_kind): New type.
12079 (struct named_merge_point): Add `named_merge_point_kind' field.
12080 (push_named_merge_point): Make cycle detection respect different
12081 named-merge-point kinds.
12082 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
12083 Remove face-name alias resolution.
12084 (lface_from_face_name): New definition using
12085 `lface_from_face_name_no_resolve'.
12086 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
12087 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
12088 (get_lface_attributes): New definition that layers face-remapping on
12089 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
12090 (lookup_basic_face): New function.
12091 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
12092 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
12093 `get_lface_attributes'.
12094 (face_at_buffer_position): Use `lookup_basic_face' to lookup
12095 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
12096 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
12097
12098 * xdisp.c (init_iterator): Pass base_face_id through
12099 `lookup_basic_face' when we actually use it as a face-id.
12100 (handle_single_display_prop): Use `lookup_basic_face' to lookup
12101 DEFAULT_FACE_ID.
12102
12103 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
12104 lookup the initial face-id.
12105
12106 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
12107
12108 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
12109
12110 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
12111 (Fremove_text_properties): Fix typos in docstrings.
12112
12113 2008-05-31 Kenichi Handa <handa@m17n.org>
12114
12115 * font.c (font_list_entities): Fix the car part of data to be
12116 stored in the cache.
12117
12118 * ftfont.c (ftfont_font_format): Don't use strcasestr.
12119
12120 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12121
12122 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
12123 Add a `test' argument so another predicate than `equal' can be used.
12124 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
12125 (map_char_table): Remove unused vars `c' and `i'.
12126 * lisp.h (Foptimize_char_table): Adjust declaration.
12127 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
12128
12129 2008-05-30 Kenichi Handa <handa@m17n.org>
12130
12131 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
12132 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
12133 defined.
12134
12135 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12136
12137 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
12138 (Fmake_variable_frame_local): Disallow mixing buffer-local and
12139 frame-local settings for the same variable.
12140
12141 2008-05-30 Kenichi Handa <handa@m17n.org>
12142
12143 * fontset.c (Ffont_info): Move to font.c.
12144 (syms_of_fontset): Delete defsubr of Sfont_info.
12145
12146 * font.c (font_style_to_value, font_score): Delete casting of the
12147 args to xstcasecmp.
12148 (register_font_driver): Increment num_font_drivers only when
12149 registering the driver globally.
12150 (Ffont_info): Move from fontset.c. Handle a font object too.
12151 (syms_of_font): Defsubr Sfont_info.
12152
12153 2008-05-29 Kenichi Handa <handa@m17n.org>
12154
12155 * coding.h (enum define_coding_utf8_arg_index): New enum.
12156 (enum coding_attr_index): Change coding_attr_utf_16_bom to
12157 coding_attr_utf_bom.
12158 (enum utf_bom_type): Rename from utf_16_bom_type.
12159 (struct utf_16_spec): Adjust for the above change.
12160 (struct coding_system): Add utf_8_bom in `spec' union.
12161
12162 * coding.c (CODING_UTF_8_BOM): New macro.
12163 (enum coding_category): Delete coding_category_utf_8, add
12164 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
12165 coding_category_utf_8_sig.
12166 (CATEGORY_MASK_UTF_8): Delete it.
12167 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
12168 (CATEGORY_MASK_UTF_8_SIG): New macros.
12169 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
12170 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
12171 CATEGORY_MASK_UTF_8_SIG.
12172 (CATEGORY_MASK_UTF_8): New macro.
12173 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
12174 (detect_coding_utf_8): Check BOM.
12175 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
12176 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
12177 (encode_coding_utf_16): Likewise.
12178 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
12179 (detect_coding, detect_coding_system): Handle utf-8-auto.
12180 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
12181 (syms_of_coding): Fix setting up of Vcoding_category_table.
12182
12183 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
12184
12185 * process.c (Faccept_process_output): If `millisec' is non-nil,
12186 `seconds' default to 0.
12187 (wait_reading_process_output): Also return non-nil if we read output
12188 from a non-running process.
12189
12190 2008-05-29 Jason Rumney <jasonr@gnu.org>
12191
12192 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
12193 `raster' specified.
12194 (add_font_entity_to_list): Allow non-opentype truetype fonts back
12195 in the uniscribe backend, but disallow any font that has no
12196 unicode subrange support.
12197
12198 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
12199
12200 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
12201 Fix typos in docstrings.
12202
12203 2008-05-29 Kenichi Handa <handa@m17n.org>
12204
12205 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
12206 (Fx_family_fonts): Set frame correctly.
12207
12208 2008-05-28 Jason Rumney <jasonr@gnu.org>
12209
12210 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
12211
12212 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
12213
12214 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
12215 calling build_annotations.
12216
12217 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
12218
12219 * coding.c (Fdecode_coding_region, Fencode_coding_region)
12220 (Fencode_coding_string):
12221 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
12222 <latin-extra-code-table>: Fix typos in docstrings.
12223 (syms_of_coding) <coding-system-alist>: Doc fix.
12224 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
12225
12226 2008-05-28 Kenichi Handa <handa@m17n.org>
12227
12228 * fontset.c (Ffont_info): Don't call font_close_object.
12229
12230 * font.c (font_parse_family_registry): Use Ffont_put to validate
12231 foundry and family.
12232 (font_delete_unmatched): Don't check spacing.
12233 (font_list_entities): Add spacing to the spec to list fonts.
12234
12235 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
12236 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
12237
12238 * coding.c (encode_coding_raw_text): Fix previous change.
12239 (encode_coding_object): When the dst_object is a buffer and is
12240 different from src_object, move gap to PT.
12241
12242 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
12243
12244 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
12245
12246 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
12247
12248 * coding.c (encode_coding_raw_text): Set coding->produced_char for
12249 all branches. Compute it differently.
12250
12251 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
12252
12253 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
12254
12255 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
12256 into "else if () ... else ...".
12257
12258 2008-05-27 Jason Rumney <jasonr@gnu.org>
12259
12260 * w32font.c (w32font_open_internal): Determine if glyph indices
12261 are likely to work here.
12262
12263 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
12264
12265 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
12266 draw overlap glyphs with appropriate highlighting.
12267
12268 2008-05-27 Kenichi Handa <handa@m17n.org>
12269
12270 * xfont.c (xfont_open): Fix calculation of font->average_width.
12271
12272 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
12273
12274 * casefiddle.c (casify_object): Try to guess better whether the
12275 argument is a byte or a char.
12276
12277 2008-05-26 Andreas Schwab <schwab@suse.de>
12278
12279 * xselect.c (x_reply_selection_request): Properly handle format == 32.
12280 Always send multiples of format size.
12281
12282 * xterm.c (x_set_frame_alpha): Fix type mismatch.
12283
12284 2008-05-26 Jason Rumney <jasonr@gnu.org>
12285
12286 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
12287 (compute_metrics): Don't set failure if we just cleared the cache.
12288 (w32_weight_table): Remove unused variable.
12289 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
12290 backwards compatibility.
12291
12292 2008-05-25 Kenichi Handa <handa@m17n.org>
12293
12294 * w32term.c (x_draw_glyph_string):
12295 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
12296
12297 * xfaces.c: Delete unused function prototypes.
12298 (xstrlwr, font_frame): Delete them.
12299 (clear_face_cache): Delete unused variable.
12300
12301 * xftfont.c (xftfont_open): Delete unused variable.
12302 If underline_thickness is not 1, adjust underline_position.
12303
12304 * ftxfont.c (ftxfont_open): Delete unused variable.
12305
12306 * fontset.c (face_for_char): Optimize for the case of no charset
12307 property.
12308
12309 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
12310 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
12311 (otf_open, font_otf_capability, generate_otf_features)
12312 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
12313 Comment out by surrounding "#if 0" and "#endif" for the moment.
12314 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
12315 (syms_of_font): Codes for accessing above commented out.
12316
12317 2008-05-24 Eli Zaretskii <eliz@gnu.org>
12318
12319 * w32proc.c: Include dispextern.h.
12320
12321 * w32.c: Include dispextern.h.
12322
12323 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
12324
12325 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
12326 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
12327 Fix typos in docstrings.
12328
12329 2008-05-23 Jason Rumney <jasonr@gnu.org>
12330
12331 * xsmfns.c: Remove includes that are already included by config.h.
12332
12333 2008-05-23 Kenichi Handa <handa@m17n.org>
12334
12335 * charset.c (Qemacs, charset_emacs): New variables.
12336 (char_charset): Fix for non-Unicode characters.
12337 (syms_of_charset): Define charset_emacs.
12338
12339 * w32term.c (x_draw_glyph_string): Be sure to update
12340 s->underline_thickness and s->underline_position. Be sure to draw
12341 underline within the current line area.
12342
12343 * xterm.c (x_draw_glyph_string): Be sure to update
12344 s->underline_thickness and s->underline_position. Be sure to draw
12345 underline within the current line area.
12346
12347 * fontset.c: Delete unused variables and add casting for char *
12348 throughout the file.
12349 (fontset_font): Try the fallback fonts of the current fontset
12350 before consulting the default fontset.
12351
12352 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
12353
12354 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
12355
12356 2008-05-22 Jason Rumney <jasonr@gnu.org>
12357
12358 * font.c: Don't include strings.h.
12359
12360 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
12361
12362 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
12363 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
12364 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
12365 to call xstrcasecmp.
12366
12367 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
12368
12369 * fontset.c (fs_query_fontset): Use xstrcasecmp.
12370
12371 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
12372
12373 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
12374
12375 2008-05-22 Kenichi Handa <handa@m17n.org>
12376
12377 * puresize.h (BASE_PURESIZE): Increase to 1220000.
12378
12379 * font.c (font_prop_validate_style): Adjust for the format
12380 change of font_style_table.
12381
12382 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
12383 two args.
12384
12385 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
12386 two args.
12387
12388 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
12389
12390 * minibuf.c (keys_of_minibuf): Delete.
12391 * lisp.h (keys_of_minibuf): Delete.
12392 * emacs.c (main): Don't call keys_of_minibuf.
12393
12394 2008-05-22 Kenichi Handa <handa@m17n.org>
12395
12396 * ftfont.c (ftfont_resolve_generic_family): Rename from
12397 ftfont_list_generic_family. Return a single family for each
12398 generic family.
12399 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
12400 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
12401 Call font_add_log.
12402 (ftfont_match): Call font_add_log.
12403
12404 * font.h (Ffont_xlfd_name): EXFUN adjusted.
12405 (FONT_DEBUG): Define it.
12406 (font_add_log): Extern it.
12407 (font_assert): Rename from xassert.
12408
12409 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
12410 (xfont_list_family): Call font_add_log.
12411 (xfont_match): Likewise.
12412 (memq_no_quit): Delete.
12413
12414 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
12415 call of Ffont_xlfd_name.
12416
12417 * xfaces.c (struct table_entry, slant_table, weight_table)
12418 (swidth_table): Move to font.c.
12419
12420 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
12421 xassert are changed to font_assert. Delete many unused variables.
12422 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
12423 New variables.
12424 (struct table_entry): Move from xfaces.c and modified.
12425 (weight_table, slant_table, width_table): Move from xfaces.c and
12426 contents adjusted for the change of struct table_entry.
12427 (font_style_to_value, font_style_symbolic): Adjust for the
12428 format change of font_style_table.
12429 (font_parse_family_registry): Don't overwrite existing foundry and
12430 family of font_spec.
12431 (font_score): Fix calculation of diff for sizes.
12432 (font_sort_entites): Call font_add_log.
12433 (font_delete_unmatched): Return a newly created list.
12434 (font_list_entities): Fix previous change. Call font_add_log.
12435 (font_matching_entity, font_open_entity, font_close_entity):
12436 Call font_add_log.
12437 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
12438 (Finternal_set_font_style_table): Delete.
12439 (BUILD_STYLE_TABLE): New macro.
12440 (build_style_table): New function.
12441 (Vfont_log, font_log_env_checked): New variables.
12442 (font_add_log): New function.
12443 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
12444 Declare Lisp variables "font-weight-table", "font-slant-table",
12445 "font-width-table", and "font-log". Initialize font_style_table.
12446
12447 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
12448
12449 * xterm.c (x_set_frame_alpha): Move declarations before statements.
12450
12451 2008-05-21 Seiji Zenitani <zenitani@mac.com>
12452 Ryo Yoshitake <ryo@shiftmode.net>
12453
12454 * frame.c (Qalpha): Add a new frame parameter `alpha'.
12455 (Vframe_alpha_lower_limit): New variable.
12456 (x_set_alpha): New function.
12457
12458 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
12459
12460 * xfns.c (x-create-frame, Qalpha):
12461 Initialize the frame parameter `alpha'.
12462 * xterm.c (OPAQUE, OPACITY): New.
12463 (x_set_frame_alpha): New function.
12464 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
12465
12466 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
12467 * w32fns.c (w32_frame_parm_handlers): Likewise.
12468
12469 2008-05-20 Jason Rumney <jasonr@gnu.org>
12470
12471 * w32font.c (add_font_entity_to_list): Don't add non-opentype
12472 truetype fonts to opentype list.
12473
12474 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
12475
12476 * fontset.c (Ffontset_info): Doc fix.
12477 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
12478 <ignore-relative-composition>: Fix typos in docstrings.
12479
12480 * font.c (syms-of-font) <font-encoding-alist>:
12481 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
12482 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
12483 (Ffont_otf_alternates): Doc fixes.
12484
12485 2008-05-20 Kenichi Handa <handa@m17n.org>
12486
12487 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
12488 font.h through out the file.
12489 (FONT_DRIVERS): Rename from FONTOBJ.
12490 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
12491 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
12492
12493 * emacs.c (main): Call syms_of_font unconditionally.
12494
12495 * font.h (find_font_encoding): Extern it.
12496
12497 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
12498 fontset.c.
12499 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
12500 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
12501 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
12502 only when HAVE_WINDOW_SYSTEM is defined.
12503 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
12504 when HAVE_WINDOW_SYSTEM is defined.
12505
12506 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
12507 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
12508
12509 * xfaces.c: Include font.h unconditionally.
12510 (merge_face_ref, merge_face_vectors)
12511 (Finternal_set_lisp_face_attribute): Cancel the previous change.
12512
12513 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
12514
12515 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
12516 indirect_variable.
12517 * eval.c (lisp_indirect_variable): New fun.
12518 (Fuser_variable_p): Use it.
12519
12520 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
12521
12522 * lisp.h (indirect_variable):
12523 * data.c (indirect_variable, let_shadows_buffer_binding_p):
12524 Use Lisp_Symbol pointers rather than Lisp_Object.
12525 Adjust callers.
12526 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
12527 To this end, change calling-convention.
12528
12529 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
12530 if some non-hidden buffers are selected by string&pred.
12531
12532 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
12533
12534 * process.c (wait_reading_process_output): Always check status
12535 when in batch mode.
12536
12537 2008-05-19 Kenichi Handa <handa@m17n.org>
12538
12539 * font.c (font_list_entities): Fix handling of cache.
12540 (font_matching_entity): Likewise.
12541
12542 * ftfont.c (cs_iso8859_1): Delete.
12543 (ft_face_cache): New variable.
12544 (struct ftfont_info): New member fc_charset_idx.
12545 (ftfont_build_basic_charsets): Delete.
12546 (fc_charset_table): New variable.
12547 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
12548 . FC_CHARSET_IDX) as :font-entity property in the font entity.
12549 Callers changed.
12550 (ftfont_lookup_cache, ftfont_get_charset): New functions.
12551 (ftfont_spec_pattern): New argument fc_charset_idx.
12552 Check registry more rigidly. Change callers.
12553 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
12554 change of :font-entity property of the font.
12555
12556 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
12557 property of the font.
12558
12559 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
12560
12561 * coding.c (Fcoding_system_p): Rename argument to match docstring.
12562 (Funencodable_char_position, Fcheck_coding_systems_region)
12563 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
12564 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
12565 (Ffind_operation_coding_system, Fset_coding_system_priority)
12566 (Fcoding_system_eol_type): Doc fixes.
12567
12568 2008-05-17 Glenn Morris <rgm@gnu.org>
12569
12570 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
12571
12572 2008-05-16 Eli Zaretskii <eliz@gnu.org>
12573
12574 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
12575 and st_gid.
12576
12577 * frame.c (Fdelete_frame): Don't call font_update_drivers if
12578 HAVE_WINDOW_SYSTEM is not defined.
12579
12580 * xfaces.c (merge_face_ref, merge_face_vectors)
12581 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
12582 HAVE_WINDOW_SYSTEM is defined.
12583 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
12584
12585 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
12586
12587 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
12588
12589 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12590
12591 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
12592
12593 2008-05-15 Kenichi Handa <handa@m17n.org>
12594
12595 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
12596 preference.
12597
12598 2008-05-15 Glenn Morris <rgm@gnu.org>
12599
12600 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
12601
12602 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
12603
12604 * fns.c (init_fns): Don't initialize weak_hash_tables here.
12605 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
12606
12607 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
12608
12609 2008-05-15 Kenichi Handa <handa@m17n.org>
12610
12611 * ftfont.c (ftfont_list): Downcase family name to check generic
12612 families.
12613
12614 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
12615 font-spec for QCfont value.
12616
12617 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
12618 buffer. Check the return value of it.
12619
12620 2008-05-14 Jason Rumney <jasonr@gnu.org>
12621
12622 * w32term.c (w32_get_glyph_overhangs): Remove.
12623 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
12624
12625 2008-05-14 Kenichi Handa <handa@m17n.org>
12626
12627 * font.c (font_prop_validate): Make nil a valid value.
12628 (font_clear_cache): Check if the cached vector of entities is nil
12629 or not.
12630
12631 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12632
12633 * emacs.c (main_thread): Conditionalize on
12634 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
12635 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
12636
12637 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
12638 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
12639 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
12640
12641 2008-05-14 Kenichi Handa <handa@m17n.org>
12642
12643 * coding.c (detect_coding_iso_2022): Ignore a coding category that
12644 has no corresponding coding system.
12645
12646 2008-05-14 Jason Rumney <jasonr@gnu.org>
12647
12648 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
12649
12650 * w32font.h (w32font_open_internal): Update declaration.
12651
12652 * w32font.c (w32font_open_internal): Change last argument from
12653 w32font_info struct to font object. Fill in font object from
12654 font_entity. Get Outline metrics if possible. Use them to
12655 calculate underline position and thickness. Use xlfd name as name
12656 property. Don't set codepage.
12657 (w32font_open): Pass font_object to w32font_open_internal. Don't
12658 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
12659 (w32font_draw): Use s->font.
12660 (clear_cached_metrics): Don't clear non-existent blocks.
12661
12662 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
12663 font was not found.
12664 (x_draw_glyph_string): Use underline position and thickness from font.
12665
12666 * w32uniscribe.c (uniscribe_open): Pass font_object to
12667 w32font_open_internal.
12668
12669 2008-05-14 Kenichi Handa <handa@m17n.org>
12670
12671 These changes are to delete all legacy font-handling codes, and
12672 make Emacs use only font-backends.
12673
12674 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
12675 (frame.o, image.o, print.o): Depend on $(FONTSRC).
12676
12677 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
12678
12679 * charset.h (Vcharset_non_preferred_head)
12680 (Vcurrent_iso639_language): Extern them.
12681
12682 * charset.c (Vcharset_non_preferred_head): New variable.
12683 (Vcurrent_iso639_language): New variable.
12684 (syms_of_charset): Declare it as a Lisp variable.
12685 (char_charset): Don't check non preferred charsets. As a last
12686 resort, return charset_unicode.
12687 (Fset_charset_priority): Update Vcharset_non_preferred_head.
12688
12689 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
12690 conditionals. Don't check enable_font_backend. Delete all codes
12691 used only when USE_FONT_BACKEND is not defined.
12692
12693 * dispextern.h (struct glyph_string): Change type of `font' to
12694 `struct font *'.
12695 (struct glyph_string): New member underline_position and
12696 underline_thickness.
12697 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
12698 (struct face): Change type of `font' to `struct font *'. Remove
12699 members `font_name', `font_info_id'.
12700 (per_char_metric, encode_char): Delete externs.
12701 (calc_pixel_width_or_height): Adjust the prototype.
12702
12703 * emacs.c (enable_font_backend): Delete extern.
12704 (main): Don't set enable_font_backend. Don't check the command
12705 line argument "-disable-font-backend".
12706
12707 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
12708 (enum font_property_index): New members FONT_DPI_INDEX,
12709 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
12710 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
12711 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
12712 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
12713 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
12714 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
12715 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
12716 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
12717 (struct font_spec, struct font_entity): New structs.
12718 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
12719 (struct font): Many members from old "struct font_info" moved to
12720 here. Members font and entity deleted.
12721 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
12722 the new font-related objects.
12723 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
12724 (CHECK_FONT_GET_OBJECT): Likewise.
12725 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
12726 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
12727 (struct font_driver): New members case_sensitive anc check. Type
12728 of the member list and open changed.
12729 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
12730 (font_symbolic_width, font_find_object, font_get_spec)
12731 (font_set_lface_from_name): Delete extern.
12732 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
12733
12734 * font.c: Include <strings.h>.
12735 (enable_font_backend): Delete it.
12736 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
12737 (CHECK_VALIDATE_FONT_SPEC): Delete it.
12738 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
12739 (null_string): Delete it.
12740 (null_vector): Make it static.
12741 (font_family_alist): Delete it.
12742 (Qnormal): Extern it.
12743 (QCextra, QClanguage): Delete it.
12744 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
12745 (font_make_spec, font_make_entity, font_make_object)
12746 (font_intern_prop): Renamed from intern_downcase. Don't downcase
12747 the string. Callers changed.
12748 (font_pixel_size): Adjusted for the format change of font-related
12749 objects.
12750 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
12751 (font_style_to_value, font_style_symbolic): New function.
12752 (build_font_family_alist): Delete it.
12753 (font_registry_charsets): Use Fassoc_string instead of
12754 assq_no_quit.
12755 (font_prop_validate_symbol): Don't return null_string.
12756 (font_prop_validate_style): Adjusted for the change of
12757 style-related values in a font vector.
12758 (font_property_table): Delete entries for QClanguage and
12759 QCantialias, add entries for QCavgwidth.
12760 (get_font_prop_index): Delete the 2nd argument FROM.
12761 (font_prop_validate): Arguments changed.
12762 (font_put_extra): Adjusted for the change of font-related objects.
12763 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
12764 (font_parse_fcname, font_unparse_fcname)
12765 (font_prepare_composition): Likewise.
12766 (font_parse_family_registry): Renamed from font_merge_old_spec.
12767 (otf_open): Delete the 1st arg entity.
12768 (font_otf_capability): Adjusted for the above change.
12769 (font_score): New arg alternate_families. Adjusted for the change
12770 of font-related objects.
12771 (font_sort_entites): New arg best_only.
12772 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
12773 Delete them.
12774 (font_match_p): Check alternate families.
12775 (font_find_object): Delete it.
12776 (font_check_object): New function.
12777 (font_clear_cache): Adjusted for the change of font-related objects.
12778 (font_delete_unmatched): New arg.
12779 (font_list_entities): Call font_driver->list with a spec that
12780 doesn't specify style-related properties.
12781 (font_matching_entity): Arguments changed. Caller changed.
12782 (font_open_entity): Adjusted for the change of font-related objects.
12783 (font_close_object, font_has_char, font_encode_char)
12784 (font_get_name, font_get_spec): Likewise.
12785 (font_spec_from_name, font_clear_prop, font_update_lface):
12786 New functions.
12787 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
12788 (font_prepare_for_face, font_done_for_face, font_open_by_name)
12789 (font_at): Adjusted for the change of font-related objects.
12790 (font_range): New function.
12791 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
12792 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
12793 (Fcopy_font_spec, Fmerge_font_spec): New function.
12794 (Ffont_family_list): Renamed from list-families.
12795 (Finternal_set_font_style_table): Arguments changed.
12796 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
12797 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
12798 change of font-related objects.
12799 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
12800
12801 * fontset.h (struct font_info): Delete it. Most members go to
12802 struct font.
12803 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
12804 (enum FONT_SPEC_INDEX): Delete it.
12805 (font_info, list_fonts_func, load_font_func, query_font_func)
12806 (set_frame_fontset_func, find_ccl_program_func)
12807 (get_font_repertory_func, new_fontset_from_font_name): Delete
12808 externs.
12809 (fontset_from_font_name): Extern it.
12810 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
12811 (FONT_INFO_FROM_FACE): Deleted.
12812 (face_for_font): Adjust prototype.
12813
12814 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
12815 conditionals. Don't check enable_font_backend. Delete all codes
12816 used only when USE_FONT_BACKEND is not defined.
12817 (get_font_info_func, list_font_func, load_font_func)
12818 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
12819 (get_font_repertory_func): Delete them.
12820 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
12821 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
12822 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
12823 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
12824 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
12825 (fontset_compare_rfontdef): New function.
12826 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
12827 rfont-defs by qsort. Adjusted for the change of font-group vector.
12828 (load_font_get_repertory): Deleted.
12829 (fontset_find_font): Use new macros to ref/set elements of
12830 font-def and rfont-def.
12831 (fontset_font): Fix the timing of remembering that no font for C.
12832 (free_face_fontset): Do nothing if the face has no fontset.
12833 (face_suitable_for_char_p): Use new macros to ref/set elements of
12834 rfont-def.
12835 (face_for_char): Likewise. Call face_for_char with font_object.
12836 (fs_load_font): Delete. Delete #pragma surrounding it.
12837 (fs_query_fontset): Use strcasecmp instead of strcmp.
12838 (generate_ascii_font_name): Adjusted for the format change of
12839 font-spec.
12840 (Fset_fontset_font): Likewise. Use new macros to set elements of
12841 font-def.
12842 (Fnew_fontset): Use font_unparse_xlfd to generate
12843 FONTSET_ASCII (fontset).
12844 (new_fontset_from_font_name): Deleted.
12845 (fontset_from_font): Renamed from new_fontset_from_font. Check if
12846 a fontset is already created for the font. FIx updating of
12847 Vfontset_alias_alist.
12848 (fontset_ascii_font): Deleted.
12849 (Ffont_info): Adjusted for the format change of font-spec.
12850 (Finternal_char_font): Likewise.
12851 (Ffontset_info): Likewise.
12852 (syms_of_fontset): Don't check load_font_func.
12853
12854 * fns.c (internal_equal): Handle PREV_FONT.
12855
12856 * frame.h: Delete USE_FONT_BACKEND conditional.
12857
12858 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
12859 conditionals. Don't check enable_font_backend. Delete all codes
12860 used only when USE_FONT_BACKEND is not defined.
12861 (x_set_font): Call x_new_font, not x_new_fontset2.
12862 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
12863 already set for the frame.
12864
12865 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
12866 a font-entity by font_make_entity. Use font_intern_prop instead
12867 of intern_downcase. Use FONT_SET_STYLE to set a style-related
12868 font property. If a font is scalable, set avgwidth property to 0.
12869 Set font-entity property by font_put_extra.
12870 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
12871 (ffont_driver): Adjusted for the change of struct font_driver.
12872 (ftfont_spec_pattern): New function.
12873 (ftfont_list): Return a list, not vector.
12874 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
12875 (ftfont_list_family): Don't downcase names.
12876 (ftfont_free_entity): Deleted.
12877 (ftfont_open): Return a font-object. Adjusted for the change of
12878 struct font. Get underline_thickness and underline_position from
12879 font property. Don't update dpyinfo->smallest_font_height and
12880 dpyinfo->smallest_char_width.
12881 (ftfont_close): Don't free `struct font'.
12882 (ftfont_has_char): Adjusted for the format change of font-entity.
12883 (ftfont_encode_char, ftfont_text_extents): Likewise.
12884
12885 * ftxfont.c (ftxfont_list): Return a list, not vector.
12886 (ftxfont_open): Return a font-object. Adjusted for the change of
12887 struct font. Get underline_thickness and underline_position from
12888 font property. Don't update dpyinfo->smallest_font_height and
12889 dpyinfo->smallest_char_width.
12890 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
12891 (ftxfont_draw): Adjusted for the change of struct font.
12892
12893 * image.c (image_ascent): Don't include "charset.h". Include
12894 "character.h" and "font.h".
12895
12896 * lisp.h (enum pvec_type): New member PREV_FONT.
12897 (Fassoc_string): EXFUN it.
12898
12899 * print.c: Include font.h.
12900 (print_object): Handle font-related objects.
12901
12902 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
12903 conditionals. Don't check enable_font_backend. Delete all codes
12904 used only when USE_FONT_BACKEND is not defined.
12905 (handle_auto_composed_prop): Do nothing if it->f is not on a
12906 window system. Check how many following characters can be
12907 displayed by the same font.
12908 (calc_pixel_width_or_height): Type of the 4th arg is changed to
12909 'struct font *'.
12910 (get_char_face_and_encoding): Assign the whole encoding task to
12911 the `encode-char' method of a font driver.
12912 (fill_composite_glyph_string): Adjusted for the change of `struct
12913 face' and `struct glyph_string'.
12914 (fill_glyph_string): Likewise.
12915 (get_per_char_metric): Arguments changed.
12916 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
12917 and `struct glyph_string'.
12918 (produce_stretch_glyph, calc_line_height_property)
12919 (x_produce_glyphs): Likewise.
12920
12921 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
12922 conditionals. Don't check enable_font_backend. Delete all codes
12923 used only when USE_FONT_BACKEND is not defined. Use
12924 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
12925 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
12926 (Qp): Extern them.
12927 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
12928 Deleted.
12929 (struct font_name): Deleted.
12930 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
12931 (compare_fonts_by_sort_order): New function.
12932 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
12933 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
12934 Deleted.
12935 (Fx_family_fonts): Use font_list_entities, and sort fonts by
12936 compare_fonts_by_sort_order.
12937 (Fx_font_family_list): Call Ffont_family_list.
12938 (face_numeric_value, face_numeric_weight, face_numeric_slant)
12939 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
12940 (face_symbolic_slant, face_symbolic_swidth)
12941 (split_font_name_into_vector, build_font_name_from_vector)
12942 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
12943 (font_rescale_ratio, split_font_name, build_font_name)
12944 (free_font_names, sort_fonts, x_face_list_fonts)
12945 (face_font_available_p, sorted_font_list, cmp_font_names)
12946 (font_list_1, concat_font_list, font_list, remove_duplicates):
12947 Deleted.
12948 (Fx_list_fonts): Use Ffont_list.
12949 (LFACE_AVGWIDTH): Deleted.
12950 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
12951 by FONTP.
12952 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
12953 (set_lface_from_font_name): Delete it.
12954 (set_lface_from_font): Renamed from
12955 set_lface_from_font_and_fontset. Caller changed. Don't set
12956 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
12957 for face.
12958 (merge_face_vectors): Copy font-spec if necessary.
12959 Clear properties of the font-spec if necessary.
12960 (merge_face_ref): Clear properties of the font-spec if necessary.
12961 (Finternal_set_lisp_face_attribute): Likewise.
12962 (set_font_frame_param): Use font_load_for_lface to load a
12963 font-object, and call Fmodify_frame_parameters with it.
12964 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
12965 font name by Ffont_xlfd_name.
12966 (Finternal_lisp_face_attribute_values): Don't check QCweight,
12967 QCslant, and QCwidth.
12968 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
12969 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
12970 Compare fonts by EQ.
12971 (lookup_non_ascii_face): Deleted.
12972 (face_for_font): The 2nd argument changed.
12973 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
12974 Check atomic font properties by case insensitive.
12975 (realize_non_ascii_face): Set face->overstrike correctly.
12976 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
12977 (dump_realized_face): Get font name from
12978 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
12979
12980 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
12981 conditionals. Don't check enable_font_backend. Delete all codes
12982 used only when USE_FONT_BACKEND is not defined.
12983 (xic_create_xfontset): Original code deleted and renamed from
12984 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
12985 (x_make_gc): Don't set GCFont in GCs.
12986 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
12987 opened by "fixed".
12988 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
12989 find_ccl_program_func, query_font_func, set_frame_fontset_func,
12990 get_font_repertory_func.
12991
12992 * xfont.c: Include <stdlib.h> and "ccl.h".
12993 (struct xfont_info): New structure.
12994 (xfont_query_font): Deleted.
12995 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
12996 moved from xterm.c.
12997 (xfont_driver): Adjusted for the change of struct font_driver.
12998 (compare_font_names): New function.
12999 (xfont_list_pattern): Sort font names case insensitively. Make
13000 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
13001 (xfont_list): Return a list, not vector.
13002 (xfont_match): If the font doesn't have QCname property, generate
13003 a name from the other font properties.
13004 (xfont_open): Return a font-object. Adjusted for the change of
13005 struct font. Get underline_thickness and underline_position from
13006 font property. Don't update dpyinfo->smallest_font_height and
13007 dpyinfo->smallest_char_width.
13008 (xfont_close): Don't free struct font.
13009 (xfont_prepare_face): Adjusted for the change of struct font.
13010 (xfont_done_face): Deleted.
13011 (xfont_has_char): Adjusted for the change of struct font.
13012 (xfont_encode_char, xfont_draw): Likewise.
13013 (xfont_check): New function.
13014
13015 * xftfont.c (xftfont_list): Adjusted for the change of `list'
13016 callback function.
13017 (xftfont_match): Adjusted for the format change of font-entity.
13018 (xftfont_open): Adjusted for the format change of font-entity and
13019 font-object. Adjusted for the change of struct font. Return a
13020 font-object. Don't update dpyinfo->smallest_font_height and
13021 dpyinfo->smallest_char_width.
13022 (xftfont_close): Block input while calling XftFontClose.
13023 (xftfont_prepare_face): Don't block input while calling
13024 xftfont_get_colors. Adjusted for the change of struct font.
13025 (xftfont_shape): Return value of error case fixed.
13026
13027 * xrdb.c (x_load_resources): Don't setup a fontset resource.
13028
13029 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
13030 conditionals.
13031 (FONT_WIDTH): Return (f)->max_width.
13032 (struct x_display_info): Delete member `font'.
13033 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
13034 (x_find_ccl_program, x_get_font_repertory): Delete externs.
13035 (struct x_output): Change type of `font' to `struct font *'.
13036
13037 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
13038 conditionals. Don't check enable_font_backend. Delete all codes
13039 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
13040 (x_per_char_metric, x_encode_char): Deleted.
13041 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
13042 (x_compute_glyph_string_overhangs): Adjusted for the change of
13043 `struct face'.
13044 (x_draw_glyph_string_foreground)
13045 (x_draw_composite_glyph_string_foreground): Likewise.
13046 (x_draw_glyph_string): Likewise. Use font->underline_position and
13047 font->underline_thickness.
13048 (x_new_font): Renamed from x_new_fontset2.
13049 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
13050 (x_check_font): Call `check' method of a font driver.
13051 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
13052 (x_query_font, x_get_font_repertory): Deleted.
13053 (x_find_ccl_program): Renamed and moved to xfont.c.
13054 (x_redisplay_interface): Adjusted for the change of `struct
13055 redisplay_interface'.
13056
13057 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
13058 conditionals. Don't check enable_font_backend. Delete all codes
13059 used only when USE_FONT_BACKEND is not defined. Surround non-used
13060 code by "#ifdef OLD_FONT" and "endif".
13061 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
13062
13063 * w32font.h (struct w32font_info): New member.
13064 (FONT_COMPAT): New macro.
13065 (w32font_open_internal): Prototype adjusted.
13066
13067 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
13068 OLD_FONT" and "endif".
13069
13070 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
13071 conditionals. Don't check enable_font_backend. Delete all codes
13072 used only when USE_FONT_BACKEND is not defined.
13073 (w32font_open): Return a font-object. Make a font-object by
13074 font_make_object. Adjusted for the change of struct w32font_info.
13075 (w32font_close): Don't free struct font. Adjusted for the change
13076 of struct w32font_info.
13077 (w32font_encode_char, w32font_text_extents, w32font_draw):
13078 Adjusted for the change of struct w32font_info.
13079 (w32font_draw): Likewise.
13080 (w32font_list_internal): Return a list, not vector.
13081 (w32font_open_internal): Change the 4th arg to font-object.
13082 Adjusted for the change of struct w32font_info and font-object format.
13083 (add_font_name_to_list): Don't downcase names.
13084 (w32_enumfont_pattern_entity): Make a font-entity by
13085 font_make_entity. Adjusted for the format change of font-entity.
13086 Use FONT_SET_STYLE to set a style-related font property. If a
13087 font is scalable, set avgwidth property to 0. Set font-entity
13088 property by font_put_extra.
13089 (font_matches_spec): Adjusted for the format change of font-entity.
13090 (w32_weight_table, w32_decode_weight): New variables.
13091 (w32_encode_weight): New function.
13092 (fill_in_logfont): Adjusted for the format change of font-spec.
13093 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
13094 weight value.
13095 (w32font_driver): Adjusted for the change of struct font_driver.
13096
13097 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
13098 conditionals. Don't check enable_font_backend. Surround non-used
13099 code by "#ifdef OLD_FONT" and "endif".
13100 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
13101 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
13102
13103 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
13104 conditionals. Don't check enable_font_backend. Delete all codes
13105 used only when USE_FONT_BACKEND is not defined. Surround non-used
13106 code by "#ifdef OLD_FONT" and "endif".
13107
13108 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
13109 (uniscribe_open): Return value changed to font-object.
13110 Adjusted for the format change of font-object.
13111 (uniscribe_otf_capability): Adjusted for the change of struct font.
13112 (add_opentype_font_name_to_list): Don't downcase names.
13113 (uniscribe_font_driver): Adjusted for the change of struct
13114 font_driver.
13115
13116 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
13117
13118 * dispnew.c (update_frame_1): Check if tty output is still valid
13119 before flushing it.
13120
13121 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
13122
13123 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
13124 to Gtk+ menus.
13125
13126 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
13127
13128 * dired.c (file_name_completion): Tweak the code so as to always do it
13129 in a single pass. Tighten the scope of some variables.
13130
13131 * dired.c (Qdefault_directory): New var.
13132 (file_name_completion): Use it instead of Fexpand_file_name.
13133 (syms_of_dired): Initialize it.
13134
13135 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13136
13137 * fileio.c (double_dollars): Remove dead code.
13138
13139 2008-05-10 Eli Zaretskii <eliz@gnu.org>
13140
13141 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
13142 Mention w32-get-true-file-attributes in doc string.
13143
13144 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
13145
13146 2008-05-09 Glenn Morris <rgm@gnu.org>
13147
13148 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
13149 2008-04-23.
13150
13151 2008-05-09 Eli Zaretskii <eliz@gnu.org>
13152
13153 Support for reporting owner and group of each file on MS-Windows:
13154 * dired.c (stat_uname, stat_gname): New functions, with special
13155 implementation for w32.
13156 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
13157
13158 * w32.c: Rename the_passwd_* to dflt_passwd_*.
13159 (dflt_group_name): New static variable.
13160 (dflt_group): Rename from the_group.
13161 (init_user_info): Init dflt_group fields. Get user's group name
13162 from LookupAccountSid.
13163 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
13164 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
13165 New initialization states.
13166 (globals_of_w32): Initialize them to zero. Initialize the default
13167 group name to "None".
13168 (GetFileSecurity_Name): New global var, the name of the function
13169 to call for GetFileSecurity.
13170 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
13171 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
13172 (get_file_security, get_security_descriptor_owner)
13173 (get_security_descriptor_group, is_valid_sid)
13174 (get_file_security_desc, get_rid, get_name_and_id)
13175 (get_file_owner_and_group): New functions.
13176 (stat): Use get_file_security_desc and get_file_owner_and_group to
13177 report the owner and primary group of each file. Don't ignore the
13178 high 32 bits of file's size, now that st_size is 64-bit wide.
13179 Fix test when to get true file attributes.
13180 (init_user_info): Use get_rid instead of equivalent inline code.
13181 (fstat): Don't ignore the high 32 bits of file's size.
13182
13183 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
13184
13185 * image.c (png_load): Use correct bit-depth for setting background
13186 color.
13187
13188 2008-05-08 Eli Zaretskii <eliz@gnu.org>
13189
13190 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
13191 epa-hook.elc.
13192
13193 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
13194
13195 * font.c (Ffont_match_p): Don't use `iff' in docstring.
13196
13197 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
13198
13199 * macfns.c (Fx_create_frame): Make a copy of frame parameters
13200 because the original parameters are in pure storage now.
13201 (mac_window): Remove unused params. Update callers.
13202
13203 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13204
13205 * lread.c (substitute_object_recurse): Use lower-level primitives.
13206 Don't signal errors when traversing sub-char-tables.
13207 Don't loop over all the possible characters when traversing char-tables.
13208
13209 * print.c (print_preprocess): Add sub-char-tables to the print-table,
13210 just like we do in print.c.
13211
13212 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
13213
13214 * minibuf.c (Ftry_completion): Remove code left over from when we used
13215 scmp instead of Fcompare_strings.
13216
13217 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
13218
13219 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
13220
13221 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13222
13223 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
13224 Create bitmap context in native byte order.
13225
13226 * macterm.c (XDrawLine)
13227 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
13228 context in native byte order.
13229
13230 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13231
13232 * config.in: Regenerate.
13233
13234 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
13235 New definitions for Image I/O support.
13236 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
13237 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
13238 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
13239 (mac_data_provider_release_data, image_load_image_io)
13240 [USE_MAC_IMAGE_IO]: New functions.
13241 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
13242 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
13243 (init_image_func_pointer) [MAC_OSX]: Remove function.
13244 (image_load_quartz2d) [MAC_OSX]: Check availability of
13245 CGImageCreateWithPNGDataProvider at compile time.
13246 Use lowercase `false' for boolean constant.
13247 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
13248 Use image_load_image_io.
13249 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
13250 Don't check MyCGImageCreateWithPNGDataProvider.
13251 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
13252 Don't call init_image_func_pointer.
13253
13254 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
13255
13256 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
13257 Make variable non-static.
13258 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
13259 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
13260
13261 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
13262 (RED_FROM_ULONG): Mask off higher bits.
13263 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
13264
13265 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
13266 Include AvailabilityMacros.h.
13267 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
13268 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
13269
13270 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13271
13272 * chartab.c (Fset_char_table_range): If range is t, really set all
13273 chars to that value.
13274
13275 2008-05-03 Eli Zaretskii <eliz@gnu.org>
13276
13277 * dired.c (Ffile_attributes): Don't allow the device number become
13278 negative.
13279
13280 2008-05-02 Daiki Ueno <ueno@unixuser.org>
13281
13282 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
13283
13284 2008-05-02 Juri Linkov <juri@jurta.org>
13285
13286 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
13287 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
13288 DEFAULT argument as a list of default values in docstrings.
13289
13290 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
13291
13292 * puresize.h (BASE_PURESIZE): Increase to 1210000.
13293
13294 2008-05-01 Martin Rudalics <rudalics@gmx.at>
13295
13296 * dispnew.c (change_frame_size_1): Preserve small windows when
13297 shrinking frames by calling set_window_height|width with third
13298 arg 2.
13299
13300 * window.h (struct window): Replace field too_small_ok by field
13301 resize_proportionally.
13302
13303 * window.c (make_window): Initialize resize_proportionally.
13304 (enlarge_window): Temporarily set resize_proportionally to make
13305 sure that shrink_windows does scale the window proportionally.
13306 (shrink_windows): When window has resize_proportionally set try
13307 to shrink it proportionally by stealing from other windows.
13308 (struct saved_window, Fset_window_configuration)
13309 (compare_window_configurations): Handle resize_proportionally.
13310 (WINDOW_TOTAL_SIZE): New macro.
13311 (window_min_size, shrink_windows, size_window): Use it.
13312 (check_min_window_sizes): Remove. Invalid values of
13313 window-min-height|width are handled by window_min_size_2 now.
13314 (size_window, Fsplit_window, enlarge_window)
13315 (adjust_window_trailing_edge, grow_mini_window): Don't call
13316 check_min_window_sizes.
13317 (window_min_size_2, window_min_size_1, window_min_size):
13318 New argument safe_p for retrieving "safe" minimum sizes.
13319 (Fdisplay_buffer, Fsplit_window, enlarge_window)
13320 (adjust_window_trailing_edge, grow_mini_window):
13321 Adjust arguments of window_min_size... functions.
13322 (shrink_windows): Argument min_size removed. New argument
13323 safe_p allows shrinking windows to their safe minimum sizes.
13324 Calculate minimum size and decide whether a window shall be
13325 deleted for each window individually.
13326 (size_window): When nodelete_p equals 2, tell shrink_windows to
13327 delete windows only if their new minimum size is no more safe.
13328 (shrink_window_lowest_first): Call window_min_size_1 to make
13329 sure to preserve modeline of bottom-most window when resizing
13330 the minibuffer.
13331 (Fset_window_configuration, Fcurrent_window_configuration)
13332 (compare_window_configurations): Do not handle
13333 window-min-height|width any more.
13334 (syms_of_window): Clarify window-min-height|width doc-strings.
13335
13336 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
13337
13338 * dired.c (file_name_completion): Fix up the encoding/decoding issue
13339 some more. Copy some of the code from Ftry_completions.
13340 Remove special case code that dates back to initial revision when the
13341 slash was only added when necessary and that can't trigger nowadays.
13342
13343 2008-04-27 Kenichi Handa <handa@m17n.org>
13344
13345 * font.c (font_prop_validate): Signal `error' instead of `font'.
13346
13347 2008-04-29 Jason Rumney <jasonr@gnu.org>
13348
13349 * w32fns.c (Fw32_battery_status): New defun.
13350 (syms_of_w32fns): Defsubr it.
13351
13352 2008-04-28 Andreas Schwab <schwab@suse.de>
13353
13354 * dired.c (file_name_completion): Fix another mixing of encoded
13355 and decoded names.
13356
13357 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
13358
13359 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
13360
13361 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
13362
13363 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
13364
13365 2008-04-27 Andreas Schwab <schwab@suse.de>
13366
13367 * dired.c (file_name_completion): Fix inappropriate mixing of
13368 encoded and decoded names.
13369
13370 * xterm.c (XTread_socket): Fix use of uninitialized variable.
13371
13372 * puresize.h (BASE_PURESIZE): Increase to 1200000.
13373
13374 2008-04-26 Eli Zaretskii <eliz@gnu.org>
13375
13376 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
13377 2008-03-31, it's not needed anymore with `struct stat' definition
13378 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
13379 for the same reasons.
13380
13381 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
13382
13383 * m/sparc.h: Additional redefinitions for GNU/Linux.
13384
13385 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13386
13387 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
13388 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
13389 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
13390 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
13391 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
13392 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
13393 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
13394 Likewise.
13395
13396 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
13397 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
13398 (mac_ax_number_of_characters): Add externs.
13399 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
13400 [USE_MAC_TSM]: Likewise.
13401 (mac_handle_text_input_event) [MAC_OSX]:
13402 Handle kEventTextInputOffsetToPos for no active input area case.
13403 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
13404 (mac_handle_document_access_event)
13405 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
13406 (install_application_handler) [MAC_OSX]: Register handlers for
13407 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
13408 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
13409 Register mac_handle_document_access_event.
13410
13411 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
13412 Make functions non-static.
13413
13414 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
13415
13416 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
13417 (read_file_name_completion_ignore_case, insert_default_directory)
13418 (Qdefault_directory): Move to minibuffer.el.
13419 (Fread_file_name): Call the new `read-file-name' instead.
13420
13421 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13422
13423 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
13424 Make function non-static.
13425 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
13426 Remove function.
13427 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
13428 Move to mactoolbox.c.
13429 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
13430
13431 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
13432 (mac_rect_make): New macro.
13433
13434 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
13435 instead of float.
13436 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
13437 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
13438 (XSetBackground) [USE_CG_DRAWING]: Likewise.
13439 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
13440 CGRectMake.
13441 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
13442 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
13443 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
13444 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
13445 instead of WindowRef in argument type.
13446 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
13447 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
13448 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
13449 instead of DISPLAY. All uses changed.
13450 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
13451 (x_calc_absolute_position): Simplify so as not to use
13452 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
13453
13454 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
13455 instead of WindowRef in argument type.
13456 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
13457 [TARGET_API_MAC_CARBON]: Remove externs.
13458 (create_apple_event, mac_event_parameters_to_lisp)
13459 [TARGET_API_MAC_CARBON]: Add externs.
13460
13461 * mactoolbox.c (Vmac_ts_script_language_on_focus)
13462 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
13463 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
13464 is clicked.
13465 (x_activate_menubar): Remove extern for saved_menu_event_location.
13466 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
13467 Move from mac.c.
13468
13469 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13470
13471 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
13472 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
13473
13474 2008-04-23 Jason Rumney <jasonr@gnu.org>
13475
13476 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
13477 attributes only for local files.
13478
13479 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
13480 default to Qlocal.
13481
13482 2008-04-22 Juri Linkov <juri@jurta.org>
13483
13484 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
13485 read-buffer-to-switch instead of using the letter "B".
13486
13487 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
13488
13489 * fileio.c (Qdefault_directory): New variable.
13490 (Fread_file_name): Use it to pass `dir' to the completion functions.
13491
13492 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
13493
13494 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
13495
13496 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13497
13498 * keyboard.c (Vpre_help_message): Remove.
13499 (show_help_echo): Remove default C code.
13500
13501 * dired.c (directory_files_internal, file_name_completion):
13502 Only call ENCODE_FILE if the string is indeed decoded.
13503
13504 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13505
13506 * Makefile.in (TOOLKIT_DEFINES): Remove.
13507 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
13508
13509 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13510
13511 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
13512 (mactoolbox.o): New target.
13513
13514 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
13515 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
13516
13517 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
13518 Use mac_set_frame_window_background instead of XSetWindowBackground.
13519 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
13520 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
13521 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
13522 instead of SetWindowTitleWithCFString.
13523 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
13524 Move function to mactoolbox.c.
13525 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
13526 Use mac_set_window_modified instead of SetWindowModified.
13527 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
13528 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
13529 (Fx_focus_frame): Use mac_front_non_floating_window instead of
13530 FrontNonFloatingWindow. Use mac_activate_window instead of
13531 ActivateWindow. Use mac_active_non_floating_window instead of
13532 ActiveNonFloatingWindow.
13533 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
13534 Use mac_show_hourglass and mac_hide_hourglass.
13535 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
13536 instead of GetGlobalMouse.
13537 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
13538 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
13539 Use mac_bring_window_to_front instead of BringToFront.
13540 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
13541 mactoolbox.c.
13542 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
13543 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
13544 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
13545 mactoolbox.c.
13546
13547 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
13548 (XtPointer): Move typedef from macmenu.c.
13549 (enum button_type): Move enum from macmenu.c.
13550 (widget_value): Move typedef from macmenu.c.
13551 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
13552 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
13553 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
13554 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
13555 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
13556 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
13557 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
13558 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
13559 (Selection): Move typedef from macselect.c.
13560 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
13561 macterm.c.
13562 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
13563 (mac_is_window_collapsed, mac_bring_window_to_front)
13564 (mac_send_window_behind, mac_hide_window, mac_show_window)
13565 (mac_collapse_window, mac_front_non_floating_window)
13566 (mac_active_non_floating_window, mac_activate_window)
13567 (mac_move_window_structure, mac_move_window, mac_size_window)
13568 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
13569
13570 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
13571 (enum mac_menu_kind): Move enum to mactoolbox.c.
13572 (min_menu_id): Move variable to mactoolbox.c.
13573 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
13574 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
13575 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
13576 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
13577 [TARGET_API_MAC_CARBON]: Likewise.
13578 (XtPointer): Move typedef to macgui.h.
13579 (enum button_type): Move enum to macgui.h.
13580 (widget_value): Move typedef to macgui.h.
13581 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
13582 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
13583 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
13584 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
13585 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
13586 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
13587 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
13588 (popup_activated_flag): Make variable non-static.
13589 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
13590 (add_menu_item, fill_menu, dispose_menus):
13591 Move functions to mactoolbox.c.
13592 (restore_show_help_function, menu_target_item_handler)
13593 (install_menu_target_item_handler, mac_handle_dialog_event)
13594 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
13595 [TARGET_API_MAC_CARBON]: Likewise.
13596 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
13597 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
13598 (find_and_call_menu_selection, name_is_separator): Make function
13599 non-static.
13600 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
13601 to mactoolbox.c.
13602 (set_frame_menubar): Don't call install_menu_quit_handler.
13603 (menu_item_selection): New variable.
13604 (mac_menu_show): Use create_and_show_popup_menu.
13605 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
13606 selection but set variable menu_item_selection. All uses changed.
13607 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
13608 Call install_menu_quit_handler. Move to mactoolbox.c.
13609
13610 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
13611 (Selection): Move typedef to macgui.h.
13612 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
13613 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
13614 Make variables non-static.
13615 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
13616 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
13617 Make functions non-static.
13618 (Vmac_service_selection) [MAC_OSX]: Likewise.
13619 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
13620 (mac_valid_selection_target_p, mac_clear_selection)
13621 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
13622 (mac_put_selection_value, mac_selection_has_target_p)
13623 (mac_get_selection_value, mac_get_selection_target_list)
13624 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
13625 Move functions to mactoolbox.c.
13626 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
13627 Likewise.
13628 (copy_scrap_flavor_data, mac_handle_service_event)
13629 (install_service_handler) [MAC_OSX]: Likewise.
13630 (syms_of_macselect) <Vmac_dnd_known_types>:
13631 Use mac_dnd_default_known_types.
13632
13633 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
13634 Move to mactoolbox.c.
13635 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
13636 (Fx_selection_owner_p): Add EXFUN.
13637 (install_window_handler, remove_window_handler, XSetWindowBackground):
13638 Remove externs.
13639 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
13640 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
13641 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
13642 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
13643 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
13644 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
13645 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
13646 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
13647 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
13648 (create_and_show_popup_menu, mac_get_selection_from_symbol)
13649 (mac_valid_selection_target_p, mac_clear_selection)
13650 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
13651 (mac_put_selection_value, mac_selection_has_target_p)
13652 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
13653 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
13654 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
13655 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
13656 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
13657 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
13658 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
13659 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
13660 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
13661
13662 * mactoolbox.c: New file.
13663
13664 2008-04-18 Jason Rumney <jasonr@gnu.org>
13665
13666 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
13667
13668 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13669
13670 * character.c (Fmultibyte_char_to_unibyte):
13671 Return latin1 chars unchanged.
13672
13673 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
13674 relocated if it points to `name'.
13675
13676 2008-04-17 Kenichi Handa <handa@m17n.org>
13677
13678 * data.c (Faset): Allow setting a multibyte character in an
13679 ASCII-only unibyte string.
13680
13681 * lisp.h (STRING_SET_MULTIBYTE): New macro.
13682
13683 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
13684
13685 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
13686 done in config.h.
13687
13688 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
13689
13690 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
13691 (Fchar_direction): Add usage in the docstring.
13692
13693 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
13694
13695 * keyboard.c (read_key_sequence): Remove always-true checks.
13696
13697 2008-04-14 Jason Rumney <jasonr@gnu.org>
13698
13699 * w32font.c (w32font_open_internal): Set max_bounds.descent in
13700 compatibility struct, for better underline positioning.
13701
13702 2008-04-13 David Hansen <david.hansen@gmx.net>
13703
13704 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
13705 string.
13706
13707 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
13708
13709 * m/hp800.h (XUINT, XSET): Remove.
13710
13711 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
13712
13713 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
13714 previous change.
13715
13716 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
13717
13718 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
13719 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
13720
13721 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13722
13723 * keymap.h (map_keymap_canonical): Declare.
13724 * xmenu.c (single_keymap_panes): Use it.
13725
13726 2008-04-11 Glenn Morris <rgm@gnu.org>
13727
13728 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
13729 set the target's value to that of the alias.
13730
13731 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13732
13733 * term.c (set_tty_color_mode): Left over typo.
13734
13735 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
13736
13737 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
13738 only after check for file name handler functions. Signal, when
13739 native functionality is not supported.
13740 (syms_of_fileio): Declare it unconditionally.
13741
13742 2008-04-10 Jason Rumney <jasonr@gnu.org>
13743
13744 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
13745 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
13746
13747 * w32.c (logon_network_drive): Also logon to remote drives that
13748 are mapped to drive letters.
13749
13750 2008-04-10 Glenn Morris <rgm@gnu.org>
13751
13752 * xdisp.c (truncate-partial-width-windows): Doc fix.
13753
13754 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13755
13756 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
13757 Move functions to minibuffer.el.
13758 (syms_of_fileio): Don't declare them.
13759
13760 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
13761
13762 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
13763 (syms_of_minibuf): Remove its initialization.
13764
13765 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
13766
13767 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
13768
13769 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
13770
13771 2008-04-09 Jason Rumney <jasonr@gnu.org>
13772
13773 * makefile.w32-in (distclean): Delete makefile too.
13774 (maintainer-clean): New target.
13775
13776 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
13777
13778 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
13779 for new font backend and composite cases.
13780
13781 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
13782
13783 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
13784 Most of the code moved to run_timers.
13785 (do_pending_atimers): Call run_timers.
13786 (run_timers): New function.
13787
13788 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
13789 run atimers.
13790
13791 * process.c (wait_reading_process_output): The same as above.
13792
13793 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
13794
13795 * minibuf.c (last_exact_completion): Remove variable.
13796 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
13797 (complete_and_exit_1, complete_and_exit_2)
13798 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
13799 (Fdisplay_completion_list, display_completion_list_1)
13800 (Fminibuffer_completion_help, Fself_insert_and_exit)
13801 (Fexit_minibuffer, Fminibuffer_message): Move functions to
13802 minibuffer.el.
13803 (syms_of_minibuf): Remove corresponding initializations.
13804
13805 * keyboard.c (Qdeactivate_mark): New var.
13806 (command_loop_1): Use it to call `deactivate-mark'.
13807 (syms_of_keyboard): Initialize it.
13808
13809 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
13810 to another frame.
13811 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
13812 Don't call set_tty_color_mode.
13813 (store_frame_param): Reset previous_frame rather than call
13814 set_tty_color_mode.
13815 * term.c (set_tty_color_mode): Rewrite.
13816 * dispextern.h (set_tty_color_mode): New type.
13817 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
13818
13819 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
13820
13821 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
13822 for generic chars, which do not exist any more in emacs-unicode.
13823
13824 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
13825
13826 * coding.c (detect_coding_emacs_mule)
13827 (Ffind_operation_coding_system): Fix typo.
13828
13829 2008-04-08 Jason Rumney <jasonr@gnu.org>
13830
13831 * w32uniscribe.c (SNAME): Extract only symbol name.
13832
13833 * w32font.h (struct w32_metric_cache): New struct.
13834 (w32font_info): Use it.
13835 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
13836 (CACHE_BLOCKSIZE): New constants.
13837
13838 * w32font.c (Qja, Qko, Qzh): New symbols.
13839 (syms_of_w32font): Initialise them.
13840 (font_matches_spec): Use them to filter by language.
13841 (recompute_cached_metrics): Remove function.
13842 (compute_metrics, clear_cached_metrics): New functions.
13843 (w32font_encode_char): Use them to manage metric cache.
13844 (w32font_text_extents): Cache metrics for all glyphs on demand.
13845 Delay converting glyph indices to WORD until needed.
13846 (w32font_open_internal): Initialize metric cache to empty.
13847 (registry_to_w32_charset): Charset should always be a symbol.
13848 (fill_in_logfont, list_all_matching_fonts): Family should
13849 always be a symbol.
13850
13851 2008-04-06 Jason Rumney <jasonr@gnu.org>
13852
13853 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
13854 Give up if glyph indices not supported. Use uniscribe obtained
13855 ABC widths for individual metrics. Map glyph clusters back to
13856 characters using fClusterStart flag. Return number of glyphs
13857 produced, not chars processed.
13858 (uniscribe_shape): Map char at FROM to current glyph.
13859
13860 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13861
13862 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
13863 Use SetMenuItemHierarchicalMenu.
13864
13865 2008-04-05 Jason Rumney <jasonr@gnu.org>
13866
13867 * image.c (pbm_load): Allow color values up to 65535.
13868 Throw an error if max_color_idx is outside the supported range.
13869 Report an error when image size is invalid.
13870 Read two bytes at a time when raw images have max_color_idx above 255.
13871
13872 2008-04-05 Eli Zaretskii <eliz@gnu.org>
13873
13874 * w32.c (readdir): If FindFirstFile/FindNextFile return in
13875 cFileName a file name that includes `?' characters, use the 8+3
13876 alias in cAlternateFileName instead.
13877
13878 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
13879
13880 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
13881 append "CCL: Quitted" when the CCL program is quitted.
13882 (setup_ccl_program): Initialize ccl->quit_silently to zero.
13883
13884 * ccl.h (struct ccl_program): New member quit_silently.
13885
13886 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
13887
13888 * search.c (compile_pattern_1): Treat non-nil and non-string of
13889 search-spaces-regexp as nil.
13890
13891 * minibuf.c (Fassoc_string): Tweak docstring.
13892
13893 2008-04-05 Eli Zaretskii <eliz@gnu.org>
13894
13895 * dired.c (Ffile_attributes): Support inode numbers wider than 32
13896 bits. Remove ugly WINDOWSNT-specific kludge introduced on
13897 2008-03-14 to force inode be positive.
13898
13899 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
13900 _S_* ones, since we now use our own sys/stat.h.
13901 (stat, fstat): Don't mangle the inode number.
13902 (init_user_info): Don't restrict UID and GID to 0-60000 range.
13903
13904 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13905
13906 * frame.h (struct frame): Give one more bit to `visible' since we use
13907 values larger than 1 to indicate obscured frames on ttys.
13908
13909 * keymap.c (Qkeymap_canonicalize): New var.
13910 (Fmap_keymap_internal): New fun.
13911 (describe_map): Use keymap-canonicalize.
13912
13913 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
13914 (Fundo_boundary): Set them.
13915 (syms_of_undo): Initialize them.
13916 (record_point): Use them instead of last_point_position*.
13917 (last_undo_buffer): Change type.
13918
13919 2008-04-04 Jason Rumney <jasonr@gnu.org>
13920
13921 * w32font.c (w32font_text_extents): Use font's ascent and descent.
13922 (recompute_cached_metrics): Don't set ascent and descent per char.
13923
13924 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
13925 (uniscribe_check_otf): Add GC protection before consing.
13926 Rearrange loop for counting features.
13927
13928 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
13929
13930 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
13931 buffer with byte-size of source buffer.
13932
13933 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
13934
13935 * callint.c (Fcall_interactively): Handle temporary region even
13936 when shift-select-mode is off.
13937
13938 2008-04-03 Jason Rumney <jasonr@gnu.org>
13939
13940 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
13941
13942 2008-04-03 Kenichi Handa <handa@m17n.org>
13943
13944 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
13945 (CATEGORY_MASK_UTF_16): Likewise.
13946 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
13947 binary file.
13948 (detect_coding): Add null-byte detection for a binary file.
13949 (detect_coding_system): Likewise.
13950
13951 2008-04-03 Jason Rumney <jasonr@gnu.org>
13952
13953 * w32uniscribe.c: New file.
13954
13955 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
13956
13957 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
13958
13959 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
13960 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
13961 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
13962 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
13963 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
13964 (Qphonetic): New symbols.
13965 (syms_of_w32font): Initialize them.
13966 (font_supported_scripts): Use them.
13967 (w32font_list_family): List all charsets.
13968 (w32font_text_extents, recompute_cached_metrics): Fix metric
13969 calculations.
13970 (w32_enumfont_pattern_entity): Make full_type a DWORD.
13971 Give opentype fonts their own format.
13972 (font_matches_spec): New arguments backend and logfont.
13973 Handle :otf spec for uniscribe backend.
13974 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
13975 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
13976
13977 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
13978 font backend.
13979 (globals_of_w32fns): Initialize uniscribe font backend.
13980
13981 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
13982 dependencies.
13983 (w32uniscribe.$(O)): New file to build.
13984 (FONT_OBJ): Include w32uniscribe.$(O).
13985 (LIBS): Add uniscribe libraries.
13986
13987 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
13988
13989 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
13990
13991 * callint.c (Vshift_select_mode): New var.
13992 (Finteractive): Document new ^ spec.
13993 (Fcall_interactively): Call handle-shift-selection if the ^ spec
13994 is present.
13995
13996 * keyboard.c (Vthis_command_keys_shift_translated): New var.
13997 (command_loop_1): Avoid running the direct display versions of
13998 forward-char and backward-char if shift-selection may occur.
13999 (read_key_sequence): Set Vthis_command_keys_shift_translated if
14000 shift-translation takes place.
14001
14002 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
14003 avoid clobbering by define-minor-mode.
14004
14005 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
14006 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
14007
14008 * syntax.c (Fforward_word): Add ^ interactive spec.
14009
14010 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
14011 (Fscroll_right): Add ^ interactive spec.
14012
14013 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
14014
14015 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
14016
14017 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
14018
14019 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
14020
14021 2008-03-31 Juri Linkov <juri@jurta.org>
14022
14023 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
14024
14025 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
14026
14027 * gtkutil.c (xg_set_geometry): Fix indentation.
14028 (xg_resize_outer_widget): Remove.
14029 (x_wm_size_hint_off): Fix indentation.
14030 (xg_frame_set_char_size): Call flush_and_sync after
14031 gtk_window_resize.
14032 (x_wm_set_size_hint): Pass NULL as geometry window to
14033 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
14034 Add menu bar and tool bar height to base height.
14035 (xg_update_frame_menubar, free_frame_menubar)
14036 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
14037 (update_frame_tool_bar, free_frame_tool_bar):
14038 Change xg_resize_outer_widget to xg_frame_set_char_size.
14039
14040 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
14041
14042 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
14043 (Fdbus_call_method): New parameter TIMEOUT.
14044 (dbus-send-signal): Optimize UNGCPRO call.
14045
14046 2008-03-29 Juri Linkov <juri@jurta.org>
14047
14048 * window.c (Fdisplay_buffer): Move call to
14049 Vsplit_window_preferred_function out of conditions that check
14050 if window is eligible for vertical splitting.
14051 When Vsplit_window_preferred_function is non-nil, call it and use
14052 its non-nil return value as window. Otherwise, continue doing
14053 vertical splitting using Fsplit_window with arg horflag=nil.
14054 (syms_of_window) <Vsplit_window_preferred_function>: Change the
14055 default value from `split-window' to nil.
14056
14057 2008-03-29 Juri Linkov <juri@jurta.org>
14058
14059 * callint.c (Fcall_interactively): Revert 2008-03-16 change
14060 for interactive code letters 'b' and 'B'.
14061
14062 2008-03-29 Eli Zaretskii <eliz@gnu.org>
14063
14064 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
14065 multibyte string.
14066
14067 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
14068
14069 * keyboard.c (pending_funcalls): New var.
14070 (timer_check): Run it.
14071 (syms_of_keyboard): Initialize it.
14072 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
14073 (Vdelete_terminal_functions): New vars.
14074 (syms_of_terminal): Initialize them.
14075 (Fdelete_terminal): Run delete-terminal-functions.
14076 * xdisp.c (safe_eval): Rewrite.
14077 (safe_call2): New fun.
14078 * frame.c (Qdelete_frame_functions): New var.
14079 (syms_of_frame): Initialize it.
14080 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
14081 * lisp.h (safe_call2, pending_funcalls): Declare.
14082
14083 2008-03-28 Andreas Schwab <schwab@suse.de>
14084
14085 * indent.c (Fmove_to_column): Move declaration before statements.
14086
14087 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
14088
14089 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
14090 (struct frame): Use bit fields for boolean vars.
14091
14092 * process.c (server_accept_connection): Simplify naming.
14093 (emacs_get_tty_pgrp): Use SDATA.
14094
14095 * coding.c (decode_coding_object): Fix last change.
14096
14097 2008-03-27 Jason Rumney <jasonr@gnu.org>
14098
14099 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
14100
14101 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
14102
14103 * charset.c (Fdefine_charset_internal): Change the way of
14104 registering charsets in Vcharset_order_list.
14105 (syms_of_charset): Make the charset `eight-bit' supplementary.
14106
14107 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
14108
14109 * regex.c (EXTEND_BUFFER): Change order of pointer addition
14110 operations, to avoid having the difference between pointers
14111 overflow.
14112
14113 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14114
14115 * indent.c (check_display_width): New fun.
14116 (scan_for_column): Use it.
14117
14118 * data.c (syms_of_data): Mark most-positive-fixnum and
14119 most-negative-fixnum as constants.
14120
14121 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
14122
14123 * indent.c (scan_for_column): Extract from current_column_1.
14124 Merge with the same code from Fmove_to_column.
14125 (current_column_1, Fmove_to_column): Use it.
14126
14127 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
14128
14129 * keymap.c (map_keymap_internal): New fun.
14130 (map_keymap): Use it.
14131 (Fmap_keymap_internal): New fun.
14132 (Fmap_keymap): Remove left-out test from before make_save_value.
14133
14134 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
14135
14136 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
14137 Use XCAR/XCDR.
14138
14139 * process.h (struct Lisp_Process): Remove filter_multibyte.
14140 * process.c (QCfilter_multibyte): Remove.
14141 (setup_process_coding_systems): Don't use filter_multibyte.
14142 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
14143 (read_process_output): Don't adjust multibyteness to filter_multibyte.
14144 (Fset_process_filter_multibyte): Change the coding-system to
14145 approximate the previous behavior.
14146 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
14147 coding-system.
14148
14149 * coding.c (decode_coding_object): When not decoding into a buffer,
14150 obey the coding system's preference of (uni|multi)byte.
14151
14152 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
14153
14154 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
14155 every char is changed and has a different byte-length.
14156 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
14157 Fix int -> EMACS_INT.
14158
14159 2008-03-23 David Hansen <david.hansen@gmx.net>
14160
14161 * dbusbind.c (xd_read_message): Remove extra copying of message
14162 strings. Check for NULL `interface' or `member'.
14163
14164 2008-03-22 Eli Zaretskii <eliz@gnu.org>
14165
14166 * w32.c (readdir): If FindFirstFile/FindNextFile return in
14167 cFileName a file name that includes `?' characters, use the 8+3
14168 alias in cAlternateFileName instead.
14169
14170 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14171
14172 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
14173
14174 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
14175
14176 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
14177 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
14178 work on current_buffer only instead (that was already the case
14179 for some of the code anyway).
14180 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
14181 (temp_set_point, temp_set_point_both): Use EMACS_INT.
14182 (SET_PT, SET_PT_BOTH): Adjust.
14183 * intervals.h (set_point, temp_set_point, set_point_both)
14184 (temp_set_point_both): Remove redundant declarations.
14185
14186 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
14187
14188 * fileio.c (Finsert_file_contents):
14189 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
14190 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
14191 when buffer != current_buffer anyway.
14192
14193 2008-03-20 Andreas Schwab <schwab@suse.de>
14194
14195 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
14196 as default.
14197
14198 2008-03-19 Jason Rumney <jasonr@gnu.org>
14199
14200 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
14201 (syms_of_w32fns): Initialize them.
14202 (HOURGLASS_ID): New constant.
14203 (x_window_to_frame): Don't check hourglass_window.
14204 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
14205 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
14206 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
14207 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
14208 Only change the cursor if hourglass is not active.
14209 (Fx_create_frame): Initialize frame's current_cursor.
14210 (hourglass_atimer): Remove.
14211 (hourglass_started): New function.
14212 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
14213 (show_hourglass): Adapt to w32, changing argument to frame.
14214
14215 * w32term.h (struct w32_output): Remove hourglass_window.
14216 Add current_cursor.
14217
14218 * eval.c (call_debugger, Fsignal):
14219 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
14220 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
14221 (Fexecute_extended_command, cancel_hourglass_unwind):
14222 * minibuf.c (read_minibuf):
14223 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
14224
14225 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
14226
14227 * window.c (run_funs): New fun.
14228 (run_window_configuration_change_hook): Use it to run the buffer-local
14229 and the global part of the hook.
14230
14231 * xdisp.c (format_mode_line_unwind_data): Add window argument.
14232 (unwind_format_mode_line): Restore selected window.
14233 (x_consider_frame_title, Fformat_mode_line): Set selected window.
14234
14235 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
14236
14237 * editfns.c (Fchar_equal): Check they are valid characters.
14238
14239 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
14240
14241 2008-03-17 Andreas Schwab <schwab@suse.de>
14242
14243 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
14244 against a charset.
14245
14246 * lisp.h (Fbuffer_list): Declare.
14247
14248 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
14249
14250 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
14251 handlebox_widget is != 0.
14252
14253 2008-03-16 Juri Linkov <juri@jurta.org>
14254
14255 * callint.c (Fcall_interactively): For interactive code letters
14256 'b' and 'B' put the buffer list into the list of default "future"
14257 values of the minibuffer.
14258
14259 2008-03-16 Andreas Schwab <schwab@suse.de>
14260
14261 * keyboard.c (read_key_sequence): Fix downcasing of letters with
14262 modifiers.
14263
14264 * regex.c (re_match_2_internal): Correct matching of a charset
14265 against latin-1 characters.
14266
14267 2008-03-16 Kenichi Handa <handa@m17n.org>
14268
14269 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
14270 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
14271 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
14272 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
14273 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
14274 CHAR_STRING_ADVANCE.
14275 (produce_chars): Fix for the case that the source and the
14276 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
14277 instead of CHAR_STRING_ADVANCE.
14278 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
14279 STRING_CHAR_ADVANCE.
14280
14281 2008-03-15 Andreas Schwab <schwab@suse.de>
14282
14283 * regex.c (re_match_2_internal): Correct matching of eight bit
14284 characters in unibyte strings.
14285
14286 2008-03-15 Martin Rudalics <rudalics@gmx.at>
14287
14288 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
14289 at end of range when it coincides with the end of the buffer.
14290
14291 2008-03-14 Eli Zaretskii <eliz@gnu.org>
14292
14293 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
14294
14295 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
14296
14297 2008-03-14 Jason Rumney <jasonr@gnu.org>
14298
14299 * editfns.c (initial_tz): New variable.
14300 (syms_of_editfns): Initialize it.
14301 (Fset_time_zone_rule): Set it when first called.
14302 Use it when TZSTRING is nil.
14303
14304 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
14305 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
14306 (monitor_from_point_fn, get_monitor_info_fn): New globals.
14307 (globals_of_w32fns): Initialize them.
14308 (compute_tip_xy): Use them to position tooltips.
14309
14310 2008-03-14 Glenn Morris <rgm@gnu.org>
14311
14312 * emacs.c (main): Revert previous change.
14313 (standard_args): Revert -internal-script back to -scriptload,
14314 and remove the long-option form.
14315
14316 2008-03-13 Glenn Morris <rgm@gnu.org>
14317
14318 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
14319 Remove option -enable-font-backend.
14320
14321 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14322
14323 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
14324
14325 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
14326
14327 * xterm.c (x_connection_closed): For GTK: If this is the last
14328 terminal just exit without closing the display.
14329
14330 2008-03-11 Jason Rumney <jasonr@gnu.org>
14331
14332 * w32font.c (w32font_full_name): Use floor to round.
14333
14334 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
14335
14336 * sound.c (alsa_configure): Declare vol at beginning of block.
14337
14338 * fontset.c (Ffontset_info): Remove extra semicolon.
14339
14340 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
14341
14342 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
14343 size of resulting string.
14344
14345 2008-03-10 Jason Rumney <jasonr@gnu.org>
14346
14347 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
14348
14349 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14350
14351 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
14352 Don't pretend as if characters with display property haven't been
14353 consumed for string-replacing-string case.
14354
14355 2008-03-08 Kim F. Storm <storm@cua.dk>
14356
14357 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
14358 (get_next_display_element, next_element_from_string)
14359 (next_element_from_ellipsis, next_element_from_buffer): Use it.
14360
14361 2008-03-08 Andreas Schwab <schwab@suse.de>
14362
14363 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
14364
14365 2008-03-06 Jason Rumney <jasonr@gnu.org>
14366
14367 * w32font.c (w32_registry): Take font_type argument. Use ANSI
14368 when charset not specified. Only translate ANSI to unicode when
14369 font_type is truetype.
14370 (w32font_coverage_ok): New function.
14371 (add_font_entity_to_list): Use it to filter unsuitable fonts.
14372
14373 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
14374
14375 * lread.c (Fread_char): Resolve modifiers.
14376 (Fread_char_exclusive): Likewise.
14377
14378 * character.c (char_resolve_modifier_mask): New function.
14379 (char_string): Use char_resolve_modifier_mask.
14380 (Fchar_resolve_modifiers): New function.
14381 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
14382 function.
14383
14384 2008-03-04 Jason Rumney <jasonr@gnu.org>
14385
14386 * makefile.w32-in: Always include w32font.c in the build.
14387 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
14388
14389 2008-03-04 Andreas Schwab <schwab@suse.de>
14390
14391 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
14392 (versionclean): Likewise.
14393
14394 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
14395
14396 * .cvsignore: Add oo.
14397
14398 2008-03-03 Andreas Schwab <schwab@suse.de>
14399
14400 * coding.c (decode_coding_object): Inhibit gap shrinking while
14401 decoding in place.
14402
14403 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
14404
14405 * w32term.c: Remove unused include "gnu.h".
14406 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
14407
14408 * gnu.h: Rename to ...
14409 * emacs-icon.h: ... this.
14410 * xterm.c: Use emacs-icon.h instead of gnu.h.
14411 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
14412
14413 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
14414
14415 * w32font.c: Include math.h.
14416
14417 2008-03-03 Jason Rumney <jasonr@gnu.org>
14418
14419 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
14420 Compute options separately.
14421 (w32font_open_internal): Set glyph_idx before caching metrics.
14422
14423 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
14424 Define if system headers don't.
14425 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
14426 (w32font_encode_char): Don't declare here.
14427
14428 * w32font.c (Quniscribe, QCformat): New symbols.
14429 (syms_of_w32font): Define them.
14430 (w32font_has_char): Indicate uncertainty.
14431 (w32font_encode_char): Encode as glyph point. Make static.
14432 (recompute_cached_metrics): New function.
14433 (w32font_open_internal): Use it. Set font to use glyph points
14434 initially. Set format based on type of font.
14435 (w32font_text_extents, w32font_draw): Optionally use glyph points.
14436 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
14437 on it. Set format based on information available here.
14438 (add_font_entity_to_list): Identify backend based on opentype_only.
14439
14440 2008-03-02 Andreas Schwab <schwab@suse.de>
14441
14442 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
14443
14444 * coding.c (decode_coding_big5, produce_chars):
14445 Fix typos in last change.
14446
14447 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
14448
14449 * gnu.h: New icon.
14450
14451 2008-03-02 Kenichi Handa <handa@m17n.org>
14452
14453 * coding.c (decode_coding_utf_8): When eol-type of CODING is
14454 `dos', don't decode '\r' if that is the last in the source.
14455 (decode_coding_utf_16, decode_coding_emacs_mule)
14456 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14457 (decode_coding_raw_text, decode_coding_charset): Likewise.
14458 (produce_chars): Don't decode EOL here. Use EMACS_INT.
14459
14460 2008-03-01 Jason Rumney <jasonr@gnu.org>
14461
14462 * w32font.c (w32font_full_name): Report point size for scalable fonts.
14463
14464 2008-03-01 Kim F. Storm <storm@cua.dk>
14465
14466 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
14467
14468 2008-03-01 Jason Rumney <jasonr@gnu.org>
14469
14470 * w32font.c (w32font_full_name): New function.
14471 (w32font_open_internal): Use it.
14472
14473 2008-03-01 Kim F. Storm <storm@cua.dk>
14474
14475 * dispnew.c (line_draw_cost): Fix invalid glyph check.
14476
14477 2008-03-01 Jason Rumney <jasonr@gnu.org>
14478
14479 * font.c (font_unparse_fcname): Increase len when style is a symbol.
14480
14481 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
14482
14483 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
14484 xg_frame_resized when the event is for the edit widget.
14485
14486 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
14487
14488 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
14489 set_char_size.
14490 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
14491 operations on widgets here. Just set frame size if needed.
14492 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
14493 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
14494 (x_wm_set_size_hint): Set size hints on the edit widget only, not
14495 the whole frame.
14496 (xg_create_tool_bar): Move attachment of the tool bar to
14497 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
14498 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
14499
14500 2008-03-01 Jason Rumney <jasonr@gnu.org>
14501
14502 * w32fns.c (w32_msg_pump): Disable debug code.
14503
14504 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14505
14506 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
14507
14508 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
14509
14510 * xdisp.c (next_overlay_string): Don't set
14511 overlay_strings_at_end_processed_p if we're currently reading from
14512 a display string.
14513
14514 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
14515
14516 * xdisp.c (get_overlay_strings_1): Fix typo.
14517
14518 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
14519
14520 * xdisp.c (get_overlay_strings_1): Add missing argument type.
14521
14522 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
14523
14524 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
14525
14526 * xdisp.c (display_mode_element): Cancel the previous change.
14527 (decode_mode_spec): Likewise.
14528 (handle_auto_composed_prop): Don't make composition if it->string
14529 is a string.
14530
14531 2008-02-27 Kim F. Storm <storm@cua.dk>
14532
14533 * lisp.h (GLYPH): Change type from int to struct with separate char
14534 and face_id members.
14535 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
14536 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
14537 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
14538 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
14539 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
14540 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
14541 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
14542 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
14543 handle new Lisp glyph code encoding, either an integer or a cons.
14544
14545 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
14546 (GLYPH_ALIAS): Delete.
14547 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
14548 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
14549 (GLYPH_FROM_CHAR): Replace macro by ...
14550 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
14551
14552 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
14553 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
14554 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
14555 (GLYPH_INVALID_P): New macro.
14556 (spec_glyph_lookup_face): Update prototype.
14557
14558 * dispnew.c (line_draw_cost): Adapt to new glyph type.
14559 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
14560 new glyph code encoding.
14561 (spec_glyph_lookup_face): No return value; update passed glyph instead.
14562 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
14563
14564 * xdisp.c (get_next_display_element, next_element_from_display_vector):
14565 Adapt to new glyph type and new glyph code encoding.
14566
14567 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
14568
14569 * indent.c (current_column, current_column_1, Fmove_to_column)
14570 (compute_motion): Adapt to new glyph code encoding.
14571
14572 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
14573
14574 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
14575
14576 * process.c (wait_reading_process_output): Check for window
14577 changes caused by timers.
14578 Suggested by Johan Bockgård.
14579
14580 2008-02-27 Glenn Morris <rgm@gnu.org>
14581
14582 * emacs.c (USAGE1): Add `--disable-font-backend'.
14583
14584 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
14585
14586 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
14587 is made to the buffer.
14588
14589 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
14590
14591 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
14592 (face_at_string_position):
14593 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
14594 (face_at_string_position):
14595 * xdisp.c (display_string, next_overlay_change):
14596 * buffer.h (overlays_at):
14597 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
14598 Update callers.
14599
14600 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
14601
14602 * editfns.c (Fformat): Doc fix.
14603
14604 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
14605
14606 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
14607 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
14608 (Ffont_otf_alternates, Fquery_font): Doc fixes.
14609
14610 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
14611
14612 * buffer.c (Fbuffer_swap_text): New function.
14613 (syms_of_buffer): Defsubr it.
14614
14615 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
14616
14617 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
14618
14619 2008-02-25 Jason Rumney <jasonr@gnu.org>
14620
14621 * w32font.c (w32font_draw): Draw one character at a time when padding.
14622
14623 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
14624
14625 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
14626 Handle a nil arg. Use run_window_configuration_change_hook.
14627 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
14628 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
14629 Use run_window_configuration_change_hook.
14630
14631 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
14632
14633 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
14634 1-pixel width.
14635
14636 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
14637
14638 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
14639 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
14640 if the glyph in the font is zero pixel with.
14641
14642 * dispextern.h (struct glyph_string): New member padding_p.
14643
14644 * w32font.c (w32font_draw): Pay attention to s->padding_p.
14645
14646 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
14647
14648 * xfont.c (xfont_draw): Pay attention to s->padding_p.
14649
14650 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
14651
14652 * font.c: If the font driver doesn't have `shape' function, return Qnil.
14653
14654 2008-02-25 Jason Rumney <jasonr@gnu.org>
14655
14656 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
14657
14658 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14659
14660 Allow fine-grained image-cache flushing.
14661 * dispextern.h (struct image): Add `dependencies' field.
14662 (clear_image_caches): Change arg to Lisp_Object.
14663 * image.c (make_image): Initialize `dependencies' field.
14664 (clear_image_cache): Change arg to allow fine-grained flushing.
14665 Perform the flush even if image-cache-eviction-delay is nil.
14666 (clear_image_caches): Change arg to Lisp_Object.
14667 (Fclear_image_cache): Expand meaning of the argument.
14668 (mark_image): Mark `dependencies' field.
14669 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
14670 (lface_hash): Use XHASH rather than XFASTINT.
14671 (face_at_buffer_position): Fix int -> EMACS_INT position.
14672 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
14673 (select_frame_for_redisplay): Remove code duplication.
14674 (redisplay_internal): Adapt arg to call to clear_image_caches.
14675
14676 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
14677
14678 * s/vms4-0.h:
14679 * s/vms4-2.h:
14680 * s/vms4-4.h:
14681 * s/vms5-5.h: Remove, unused.
14682
14683 * s/irix5-2.h:
14684 * s/irix6-0.h:
14685 * s/riscos5.h:
14686 * s/mach-bsd4-3.h:
14687 * m/mips4.h: Remove files for obsolete systems.
14688
14689 * Makefile.in:
14690 * filelock.c:
14691 * unexmips.c:
14692 * m/hp9000s300.h:
14693 * m/iris4d.h:
14694 * s/aix3-1.h:
14695 * s/hpux.h:
14696 * s/msdos.h:
14697 * s/usg5-0.h:
14698 * s/usg5-2-2.h:
14699 * s/usg5-2.h:
14700 * s/usg5-3.h: Remove references to obsolete variables.
14701
14702 * s/irix5-0.h: Remove, move all the contents ...
14703 * s/irix6-5.h: ... here. Simplify.
14704 * config.in: Regenerate.
14705
14706 2008-02-24 Jason Rumney <jasonr@gnu.org>
14707
14708 * w32term.c (x_draw_glyph_string_background): Clear the background
14709 manually when cleartype is in use.
14710 (x_draw_glyph_string_foreground): Draw text transparently when
14711 cleartype is in use.
14712
14713 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
14714 a font into it unless we have to.
14715
14716 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
14717
14718 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
14719 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
14720
14721 2008-02-18 Jason Rumney <jasonr@gnu.org>
14722
14723 * w32fns.c (Fw32_shell_execute): Encode parameters.
14724
14725 2008-02-09 Eli Zaretskii <eliz@gnu.org>
14726
14727 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
14728
14729 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
14730
14731 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
14732
14733 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
14734
14735 * xterm.c (x_set_offset): Don't change the gravity if
14736 CHANGE_GRAVITY is -1.
14737
14738 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
14739
14740 * fileio.c (auto_save_error_occurred): New var.
14741 (auto_save_error): Set it.
14742 (Fdo_auto_save): Don't overwrite the error message if an auto-save
14743 error occurred.
14744
14745 2008-02-23 Eli Zaretskii <eliz@gnu.org>
14746
14747 * w32.c (globals_of_w32): Add initializations for
14748 g_b_init_get_sid_sub_authority and
14749 g_b_init_get_sid_sub_authority_count.
14750
14751 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
14752
14753 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
14754 (font_parse_xlfd): Use them for sanity check.
14755 (Finternal_set_font_style_table): Make sure the table is bijective.
14756
14757 Consolidate the image_cache to the terminal struct.
14758 * termhooks.h (P_): Remove redundant def.
14759 (struct terminal): New field `image_cache'.
14760 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
14761 of FRAME_X_IMAGE_CACHE.
14762 * xterm.h (struct x_display_info): Remove image_cache field.
14763 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
14764 * w32term.h (struct w32_display_info): Remove image_cache field.
14765 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
14766 * macterm.h (struct mac_display_info): Remove image_cache field.
14767 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
14768 * xterm.c (x_term_init):
14769 * w32term.c (w32_term_init):
14770 * macterm.c (mac_term_init): Set the image_cache in the terminal.
14771 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
14772 Remove declarations.
14773 (clear_image_caches, mark_image_cache): New declarations.
14774 * xfaces.c (clear_face_cache):
14775 * xdisp.c (redisplay_internal): Use clear_image_caches.
14776 * image.c (clear_image_cache): Don't check that a frame is on
14777 a window-system before checking if it shares the same cache.
14778 (clear_image_caches): New function.
14779 (Fclear_image_cache): Use it.
14780 (mark_image): Move from allo.c.
14781 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
14782 * alloc.c (mark_image, mark_image_cache): Move to image.c.
14783 (mark_object): Don't call mark_image_cache for frames.
14784 (mark_terminals): Call mark_image_cache.
14785
14786 * lisp.h (Fdelete_terminal): Declare.
14787
14788 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
14789 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
14790 wrong_type_argument.
14791
14792 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
14793
14794 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
14795 malayalam.el, and tamil.el. Add sinhala.el.
14796
14797 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
14798
14799 * xterm.c (x_connection_closed): Consolidate identical tests.
14800 (x_delete_terminal): Don't crash if called via x_connection_closed.
14801
14802 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
14803
14804 * xdisp.c (decode_mode_spec): New arg string.
14805 (display_mode_element): Adjust for the above change.
14806
14807 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
14808
14809 * callint.c (Fcall_interactively): Use AREF.
14810
14811 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
14812
14813 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
14814
14815 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
14816
14817 * xfns.c (Fx_show_tip): Set string to " " if empty.
14818
14819 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
14820
14821 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
14822 with Qt.
14823
14824 2008-02-17 Kenichi Handa <handa@m17n.org>
14825
14826 * ftfont.c (ftfont_shape): Return Lispy number.
14827
14828 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
14829 for GCs.
14830 (Finternal_set_font_selection_order): Call font_update_sort_order
14831 only when enable_font_backend is set.
14832 (realize_x_face): Set face->font_info to that of default face only
14833 when enable_font_backend is set.
14834
14835 * xdisp.c (handle_composition_prop): Set it->c to the fist
14836 character of the composed region.
14837 (fill_composite_glyph_string): Set base_face->font_info to
14838 s->font_info. Get a face for ascii from base_face->ascii_face.
14839 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
14840 with a face already decided.
14841 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
14842 non-negative.
14843 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
14844 call font_prepare_composition unconditionally.
14845
14846 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
14847
14848 * xterm.h (struct x_display_info): New member font.
14849
14850 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
14851 (x_set_mouse_face_gc, x_new_font): Likewise.
14852 (x_term_init): Setup display_info->font.
14853 (x_delete_terminal): Free display_info->font.
14854
14855 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
14856
14857 * ftxfont.c (ftxfont_default_fid): Delete it.
14858 (ftxfont_open): Set xfont->fid to 0.
14859 (ftxfont_end_for_frame): Clear data specific to the frame and the
14860 font-driver.
14861
14862 * xftfont.c (xftfont_default_fid): Delete it.
14863 (xftfont_open): Set xfont->fid to 0.
14864
14865 * fontset.c (FONTSET_OBJLIST): New macro.
14866 (fontset_find_font): Update font-object list of the fontset.
14867 (free_realized_fontset): New function.
14868 (free_face_fontset): Call free_realized_fontset.
14869 (Ffont_info): Call font_close_object only when enable_font_backend
14870 is set.
14871
14872 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
14873 [HAVE_NTGUI]: Include w32term.h.
14874 [MAC_OS]: Include macterm.ch.
14875 (font_otf_ValueRecord): Use make_number.
14876 (font_finish_cache): Fix handling of reference count.
14877 (font_clear_cache): Update num_fonts.
14878 (font_open_entity): Update smallest_char_width and
14879 smallest_font_height of the frame.
14880 (font_close_object): Update num_fonts.
14881 (Fclear_font_cache): Fix finding the target cache data.
14882
14883 2008-02-16 Glenn Morris <rgm@gnu.org>
14884
14885 * fontset.c (Finternal_char_font): Fix compilation warning.
14886
14887 2008-02-16 Eli Zaretskii <eliz@gnu.org>
14888
14889 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
14890 instead of char arrays. Enlarge the size of array passed to
14891 get_token_information.
14892
14893 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
14894 warnings.
14895
14896 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
14897
14898 * .gdbinit: Don't set `args', it breaks gdb --args.
14899
14900 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
14901
14902 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
14903 within a narrowed buffer.
14904
14905 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
14906
14907 * coding.c (decode_coding_object, encode_coding_object):
14908 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
14909
14910 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
14911
14912 * coding.c (coding_set_destination): Use BEG_BYTE rather than
14913 hardcoding 1.
14914 (detect_coding_system):
14915 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
14916 (string_char_to_byte, string_byte_to_char, insert_from_gap):
14917 * insdel.c (insert_from_gap):
14918 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
14919 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
14920 (string_to_multibyte):
14921 * character.c (chars_in_text, multibyte_chars_in_text):
14922 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
14923
14924 * character.h (FETCH_STRING_CHAR_ADVANCE)
14925 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
14926 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
14927 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
14928
14929 * casefiddle.c (casify_region): Only call after-change and composition
14930 functions on the part of the region that was changed.
14931
14932 * keyboard.c (read_avail_input):
14933 * frame.c (Fdelete_frame): Call Fdelete_terminal.
14934
14935 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14936
14937 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
14938 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
14939
14940 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
14941
14942 * w32menu.c (push_submenu_start, push_submenu_end)
14943 (push_left_right_boundary, push_menu_pane, push_menu_item):
14944 * keyboard.c (read_key_sequence): Don't pass args with side effects
14945 to AREF, it fails when compiling with -DENABLE_CHECKING.
14946
14947 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
14948
14949 * Makefile.in (${lispsource}international/charprop.el):
14950 Delete this target.
14951
14952 * search.c (boyer_moore): Fix incorrect synching of the trunk and
14953 emacs-unicode-2.
14954
14955 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14956
14957 * terminal.c (Fdelete_terminal): Clean up the `force' path.
14958
14959 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
14960
14961 * frame.c (Qnoelisp): New symbol.
14962 (syms_of_frame): Initialize it.
14963 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
14964 harmless Elisp code, from a strong `force' from x_connection_closed.
14965 * frame.h (Qnoelisp): Declare.
14966 * xterm.c (x_connection_closed): Pass `noelisp'.
14967
14968 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
14969 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
14970 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
14971 rather than `int' for the type of `type'.
14972
14973 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
14974
14975 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
14976
14977 * Makefile.in (GNUC): Remove support for gcc-1.x.
14978
14979 2008-02-10 Richard Stallman <rms@gnu.org>
14980
14981 * lisp.h (ASET): Use AREF, not ASLOT.
14982
14983 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
14984
14985 * lisp.h (ASET): Check bounds.
14986
14987 2008-02-10 Glenn Morris <rgm@gnu.org>
14988
14989 * buffer.c (mode-name): Doc fix.
14990
14991 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
14992
14993 * Makefile.in:
14994 * emacs.c:
14995 * gmalloc.c:
14996 * keyboard.c:
14997 * lisp.h:
14998 * m/ibm370aix.h:
14999 * process.c:
15000 * regex.c:
15001 * s/hpux.h:
15002 * sysdep.c:
15003 * sysselect.h:
15004 * systty.h:
15005 * unexec.c:
15006 * w32term.c:
15007 * xsmfns.c:
15008 * xterm.c: Remove code that deals with obsolete variables.
15009
15010 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
15011
15012 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
15013 nothing else needs it anymore.
15014
15015 2008-02-09 Eli Zaretskii <eliz@gnu.org>
15016
15017 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
15018 instead of unibyte_char_to_multibyte.
15019
15020 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
15021
15022 * s/gnu-linux.h: Remove commented out code.
15023
15024 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
15025
15026 * Makefile.in: Update what RMS says about using autoconf.
15027 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
15028 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
15029 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
15030 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
15031
15032 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
15033
15034 * keymap.c (Fkey_description): Move side effect outside of macro call.
15035
15036 * xfaces.c (Finternal_make_lisp_face):
15037 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
15038
15039 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
15040 (syms_of_fontset): Use ASET.
15041
15042 * fns.c (concat): Move side effect outside of macro call.
15043 (hash_clear): Use ASET.
15044
15045 2008-02-08 Richard Stallman <rms@gnu.org>
15046
15047 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
15048 If FORCE, and frame has a surrogate minibuffer for another frame,
15049 delete the other frame first.
15050
15051 2008-02-07 Timo Savola <timo.savola@iki.fi>
15052
15053 * xterm.c (x_detect_focus_change): Handle embed client message.
15054 (handle_one_xevent): Ditto.
15055 (handle_one_xevent): If embedded and we get a button press/release,
15056 request focus.
15057 (xembed_set_info, xembed_send_message): New functions.
15058 (x_make_frame_visible): Call xembed_set_info if embedded.
15059 (x_make_frame_invisible): Call xembed_set_info if embedded.
15060 (x_term_init): Initialize Xatom_XEMBED.
15061 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
15062 (x_iconify_frame): Ditto.
15063
15064 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
15065 (enum xembed_info, enum xembed_message, enum xembed_focus)
15066 (enum xembed_modifier, enum xembed_accelerator): New.
15067 (xembed_set_info, xembed_send_message): Declare.
15068 (FRAME_X_EMBEDDED_P): New.
15069
15070 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
15071 gtk_plug_new.
15072
15073 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
15074 window ID of a frame.
15075 (x_window): Reparent frame if embedded.
15076 (Fx_create_frame): Don't set border width if embedded.
15077
15078 * emacs.c (USAGE3): Add --parent-id.
15079 (standard_args): Ditto.
15080
15081 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
15082
15083 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
15084
15085 2008-02-07 Jim Meyering <meyering@redhat.com>
15086
15087 Use "do...while (0)", not "if (1)...else" in macro definitions.
15088 The latter provokes a warning from gcc about the empty else, when
15089 followed by ";". Also, without that trailing semicolon, it would
15090 silently swallow up any following statement.
15091 * syntax.h (SETUP_SYNTAX_TABLE)
15092 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
15093 * buffer.h (DECODE_POSITION): Likewise.
15094 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
15095 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
15096 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
15097 (FETCH_CHAR_ADVANCE): Likewise.
15098 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
15099
15100 2008-02-07 Jim Meyering <meyering@redhat.com>
15101
15102 * lread.c [lint]: Don't include <sys/inode.h>.
15103
15104 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
15105
15106 * xselect.c (x_handle_dnd_message):
15107 * xmenu.c (digest_single_submenu, xmenu_show):
15108 * xdisp.c (with_echo_area_buffer_unwind_data)
15109 (format_mode_line_unwind_data, unwind_format_mode_line)
15110 (display_menu_bar):
15111 * eval.c (Ffetch_bytecode):
15112 * doc.c (store_function_docstring):
15113 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
15114 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
15115 * buffer.c (add_overlay_mod_hooklist): Use ASET.
15116
15117 2008-02-07 Kenichi Handa <handa@m17n.org>
15118
15119 * ftxfont.c (ftxfont_open): Don't set
15120 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
15121
15122 * ftfont.c (ftfont_open): Fix previous change.
15123
15124 2008-02-06 Jason Rumney <jasonr@gnu.org>
15125
15126 * w32font.c (w32font_text_extents): Fill in lbearing metric.
15127 Use cached metrics for ASCII characters.
15128 (w32font_open_internal): Don't set font's owning_frame.
15129 Cache metrics for ASCII characters.
15130
15131 * w32font.h (struct w32font_info): Add ascii_metrics.
15132 Remove owning_frame.
15133
15134 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
15135
15136 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
15137 to negative value.
15138
15139 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
15140
15141 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
15142
15143 * charset.c (syms_of_charset): Set QCtest and Qeq.
15144
15145 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
15146
15147 * process.c (Fstart_process):
15148 * callproc.c (Fcall_process): Handle the case where
15149 Funhandled_file_name_directory returns nil.
15150
15151 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
15152 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
15153 * font.c (check_gstring): Use them and AREF to access the vector before
15154 we know it's really a gstring.
15155 (Ffont_shape_text): Fix typo.
15156 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
15157
15158 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
15159 Declare.
15160
15161 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
15162
15163 2008-02-05 Jason Rumney <jasonr@gnu.org>
15164
15165 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
15166 Set smallest_font_height and smallest_char_width in display info.
15167
15168 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
15169
15170 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
15171
15172 2008-02-05 Miles Bader <miles@gnu.org>
15173
15174 * xfaces.c (get_lface_attributes, merge_named_face)
15175 (lookup_named_face, lookup_derived_face, realize_named_face):
15176 Revert 2008-02-01 change by cyd@stupidchicken.com.
15177
15178 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
15179
15180 * fontset.c (Ffontset_info): Handle the case of inhibitting the
15181 fallback fonts.
15182 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
15183
15184 2008-02-04 Jason Rumney <jasonr@gnu.org>
15185
15186 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
15187 set full_name.
15188 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
15189
15190 2008-02-03 Jason Rumney <jasonr@gnu.org>
15191
15192 * makefile.w32-in (OBJ1): Include font.o here.
15193 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
15194
15195 2008-02-02 Jason Rumney <jasonr@gnu.org>
15196
15197 * makefile.w32-in (temacs): Bump EMHEAP to 21.
15198
15199 2008-02-01 Jason Rumney <jasonr@gnu.org>
15200
15201 * s/cygwin.h: Define VIRT_ADDR_VARIES.
15202
15203 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
15204
15205 2008-02-01 Andreas Schwab <schwab@suse.de>
15206
15207 * Makefile.in (shortlisp, lisp): Update for rename of
15208 ../lisp/language/myanmar.el.
15209
15210 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
15211
15212 * xfaces.c (get_lface_attributes): Delete function.
15213 (merge_named_face, lookup_named_face, lookup_derived_face)
15214 (realize_named_face): Call lface_from_face_name directly, and use
15215 the fact that merge_face_vectors does not alter its FROM argument.
15216
15217 2008-02-01 Jason Rumney <jasonr@gnu.org>
15218
15219 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
15220 input in the default locale. Handle non-Unicode multibyte input.
15221
15222 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15223
15224 * fontset.c (reorder_font_vector): Exclude nil elements from the
15225 font group. Don't try multiple fonts.
15226 (fontset_font): Adjust for the above change.
15227 (Finternal_char_font): Return nil if the found font doesn't
15228 contain the character ch.
15229
15230 * Makefile.in (lisp, shortlisp): Add cham.el.
15231
15232 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15233
15234 * font.h (FONTP): Make it return 1 also for a font-object.
15235
15236 * .gdbinit (xfontset): New function.
15237
15238 * font.c (font_find_for_lface): Check if the character C is
15239 supported or not only for the first font.
15240
15241 * fontset.c (reorder_font_vector): Fix typo.
15242 (fontset_find_font): Don't add a font-spec specifying a script.
15243 Use 0 (not Qt) for the indication of empty font-group. Change the
15244 format of RFONT-DEF. Return Qt if no font in the font-group
15245 support the character.
15246 (fontset_font): Adjust for the above change. If no font was
15247 found the character, remember that.
15248 (face_for_char): Adjust for the change of RFONT-DEF.
15249 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
15250 no font for the target.
15251 (Finternal_char_font): Adjust for the change of RFONT-DEF.
15252
15253 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15254
15255 * font.c (font_load_for_face): Handle the case that the font in
15256 face->lface is a string.
15257
15258 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15259
15260 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
15261
15262 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15263
15264 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
15265 Fix previous change. If the frame is not on a window system,
15266 signal an error.
15267
15268 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15269
15270 * coding.c (decode_coding_object, encode_coding_object): Adjust
15271 marker positions after conversion.
15272
15273 * lisp.h (struct Lisp_Marker): New member need_adjustment.
15274
15275 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15276
15277 * font.c (font_find_for_lface): Fix the handling of the return
15278 value of font_has_char.
15279 (Ffont_shape_text): Fix previous change.
15280
15281 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
15282 (fontset_ref_and_range): Delete it.
15283 (fontset_find_font): Call char_table_ref_and_range instead of
15284 FONTSET_REF_AND_RANGE.
15285 (make_fontset): Don't setup font groups of Latin here.
15286 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
15287 (new_fontset_from_font): Make the specified font the default for
15288 all Latin characters.
15289
15290 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15291
15292 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
15293 is on a window system before accessing the fontset of the frame.
15294
15295 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15296
15297 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
15298
15299 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
15300 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
15301
15302 * font.c (Ffont_shape_text): If the font driver doesn't have a
15303 shaper function, make zero-width glyphs to have at least one-pixel
15304 width. Fix setting of `to' field of glyphs.
15305
15306 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15307
15308 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
15309 glyphs.
15310
15311 * font.h (struct font_driver): Improve docstring of member `shape'.
15312
15313 2008-02-01 Kenichi Handa <handa@m17n.org>
15314
15315 * composite.c (syms_of_composite): Fix docstring of
15316 auto-composition-function.
15317
15318 * font.h (LGLYPH_SIZE): New macro.
15319
15320 * font.c (Ffont_fill_gstring): Stop filling when a character not
15321 supported by the font is found.
15322 (Ffont_shape_text): When a shape callback function returns nil,
15323 try at most two more times with larger gstring.
15324 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
15325
15326 * xdisp.c (handle_auto_composed_prop): Change the argument to
15327 auto-composition-function.
15328
15329 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
15330 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
15331 Lispy glyph and store it in the lgstring.
15332
15333 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
15334
15335 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
15336
15337 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15338
15339 * font.c (Ffont_shape_text): Avoid unnecessary composition.
15340
15341 * fontset.c (Vfont_encoding_charset_alist): New variable.
15342 (syms_of_fontset): DEFVAR it.
15343 (reorder_font_vector, fontset_find_font): Optimize for the case of
15344 no need of reordering.
15345 (face_for_char): Map the charset property by
15346 Vfont_encoding_charset_alist.
15347
15348 2008-02-01 Jason Rumney <jasonr@gnu.org>
15349
15350 * w32font.c (logfonts_match): Don't check adstyle here.
15351 (font_matches_spec): Check here against physical font instead.
15352 (add_font_entity_to_list): Avoid some substitutions.
15353
15354 * font.c (font_parse_fcname): Default weight and slant to normal.
15355 (font_score): Prefer normal fonts if weight or slant unspecified.
15356 (font_score) [WINDOWSNT]: Scale weight difference down to closer
15357 match freetype scores.
15358
15359 2008-02-01 Jason Rumney <jasonr@gnu.org>
15360
15361 * w32font.c (w32font_text_extents): Don't use the frame stored in the
15362 font, as it may have been deleted.
15363 (w32_enumfont_pattern_entity): Map generic family to adstyle using
15364 most common hyphenless variation.
15365 (logfonts_match): Check generic family.
15366 (font_matches_spec): Don't check generic family here.
15367 (fill_in_logfont): Set generic family based on adstyle.
15368
15369 * w32font.h (w32font_get_cache): Update declaration.
15370
15371 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15372
15373 * ftfont.c (ftfont_get_cache): Adjust the argument type.
15374
15375 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
15376 If none of the new drivers are available, call font_update_drivers
15377 with the old drivers.
15378
15379 * w32font.c (w32font_get_cache): Adjust the argument type.
15380
15381 * xfont.c (xfont_get_cache): Adjust the argument type.
15382
15383 * font.h (struct font_driver): Change argument type of get_cache.
15384
15385 * xftfont.c (xftfont_start_for_frame): Delete prototype.
15386
15387 * font.c (Ffont_get): Fix arguments to Fassoc.
15388 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
15389 (font_clear_cache): New function.
15390 (font_list_entities, font_matching_entity): Use font_get_cache.
15391 (font_update_drivers): Call font_clear_cache when finishing a driver.
15392
15393 * fontset.c (fontset_find_font): Fix previous change.
15394
15395 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15396
15397 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
15398 dpyinfo->font_table.
15399 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
15400 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
15401
15402 * font.c (font_at): Handle the case that the arg C is negative.
15403 Handle the unibyte case.
15404 (Ffont_at): Call font_at with the arg C -1.
15405
15406 * xdisp.c (handle_auto_composed_prop): Don't get a character at
15407 the position here, and call font_at with the arg C -1.
15408 Don't check the range of the existing composition at the point.
15409
15410 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15411
15412 * fontset.c (fontset_add): New args charset_id and family.
15413 Change caller.
15414 (load_font_get_repertory, fontset_find_font): Assume that
15415 font_spec is always a font-spec object.
15416 (Fset_fontset_font): Always store a font-spec object in a fontset.
15417
15418 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
15419 instead of get_property_and_range.
15420
15421 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15422
15423 * xftfont.c (struct xftfont_info): Delete the member ft_face.
15424 (xftfont_open): Don't keep locking face.
15425 (xftfont_close): Don't unlock face.
15426 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
15427
15428 * fontset.c (fontset_find_font): Don't prefer a font of
15429 supplementary charset.
15430
15431 2008-02-01 Kenichi Handa <handa@m17n.org>
15432
15433 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
15434 script, langsys_tag to langsys, new member script.
15435 (OTF_TAG_STR): Terminate by '\0'.
15436 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
15437 listing to the script specified in that property. Fix arg to
15438 OTF_check_features.
15439
15440 2008-02-01 Jason Rumney <jasonr@gnu.org>
15441
15442 * w32font.h: New file.
15443
15444 * w32font.c: Include it.
15445 (struct w32font_info): Add owning_frame field. Move to w32font.h.
15446 (w32font_open): Set owning_frame.
15447 (w32font_text_extents): Use owning_frame.
15448 (struct font_callback_data): Add opentype_only field.
15449 (add_font_entity_to_list): Use it to filter fonts.
15450 Don't check against full name.
15451 (w32font_list_internal): New function.
15452 (w32font_list): Use it.
15453 (w32font_match_internal): New function.
15454 (w32font_match): Use it.
15455 (w32font_open_internal): New function.
15456 (w32font_open): Use it.
15457 (w32font_get_cache, w32font_close, w32font_has_char)
15458 (w32font_encode_char, w32font_text_extents, w32font_draw):
15459 Make non-static.
15460
15461 * makefile.w32-in (w32font.o): Depend on w32font.h.
15462
15463 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15464
15465 * charset.c (Fdefine_charset_internal): Record a supplementary
15466 charset at the tail of Vcharset_order_list.
15467
15468 * font.c (Ffont_shape_text): Fix the return value.
15469
15470 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
15471
15472 * xdisp.c (handle_auto_composed_prop): Fix previous change.
15473
15474 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15475
15476 * ftfont.c (struct OpenTypeSpec): New struct.
15477 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
15478 (ftfont_get_open_type_spec): New function.
15479 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
15480
15481 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
15482
15483 2008-02-01 Jason Rumney <jasonr@gnu.org>
15484
15485 * w32font.c (add_font_entity_to_list): Compare only the beginning
15486 of full name.
15487
15488 2008-02-01 Kenichi Handa <handa@m17n.org>
15489
15490 * xdisp.c (handle_auto_composed_prop): Simplify the code.
15491 Never return HANDLED_RECOMPUTE_PROPS.
15492
15493 2008-02-01 Kenichi Handa <handa@m17n.org>
15494
15495 * font.c (font_gstring_produce): Delete it.
15496
15497 * composite.h (COMPOSITION_METHOD):
15498 Handle COMPOSITION_WITH_GLYPH_STRING.
15499
15500 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15501
15502 * xfont.c (Qx): Delete.
15503 (syms_of_xfont): Don't initialize Qx.
15504
15505 * composite.h (enum composition_method):
15506 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
15507
15508 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15509
15510 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
15511 (choose_face_font): Accept new form of font-spec.
15512
15513 * frame.h (font_driver_list): Declare it unconditionally.
15514 (struct frame): Define members font_driver_list and font_data_list
15515 unconditionally.
15516
15517 * fontset.c: Include "font.h" unconditionally.
15518 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
15519 (Fset_fontset_font): Accept a font-spec object.
15520
15521 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
15522 PIXEL_SIZE part a wild card.
15523
15524 * dispextern.h (struct glyph_string): Define members clip and
15525 num_clips unconditionally.
15526 (struct face): Define members font_info and extra unconditionally.
15527
15528 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
15529 ftfont_info only when HAVE_LIBOTF is defined.
15530
15531 2008-02-01 Andreas Schwab <schwab@suse.de>
15532
15533 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
15534 and end.
15535
15536 2008-02-01 Jason Rumney <jasonr@gnu.org>
15537
15538 * w32font.c (w32font_driver): Add new fields.
15539
15540 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15541
15542 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
15543 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
15544 (LIBES): Add @M17N_FLT_CFLAGS@.
15545
15546 * composite.c (compose_text): Don't treat the new style
15547 composition specially.
15548
15549 * emacs.c (main): Call syms_of_font unconditionally.
15550
15551 * font.h (FONT_ENTITY_NOT_LOADABLE)
15552 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
15553 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
15554 (struct font_driver): New member shape.
15555 (font_registry_charsets): Extern it.
15556 (font_find_for_lface, font_prepare_composition): Adjust prototype.
15557 (font_otf_capability, font_drive_otf): Delete their externs.
15558
15559 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
15560 (font_charset_alist, font_registry_charsets): Move from xfont.c
15561 and rename.
15562 (font_prop_validate_otf): New function.
15563 (font_property_table): Register it for QCotf.
15564 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
15565 (font_drive_otf): Delete.
15566 (font_prepare_composition): New arg F. Adjust for the change of
15567 lispy gstring.
15568 (font_find_for_lface): New arg C.
15569 (font_load_for_face): Adjust for the change of font_find_for_lface.
15570 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
15571 lispy gstring.
15572 (Ffont_shape_text): New function.
15573 (Fopen_font): If the font size is not given, use 12-pixel.
15574 (Ffont_at): New arg STRING.
15575 (syms_of_font): Initalize font_charset_alist.
15576 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
15577 conditionally.
15578
15579 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
15580 fonts of the same font-spec. Change the format of RFONT-DEF.
15581 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
15582 Adjust for the change of RFONT-DEF.
15583 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
15584
15585 * ftfont.h: New file.
15586
15587 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
15588 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
15589 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
15590 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
15591 font_otf_capability and font_drive_otf, set ftfont_shape.
15592 (ftfont_list): Adjust for the change of :otf property value.
15593 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
15594 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
15595 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
15596 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
15597 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
15598 (otf_gstring, gstring, m17n_flt_initialized): New variables.
15599
15600 * w32term.c (x_draw_composite_glyph_string_foreground):
15601 Adjust for the change of lispy gstring.
15602
15603 * xdisp.c (handle_composition_prop): Adjust for the change of
15604 lispy gstring. Call a function for auto-composition with the
15605 third arg it->window.
15606 (fill_composite_glyph_string): Adjust for the change of lispy string.
15607 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
15608
15609 * xfaces.c (set_font_frame_param): Adjust for the change of
15610 font_find_for_lface.
15611
15612 * xfont.c (x_font_charset_alist): Move to font.c and rename.
15613 (xfont_registry_charsets): Likewise. Change caller.
15614 (syms_of_xfont): Don't handle x_font_charset_alist.
15615
15616 * xftfont.c: Include "ftfont.h".
15617 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
15618 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
15619 (xftfont_close) [HAVE_LIBOTF]: Close otf.
15620 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
15621 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
15622 Set xftfont_driver.shape to xftfont_shape.
15623
15624 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
15625 the change of lispy gstring.
15626
15627 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15628
15629 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
15630
15631 2008-02-01 Jason Rumney <jasonr@gnu.org>
15632
15633 * w32font.c (w32font_draw): Fill background manually.
15634
15635 2008-02-01 Jason Rumney <jasonr@gnu.org>
15636
15637 * font.c (Qfontp): Remove unused symbol.
15638 (QCantialias): New symbol.
15639 (syms_of_font): Define it.
15640 (font_property_table): Set a validator for QCantialias.
15641
15642 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
15643 Define if not already.
15644 (QCfamily): Share with xfaces.c.
15645 (Qstandard, Qsubpixel, Qnatural): New symbols.
15646 (syms_of_w32font): Define them. Don't define QCfamily here.
15647 (w32_antialias_type, lispy_antialias_type): New functions.
15648 (w32_enumfont_pattern_entity): New arg requested_font.
15649 Set antialias parameter if non-default was requested.
15650 (fill_in_logfont): Fill in lfQuality if :antialias specified.
15651
15652 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15653
15654 * lread.c (read1): Undo the previous change.
15655
15656 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
15657
15658 * frame.c (Fdelete_frame): Call font_update_drivers only when
15659 USE_FONT_BACKEND is defined.
15660
15661 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15662
15663 * font.h (struct font_bitmap): New member bits_per_pixel.
15664 (struct font_driver): New members start_for_frame and end_for_frame.
15665 (struct font_data_list): New struct.
15666 (font_put_frame_data, font_get_frame_data): Extern them.
15667
15668 * frame.h (struct frame): New member font_data_list.
15669
15670 * font.c (font_update_drivers): Call driver->start_for_frame and
15671 driver->end_for_frame at proper timings.
15672 (font_put_frame_data, font_get_frame_data): New functions.
15673 (Ffont_spec): Add usage in the docstring.
15674
15675 * frame.c (make_frame): Initialize f->font_data_list to NULL.
15676 (Fdelete_frame): Call font_update_drivers.
15677
15678 * xftfont.c (struct xftface_info): Delete the member xft_draw.
15679 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
15680 (xftfont_get_xft_draw): New function.
15681 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
15682 (xftfont_end_for_frame): New function.
15683 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
15684
15685 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
15686 Change argument. Cache GCs in the per-frame data.
15687 (struct ftxfont_frame_data): New struct.
15688 (ftxfont_draw_bitmap): New arg gc_fore and flush.
15689 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
15690 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
15691 (ftxfont_end_for_frame): New function.
15692 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
15693
15694 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
15695
15696 2008-02-01 Kenichi Handa <handa@m17n.org>
15697
15698 * xselect.c (Vselection_coding_system)
15699 (Vnext_selection_coding_system): Delete them.
15700 (syms_of_xselect): Don't declare selection-coding-system and
15701 next-selection-coding-system. They are declared in select.el.
15702
15703 2008-02-01 Jason Rumney <jasonr@gnu.org>
15704
15705 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
15706
15707 * w32fns.c: Include imm.h.
15708 (get_composition_string_fn, get_ime_context_fn): New optional
15709 system functions.
15710 (globals_of_w32fns): Load them from imm32.dll.
15711 (ignore_ime_char): New flag.
15712 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
15713 WM_IME_ENDCOMPOSITION messages.
15714
15715 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
15716 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
15717
15718 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15719
15720 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
15721 (READCHAR_REPORT_MULTIBYTE): New macro.
15722 (readchar): New 2nd arg MULTIBYTE.
15723 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
15724 Make symbol's name multibyte according to the multibyteness of the
15725 source.
15726
15727 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15728
15729 * xfaces.c (face_for_overlay_string): Call lookup_face with
15730 correct arguments (fix of synching with the trunk).
15731
15732 2008-02-01 Kenichi Handa <handa@m17n.org>
15733
15734 * font.c (font_prop_validate_symbol, font_prop_validate_style)
15735 (font_prop_validate_non_neg, font_prop_validate_spacing):
15736 Delete argument prop_index.
15737 (font_property_table): Change arguments to validater. Change Callers.
15738 (font_lispy_object): Delete.
15739 (font_at): Use font_find_object instead fo font_lispy_object.
15740
15741 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15742
15743 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
15744 and file names.
15745
15746 2008-02-01 Jason Rumney <jasonr@gnu.org>
15747
15748 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
15749 (font_matches_spec): Remove debug output.
15750 (add_font_entity_to_list): Avoid using substituted fonts.
15751
15752 2008-02-01 Jason Rumney <jasonr@gnu.org>
15753
15754 * doc.c (Fsnarf_documentation):
15755 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
15756
15757 2008-02-01 Miles Bader <miles@gnu.org>
15758
15759 * dispextern.h (struct glyph_row): Only define "clip" field if
15760 HAVE_WINDOW_SYSTEM is defined.
15761
15762 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
15763
15764 Fix up multi-tty merge.
15765
15766 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
15767 and indentation.
15768
15769 * xfaces.c (free_realized_face, clear_face_gcs):
15770 Include font_done_for_face in the input_blocked section, just in case.
15771
15772 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
15773 (get_char_face_and_encoding): Undo last change and remove the *other*
15774 duplicate definition (i.e. keep the one that's better scoped and that
15775 includes code for the font-backend).
15776
15777 * terminal.c (create_terminal): Default keyboard_coding to
15778 `no-conversion' and terminal_coding to `undecided'.
15779
15780 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
15781
15782 * fontset.c (free_realized_fontsets): Check that the table entry does
15783 contain a fontset before trying to compare it to `base'.
15784
15785 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
15786 syms_of_charset, and syms_of_coding earlier because init_window_once
15787 now needs Vcoding_system_hash_table to be setup.
15788
15789 * coding.h (default_buffer_file_coding): Remove.
15790
15791 * coding.c (default_buffer_file_coding): Remove.
15792 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
15793 than ->symbol, and use the terminal-local coding system.
15794 (syms_of_coding): Don't setup the coding-systems that are not
15795 terminal-local.
15796 (Fdefine_coding_system_internal): Use XCAR/XCDR.
15797
15798 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
15799 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
15800
15801 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
15802 in chartab.c and were re-added here by mistake.
15803 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
15804
15805 * doc.c (Fsnarf_documentation):
15806 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
15807 src to etc.
15808
15809 * ChangeLog.10: Add mistakenly removed entry.
15810
15811 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
15812
15813 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
15814
15815 2008-02-01 Miles Bader <miles@gnu.org>
15816
15817 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
15818 Add extra args to FACE_FOR_CHAR.
15819
15820 2008-02-01 Kenichi Handa <handa@m17n.org>
15821
15822 * keymap.c (where_is_internal_1): If key is a cons, store the copy
15823 in sequence.
15824
15825 * chartab.c (map_sub_char_table, map_char_table): If the range
15826 contains just one character, call the function with that character
15827 even if the depth is not 3.
15828
15829 2008-02-01 Jason Rumney <jasonr@gnu.org>
15830
15831 * w32font.c (w32font_text_extents): Calculate metrics for the
15832 whole string.
15833
15834 2008-02-01 Jason Rumney <jasonr@gnu.org>
15835
15836 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
15837
15838 2008-02-01 Jason Rumney <jasonr@gnu.org>
15839
15840 * w32term.c (x_set_glyph_string_clipping): Use
15841 get_glyph_string_clip_rects.
15842 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
15843 Adjust for the change of struct glyph_string.
15844
15845 * w32font.c (w32font_draw): Do clipping here.
15846
15847 2008-02-01 Kenichi Handa <handa@m17n.org>
15848
15849 * xftfont.c (xftfont_draw): Adjust for the change of struct
15850 glyph_string.
15851
15852 * xterm.c (x_set_glyph_string_clipping): Use
15853 get_glyph_string_clip_rects.
15854 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
15855 Adjust for the change of struct glyph_string.
15856
15857 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
15858 the resulting clip(s}.
15859 (expose_overlaps): Add arg r. Change callers. Set it to
15860 row->clip temporarily.
15861 (expose_window): Redraw rows overlapping the exposed area.
15862
15863 * dispextern.h (struct glyph_row): New member clip.
15864 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
15865 clip_height, new member clip, and num_clips.
15866
15867 2008-02-01 Kenichi Handa <handa@m17n.org>
15868
15869 * data.c (Fchar_or_string_p): Fix docstring.
15870
15871 2008-02-01 Kenichi Handa <handa@m17n.org>
15872
15873 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
15874 create a temporary XftDraw object.
15875
15876 2008-02-01 Kenichi Handa <handa@m17n.org>
15877
15878 * font.c (Ffontp): Fix docstring.
15879
15880 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
15881 strong evidence of ISO-2022.
15882
15883 2008-02-01 Kenichi Handa <handa@m17n.org>
15884
15885 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
15886 SYNTAX_ENTRY_FOLLOW_PARENT.
15887
15888 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
15889
15890 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
15891 its type.
15892 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
15893 Update to the new type of weak_hash_tables and next_weak.
15894
15895 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
15896 a plain C pointer to Lisp_Hash_Table.
15897
15898 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
15899 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
15900 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
15901 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
15902 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
15903 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
15904 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
15905 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
15906 (GC_EQ): Remove since they've been identical to their non-GC_
15907 alter-egos ever since the markbit was eradicated.
15908
15909 * alloc.c:
15910 * buffer.c:
15911 * buffer.h:
15912 * data.c:
15913 * fileio.c:
15914 * filelock.c:
15915 * fns.c:
15916 * frame.h:
15917 * lisp.h:
15918 * macterm.c:
15919 * print.c:
15920 * process.c:
15921 * w32fns.c:
15922 * w32menu.c:
15923 * w32term.c:
15924 * xfns.c:
15925 * xmenu.c:
15926 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
15927
15928 2008-02-01 Kenichi Handa <handa@m17n.org>
15929
15930 * chartab.c (map_sub_char_table): Make it work for the top-level
15931 char-table. Fix handling of parent char-table.
15932 (map_char_table): Adjust for the above change.
15933
15934 2008-02-01 Jason Rumney <jasonr@gnu.org>
15935
15936 * w32font.c (Qgdi): Rename from Qw32.
15937
15938 2008-02-01 Jason Rumney <jasonr@gnu.org>
15939
15940 * w32bdf.c (get_quoted_string): Make function static.
15941
15942 2008-02-01 Kenichi Handa <handa@m17n.org>
15943
15944 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
15945 bigger ascent and descent than those of the font, use them as
15946 font's ascent and descent.
15947
15948 2008-02-01 Kenichi Handa <handa@m17n.org>
15949
15950 * Makefile.in (${lispsource}international/charprop.el): Move this
15951 target within "#ifdef HAVE_UNIDATA" and "#endif".
15952
15953 2008-02-01 Kenichi Handa <handa@m17n.org>
15954
15955 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
15956 (shortlisp): Add ../lisp/language/tai-viet.el.
15957
15958 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
15959
15960 * Makefile.in (${lispsource}international/charprop.el): Depend on
15961 temacs${EXEEXT}.
15962
15963 2008-02-01 Jason Rumney <jasonr@gnu.org>
15964
15965 * w32font.c (w32font_close): Delete the GDI font object.
15966
15967 * w32menu.c: Include character.h.
15968
15969 * w32proc.c: Likewise.
15970
15971 * w32select.c: Likewise.
15972
15973 * makefile.w32-in (w32proc.o): Depend on character.h.
15974
15975 2008-02-01 Jason Rumney <jasonr@gnu.org>
15976
15977 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
15978
15979 * w32menu.c (syms_of_w32menu): Likewise.
15980
15981 * w32proc.c (syms_of_ntproc): Likewise.
15982
15983 * w32select.c (syms_of_w32select): Likewise.
15984
15985 * w32term.c (syms_of_w32term): Likewise.
15986
15987 2008-02-01 Jason Rumney <jasonr@gnu.org>
15988
15989 * w32font.c (w32font_draw): Delete brush after using it.
15990
15991 2008-02-01 Jason Rumney <jasonr@gnu.org>
15992
15993 * w32font.c (w32font_open): Don't set font_idx.
15994 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
15995 to font settings.
15996 (w32font_draw): Fill background explicitly.
15997
15998 2008-02-01 Jason Rumney <jasonr@gnu.org>
15999
16000 * w32term.c (w32_initialize): Don't call w32font_initialize.
16001
16002 * w32font.c (w32font_info): Remove subranges.
16003 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
16004 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
16005 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
16006 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
16007 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
16008 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
16009 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
16010 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
16011 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
16012 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
16013 New symbols.
16014 (font_callback_data): New struct.
16015 (w32font_list, w32font_match): Use it.
16016 (w32font_open): Don't populate subranges.
16017 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
16018 (w32font_encode_char): Always return unicode code-point as-is.
16019 (w32font_text_extents): Supply a transformation matrix to
16020 GetGlyphOutline. Never look up by glyph index. Avoid looping
16021 twice. Use unicode version of GetTexExtentPoint32 instead of
16022 glyph index version.
16023 (set_fonts_frame): Remove.
16024 (w32_enumfont_pattern_entity): Add frame parameter, use it to
16025 set frame parameter. Use backward compatible fake foundries.
16026 Save generic family in extra slot under QCfamily. Make width slot
16027 constant. Save QCspacing value. Save list of scripts instead of
16028 binary subranges.
16029 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
16030 (add_font_entity_to_list): Use font_callback_data struct. Filter
16031 unwanted fonts.
16032 (add_one_font_entity_to_list): Use font_callback_data struct.
16033 (w32_registry): Default to iso10646_1.
16034 (fill_in_logfont): Use dpi from extra slot. Don't bother with
16035 string font registries. Don't fill in font name if it is a generic
16036 family name, fill family instead. Use spacing, family and script
16037 extra info to fill pitch, family and charset fields.
16038 (list_all_matching_fonts): Use font_callback_data struct.
16039 (unicode_range_for_char): Remove.
16040 (font_supported_scripts): New function.
16041 (w32font_initialize): Remove.
16042 (syms_of_w32font): Update which symbols are defined.
16043
16044 2008-02-01 Jason Rumney <jasonr@gnu.org>
16045
16046 * font.c (font_pixel_size): Reverse assq_no_quit args.
16047
16048 * w32term.h (FONT_WIDTH): Report max width, not average.
16049 (FONT_MAX_WIDTH): Remove.
16050 (FONT_AVG_WIDTH): New macro.
16051
16052 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
16053 redefinition of FONT_WIDTH.
16054
16055 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
16056 (w32_cache_char_metrics): Use FONT_WIDTH.
16057
16058 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
16059
16060 2008-02-01 Jason Rumney <jasonr@gnu.org>
16061
16062 * w32font.c (w32font_open): Make lfHeight negative.
16063
16064 * w32fns.c (x_default_font_parameter): Use new style font name.
16065 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
16066
16067 2008-02-01 Jason Rumney <jasonr@gnu.org>
16068
16069 * w32font.c (QCsubranges): New symbol.
16070 (w32font_open, w32font_has_char): Get subranges from subproperty
16071 of extra.
16072 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
16073 (syms_of_w32font): Define :subranges symbol.
16074
16075 * font.c (font_put_extra): Expose externally.
16076
16077 * font.h (font_put_extra): Move declaration from font.c.
16078
16079 * font.c (Ffont_get): Use font driver to determine otf capability.
16080 (adjust_anchor): Check if driver defines anchor_point before using.
16081
16082 * w32font.c (w32font_open): Handle size, height and pixel_size better.
16083 (w32font_draw): Use options.
16084 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
16085 Fix detection of truetype fonts.
16086 (registry_to_w32_charset): Handle charsets other than iso8859-1
16087 expressed as lisp symbols.
16088 (w32_registry): Express charset as lisp symbol.
16089 (fill_in_logfont): Reverse pixel and point height logic.
16090 Don't set width here. Set quality to default.
16091
16092 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
16093 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
16094
16095 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
16096 Remove redundant loop and allocation.
16097
16098 * makefile.w32-in (font.o, w32font.o): New objects.
16099 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
16100 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
16101
16102 * xdisp.c (fill_composite_glyph_string): Make the first arg to
16103 STORE_XCHARB a valid l-value.
16104
16105 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
16106 calculations for non-Truetype fonts.
16107 (x_draw_glyph_string): Sync with xterm.c.
16108 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
16109 Remove redundant code.
16110 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
16111
16112 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
16113 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
16114
16115 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
16116 (x_to_w32_charset, w32_to_x_charset): Expose externally.
16117
16118 * w32font.c: New file for w32 font backend.
16119
16120 2008-02-01 Kenichi Handa <handa@m17n.org>
16121
16122 * term.c: Don't include "buffer.h" twice.
16123
16124 2008-02-01 Kenichi Handa <handa@m17n.org>
16125
16126 * character.c (Funibyte_string): New function.
16127 (syms_of_character): Defsubr it.
16128
16129 2008-02-01 Jason Rumney <jasonr@gnu.org>
16130
16131 * w32term.c [USE_FONT_BACKEND]:
16132 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
16133 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
16134 (x_draw_glyph_string, x_draw_glyph_string_foreground)
16135 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
16136 (x_free_frame_resources): Sync with xterm.c.
16137
16138 2008-02-01 Andreas Schwab <schwab@suse.de>
16139
16140 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
16141 char-table size.
16142
16143 2008-02-01 Kenichi Handa <handa@m17n.org>
16144
16145 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
16146
16147 2008-02-01 Kenichi Handa <handa@m17n.org>
16148
16149 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
16150 font_otf_gpos, add font_drive_otf.
16151
16152 * fontset.c (fontset_find_font): Pay attention to font size
16153 specified for a font.
16154 (reorder_font_vector): Check contents of font_def.
16155
16156 * font.c (struct otf_list): Delete it.
16157 (otf_list): Make it a lisp variable.
16158 (otf_open): Use lispy otf_list.
16159 (generate_otf_features): Rename from parse_gsub_gpos_spec.
16160 (check_otf_features): New function.
16161 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
16162 New functions.
16163 (font_drive_otf): New function merging font_otf_gsub and
16164 font_otf_gpos.
16165 (font_open_for_lface): New arg spec. Change argument order.
16166 (font_load_for_face): Adjust for the change of font_open_for_lface.
16167 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
16168 Ffont_otf_gpos.
16169 (syms_of_font): Staticpro otf_list. Delete defsubr of
16170 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
16171
16172 * xfaces.c (set_font_frame_param): Adjust for the change of
16173 font_open_for_lface.
16174
16175 * font.h (font_open_for_lface): Adjust prototype.
16176 (struct font_driver): Delete members otf_gsub and otf_gpos, add
16177 member otf_drive.
16178 (font_otf_gsub, font_otf_gpos): Delete externs.
16179 (font_drive_otf): Extern it.
16180
16181 2008-02-01 Kenichi Handa <handa@m17n.org>
16182
16183 * font.c (font_at): If the window W is not on a window system,
16184 return Qnil.
16185
16186 * coding.c (produce_chars, encode_coding): Don't call
16187 insert_from_gap if no characters to produce.
16188
16189 2008-02-01 Kenichi Handa <handa@m17n.org>
16190
16191 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
16192 Fclear_face_cache.
16193
16194 * xfaces.c (face_for_font): Check also face->font==font->font.font.
16195
16196 2008-02-01 Miles Bader <miles@gnu.org>
16197
16198 * emacs.c (main): Change default value of `enable_font_backend' to 1.
16199 Parse "--disable-font-backend" option.
16200 (standard_args): Add "--disable-font-backend" option.
16201
16202 2008-02-01 Kenichi Handa <handa@m17n.org>
16203
16204 * fontset.c (fontset_find_font): New function.
16205 (fontset_font): Use fontset_find_font.
16206 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
16207 Register the specified font for all Latin characters.
16208 (new_fontset_from_font): Register the specified font for all Latin
16209 characters.
16210 (dump_fontset): For a realized fontset, include the base fontset
16211 name in the returned vector.
16212
16213 2008-02-01 Kenichi Handa <handa@m17n.org>
16214
16215 * character.h (CHAR_STRING): Cast C to unsigned on calling
16216 char_string.
16217
16218 * character.c (char_string): Type of arg C changed to unsigned.
16219 Signal an error if C is an invalid character code.
16220
16221 * editfns.c (general_insert_function, Fchar_to_string):
16222 Use CHARACTERP, not INTEGERP.
16223
16224 2008-02-01 Kenichi Handa <handa@m17n.org>
16225
16226 * character.h (MIN_MULTIBYTE_LEADING_CODE)
16227 (MAX_MULTIBYTE_LEADING_CODE): New macros.
16228
16229 * regex.c (analyse_first): Fix for multibyte characters in "case
16230 charset:" and "case categoryspec:".
16231
16232 2008-02-01 Andreas Schwab <schwab@suse.de>
16233
16234 * Makefile.in (LIBES): Move standard libraries to the end.
16235
16236 2008-02-01 Kenichi Handa <handa@m17n.org>
16237
16238 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
16239 nonzero, don't shrink the buffer nextb.
16240
16241 * buffer.h (struct buffer_text): New member inhibit_shrinking.
16242
16243 * coding.c (coding_alloc_by_making_gap): New arg offset.
16244 (alloc_destination): Call coding_alloc_by_making_gap with the arg
16245 offset.
16246 (decode_coding_iso_2022): Update coding->safe_charsets.
16247 (decode_coding_gap): Temporarily set
16248 current_buffer->text->inhibit_shrinking to 1.
16249
16250 2008-02-01 Kenichi Handa <handa@m17n.org>
16251
16252 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
16253 indexing into elements of s->cmp and s->char2b.
16254
16255 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
16256
16257 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
16258
16259 2008-02-01 Kenichi Handa <handa@m17n.org>
16260
16261 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
16262 target_multibyte instead of multibyte.
16263 (re_match_2_internal): Call bcmp_translate with target_multibyte.
16264 (bcmp_translate): Change the argument name from multibyte to
16265 target_multibyte.
16266
16267 2008-02-01 Kenichi Handa <handa@m17n.org>
16268
16269 These changes are to compile a regexp into a pattern that can be
16270 used both for multibyte and unibyte targets.
16271
16272 * Makefile.in (search.o): Depend on charset.h.
16273
16274 * character.c (multibyte_char_to_unibyte_safe): New function.
16275
16276 * search.c: Include "charset.h".
16277 (compile_pattern_1): Delete argument multibyte. Don't set
16278 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
16279 (compile_pattern): Don't compare cp->buf.target_multibyte.
16280 Compare cp->buf.charset_unibyte.
16281 (compile_pattern): Set cp->buf.target_multibyte.
16282
16283 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
16284
16285 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
16286
16287 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
16288 multibyte. Change callers.
16289 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
16290 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
16291 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
16292 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
16293 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
16294 (regex_compile): Make the compiled pattern usable both for
16295 multibyte and unibyte targets.
16296 (analyse_first): Make the fastmap usable both for multibyte and
16297 unibyte targets.
16298 (TRANSLATE_VIA_MULTIBYTE): Delete.
16299 (re_match_2_internal): Pay attention to the case that the
16300 multibyteness of bufp and target may be different.
16301
16302 2008-02-01 Kenichi Handa <handa@m17n.org>
16303
16304 * xdisp.c (x_produce_glyphs): When a font is not found, make the
16305 empty box occupy at least one column width.
16306
16307 2008-02-01 Miles Bader <miles@gnu.org>
16308
16309 * Makefile.in: Remove redundant HAVE_XFT clause.
16310
16311 2008-02-01 Kenichi Handa <handa@m17n.org>
16312
16313 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
16314
16315 2008-02-01 Kenichi Handa <handa@m17n.org>
16316
16317 * fontset.c (Finternal_char_font): Fix for the case of POSITION
16318 being nil.
16319
16320 2008-02-01 Kenichi Handa <handa@m17n.org>
16321
16322 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
16323
16324 2008-02-01 Kenichi Handa <handa@m17n.org>
16325
16326 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
16327
16328 2008-02-01 Kenichi Handa <handa@m17n.org>
16329
16330 * search.c (simple_search): Fix previous change.
16331
16332 2008-02-01 Kenichi Handa <handa@m17n.org>
16333
16334 * xftfont.c (ftfont_font_format): Extern declaration.
16335
16336 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
16337
16338 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
16339 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
16340
16341 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
16342 (ftfont_font_format): Fix previous change.
16343
16344 * font.h (Ffont_xlfd_name): EXFUN it.
16345
16346 * font.c (font_parse_xlfd): Fix the array size of `f'.
16347 (register_font_driver): Use EQ to compare driver->type.
16348
16349 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
16350 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
16351 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
16352
16353 2008-02-01 Kenichi Handa <handa@m17n.org>
16354
16355 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
16356 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
16357
16358 2008-02-01 Kenichi Handa <handa@m17n.org>
16359
16360 * xfont.c (xfont_open): Set font->format.
16361
16362 * xftfont.c (xftfont_open): Set font->format.
16363
16364 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
16365 (ftfont_list): Include FC_FONTFORMAT in FcObject.
16366 (ftfont_open): Set font->format.
16367 (ftfont_font_format): New function.
16368
16369 * font.h (struct font): New member format.
16370
16371 * font.c (Qopentype): New variable.
16372 (syms_of_font): Defsym it.
16373 (Fquery_font): Change the format of the last element of the return
16374 value.
16375
16376 2008-02-01 Kenichi Handa <handa@m17n.org>
16377
16378 * xfns.c (xic_create_xfontset): Try the default fontset name as a
16379 last resort.
16380
16381 2008-02-01 Kenichi Handa <handa@m17n.org>
16382
16383 * coding.c (detect_coding_charset): Fix detection of multi-byte
16384 charset.
16385
16386 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
16387
16388 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
16389
16390 2008-02-01 Kenichi Handa <handa@m17n.org>
16391
16392 * xdisp.c (get_next_display_element): Set it->face_id for the
16393 first component of a composition.
16394 (x_produce_glyphs): Check if the font is changed or not for composition.
16395
16396 2008-02-01 Kenichi Handa <handa@m17n.org>
16397
16398 * fontset.c (Qlatin): New variable.
16399 (syms_of_fontset): Define it as a lisp symbol.
16400 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
16401
16402 2008-02-01 Kenichi Handa <handa@m17n.org>
16403
16404 * font.c (font_unparse_fcname): Pay attention to the case that
16405 some of font property is a null string.
16406
16407 2008-02-01 Kenichi Handa <handa@m17n.org>
16408
16409 * term.c: Include "composite.h".
16410 (encode_terminal_code): Output all components of composition.
16411 Check the size of encode_terminal_src.
16412 (produce_glyphs): For composition, call produce_composite_glyph.
16413 (append_composite_glyph, produce_composite_glyph): New functions.
16414
16415 * xdisp.c (x_produce_glyphs): In handling composition, if a font
16416 is not found, get font_info from the current ascii face.
16417
16418 2008-02-01 Kenichi Handa <handa@m17n.org>
16419
16420 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
16421 buffer-file-name to Qnil before calling insert_from_buffer.
16422
16423 * font.c (font_unparse_fcname): Pay attention to the case that
16424 foundry is a null string.
16425
16426 2008-02-01 Kenichi Handa <handa@m17n.org>
16427
16428 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
16429
16430 * font.c (Qunicode_sip): New variable.
16431 (syms_of_font): Declare it as a Lisp symbol.
16432
16433 * font.h (Qunicode_sip): Extern it.
16434
16435 2008-02-01 Kenichi Handa <handa@m17n.org>
16436
16437 * composite.c (get_composition_id): Pay attention to TAB component.
16438
16439 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
16440 TAB. Adjust for the change of s->char2b which always points to
16441 the first element of allocated memory.
16442
16443 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
16444
16445 * xdisp.c (handle_composition_prop): Set it->c to the first
16446 non-TAB component.
16447 (fill_composite_glyph_string): Change argument.
16448 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
16449 (x_produce_glyphs): Fix handling of left/right padding.
16450
16451 2008-02-01 Kenichi Handa <handa@m17n.org>
16452
16453 * coding.c (detect_coding_system): Fix for handling off
16454 inhibit_iso_escape_detection. Fix for the case that no coding
16455 system is defined for a specific coding category.
16456
16457 2008-02-01 Kenichi Handa <handa@m17n.org>
16458
16459 * font.c (font_matching_entity): Delete unused local var.
16460
16461 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
16462 opening a font.
16463
16464 * fileio.c (Finsert_file_contents): On recovering a file, assume
16465 Unix-like eol.
16466 (choose_write_coding_system): On auto-saving a file, force
16467 Unix-like eol.
16468
16469 * coding.c (setup_coding_system): Fix setting of
16470 coding->common_flags based on eol_type.
16471 (coding_inherit_eol_type): If PARENT is not nil, be sure to
16472 inherit from it.
16473
16474 2008-02-01 Kenichi Handa <handa@m17n.org>
16475
16476 * alloc.c (NSTATICS): Increas to 0x600.
16477
16478 2008-02-01 Kenichi Handa <handa@m17n.org>
16479
16480 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
16481 (ftfont_list): Don't check :name property.
16482 (ftfont_match): New function.
16483 (ftfont_pattern_entity): If the pattern doesn't contain
16484 FC_SPACING, don't assume FC_MONO.
16485
16486 * font.h (struct font_driver): New member `match'.
16487 (font_update_drivers): Adjust prototype.
16488
16489 * font.c (font_parse_fcname, font_parse_name): Don't change :name
16490 property of FONT.
16491 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
16492 them unconditionally.
16493 (font_matching_entity): New function.
16494 (font_open_by_name): Try font_matching_entity if exact match is
16495 not found.
16496 (font_update_drivers): Delete the arg FONT. Return a list of
16497 actually used backends. Don't free faces, font caches here.
16498 Don't store data in frame parameters. Don't call x_set_font.
16499 (Ffont_spec): Store :name property as is.
16500 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
16501 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
16502 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
16503 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
16504 Call font->driver->otf_gsub instead of font_otf_gsub.
16505
16506 * frame.c (x_set_font_backend): Do more works that were done in
16507 font_update_drivers before.
16508
16509 * xfont.c (xfont_match): New function.
16510 (xfont_driver): Set xfont_driver.match to xfont_match.
16511 (xfont_draw): Set font in GC if necessary.
16512
16513 * ftxfont.c (ftxfont_match): New function.
16514 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
16515
16516 * xftfont.c (xftfont_match): New function.
16517 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
16518
16519 2008-02-01 Kenichi Handa <handa@m17n.org>
16520
16521 * font.h (struct font): New member scalable.
16522 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
16523 (font_otf_gsub): Adjust prototype.
16524
16525 * font.c (font_otf_capability): Fix handling of the default langsys.
16526 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
16527 Check the contents of SPEC.
16528 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
16529 (check_gstring): New function.
16530 (REPLACEMENT_CHARACTER): New macro.
16531 (font_otf_gsub): New arg alternate_subst. Be sure to set all
16532 glyph codes of GSTRING.
16533 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
16534 (font_prepare_composition): Set cmp->glyph_len.
16535 (font_open_entity): Set font->scalable.
16536 (Ffont_get): Handle :otf property.
16537 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
16538 functions.
16539 (Fquery_font): Use font->font.full_name.
16540 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
16541 Sfont_otf_alternates.
16542
16543 * ftfont.c (ftfont_open): Set font->font.full_name and
16544 font->font.name properly. Fix calculation of font->font.height
16545 and font->min_width.
16546
16547 * ftxfont.c (ftxfont_create_gcs): New function.
16548 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
16549 (ftxfont_draw_backgrond): Fix filling region.
16550 (ftxfont_default_fid): New function.
16551 (ftxfont_open): Set xfont->fid to the return value of
16552 ftxfont_default_fid.
16553 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
16554 (ftxfont_done_face): Free only GCs that are created by
16555 ftxfont_create_gcs.
16556 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
16557
16558 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
16559 Clip to src->width, etc (not src->clip_XXX).
16560
16561 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
16562 FontBackend frame parameter.
16563
16564 2008-02-01 Kenichi Handa <handa@m17n.org>
16565
16566 * font.h (struct font_driver_list): New member `on'.
16567 (Fclear_font_cache): EXFUN it.
16568 (font_update_drivers): Extern it.
16569
16570 * font.c (font_unparse_fcname): Fix typo (swidth->width).
16571 (font_list_entities): Check driver_list->on.
16572 (register_font_driver): Initalize `on' member to 0.
16573 (font_update_drivers): New function.
16574 (Fclear_font_cache): Check driver_list->on.
16575
16576 * frame.h (Qfont_backend): Extern it.
16577 (x_set_font_backend): Extern it.
16578
16579 * frame.c (Qfont_backend): New variable.
16580 (frame_parms): New element for font-backend.
16581 (x_set_font_backend): New function.
16582
16583 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
16584 FontBackend frame parameter.
16585 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
16586 x_set_font_backend.
16587
16588 * xfont.c (xfont_list): Don't try listing by :name property if the
16589 name is not for XLFD.
16590
16591 2008-02-01 Kenichi Handa <handa@m17n.org>
16592
16593 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
16594 (LGLYPH_SET_TO): New macros.
16595 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
16596 element of G is vector or not.
16597 (font_at): Extern it.
16598
16599 * font.c: Include window.h.
16600 (font_lispy_object): New function.
16601 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
16602 end of valid glyph.
16603 (font_close_object): Fix getting (struct font *).
16604 (font_at): New function.
16605 (Ffont_get): If FONT is a font-object, get entity from it.
16606 (Ffont_make_gstring): Initialize elements of glyphs with nil.
16607 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
16608 range check.
16609 (Ffont_at): New function.
16610 (syms_of_font): Defsubr Sfont_at.
16611
16612 * xdisp.c (it_props): Move the entry for Qauto_composed to just
16613 before the entry for Qcomposition.
16614 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
16615 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
16616 the font in gstring.
16617 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
16618 LGLYPH_FORM (g) to detect the end of valid glyph.
16619 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
16620 we are composing with gstring.
16621
16622 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
16623 Check if adjustment is vector or not.
16624
16625 * Makefile.in (font.o): Make it depends on window.h.
16626
16627 2008-02-01 Kenichi Handa <handa@m17n.org>
16628
16629 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
16630 adjustment is vector or not.
16631
16632 2008-02-01 Miles Bader <miles@gnu.org>
16633
16634 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
16635
16636 2008-02-01 Kenichi Handa <handa@m17n.org>
16637
16638 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
16639 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
16640 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
16641
16642 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
16643 (DEVICE_DELTA): Fix typo.
16644 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
16645 LGLYPH format.
16646
16647 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
16648 the change of LGLYPH format.
16649
16650 2008-02-01 Kenichi Handa <handa@m17n.org>
16651
16652 * ftfont.c (ftfont_list): Fix typo.
16653 (ftfont_build_basic_charsets): Don't include letters with diacritics.
16654
16655 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
16656
16657 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
16658
16659 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
16660 xftface_info is non-NULL.
16661
16662 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
16663
16664 * ftfont.c (ftfont_list): Move misplaced #endif.
16665
16666 2008-02-01 Kenichi Handa <handa@m17n.org>
16667
16668 * ftfont.c (ftfont_list): Pay attention to the case that
16669 FC_CAPABILITY is not defined.
16670
16671 2008-02-01 Kenichi Handa <handa@m17n.org>
16672
16673 * xftfont.c (xftfont_open): Set charset related members to -1.
16674
16675 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
16676 QCname.
16677 (ftfont_open): Set charset related members to -1.
16678
16679 * fontset.c (Votf_script_alist): New variable.
16680 (syms_of_fontset): Initialize it.
16681 (fontset_font): Delete unused variable.
16682
16683 * fontset.h (Votf_script_alist): Extern it.
16684
16685 * font.c (font_find_for_lface): Optimize code.
16686
16687 * font.h (font_close_object, font_merge_old_spec): Extern them.
16688
16689 2008-02-01 Kenichi Handa <handa@m17n.org>
16690
16691 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
16692 (syms_of_font): Initialize them.
16693 (font_pixel_size): Allow float value in dpi.
16694 (font_prop_validate_type): Delete.
16695 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
16696 Change caller.
16697 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
16698 (font_prop_validate_extra): Delete.
16699 (font_prop_validate_spacing): New function.
16700 (font_property_table): Add elements for all known properties.
16701 (get_font_prop_index): Rename from check_font_prop_name. New
16702 argument FROM. Change caller.
16703 (font_prop_validate): Validate all known properties.
16704 (font_put_extra): Delete argument force. Change caller.
16705 (font_expand_wildcards): Make it static. Fix the way of shrinking
16706 the possible range.
16707 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
16708 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
16709 Change caller.
16710 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
16711 (font_parse_fcname): Delete argument merge. Fix parsing of point
16712 size. Don't validate properties values here. Change caller.
16713 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
16714 (font_open_by_name): Delete unused variable.
16715 (Ffont_spec): Likewise. Validate property values.
16716 (Ffont_match_p): New function.
16717
16718 * font.h (QCscalable): Extern it.
16719 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
16720
16721 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
16722
16723 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
16724 (xfont_list_pattern): New function.
16725 (xfont_list): Use xfont_list_pattern.
16726
16727 2008-02-01 Kenichi Handa <handa@m17n.org>
16728
16729 * font.h (Flist_fonts): EXFUN it.
16730
16731 2008-02-01 Jason Rumney <jasonr@gnu.org>
16732
16733 * w32term.c (w32_initialize): Add back smoothing_type and
16734 smoothing_enabled definitions.
16735
16736 2008-02-01 Kenichi Handa <handa@m17n.org>
16737
16738 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
16739 s->face->font on determining underline position.
16740
16741 2008-02-01 Kenichi Handa <handa@m17n.org>
16742
16743 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
16744 (font_has_char): Accept font-object too.
16745 (font_find_for_lface): Try at first with a size specified in face.
16746
16747 2008-02-01 Kenichi Handa <handa@m17n.org>
16748
16749 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
16750 font_open_by_name.
16751
16752 2008-02-01 Kenichi Handa <handa@m17n.org>
16753
16754 * font.h (QCspacing, QCdpi): Extern them.
16755 (enum font_spacing): New enum.
16756 (FONT_PIXEL_SIZE_QUANTUM): New macro.
16757
16758 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
16759 (QCspacing, QCdpi): New variables.
16760 (syms_of_font): Initialize them.
16761 (font_pixel_size): New function.
16762 (font_put_extra): New function.
16763 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
16764 in FONT_EXTRA.
16765 (font_parse_fcname): Handle enumerated values (e.g. bold).
16766 Fix handling font size. Add QCname property that contains only
16767 unknown properties.
16768 (font_score): Change argument. Change caller. Pay attention to
16769 FONT_PIXEL_SIZE_QUANTUM.
16770 (font_sort_entites, font_list_entities, font_find_for_lface)
16771 (font_open_for_lface, font_open_by_name): Fix handling of font size.
16772 (Ffont_spec): Add QCname property that contains only unknown properties.
16773
16774 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
16775 include weight in listing pattern, instead check weight of each
16776 listed font. Don't include scalable in pattern. Pay attention to
16777 FONT_PIXEL_SIZE_QUANTUM.
16778
16779 2008-02-01 Kenichi Handa <handa@m17n.org>
16780
16781 * font.c (font_parse_fcname): Fix parsing of point-size.
16782 (font_unparse_fcname): Produce symbolic names for style properties.
16783 (font_list_entities): Handle float size correctly.
16784 (font_open_by_name): Prefer `normal' property values if the name
16785 doesn't specify them.
16786
16787 * fontset.c (Finternal_char_font): Use font_get_name, not
16788 Ffont_xlfd_name.
16789
16790 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
16791 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
16792 pattern. Don't force scalable.
16793
16794 * xftfont.c (xftfont_open): For generating a name, start from
16795 96-byte buffer.
16796
16797 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
16798
16799 * frame.h (x_new_fontset2): Fix prototype.
16800
16801 2008-02-01 Kenichi Handa <handa@m17n.org>
16802
16803 * font.h (struct font_driver): Delete member parse_name.
16804 (font_match_p, font_get_spec, font_parse_fcname)
16805 (font_unparse_fcname): Extern them.
16806 (font_get_name): Adjust prototype.
16807
16808 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
16809 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
16810 (font_expand_wildcards): Fix handling ENCODING field. Avoid
16811 unnecessary checks for weight, slant, and swidth.
16812 (font_parse_fcname): New function.
16813 (font_unparse_fcname): New function.
16814 (font_parse_name): New function.
16815 (font_match_p): New function.
16816 (font_get_name): Change return value to Lisp string.
16817 (font_get_spec): New function.
16818 (Qunspecified, Qignore_defface): Don't extern them.
16819 (font_find_for_lface): Assume that LFACE is fully specified.
16820 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
16821 object, use it for FACE.
16822 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
16823 driver->parse_name.
16824 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
16825
16826 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
16827 prototype.
16828
16829 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
16830 argument F. Don't call Fnew_fontset. Instead, directly call
16831 make_fontset.
16832
16833 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
16834
16835 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
16836 of x_new_fontset2.
16837
16838 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
16839 (Qsans__serif): New variables.
16840 (ftfont_generic_family_list): New variable.
16841 (syms_of_ftfont): Initialize the above variables.
16842 (ftfont_pattern_entity): Delete argument NAME.
16843 (ftfont_list_generic_family): New function.
16844 (ftfont_parse_name): Delete this function.
16845 (ftfont_list): Try generic family only when FcFontList found no font.
16846 (ftfont_list_family): Fix args to FcObjectSetBuild.
16847
16848 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
16849 object in attrs[LFACE_FONT_INDEX].
16850 (set_lface_from_font_name): Cancel all changes for font-backend.
16851 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
16852 function.
16853 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
16854 font object in QCfont attribute.
16855 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
16856 (realize_default_face) [USE_FONT_BACKEND]: Call
16857 set_lface_from_font_and_fontset.
16858
16859 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
16860 "fixed", and signal error here if no suitable font was found.
16861
16862 * xfont.c (xfont_parse_name): Delete this function.
16863
16864 * xftfont.c (xftfont_open): Change coding style of error
16865 handling. Generate fontconfig's fontname pattern.
16866
16867 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
16868 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
16869
16870 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
16871 Both args FONTSET and FONT_OBJECT must be existing ones.
16872
16873 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16874
16875 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
16876
16877 2008-02-01 Kenichi Handa <handa@m17n.org>
16878
16879 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
16880
16881 * font.h (struct font): Fix typo.
16882
16883 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
16884 XLFD_XXX_INDEX.
16885 (enum xlfd_field_mask): New enum.
16886 (intern_font_field): Changed argument. Change caller. If digits
16887 are followed by non-digits, return a symbol.
16888 (font_expand_wildcards): New function.
16889 (font_parse_xlfd): Fix wildcard handling.
16890 (Ffont_spec): If :name is specified, reflect the info in the other
16891 properties.
16892
16893 * ftfont.c (ftfont_pattern_entity): Fix typo.
16894 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
16895 locale.
16896
16897 2008-02-01 Kenichi Handa <handa@m17n.org>
16898
16899 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
16900
16901 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
16902 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
16903 registry doesn't specify encoding part.
16904 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
16905 (font_open_by_name): At first try parsing the name.
16906 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
16907 as Lisp symbols.
16908
16909 * fontset.c (reorder_font_vector): Pay attention to the case that
16910 the 3rd element of font_def is nil.
16911 (fontset_font): For the default fontset, append one more fontset
16912 elements for a script-based font specification. Don't add script
16913 attribute on finding a font.
16914 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
16915 font name.
16916 (fontset_ascii_font): If a font can't be opened, return nil.
16917
16918 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
16919 (ftfont_pattern_entity): New function.
16920 (ftfont_get_cache): Assume that freetype_font_cache is already
16921 initialized.
16922 (ftfont_list): Handle the case that a file is specified in font
16923 name. Use ftfont_pattern_entity to generate entities.
16924 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
16925 (syms_of_ftfont): Initialize freetype_font_cache.
16926
16927 * xftfont.c (xftfont_open): Make the font name fontconfig's
16928 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
16929 (xftfont_close): Free font->font.name if not NULL.
16930
16931 * xfont.c (xfont_list): If script is specified for a font, return
16932 null_vector.
16933 (xfont_list_family): Declare argument type.
16934
16935 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
16936 name, set LFACE_FONT (lface) to nil.
16937
16938 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
16939 return Qnil.
16940
16941 2008-02-01 Kenichi Handa <handa@m17n.org>
16942
16943 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
16944 (standard_args): Add "-enable-font-backend".
16945
16946 2008-02-01 Kenichi Handa <handa@m17n.org>
16947
16948 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
16949 (struct xftdraw_list, xftdraw_list): Delete them.
16950 (register_xftdraw, check_xftdraw): Delete them.
16951 (xftfont_prepare_face): Don't call register_xftdraw.
16952 (xftfont_done_face): Don't call check_xftdraw.
16953 (xftfont_draw): Get background color only when with_background is
16954 nonzero.
16955
16956 * xfont.c (xfont_encode_char): Fix calculation of char2b.
16957
16958 2008-02-01 Kenichi Handa <handa@m17n.org>
16959
16960 These changes are for the new font handling codes.
16961
16962 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
16963 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
16964 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
16965 (FONTSRC, FONTOBJ): New variables.
16966 (obj): Add $(FONTOBJ).
16967 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
16968 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
16969 @LIBOTF_LIBS@.
16970 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
16971 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
16972
16973 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
16974
16975 * character.h (Vscript_representative_chars): Extern it.
16976
16977 * character.c (Vscript_representative_chars): New variable.
16978 (syms_of_character): Declare it as a Lisp variable.
16979
16980 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
16981 enable_font_backend is nonzero, accept the composition method
16982 COMPOSITION_WITH_GLYPH_STRING.
16983
16984 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
16985 enumeration COMPOSITION_WITH_GLYPH_STRING.
16986
16987 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
16988 members clip_x, clip_y, clip_width, and clip_height.
16989 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
16990
16991 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
16992 --enable-font-backend. Call syms_of_font.
16993
16994 * fns.c (assoc_no_quit): New function.
16995
16996 * fontset.h (FONT_INFO_FROM_FACE): New macro.
16997 (face_for_font, new_fontset_from_font)
16998 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
16999
17000 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
17001 (fontset_font, fontset_ascii, face_for_char)
17002 (make_fontset_for_ascii_face, Ffont_info)
17003 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
17004 is nonzero, use font-backend mechanism.
17005 (find_font_encoding): Make it non-static.
17006 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
17007 New functions.
17008
17009 * frame.h (struct frame): New members resx and resy.
17010 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
17011 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
17012
17013 * frame.c [USE_FONT_BACKEND]: Include "font.h".
17014 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
17015
17016 * lisp.h (assoc_no_quit): Extern it.
17017
17018 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
17019 Through out the file, use FONT_INFO_FROM_FACE instead of
17020 FONT_INFO_FROM_ID, use get_per_char_metric instead of
17021 rif->per_char_metric.
17022 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
17023 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
17024 (get_glyph_face_and_encoding, fill_composite_glyph_string)
17025 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
17026 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
17027 nonzero, use font-backend mechanism.
17028 (get_per_char_metric): New function.
17029
17030 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
17031 (set_lface_from_font_name)
17032 (set_font_frame_param, free_realized_face)
17033 (prepare_face_for_display, clear_face_gcs)
17034 (Finternal_set_font_selection_order, realize_x_face)
17035 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
17036 font-backend mechanism.
17037 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
17038 (load_face_font) [USE_FONT_BACKEND]: Abort.
17039 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
17040 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
17041
17042 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
17043 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
17044 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
17045 nonzero, register all available font drivers. Call
17046 x_default_font_parameter for deciding a font.
17047 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
17048
17049 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
17050 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
17051 (x_set_glyph_string_clipping_exactly)
17052 (x_compute_glyph_string_overhangs)
17053 (x_draw_glyph_string_foreground)
17054 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
17055 (x_free_frame_resources) [USE_FONT_BACKEND]: If
17056 enable_font_backend is nonzero, use font-backend mechanism.
17057 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
17058
17059 2008-02-01 Kenichi Handa <handa@m17n.org>
17060
17061 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
17062 system_eol_type.
17063 (syms_of_coding): Initialize system_eol_type.
17064
17065 * process.c (Fset_process_coding_system): Inherit system's eol
17066 format if necessary.
17067
17068 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17069
17070 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
17071
17072 2008-02-01 Kenichi Handa <handa@m17n.org>
17073
17074 * coding.c (decode_eol): Pay attention to buffer relocation in
17075 del_range_2.
17076 (decode_coding): Call decode_eol before restoring undo_list.
17077
17078 2008-02-01 Kenichi Handa <handa@m17n.org>
17079
17080 * charset.c (Fdefine_charset_internal): Fix setting of
17081 emacs_mule_bytes.
17082
17083 2008-02-01 Kenichi Handa <handa@m17n.org>
17084
17085 * keyboard.c (read_char): Check if C is a character or not before
17086 looking up Vkeyboard_translate_table.
17087
17088 2008-02-01 Kenichi Handa <handa@m17n.org>
17089
17090 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
17091 condition to terminate the loop.
17092
17093 2008-02-01 Kenichi Handa <handa@m17n.org>
17094
17095 * coding.c (produce_composition): Compare charbuf[i] instead of
17096 args[i] against 0.
17097 (Fterminal_coding_system): Use EQ to compare Lisp objects.
17098
17099 2008-02-01 Kenichi Handa <handa@m17n.org>
17100
17101 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
17102 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
17103 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
17104 detect_coding.
17105 (emacs_mule_char): Handle old style (Emacs 20) component character
17106 of a composition.
17107 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
17108 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
17109 composition rule.
17110 (decode_coding_emacs_mule): Handle invalid bytes correctly.
17111
17112 2008-02-01 Kenichi Handa <handa@m17n.org>
17113
17114 * coding.c (encode_coding_ccl): Allocate destination dynamically
17115 when necessary.
17116
17117 2008-02-01 Kenichi Handa <handa@m17n.org>
17118
17119 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
17120 the loop. When quitted, show a proper error message.
17121
17122 2008-02-01 Kenichi Handa <handa@m17n.org>
17123
17124 * xterm.c (x_set_glyph_string_clipping_exactly): Set
17125 src->clip_head and src->clip_tail temporarily instead of src->hl.
17126
17127 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
17128 character sequence.
17129 (Fccl_execute_on_string): Use ASET, not XSET.
17130
17131 2008-02-01 Kenichi Handa <handa@m17n.org>
17132
17133 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
17134
17135 2008-02-01 Kenichi Handa <handa@m17n.org>
17136
17137 * coding.c (decode_coding): Fix the condition of terminating the
17138 decoding loop.
17139
17140 2008-02-01 Kenichi Handa <handa@m17n.org>
17141
17142 * data.c (Faset): On setting a character bigger than 255 in a
17143 unibyte string, signal an error instead of make the string multibyte.
17144
17145 2008-02-01 Kenichi Handa <handa@m17n.org>
17146
17147 * charset.c (map_charset_chars): Fix for ascii-compatible charset
17148 made by a mapping table.
17149
17150 2008-02-01 Kenichi Handa <handa@m17n.org>
17151
17152 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
17153 not.
17154 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
17155 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
17156
17157 * xterm.c (x_draw_composite_glyph_string_foreground): Check
17158 s->face is NULL or not.
17159
17160 2008-02-01 Kenichi Handa <handa@m17n.org>
17161
17162 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
17163 (x_draw_glyph_string): Fix drawing of right_overhang and
17164 left_overhang around/on cursor.
17165
17166 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
17167
17168 2008-02-01 Kenichi Handa <handa@m17n.org>
17169
17170 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
17171
17172 2008-02-01 Kenichi Handa <handa@m17n.org>
17173
17174 * coding.c (Fdefine_coding_system_internal)
17175 (Fdefine_coding_system_alias): Avoid a duplicated element in
17176 Vcoding_system_alist.
17177
17178 2008-02-01 Kenichi Handa <handa@m17n.org>
17179
17180 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
17181
17182 * coding.c (Qcoding_system_define_form): New variable.
17183 (syms_of_coding): Intern and staticpro it.
17184 (Fcoding_system_p): Check Qcoding_system_define_form.
17185 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
17186
17187 * coding.h (CODING_SYSTEM_P): If ID is not available, call
17188 Fcoding_system_p.
17189 (CHECK_CODING_SYSTEM): If ID is not available, call
17190 Fcheck_coding_system.
17191 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
17192 Try also Fcheck_coding_system.
17193
17194 2008-02-01 Kenichi Handa <handa@m17n.org>
17195
17196 * coding.c (code_conversion_restore): GCPRO arg.
17197
17198 2008-02-01 Kenichi Handa <handa@m17n.org>
17199
17200 * character.c (lisp_string_width): Check multibyteness of STRING.
17201
17202 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17203
17204 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
17205 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
17206 (decode_mac_font_name): Use decode_coding_c_string instead of
17207 decode_coding.
17208 (x_load_font): Initialize fontp->fontset to -1. Set
17209 fontp->encoding_type.
17210
17211 2008-02-01 Kenichi Handa <handa@m17n.org>
17212
17213 * search.c (search_buffer): Give up BM search on case-fold-search
17214 if one of a target character has a case-equivalence of different
17215 byte length even if that target charcter is an ASCII.
17216 (simple_search): Fix calculation of byte length of matched text.
17217 (boyer_moore): Fix handling of case-equivalent multibyte characters.
17218
17219 2008-02-01 Kenichi Handa <handa@m17n.org>
17220
17221 * coding.c (decode_coding): Fix handling of invalid bytes.
17222
17223 2008-02-01 Kenichi Handa <handa@m17n.org>
17224
17225 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
17226 Unicode characters.
17227
17228 2008-02-01 Kenichi Handa <handa@m17n.org>
17229
17230 * coding.c (encode_coding_object): If a pre-write-conversion
17231 function makes a new buffer, kill it.
17232
17233 2008-02-01 Kenichi Handa <handa@m17n.org>
17234
17235 * coding.c (QCascii_compatible_p): New variable.
17236 (syms_of_coding): Initialize it.
17237 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
17238 calling string_char.
17239 (record_conversion_result): Add `default:' case.
17240 (coding_charset_list): Delete unused variable `coding_type'.
17241 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
17242 property in the plist of the coding system.
17243 (Fcoding_system_put): Check QCascii_compatible_p.
17244
17245 2008-02-01 Miles Bader <miles@gnu.org>
17246
17247 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
17248 removed calculation of frame `f', as it's now used.
17249
17250 2008-02-01 Kenichi Handa <handa@m17n.org>
17251
17252 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
17253 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
17254 (UNIDATA): New variable.
17255 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
17256 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
17257 $(RUN_TEMACS) unconditionally.
17258
17259 2008-02-01 Kenichi Handa <handa@m17n.org>
17260
17261 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
17262 (admindir): New variable.
17263 ($(lispsource)international/charprop.el): New target.
17264
17265 2008-02-01 Miles Bader <miles@gnu.org>
17266
17267 * character.c (chars-in-region): Remove obsolete function.
17268 (syms_of_character): Remove its initialization.
17269
17270 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
17271
17272 * w32select.c (validate_coding_system)
17273 (setup_windows_coding_system): New functions.
17274 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
17275 setup_windows_coding_system.
17276 (setup_config, Fw32_get_clipboard_data): Use
17277 validate_coding_system.
17278 (Fx_selection_exists): Move call to setup_config to a place
17279 where signals are allowed.
17280
17281 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
17282 (Fcheck_coding_system): Add declarations.
17283
17284 2008-02-01 Kenichi Handa <handa@m17n.org>
17285
17286 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
17287
17288 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17289
17290 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
17291 string as the second argument for x_new_fontset.
17292
17293 2008-02-01 Kenichi Handa <handa@m17n.org>
17294
17295 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
17296 (encode_coding_object): Use safe_call instead of call2.
17297
17298 2008-02-01 Kenichi Handa <handa@m17n.org>
17299
17300 * fontset.c (Fset_fontset_font): Check family element of a given vector.
17301
17302 * Makefile.in (lisp): Include charprop.el.
17303
17304 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17305
17306 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
17307 Not sure if it's unnecessary.
17308
17309 2008-02-01 Steven Tamm <steventamm@mac.com>
17310
17311 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
17312 some possibly unnecessary fontset checking code that crashed
17313 when creating a new frame.
17314
17315 2008-02-01 Kenichi Handa <handa@m17n.org>
17316
17317 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
17318 lookup_face.
17319
17320 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
17321
17322 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
17323
17324 2008-02-01 Kenichi Handa <handa@m17n.org>
17325
17326 * coding.c: Cancel the change done in HEAD on 2008-02-01.
17327 (coding_charset_list): New function.
17328
17329 * coding.h (coding_charset_list): Extern it.
17330
17331 2008-02-01 Kenichi Handa <handa@m17n.org>
17332
17333 * fontset.c (Fset_fontset_font): Call find_font_encoding with
17334 concatenation of family and registry.
17335
17336 2008-02-01 Kenichi Handa <handa@m17n.org>
17337
17338 * character.h (BYTE8_STRING): Fix typo.
17339
17340 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
17341 string to multibyte (sync to HEAD).
17342
17343 * casefiddle.c (casify_region): Handle changes in byte-length
17344 using replace_range_2 (sync to HEAD).
17345
17346 2008-02-01 Andreas Schwab <schwab@suse.de>
17347
17348 * chartab.c (map_char_table): GCPRO table and arg.
17349
17350 2008-02-01 Kenichi Handa <handa@m17n.org>
17351
17352 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
17353 already at limit.
17354
17355 2008-02-01 Kenichi Handa <handa@m17n.org>
17356
17357 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
17358 instead of fast_c_string_match_ignore_case.
17359 (find_font_encoding): Change argument to Lisp_Object. Use
17360 fast_string_match_ignore_case instead of
17361 fast_c_string_match_ignore_case. Change caller.
17362
17363 2008-02-01 Kenichi Handa <handa@m17n.org>
17364
17365 * xdisp.c (get_next_display_element): In unibyte case, decide to
17366 display in octal form by checking a character by
17367 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
17368
17369 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
17370
17371 * character.c (unibyte_has_multibyte_table): New variable.
17372
17373 * character.h (unibyte_has_multibyte_table): Extern it.
17374 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
17375
17376 2008-02-01 Kenichi Handa <handa@m17n.org>
17377
17378 * coding.c (encode_coding_iso_2022): Fix handling of charset
17379 annotation.
17380
17381 2008-02-01 Kenichi Handa <handa@m17n.org>
17382
17383 * coding.c (setup_coding_system): If coding_system is nil, use
17384 Qundecided.
17385 (Fterminal_coding_system): Return nil if terminal coding system is
17386 `undecided'.
17387 (syms_of_coding): Define coding-system `undecided' here. Setup
17388 terminal_coding as `undecided'.
17389
17390 2008-02-01 Kenichi Handa <handa@m17n.org>
17391
17392 * xdisp.c (message_dolog, set_message_1): Call
17393 unibyte_char_to_multibyte with arg type int.
17394
17395 * lread.c (read1): Fix reading of a char-table.
17396
17397 * print.c (print_object): Include sub char-table in circularities
17398 detection.
17399
17400 2008-02-01 Kenichi Handa <handa@m17n.org>
17401
17402 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
17403 Append the found sequences in car of ARGS instead of prepending.
17404
17405 2008-02-01 Kenichi Handa <handa@m17n.org>
17406
17407 * fileio.c (report_file_error): Make a unibyte string from
17408 strerror (errorno).
17409 (Fsubstitute_in_file_name): Fix the arg to
17410 unibyte_char_to_multibyte. It is evaluated twice.
17411
17412 2008-02-01 Kenichi Handa <handa@m17n.org>
17413
17414 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
17415
17416 2008-02-01 Kenichi Handa <handa@m17n.org>
17417
17418 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
17419 BOM is not found.
17420 (detect_coding, detect_coding_system): Optimization for ISO-2022
17421 when no 8-bit data is found.
17422
17423 2008-02-01 Jason Rumney <jasonr@gnu.org>
17424
17425 * w32fns.c (x_to_w32_font): Update to use new coding struct.
17426
17427 2008-02-01 Kenichi Handa <handa@m17n.org>
17428
17429 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
17430 CHARS.
17431
17432 2008-02-01 Steven Tamm <steventamm@mac.com>
17433
17434 * macterm.c (mac_encode_char): Add charset argument and update
17435 to use encoding_type.
17436 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
17437 switch to pure fontset.
17438 (decode_mac_font_name): Temporarily remove decoding.
17439 (x_font_name_to_mac_font_name): Temporarily remove encoding.
17440 (x_load_font): Temporarily remove encoding.
17441
17442 2008-02-01 Kenichi Handa <handa@m17n.org>
17443
17444 * xfaces.c (Fface_font): If frame is not on a window system,
17445 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
17446 refer to face->font.
17447 (split_font_name_into_vector, build_font_name_from_vector)
17448 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
17449 when HAVE_WINDOW_SYSTEM is defined.
17450
17451 2008-02-01 Kenichi Handa <handa@m17n.org>
17452
17453 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
17454 (x_produce_glyphs): Fix setting of members of cmp in case
17455 cmp->glyph_len is zero.
17456
17457 * fontset.c (Fset_fontset_font): Fix docstring.
17458 (Ffontset_info): Make it backward compatible. New arg ALL.
17459
17460 2008-02-01 Kim F. Storm <storm@cua.dk>
17461
17462 * process.c (read_process_output): Grow decoding_buf when needed;
17463 this could cause a crash in allocate_string and compact_small_strings.
17464
17465 2008-02-01 Kenichi Handa <handa@m17n.org>
17466
17467 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
17468
17469 2008-02-01 Kenichi Handa <handa@m17n.org>
17470
17471 * coding.c (setup_coding_system): Set coding->common_flags
17472 correctly for raw-text.
17473 (consume_chars): On encoding unibyte text by raw-text, don't check
17474 multibyte form.
17475 (encode_coding): On encoding by raw-text, never use translation tables.
17476
17477 * fileio.c (e_write): Short cut for the case of no encoding.
17478
17479 2008-02-01 Kenichi Handa <handa@m17n.org>
17480
17481 * coding.c (detect_coding, detect_coding_system): Delete unused
17482 variables.
17483
17484 2008-02-01 Kenichi Handa <handa@m17n.org>
17485
17486 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
17487 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
17488
17489 2008-02-01 Kenichi Handa <handa@m17n.org>
17490
17491 * coding.c (Ffind_coding_systems_region_internal): Include
17492 raw-text and no-conversion in the result.
17493
17494 2008-02-01 Kenichi Handa <handa@m17n.org>
17495
17496 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
17497 (load_font_get_repertory): Delete unnecessary check of ENCODING of
17498 FONT_DEF.
17499 (font_def_arg, add_arg, from_arg, to_arg): New args.
17500 (set_fontset_font): Change argument.
17501 (Fset_fontset_font): Fix for the case that TARGET is a script
17502 name and charset name.
17503 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
17504
17505 2008-02-01 Kenichi Handa <handa@m17n.org>
17506
17507 * fontset.c (fontset_font): Rename from fontset_face. Change return
17508 value.
17509 (face_suitable_for_char_p, face_for_char): Adjust for the change
17510 of fontset_font.
17511 (make_fontset_for_ascii_face): Fix setting of the fontset element
17512 for ASCII.
17513 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
17514 to get a font name.
17515 (Ffontset_info): Adjust for the change of fontset_font.
17516
17517 * coding.c (emacs_mule_char): Check invalid code more rigidly.
17518
17519 * character.h (LEADING_CODE_LATIN_1_MIN)
17520 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
17521
17522 2008-02-01 Kenichi Handa <handa@m17n.org>
17523
17524 * editfns.c (check_translation): New function.
17525 (Ftranslate_region_internal): Handle M:N mapping.
17526
17527 2008-02-01 Kenichi Handa <handa@m17n.org>
17528
17529 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
17530
17531 2008-02-01 Kenichi Handa <handa@m17n.org>
17532
17533 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
17534 goto invalid_code.
17535 (decode_coding_iso_2022): Fix handling of invalid designation.
17536
17537 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
17538 after calling code_conversion_save.
17539
17540 2008-02-01 Kenichi Handa <handa@m17n.org>
17541
17542 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
17543
17544 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
17545
17546 * fontset.c: Include "intervals.h".
17547 (fontset_face): Fix comparing of Lisp_Objects.
17548 (free_face_fontset, new_fontset_from_font_name): Fix
17549 Lisp_Object/int mixup.
17550
17551 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
17552
17553 * coding.c: Add many prototypes for static functions.
17554 (get_translation_table): Allow max_lookup to be NULL.
17555 (decode_coding, Ffind_coding_systems_region_internal)
17556 (Funencodable_char_position, Fcheck_coding_systems_region): Call
17557 get_translation_table with max_lookup NULL.
17558
17559 2008-02-01 Kenichi Handa <handa@m17n.org>
17560
17561 * coding.c (get_translation_table): Declare it as Lisp_Object.
17562 (LOOKUP_TRANSLATION_TABLE): New macro.
17563 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
17564 instead of CHAR_TABLE_REF.
17565
17566 2008-02-01 Kenichi Handa <handa@m17n.org>
17567
17568 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
17569 annotation data format.
17570 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
17571 Change arguments FROM and TO to single argument NCHARS. Change caller.
17572 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
17573 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
17574 (decode_coding_ccl, decode_coding_charset): Pay attention to
17575 coding->charbuf_used.
17576 (get_translation): New function.
17577 (produce_chars): New arguments translation_table and last_block.
17578 Translate characters here. Return number of carryover chars.
17579 Change caller.
17580 (produce_composition): New argument pos. Change caller.
17581 Adjust for the change of annotation data format.
17582 (produce_charset, produce_annotation): Likewise.
17583 (decode_coding, encode_coding): Don't call translate_chars.
17584 (consume_chars): New arg translation_table. Change caller.
17585 (translate_chars): Delete.
17586 (syms_of_coding): Make translation-table's number of extra slots 2.
17587
17588 2008-02-01 Kenichi Handa <handa@m17n.org>
17589
17590 * search.c (simple_search): Fix setting this_pos_byte in backward
17591 search.
17592
17593 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
17594 byte sequence.
17595 (detect_coding_ccl): Fix setting of the variable valids.
17596
17597 2008-02-01 Kenichi Handa <handa@m17n.org>
17598
17599 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
17600
17601 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
17602
17603 * editfns.c (Ftranslate_region_internal): Rename from
17604 Ftranslate_region. Accept a char-table in TABLE.
17605 (syms_of_editfns): Defsubr Stranslate_region_internal.
17606
17607 * xfaces.c (set_lface_from_font_name): If a font is specified for
17608 a frame, generate a fontset from the font.
17609 (build_scalable_font_name): If the scalable font is requested for
17610 a specific size, don't change that size.
17611 (try_font_list): Try a scalable font also in the case that a
17612 pattern string is specified.
17613
17614 2008-02-01 Kenichi Handa <handa@m17n.org>
17615
17616 * xfaces.c (Fface_font): New optional arg CHARACTER.
17617
17618 2008-02-01 Kenichi Handa <handa@m17n.org>
17619
17620 * charset.h (CHARSET_OFFSET): New macro.
17621
17622 2008-02-01 Kenichi Handa <handa@m17n.org>
17623
17624 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
17625
17626 * fontset.c (fontset_face): Handle the case that repertory is a
17627 char-table.
17628 (find_font_encoding): Return nil for unknown encoding.
17629 (Fset_fontset_font): Ignore a font of unknown encoding.
17630
17631 2008-02-01 Kenichi Handa <handa@m17n.org>
17632
17633 * keymap.c (describe_vector): Handle default value of a char table.
17634
17635 * fontset.c (fontset_face): Handle fallback fonts correctly.
17636 (Ffontset_info): Return infomation about fallback fonts.
17637
17638 2008-02-01 Kenichi Handa <handa@m17n.org>
17639
17640 * fontset.c (FONTSET_DEFAULT): New macro.
17641 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
17642 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
17643 the case that it is nil.
17644 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
17645 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
17646
17647 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
17648 subset or superset.
17649
17650 2008-02-01 Kenichi Handa <handa@m17n.org>
17651
17652 * emacs.c (main): Call init_charset after syms_of_XXX.
17653
17654 * charset.c (Vcharset_map_directory): Delete.
17655 (Vcharset_map_path): New variable.
17656 (load_charset_map_from_file): Use Vcharset_map_path instead.
17657 (init_charset): Initialize Vcharset_map_path.
17658 (syms_of_charset): Delete declaration of "charset-map-directory",
17659 add declaration of "charset-map-path".
17660
17661 2008-02-01 Kenichi Handa <handa@m17n.org>
17662
17663 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
17664 ASCII only string.
17665
17666 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
17667
17668 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
17669 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
17670
17671 2008-02-01 Kenichi Handa <handa@m17n.org>
17672
17673 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
17674
17675 * coding.c (QCmnemonic, QCdefalut_char)
17676 (QCdecode_translation_table, QCencode_translation_table)
17677 (QCpost_read_conversion, QCpre_write_conversion): New variables.
17678 (get_translation_table): Return a list of translation tables if
17679 necessary.
17680 (decode_coding): Call get_translation_table with ENCODEP 0.
17681 (char_encodable_p): If translation_table is non-nil, always call
17682 translate_char.
17683 (Fdefine_coding_system_internal): Accept list of translation
17684 tables as :encode-translation-table and :decode-translation-table.
17685 (Fcoding_system_put): New function.
17686 (syms_of_coding): Declare new symbols. Defsubr
17687 Scoding_system_put.
17688 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
17689 typically JISX0212.
17690
17691 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
17692 when the charset is superset type.
17693
17694 * character.c (translate_char): Accept list of translation tables.
17695
17696 2008-02-01 Kenichi Handa <handa@m17n.org>
17697
17698 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
17699 (CODING_ATTR_TRANS_TBL): New macro.
17700
17701 * coding.c (get_translation_table): New function.
17702 (translate_chars): Fix the bug of skipping annotation data.
17703 (decode_coding, encode_coding): Utilize get_translation_table.
17704 (char_encodable_p, Funencodable_char_position): Translate char if
17705 necessary.
17706 (Ffind_coding_systems_region_internal)
17707 (Fcheck_coding_systems_region): Setup translation table for encode
17708 in a coding system attribute vector in advance.
17709 (Fdefine_coding_system_internal): Allow a symbol as translation
17710 table. For shift-jis type coding system, allow 4th charset.
17711
17712 2008-02-01 Kenichi Handa <handa@m17n.org>
17713
17714 * coding.c (decode_coding_sjis): Check the first byte rigidly.
17715
17716 * xdisp.c (get_next_display_element): Pass -1 as POS to
17717 FACE_FOR_CHAR if displaying a C-string.
17718
17719 2008-02-01 Kenichi Handa <handa@m17n.org>
17720
17721 * composite.c (get_composition_id): Handle xoff and yoff in a
17722 composition rule.
17723
17724 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
17725 (struct composition): New member lbearing and rbearing.
17726
17727 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
17728 (x_get_glyph_overhangs): Handle a composition glyph.
17729 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
17730
17731 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
17732 composition glyph.
17733
17734 2008-02-01 Kenichi Handa <handa@m17n.org>
17735
17736 * print.c: Include charset.h.
17737 (Vprint_charset_text_property): New variable.
17738 (Qdefault): Extern it.
17739 (PRINT_STRING_NON_CHARSET_FOUND)
17740 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
17741 (print_check_string_result): New variable.
17742 (print_check_string_charset_prop): New function.
17743 (print_prune_charset_plist): New variable.
17744 (print_prune_string_charset): New function.
17745 (print_object): Call print_prune_string_charset if
17746 Vprint_charset_text_property is not t.
17747 (print_interval): Print nothing if interval->plist is nil.
17748 (syms_of_print): Declare Vprint_charset_text_property as a lisp
17749 variable. Init and staticpro print_prune_charset_plist.
17750
17751 2008-02-01 Kenichi Handa <handa@m17n.org>
17752
17753 * fontset.c (new_fontset_from_font_name): Use the specified font
17754 for all characters in the new fontset.
17755
17756 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
17757 OBJECT args.
17758
17759 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
17760 OBJECT args for composition too.
17761
17762 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
17763 OBJECT args.
17764
17765 2008-02-01 Kenichi Handa <handa@m17n.org>
17766
17767 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
17768
17769 * fontset.c (reorder_font_vector): Adjust for the change of
17770 FONT_DEF format.
17771 (fontset_face): New arg id. Change caller.
17772 (face_for_char): New args pos and object.
17773 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
17774 (fs_query_fontset): Check NAME by Fassoc too.
17775 (Fset_fontset_font): Allow non-XLFD font name.
17776 (Ffontset_info): Adjust for the change of FONT_DEF format.
17777
17778 * fontset.h (face_for_char): Adjust prototype.
17779
17780 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
17781 (append_space, extend_face_to_end_of_line)
17782 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
17783 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
17784
17785 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
17786 POS and OBJECT args.
17787
17788 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
17789 POS and OBJECT args.
17790
17791 2008-02-01 Jason Rumney <jasonr@gnu.org>
17792
17793 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
17794 of GlobalAlloc'ed memory.
17795
17796 2008-02-01 Kenichi Handa <handa@m17n.org>
17797
17798 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
17799
17800 * charset.h (charset_table_used): Delete extern.
17801
17802 * charset.c (charset_table_used): Make it static.
17803 (map_charset_chars): Fix args to c_function with.
17804
17805 * chartab.c (map_sub_char_table_for_charset): Fix args to
17806 c_function with.
17807
17808 * coding.h (enum coding_result_code): Delete
17809 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
17810
17811 * coding.c (Qinsufficient_source, Qinconsistent_eol)
17812 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
17813 (Vlast_code_conversion_error): New variables.
17814 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
17815 (ONE_MORE_BYTE): Record error if any instead of signaling an
17816 error. If non-ASCII multibyte char is found, return the negative
17817 value of the code. All callers changed to check it.
17818 (ONE_MORE_BYTE_NO_CHECK): Likewise.
17819 (record_conversion_result): New function. Change all codes setting
17820 coding->result to call this function.
17821 (detect_coding_utf_8, decode_coding_utf_8)
17822 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
17823 Don't use the local variable incomplete.
17824 (emacs_mule_char): Change the second arg to `const'.
17825 (decode_coding): Fix of flushing out unprocessed data.
17826 (make_conversion_work_buffer): Fix making of a work buffer.
17827 (decode_coding_object): Return coding->dst_object.
17828
17829 * fontset.c (set_fontset_font): Fix args.
17830
17831 * lisp.h (CHARACTERBITS): Define as 22.
17832
17833 * process.c (send_process): Be sure to set coding->src_multibyte.
17834
17835 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
17836
17837 2008-02-01 Kenichi Handa <handa@m17n.org>
17838
17839 * xdisp.c (handle_auto_composed_prop): Give limit to
17840 Fnext_single_char_property_change.
17841
17842 2008-02-01 Kenichi Handa <handa@m17n.org>
17843
17844 * composite.c (syms_of_composite): Don't make the composition hash
17845 table weak.
17846
17847 * fontset.c (Fset_fontset_font): Fix docstring.
17848
17849 * lisp.h (detect_coding_system): Adjust prototype.
17850
17851 * fileio.c (kill_workbuf_unwind): Delete this function.
17852 (Finsert_file_contents): Adjust the call of detect_coding_system.
17853 Get conversion_buffer by code_conversion_save. Use the macro
17854 CODING_MAY_REQUIRE_DECODING. After decoding, update
17855 coding_system.
17856
17857 * coding.h (make_conversion_work_buffer): Delete extern.
17858 (code_conversion_save): Extern it.
17859
17860 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
17861 (CODING_GET_INFO): Delete argument eol_type. Change callers.
17862 (decode_coding_utf_8): Don't do eol converion.
17863 (detect_coding_utf_16): Check coding->src_chars, not
17864 coding->src_bytes. Add heuristics for those that have no signature.
17865 (decode_coding_emacs_mule, decode_coding_iso_2022)
17866 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
17867 Don't do eol converion.
17868 (adjust_coding_eol_type): Return a new coding system.
17869 (detect_coding): Don't detect eol. Fix for utf-16 detection.
17870 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
17871 each change.
17872 (decode_coding): Pay attention to undo_list. Do eol conversion for
17873 all types of coding-systems (if necessary).
17874 (Vcode_conversion_work_buf_list): Delete it.
17875 (Vcode_conversion_reused_workbuf): Rename from
17876 Vcode_conversion_reused_work_buf.
17877 (Vcode_conversion_workbuf_name): New variable.
17878 (reused_workbuf_in_use): New variable.
17879 (make_conversion_work_buffer): Delete the arg DEPTH.
17880 (code_conversion_restore): Change argument to cons.
17881 (code_conversion_save): Delete the argument BUFFER. Change callers.
17882 (detect_coding_system): New argument src_chars. Change callers.
17883 Fix for utf-16 detection.
17884 (init_coding_once): Don't use ISO_carriage_return.
17885 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
17886 reused_workbuf_in_use.
17887
17888 2008-02-01 Kenichi Handa <handa@m17n.org>
17889
17890 * keymap.c (store_in_keymap): Pay attention to the case that idx
17891 is a cons specifying a character range.
17892
17893 2008-02-01 Kenichi Handa <handa@m17n.org>
17894
17895 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
17896 HANDLED_RECOMPUTE_PROPS.
17897
17898 * coding.c (Fdefine_coding_system_internal): Fix checking of
17899 ascii compatibility.
17900
17901 2008-02-01 Kenichi Handa <handa@m17n.org>
17902
17903 * charset.c (find_charsets_in_text): Delete unused locale variable.
17904 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
17905
17906 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
17907 Resync charset_list to Vemacs_mule_charset_list.
17908
17909 * keymap.c (store_in_keymap): Pay attention to the case that idx
17910 is a cons specifying a character range.
17911
17912 2008-02-01 Kenichi Handa <handa@m17n.org>
17913
17914 * composite.c (update_compositions): Bind inhibit-read-only, etc
17915 to t before calling remove-list-of-text-properties.
17916
17917 * print.c (print_object): Always print ASCII chars as is.
17918
17919 2008-02-01 Kenichi Handa <handa@m17n.org>
17920
17921 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
17922
17923 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
17924 is a char table.
17925
17926 2008-02-01 Kenichi Handa <handa@m17n.org>
17927
17928 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
17929
17930 2008-02-01 Kenichi Handa <handa@m17n.org>
17931
17932 * xfaces.c (set_lface_from_font_name): Fix for the case that
17933 FONTNAME is not fontset name.
17934
17935 2008-02-01 Kenichi Handa <handa@m17n.org>
17936
17937 * fns.c (base64_encode_1): Fix previous change.
17938
17939 2008-02-01 Kenichi Handa <handa@m17n.org>
17940
17941 * fontset.c (set_fontset_font): New function.
17942 (Fset_fontset_font): If a font is specified for a charset, use
17943 map_charset_chars to store the font spec in a fontset.
17944
17945 2008-02-01 Kenichi Handa <handa@m17n.org>
17946
17947 * fontset.c (fontset_face): Create a fallback fontset on demand.
17948 (make_fontset): Don't create a fallback fontset here.
17949 (free_face_fontset): Free a fallback fontset (if any) too.
17950 (n_auto_fontsets): Delete this variable.
17951 (auto_fontset_alist): New variable.
17952 (new_fontset_from_font_name): Check auto_fontset_alist.
17953 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
17954 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
17955 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
17956 Defsubr Sfontset_list_all.
17957
17958 2008-02-01 Kenichi Handa <handa@m17n.org>
17959
17960 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
17961
17962 2008-02-01 Kenichi Handa <handa@m17n.org>
17963
17964 * fontset.c (Fnew_fontset): Check NAME more rigidly.
17965
17966 2008-02-01 Kenichi Handa <handa@m17n.org>
17967
17968 * editfns.c (Fgoto_char): Fix docstring.
17969
17970 2008-02-01 Kenichi Handa <handa@m17n.org>
17971
17972 * insdel.c (insert_from_gap): Adjust intervals correctly.
17973
17974 2008-02-01 Jason Rumney <jasonr@gnu.org>
17975
17976 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
17977 (pfnGetFontUnicodeRanges): New dynamically loaded function.
17978 (w32_initialize): Try to load it.
17979 (x_get_font_repertory): Use it if available.
17980 (w32_encode_char): Add shortcut for unicode output.
17981
17982 * w32fns.c (w32_load_system_font): Default charset to -1.
17983 (x_to_w32_charset): Match all fonts for unicode.
17984 (w32_to_x_charset): New parameter matching. Don't return partial
17985 or wildcard charsets.
17986 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
17987 (w32_codepage_for_font): Return CP_UNICODE for unicode.
17988 (w32_to_x_font): Match charset to real charset.
17989 (enum_font_cb2): Always list unicode versions.
17990
17991 * makefile.w32-in (temacs): Increase EMHEAP.
17992
17993 2008-02-01 Jason Rumney <jasonr@gnu.org>
17994
17995 * w32term.c (w32_encode_char): New charset parameter.
17996 font_info.encoding becomes encoding_type.
17997 (x_get_font_repertory): New function. Warning: stub only!
17998 (x_new_font): Return quickly if font already set.
17999 (x_new_fontset): fontsetname parameter is Lisp_Object.
18000 Use new fs_query_fontset. Try new_fontset_from_font_name.
18001 Use fontset_name for return value.
18002
18003 * w32term.h: Declare x_get_font_repertory.
18004
18005 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
18006 place of find_charset_in_text. Use encode_coding_object in place
18007 of encode_coding.
18008 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
18009 decode_coding.
18010
18011 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
18012 of x_new_fontset.
18013 (w32_load_system_font): Initialize charset as unicode.
18014 font_info.encoding becomes encoding_type.
18015 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
18016 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
18017 (syms_of_w32fns): Set get_font_repertory_func.
18018
18019 * w32console.c: Include character.h. Use terminal_encode_buffer
18020 from term.c.
18021 (write_glyphs): Use new version of encode_terminal_code. Use
18022 encode_coding_object in place of encode_coding.
18023
18024 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
18025 encoding becomes encoding_type.
18026
18027 * term.c (terminal_encode_buffer): Make externally visible.
18028
18029 * makefile.w32-in: Add character.h dependancies.
18030 (character.o, chartab.o): New targets.
18031
18032 2008-02-01 Kenichi Handa <handa@m17n.org>
18033
18034 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
18035 CODING_ID_EOL_TYPE.
18036
18037 2008-02-01 Andreas Schwab <schwab@suse.de>
18038
18039 * coding.c (produce_chars): Revert last change.
18040
18041 2008-02-01 Kenichi Handa <handa@m17n.org>
18042
18043 * charset.h (charset_unicode): Extern it.
18044
18045 * charset.c (string_xstring_p): Check by (C >= 0x100).
18046 (find_charsets_in_text): Change format of the arc CHARSETS. New
18047 arg MULTIBYTE.
18048 (Ffind_charset_region, Ffind_charset_string): Adjust for the
18049 change of find_charsets_in_text.
18050 (Fsplit_char): Fix doc. Never return unknown.
18051
18052 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
18053
18054 * coding.c (Fdefine_coding_system_alias): Update
18055 Vcoding_system_list.
18056
18057 * fontset.c (load_font_get_repertory): Pay attention to the case
18058 that ENCODING of a font is specified by a char-table.
18059
18060 * xterm.c (x_get_font_repertory): Handle the case that the
18061 encoding of font is other than Unicode.
18062
18063 2008-02-01 Kenichi Handa <handa@m17n.org>
18064
18065 * term.c (encode_terminal_code): Don't handle glyph-table. Check
18066 if a character is encodable by the terminal coding system. If
18067 not, produces proper number of `?'s. Update
18068 terminal_encode_buffer and terminal_encode_buf_size if necessary.
18069 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
18070
18071 2008-02-01 Kenichi Handa <handa@m17n.org>
18072
18073 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
18074 variables.
18075 (encode_terminal_code): Change argument. Encode multiple
18076 characters at once. Store the result of encoding in
18077 terminal_encode_buffer.
18078 (write_glyphs, insert_glyphs): Adjust for the change of
18079 encode_terminal_code.
18080 (term_init): Initialize terminal_encode_buffer and
18081 terminal_encode_buf_size.
18082
18083 * coding.c (consume_chars): If coding->src_object is nil, don't
18084 check annotation.
18085
18086 2008-02-01 Kenichi Handa <handa@m17n.org>
18087
18088 * character.c (char_string): Use ASCII_CHAR_P instead of
18089 SINGLE_BYTE_CHAR_P.
18090
18091 2008-02-01 Kenichi Handa <handa@m17n.org>
18092
18093 * xdisp.c (handle_auto_composed_prop): Check if the last
18094 characters of auto-composed region is newly composed with the
18095 following characters.
18096 (handle_composition_prop): Fix checking of point being inside
18097 composition.
18098
18099 2008-02-01 Kenichi Handa <handa@m17n.org>
18100
18101 * fns.c (concat): Don't change multibyteness of the result by
18102 concatenating an 8-bit character.
18103
18104 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
18105 multibyteness of the result when newelt is an 8-bit character.
18106
18107 2008-02-01 Dave Love <fx@gnu.org>
18108
18109 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
18110 EMACS_INT.
18111
18112 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
18113
18114 * xfaces.c (face_numeric_value): Declare dim size_t.
18115 (Finternal_lisp_face_equal_p): Remove unused f.
18116
18117 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
18118 (MATRIX_ROW): Remove unused vars.
18119 (draw_glyphs, x_insert_glyphs, fast_find_position)
18120 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
18121 byte/char counts.
18122
18123 * regex.c (regex_compile): Remove unused var.
18124
18125 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
18126
18127 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
18128 (Faccessible_keymaps, where_is_internal): Remove unused vars.
18129
18130 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
18131
18132 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
18133
18134 * fileio.c (Fwrite_region): Remove unused var.
18135
18136 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
18137 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
18138
18139 * composite.c (Fremove_list_of_text_properties): Declare.
18140
18141 * coding.c (inhibit_pre_post_conversion): Remove (unused).
18142 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
18143 (coding_inherit_eol_type): Remove unused attrs.
18144 (detect_coding): Cast arg of detect_eol.
18145
18146 * charset.c (syms_of_charset): Remove unused var p.
18147 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
18148 byte/char counts.
18149
18150 * casetab.c (set_case_table): Remove unused var.
18151
18152 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
18153 unused vars.
18154
18155 2008-02-01 Dave Love <fx@gnu.org>
18156
18157 * xterm.c (x_bitmap_mask): Declare.
18158
18159 2008-02-01 Dave Love <fx@gnu.org>
18160
18161 * xterm.c (x_term_init): Fix type error.
18162
18163 * lisp.h: Add Funibyte_char_to_multibyte.
18164
18165 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
18166 (Fset_coding_system_priority): Doc fix.
18167
18168 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
18169
18170 * indent.c (check_composition): Make start and end EMACS_INT.
18171
18172 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
18173
18174 * xdisp.c (handle_composition_prop, check_point_in_composition):
18175 Make buffer positions EMACS_INT.
18176
18177 * composite.c (find_composition, run_composition_function)
18178 (update_compositions, Ffind_composition_internal): Make buffer
18179 positions EMACS_INT.
18180
18181 * composite.h (find_composition, update_compositions): Make
18182 position args EMACS_INT.
18183
18184 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
18185
18186 * intervals.c (get_property_and_range):
18187 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
18188
18189 * unexalpha.c: Don't include varargs.h.
18190
18191 2008-02-01 Dave Love <fx@gnu.org>
18192
18193 * coding.h (ENCODE_UTF_8): New.
18194
18195 * Makefile.in (gtkutil.o): Depend on coding.h.
18196
18197 * coding.c (Fset_coding_system_priority): Doc fix.
18198
18199 2008-02-01 Kenichi Handa <handa@m17n.org>
18200
18201 * fileio.c (Finsert_file_contents): Call setup_coding_system in
18202 the case of auto saving.
18203
18204 2008-02-01 Andreas Schwab <schwab@suse.de>
18205
18206 * chartab.c (map_char_table, map_char_table_for_charset): Protect
18207 `range' from GC.
18208
18209 2008-02-01 Kenichi Handa <handa@m17n.org>
18210
18211 * coding.c (decode_coding_sjis): Check bytes more rigidly.
18212
18213 2008-02-01 Kenichi Handa <handa@m17n.org>
18214
18215 * fileio.c (choose_write_coding_system): Return a decided coding system.
18216 (Fwrite_region): Set Vlast_coding_system_used to the return value
18217 of choose_write_coding_system.
18218
18219 2008-02-01 Kenichi Handa <handa@m17n.org>
18220
18221 * charset.c (Fset_charset_priority): Pay attention to duplicated
18222 arguments.
18223
18224 * coding.c (QCcategory): New variable.
18225 (syms_of_coding): Defsym it. Set all elements of
18226 Vcoding_category_table and their symbol values.
18227 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
18228 coding-category-XXX, and coding-category-list.
18229 (Fdefine_coding_system_internal): Add category in the plist.
18230
18231 2008-02-01 Kenichi Handa <handa@m17n.org>
18232
18233 * callproc.c (Fcall_process): Handle carryover correctly.
18234
18235 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
18236 (raw_text_coding_system): Check NILP (coding_system).
18237 (coding_inherit_eol_type): Check NILP (coding_system) and
18238 NILP (parent).
18239 (consume_chars): Fix for the case of raw-text.
18240
18241 * process.c (read_process_output): Handle carryover correctly.
18242
18243 2008-02-01 Dave Love <fx@gnu.org>
18244
18245 * regex.c (re_search_2): Fix last change.
18246
18247 2008-02-01 Kenichi Handa <handa@m17n.org>
18248
18249 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
18250 target_multibyte. Even in a unibyte case, return a converted
18251 multibyte char.
18252 (GET_CHAR_AFTER): New macro.
18253 (PATFETCH): Translate via multibyte char.
18254 (HANDLE_UNIBYTE_RANGE): Delete this macro.
18255 (SETUP_MULTIBYTE_RANGE): New macro.
18256 (regex_compile): Setup compiled code so that its multibyteness
18257 matches that of a target. Fix the handling of "[X-YZ]" using
18258 SETUP_MULTIBYTE_RANGE.
18259 (analyse_first) <charset>: For filling fastmap for all multibyte
18260 characters, don't check by BASE_LEADING_CODE_P.
18261 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
18262 the same as RE_MULTIBYTE_P (bufp) now.
18263 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
18264 (TARGET_CHAR_AND_LENGTH): Delete this macro.
18265 (TRANSLATE_VIA_MULTIBYTE): New macro.
18266 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
18267 It is the same as RE_MULTIBYTE_P (bufp) now.
18268 <exactn>: Translate via multibyte.
18269 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
18270 translate it.
18271 <charset, charset_not>: Fetch a character by
18272 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
18273 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
18274 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
18275 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
18276 by GET_CHAR_AFTER.
18277 (bcmp_translate): Likewise.
18278
18279 * search.c (compile_pattern): Check the member target_multibyte,
18280 not the member multibyte of buf.
18281
18282 * lread.c (read1): While reading a string, set force_singlebyte
18283 and force_multibyte correctly.
18284
18285 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
18286 up of unibyte_to_multibyte_table.
18287
18288 2008-02-01 Kenichi Handa <handa@m17n.org>
18289
18290 * coding.c (setup_coding_system): If coding has
18291 post-read-conversion or pre-write-conversion, set
18292 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
18293 respectively.
18294 (decode_coding_gap): Run post-read-conversion if any.
18295
18296 * fileio.c (Finsert_file_contents): Even if we read into a
18297 unibyte buffer, check if we must decode the result or not.
18298
18299 2008-02-01 Kenichi Handa <handa@m17n.org>
18300
18301 * coding.c (make_conversion_work_buffer): Change the work buffer
18302 name to the same one as that of Emacs 21.
18303
18304 2008-02-01 Kenichi Handa <handa@m17n.org>
18305
18306 * coding.h (make_conversion_work_buffer): Adjust prototype.
18307 (code_conversion_restore): Don't extern it.
18308
18309 * coding.c (detected_mask): Delete unused variable.
18310 (decode_coding_iso_2022): Pay attention to the byte sequence of
18311 CTEXT extended segment, and retain those bytes as is.
18312 (decode_coding_ccl): Delete unused variable `valids'.
18313 (setup_coding_system): Delete unused variable `category'.
18314 (consume_chars): Delete unused variable `category'. Make it work
18315 for non-multibyte case.
18316 (make_conversion_work_buffer): Change argument.
18317 (saved_coding): Delete unused variable.
18318 (code_conversion_restore): Don't check saved_coding->destination.
18319 (code_conversion_save): New function.
18320 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
18321 instead of record_unwind_protect.
18322 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
18323 (detect_coding_system): Delete unused variable `mask'.
18324 (Fdefine_coding_system_internal): Delete unused variable id.
18325
18326 * fileio.c (kill_workbuf_unwind): New function.
18327 (Finsert_file_contents): On replacing, call
18328 make_conversion_work_buffer with correct args, and call
18329 record_unwind_protect with the first arg kill_workbuf_unwind.
18330
18331 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
18332
18333 2008-02-01 Kenichi Handa <handa@m17n.org>
18334
18335 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
18336 (fontset_add): Fix for the case that TO is less than TO1.
18337 (Ffontset_info): Don't use fallback fontset on checking the
18338 default fontset.
18339 (dump_fontset): New function for debugging.
18340
18341 * coding.c (Fdefine_coding_system_internal): Fix for the case that
18342 coding_type is Qcharset.
18343
18344 2008-02-01 Kenichi Handa <handa@m17n.org>
18345
18346 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
18347 (map_char_table): Don't inherit the value from the parent on
18348 initializing VAL. Adjust for the above change.
18349
18350 2008-02-01 Kenichi Handa <handa@m17n.org>
18351
18352 * coding.c (Qsignature, Qendian): Delete these variables.
18353 (syms_of_coding): Don't initialize them.
18354 (CATEGORY_MASK_UTF_16_AUTO): New macro.
18355 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
18356 detect_info->found.
18357 (decode_coding_utf_16): Don't detect BOM here.
18358 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
18359 is NOT utf_16_without_bom.
18360 (setup_coding_system): For a coding system of type utf-16, check
18361 if the attribute :endian is Qbig or not (not nil or not), and set
18362 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
18363 (detect_coding): If coding type is utf-16 and BOM detection is
18364 required, detect it.
18365 (Fdefine_coding_system_internal): For a coding system of type
18366 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
18367
18368 2008-02-01 Kenichi Handa <handa@m17n.org>
18369
18370 * coding.c (coding_set_source): Fix for the case that the current
18371 buffer is different from coding->src_object.
18372 (decode_coding_object): Don't use the conversion work buffer if
18373 DST_OBJECT is a buffer.
18374
18375 2008-02-01 Dave Love <fx@gnu.org>
18376
18377 * lread.c (read_emacs_mule_char) [len==2]: Index
18378 emacs_mule_charset correctly.
18379
18380 2008-02-01 Dave Love <fx@gnu.org>
18381
18382 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
18383 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
18384 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
18385 treated specially.)
18386 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
18387 (detected_mask): Remove Big5 bits.
18388
18389 2008-02-01 Kenichi Handa <handa@m17n.org>
18390
18391 The following changes are to make the font rescaling facility
18392 compatible with Emacs 21.
18393
18394 * xfaces.c (Vface_font_rescale_alist): Rename from
18395 Vface_resizing_fonts.
18396 (struct font_name): Rename member resizing_ratio to rescale_ratio.
18397 (font_rescale_ratio): Rename from font_resizing_ratio.
18398 (split_font_name): Set font->rescale_ratio.
18399 (better_font_p): Pay attention to font->rescale_ratio.
18400 (build_scalable_font_name): Likewise. Change RESX, and RESY
18401 fields.
18402 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
18403
18404 2008-02-01 Kenichi Handa <handa@m17n.org>
18405
18406 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
18407 (Qutf_16_le): Remove these variables.
18408 (syms_of_coding): Don't DEFSYM them.
18409 (decode_coding_utf_16): Fix handling of BOM.
18410 (encode_coding_utf_16): Fix handling of BOM.
18411
18412 2008-02-01 Kenichi Handa <handa@m17n.org>
18413
18414 * fileio.c (Finsert_file_contents): On replacing, before decoding
18415 the file into the work buffer, set point of the work buffer to the end.
18416
18417 2008-02-01 Dave Love <fx@gnu.org>
18418
18419 * coding.c (Fcheck_coding_systems_region): Fix type errors.
18420
18421 2008-02-01 Dave Love <fx@gnu.org>
18422
18423 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
18424 and fix C types.
18425
18426 2008-02-01 Kenichi Handa <handa@m17n.org>
18427
18428 * xdisp.c (SKIP_GLYPHS): New macro.
18429 (set_cursor_from_row): Pay attention to string display properties.
18430
18431 * category.c (copy_category_entry): Fix for the case that RANGE
18432 is an integer.
18433
18434 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
18435
18436 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
18437
18438 2008-02-01 Kenichi Handa <handa@m17n.org>
18439
18440 * charset.c (Fcharset_id_internal): New function.
18441 (syms_of_charset): Defsubr it.
18442
18443 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
18444 with the last arg charset_list acquired from coding.
18445 (Fdefine_coding_system_internal): For ccl-based coding system, fix
18446 the attribute coding_attr_ccl_valids.
18447
18448 * coding.h (enum define_coding_ccl_arg_index): Set the first
18449 member coding_arg_ccl_decoder to coding_arg_max.
18450
18451 * ccl.h (ccl_driver): Adjust prototype.
18452
18453 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
18454 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
18455 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
18456 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
18457 last arg Qnil.
18458
18459 2008-02-01 Kenichi Handa <handa@m17n.org>
18460
18461 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
18462 call encode_char.
18463
18464 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
18465
18466 2008-02-01 Dave Love <fx@gnu.org>
18467
18468 * composite.c (syms_of_composite): Make composition_hash_table weak.
18469
18470 2008-02-01 Kenichi Handa <handa@m17n.org>
18471
18472 * dispextern.h (check_face_attributes, generate_ascii_font_name)
18473 (font_name_registry): Don't extern them.
18474 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
18475
18476 * fontset.h (Qfontset): Don't extern it.
18477 (new_fontset_from_font_name): Extern it.
18478
18479 * fontset.c: Give 8 extra slots to fontset objects.
18480 (Qfontset_info): New variable.
18481 (syms_of_fontset): Defsym it.
18482 (FONTSET_FALLBACK): New macro.
18483 (fontset_face): Try also the default fontset.
18484 (make_fontset): Realize a fallback fontset from the default fontset.
18485 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
18486 using split_font_name_into_vector and build_font_name_from_vector.
18487 (Fset_fontset_font): Access the elements of font_spec by enum
18488 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
18489 name by using split_font_name_into_vector.
18490 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
18491 generate a proper font name from the fontset name. Update
18492 Vfontset_alias_alist.
18493 (n_auto_fontsets): New variable.
18494 (new_fontset_from_font_name): New function.
18495 (Ffont_info): Store the information about fonts generated from the
18496 default fontset in the first extra slot of the returned char-table.
18497
18498 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
18499 (font_name_registry): Delete function.
18500 (split_font_name_into_vector): New function.
18501 (build_font_name_from_vector): New function.
18502 (font_list): The argument REGISTRY is now a list of registry names.
18503 (choose_face_font): If we are choosing an ASCII font, and ATTRS
18504 specifies an explicit font name, return the name as is. Make a
18505 list of registy names.
18506
18507 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
18508 of x_new_fontset.
18509 (Fx_create_frame): Don't call x_new_fontset here. Just use
18510 x_list_fonts to check the existence of fonts.
18511
18512 * xterm.h (x_new_fontset): Adjust prototype.
18513
18514 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
18515 string. Use new_fontset_from_font_name to create a fontset from a
18516 font name.
18517
18518 2008-02-01 Kenichi Handa <handa@m17n.org>
18519
18520 * syntax.c (Vfind_word_boundary_function_table): New name for
18521 Vnext_word_boundary_function_table.
18522 (find-word-boundary-function-table): New name for
18523 next-word-boundary-function-table.
18524
18525 2008-02-01 Dave Love <fx@gnu.org>
18526
18527 * Makefile.in: Fix some dependencies.
18528
18529 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
18530 set it to nil before returning.
18531
18532 * composite.c (update_compositions): Fix type error.
18533
18534 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
18535
18536 2008-02-01 Kenichi Handa <handa@m17n.org>
18537
18538 * xterm.c (x_new_font): Optimize for the case that the font is
18539 already set for the frame.
18540
18541 2008-02-01 Kenichi Handa <handa@m17n.org>
18542
18543 * chartab.c (char_table_ascii): Check if the char table contents
18544 is sub-char-table or not.
18545 (char_table_set, char_table_set_range): Fix argument to
18546 char_table_ascii.
18547
18548 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
18549 (detect_coding_utf_8, detect_coding_utf_16)
18550 (detect_coding_emacs_mule, detect_coding_iso_2022)
18551 (detect_coding_sjis, detect_coding_big5)
18552 (detect_coding_ccl, detect_coding_charset): Change argument MASK
18553 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
18554 sequence is valid in this coding system. Change callers.
18555 (MAX_ANNOTATION_LENGTH): New macro.
18556 (ADD_ANNOTATION_DATA): New macro.
18557 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
18558 ADD_ANNOTATION_DATA. Change the format of annotation data.
18559 (ADD_CHARSET_DATA): New macro.
18560 (emacs_mule_char): New argument ID. Change callers.
18561 (decode_coding_emacs_mule, decode_coding_iso_2022)
18562 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
18563 Produce charset annotation data in coding->charbuf.
18564 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
18565 to charset annotation data in coding->charbuf.
18566 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
18567 coding->common_flags if the coding system is iso-2022 based and
18568 uses designation.
18569 (produce_composition): Adjust for the new annotation data format.
18570 (produce_charset): New function.
18571 (produce_annotation): Handle charset annotation.
18572 (handle_composition_annotation, handle_charset_annotation): New
18573 functions.
18574 (consume_chars): Handle charset annotation. Utilize the above two
18575 functions.
18576 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
18577 buffer, get the deleted text as a string and set
18578 coding->src_object to that string.
18579 (detect_coding, detect_coding_system): Use the new struct
18580 coding_detection_info.
18581
18582 * coding.h (struct coding_detection_info): New structure.
18583 (struct coding_system): Adjust prototype of the member `detector'.
18584 (CODING_ANNOTATE_CHARSET_MASK): New macro.
18585
18586 2008-02-01 Kenichi Handa <handa@m17n.org>
18587
18588 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
18589
18590 2008-02-01 Dave Love <fx@gnu.org>
18591
18592 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
18593 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
18594 to new local and nullify apropos_accumulate before returning.
18595 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
18596
18597 2008-02-01 Kenichi Handa <handa@m17n.org>
18598
18599 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
18600 correctly.
18601
18602 2008-02-01 Dave Love <fx@gnu.org>
18603
18604 * fns.c (Flanginfo): Call synchronize_system_time_locale.
18605
18606 2008-02-01 Kenichi Handa <handa@m17n.org>
18607
18608 The following changes are to make character composition happen
18609 automatically on displaying.
18610
18611 * Makefile.in (lisp, shortlisp): Add composite.elc.
18612
18613 * composite.h (Qauto_composed, Vauto_composition_function)
18614 (Qauto_composition_function): Extern them.
18615
18616 * composite.c (Vcomposition_function_table)
18617 (Qcomposition_function_table): Delete variables.
18618 (Qauto_composed, Vauto_composition_function)
18619 (Qauto_composition_function): New variables.
18620 (run_composition_function): Don't call
18621 compose-chars-after-function.
18622 (update_compositions): Clear `auto-composed' text property.
18623 (compose_chars_in_text): Delete this function.
18624 (syms_of_composite): Staticpro Qauto_composed and
18625 Qauto_composition_function. Declare Vauto_composition_function as
18626 a Lisp variable.
18627
18628 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
18629
18630 * xdisp.c (it_props): Add an entry for Qauto_composed.
18631 (handle_auto_composed_prop): New function.
18632
18633 * xselect.c (selection_data_to_lisp_data): Don't call
18634 compose_chars_in_text.
18635
18636 2008-02-01 Dave Love <fx@gnu.org>
18637
18638 * keyboard.c (read_char): Modify checking around use of
18639 Vkeyboard_translate_table.
18640
18641 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
18642 and fix C types.
18643
18644 2008-02-01 Kenichi Handa <handa@m17n.org>
18645
18646 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
18647 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
18648 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
18649 the case that the last byte is '\r' correctly.
18650 (decode_coding): Flush out the unprocessed data correctly.
18651 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
18652
18653 2008-02-01 Dave Love <fx@gnu.org>
18654
18655 * xterm.c (XTread_socket): Fix changes for defined keysyms.
18656 Add XK_ISO... case.
18657 (xaw_scroll_callback): Revert last change.
18658
18659 2008-02-01 Kenichi Handa <handa@m17n.org>
18660
18661 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
18662
18663 2008-02-01 Kenichi Handa <handa@m17n.org>
18664
18665 * xfaces.c (Vface_resizing_fonts): New variable.
18666 (struct font_name): New member `resizing_ratio'.
18667 (font_resizing_ratio): New function.
18668 (split_font_name): Set font->resizing_ratio.
18669 (better_font_p): Pay attention to font->resizing_ratio.
18670 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
18671 RESX, and RESY fields.
18672 (try_alternative_families): Try scalable fonts if
18673 Vscalable_fonts_allowed is not Qt.
18674 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
18675
18676 2008-02-01 Dave Love <fx@gnu.org>
18677
18678 * xterm.c (xaw_scroll_callback): Cast correctly.
18679
18680 2008-02-01 Dave Love <fx@gnu.org>
18681
18682 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
18683 (lispy_kana_keys): Comment out.
18684 (make_lispy_event) [XK_kana_A]: Comment out.
18685
18686 * xterm.c (xaw_scroll_callback): Cast call_data.
18687 (XTread_socket): Deal with ASCII keysyms.
18688 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
18689
18690 2008-02-01 Dave Love <fx@gnu.org>
18691
18692 * xterm.c (Vx_keysym_table): New.
18693 (syms_of_xterm): Initialize it.
18694 (XTread_socket): Use it.
18695 From head: Eliminate incorrect optimization that tried to avoid
18696 decoding the output of X*LookupString.
18697 (x_get_font_repertory): Delete charset declaration.
18698
18699 2008-02-01 Kenichi Handa <handa@m17n.org>
18700
18701 * coding.c (detect_coding_charset): If only ASCII bytes are found,
18702 return 0.
18703 (Fdefine_coding_system_internal): Setup
18704 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
18705
18706 2008-02-01 Dave Love <fx@gnu.org>
18707
18708 * coding.c (Fcheck_coding_system): Doc fix.
18709
18710 * editfns.c (Finsert_byte): Return a proper value.
18711
18712 2008-02-01 Kenichi Handa <handa@m17n.org>
18713
18714 * coding.c (decode_coding): Fix args to translate_chars. Pay
18715 attention to Vstandard_translation_table_for_decode.
18716 (encode_coding): Fix args to translate_chars. Pay attention to
18717 Vstandard_translation_table_for_encode.
18718
18719 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
18720 SINGLE_BYTE_CHAR_P.
18721
18722 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
18723 not by SINGLE_BYTE_CHAR_P.
18724
18725 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
18726 SINGLE_BYTE_CHAR_P.
18727
18728 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
18729 SINGLE_BYTE_CHAR_P.
18730
18731 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
18732 by SINGLE_BYTE_CHAR_P.
18733
18734 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
18735 SINGLE_BYTE_CHAR_P.
18736
18737 2008-02-01 Dave Love <fx@gnu.org>
18738
18739 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
18740
18741 2008-02-01 Dave Love <fx@gnu.org>
18742
18743 * fns.c (Flanginfo): Fix typo.
18744
18745 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
18746
18747 2008-02-01 Kenichi Handa <handa@m17n.org>
18748
18749 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
18750 (detect_coding_emacs_mule, detect_coding_iso_2022)
18751 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
18752 incomplete byte sequence. Don't update *mask when correctly detected.
18753 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
18754 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
18755 (detect_coding, detect_coding_system): Adjust for the changes above.
18756
18757 2008-02-01 Kenichi Handa <handa@m17n.org>
18758
18759 * character.c (char_string): Rename from
18760 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
18761 (string_char): Rename from string_char.
18762
18763 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
18764 if C is greater than MAX_3_BYTE_CHAR.
18765 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
18766 string_char instead of string_char_with_unification.
18767
18768 2008-02-01 Dave Love <fx@gnu.org>
18769
18770 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
18771
18772 2008-02-01 Kenichi Handa <handa@m17n.org>
18773
18774 * keymap.c (push_key_description): Pay attention to force_multibyte.
18775
18776 * regex.c (re_search_2): Fix for the case of unibyte buffer.
18777
18778 2008-02-01 Dave Love <fx@gnu.org>
18779
18780 * charset.c (define_charset_internal): Rename `supprementary'.
18781
18782 * Makefile.in (lisp, shortlisp): Remove latin-N.
18783
18784 2008-02-01 Dave Love <fx@gnu.org>
18785
18786 * xfns.c (x_window, x_window): Use use_xim.
18787
18788 * xterm.c (use_xim): Initialize.
18789 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
18790 (x_term_init): Maybe set use_xim.
18791
18792 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
18793
18794 2008-02-01 Kenichi Handa <handa@m17n.org>
18795
18796 * search.c (search_buffer): Fix case-fold-search of multibyte
18797 characters.
18798 (boyer_moore): Rename the last argument to char_high_bits.
18799
18800 2008-02-01 Kenichi Handa <handa@m17n.org>
18801
18802 * xdisp.c (display_string): Fix for the case of zero width glyph.
18803
18804 * xfns.c (x_set_font): Change the error message of the case that
18805 x_new_fontset returns Qt.
18806
18807 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
18808 (Finternal_set_lisp_face_attribute): Use signal_error for the
18809 error of invalid fontset.
18810
18811 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
18812 fontset, return Qt.
18813
18814 2008-02-01 Dave Love <fx@gnu.org>
18815
18816 * unexelf.c (unexec): Make .got handling not SGI-specific.
18817
18818 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
18819
18820 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
18821
18822 * keyboard.c (read_key_sequence): Fix type error.
18823
18824 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
18825 type error.
18826
18827 * fontset.c (fontset_add): Return Lisp_Object.
18828
18829 2008-02-01 Dave Love <fx@gnu.org>
18830
18831 * charset.h (charset_ordered_list_tick): Declare extern.
18832
18833 2008-02-01 Kenichi Handa <handa@m17n.org>
18834
18835 The following changes (and some of 2008-02-01 changes of mine) are
18836 for handling syntax, category, and case conversion for unibyte
18837 characters by converting them to multibyte on the fly. With these
18838 changes, we don't have to setup syntax and case tables for unibyte
18839 characters in each language environment.
18840
18841 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
18842 multibyte if necessary.
18843
18844 * bytecode.c (Fbyte_code): Likewise.
18845
18846 * character.h (LEADING_CODE_LATIN_1_MIN)
18847 (LEADING_CODE_LATIN_1_MAX): New macros.
18848 (unibyte_to_multibyte_table): Extern it.
18849 (unibyte_char_to_multibyte): New macro.
18850 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
18851 (CHAR_LEADING_CODE): New macro.
18852 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
18853
18854 * character.c (unibyte_to_multibyte_table): New variable.
18855 (unibyte_char_to_multibyte): Move to character.h and define as macro.
18856 (multibyte_char_to_unibyte): If C is an eight-bit character,
18857 convert it to the corresponding byte value.
18858
18859 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
18860 not 1, signals an error. Update the elements of
18861 unibyte_to_multibyte_table.
18862 (init_charset_once): Initialize unibyte_to_multibyte_table.
18863 (syms_of_charset): Define the charset `iso-8859-1'.
18864
18865 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
18866 as is without converting it to unibyte. In a unibyte buffer,
18867 convert C to multibyte before checking the syntax.
18868
18869 * lisp.h (unibyte_char_to_multibyte): Delete extern.
18870
18871 * minibuf.c (Fminibuffer_complete_word): Use the macro
18872 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
18873
18874 * regex.h (struct re_pattern_buffer): New member target_multibyte.
18875
18876 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
18877 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
18878 that is zero, convert an eight-bit char to multibyte.
18879 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
18880 non-emacs case.
18881 (PATFETCH): Convert an eight-bit char to multibyte.
18882 (HANDLE_UNIBYTE_RANGE): New macro.
18883 (regex_compile): Setup the compiled pattern for multibyte chars
18884 even if the given regex string is unibyte. Use PATFETCH_RAW
18885 instead of PATFETCH in many places. To handle `charset'
18886 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
18887 only for ASCII chars.
18888 (analyse_first) <exactn>: Simplify because the compiled pattern
18889 is multibyte.
18890 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
18891 <charset>: Use CHAR_LEADING_CODE to get leading codes.
18892 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
18893 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
18894 multibyte always 1.
18895 (re_search_2): In emacs, set the locale variable multibyte to 1,
18896 otherwise to 0. New local variable target_multibyte. Check it
18897 to decide the multibyteness of STR1 and STR2. If
18898 target_multibyte is zero, convert unibyte chars to multibyte
18899 before translating and checking fastmap.
18900 (TARGET_CHAR_AND_LENGTH): New macro.
18901 (re_match_2_internal): In emacs, set the locale variable multibyte
18902 to 1, otherwise to 0. New local variable target_multibyte. Check
18903 it to decide the multibyteness of STR1 and STR2. Use
18904 TARGET_CHAR_AND_LENGTH to fetch a character from D.
18905 <charset, charset_not>: If multibyte is nonzero, check fastmap
18906 only for ASCII chars. Call bcmp_translate with
18907 target_multibyte, not with multibyte.
18908 <begline>: Declare the local variable C as `unsigned'.
18909 (bcmp_translate): Change the last arg name to target_multibyte.
18910
18911 * search.c (compile_pattern_1): Don't adjust the multibyteness of
18912 the regexp pattern and the matching target. Set cp->buf.multibyte
18913 to the multibyteness of the regexp pattern. Set
18914 cp->but.target_multibyte to the multibyteness of the matching target.
18915 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
18916 FETCH_STRING_CHAR_ADVANCE.
18917 (Freplace_match): Convert unibyte chars to multibyte.
18918
18919 * syntax.c (char_quoted, back_comment, scan_words)
18920 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
18921 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
18922 unibyte chars to multibyte.
18923 (skip_chars): Delete the arg syntaxp, and move the code for
18924 handling syntaxes to skip_syntaxes. Change callers.
18925 Fix the case that the multibyteness of STRING and the current
18926 buffer doesn't match.
18927 (skip_syntaxes): New function.
18928 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
18929 SINGLE_BYTE_CHAR_P.
18930
18931 2008-02-01 Kenichi Handa <handa@m17n.org>
18932
18933 * xfaces.c (QCfontset): New variable.
18934 (LFACE_FONTSET): New macro.
18935 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
18936 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
18937 (Finternal_set_lisp_face_attribute)
18938 (Finternal_get_lisp_face_attribute): Handle QCfontset.
18939 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
18940 check also LFACE_FONTSET_INDEX.
18941 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
18942 attrs[LFACE_FONT_INDEX].
18943 (syms_of_xfaces): Intern and staticpro QCfontset.
18944
18945 * dispextern.h (enum lface_attribute_index): New member
18946 LFACE_FONTSET_INDEX.
18947
18948 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
18949
18950 2008-02-01 Kenichi Handa <handa@m17n.org>
18951
18952 * coding.c (coding_set_destination): Fix coding->destination for
18953 the case converting a region.
18954 (encode_coding_utf_8): Encode eight-bit chars as single byte.
18955 (encode_coding_object): Fix coding->dst_pos and
18956 coding->dst_pos_byte for the case converting a region.
18957
18958 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
18959
18960 * character.h (BYTE8_STRING): New macro.
18961
18962 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
18963
18964 2008-02-01 Kenichi Handa <handa@m17n.org>
18965
18966 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
18967 characters by octal form.
18968
18969 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
18970
18971 * buffer.h (_fetch_multibyte_char_len): Delete extern.
18972 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
18973 _fetch_multibyte_char_len.
18974 (FETCH_CHAR_AS_MULTIBYTE): New macro.
18975
18976 * casetab.c (set_canon, set_identity, shuffle): Simplify.
18977
18978 * casefiddle.c (casify_object): Simplify. Handle the case that
18979 the case conversion change the byte length.
18980 (casify_region): Likewise.
18981
18982 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
18983
18984 * character.c (_fetch_multibyte_char_len): Delete this variable.
18985 (syms_of_character): Setup Vprintable_chars.
18986
18987 * editfns.c (Fchar_equal): Fix for the unibyte case.
18988 (Finsert_byte): New function.
18989 (syms_of_editfns): Defsubr it.
18990
18991 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
18992 of direct code 0x3ffff.
18993
18994 * search.c (Freplace_match): Fix for the unibyte case.
18995
18996 2008-02-01 Kenichi Handa <handa@m17n.org>
18997
18998 * lread.c (safe_to_load_p): Fix the logic.
18999
19000 * syntax.c (scan_words): Don't treat characters belonging to
19001 different scripts as constituting a word.
19002
19003 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
19004
19005 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
19006
19007 * emacs.c (main): In the case of --unibyte, instead of aborting on
19008 finding non-empty buffer, make it unibyte.
19009
19010 2008-02-01 Kenichi Handa <handa@m17n.org>
19011
19012 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
19013 to create a fontset.
19014
19015 2008-02-01 Dave Love <fx@gnu.org>
19016
19017 * character.c (Funibyte_char_to_multibyte): Doc fix.
19018
19019 * xfns.c [HAVE_STDLIB_H]: Fix last change.
19020
19021 2008-02-01 Kenichi Handa <handa@m17n.org>
19022
19023 * fontset.c (fontset_add): Make the type `int'.
19024 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
19025
19026 * character.c (unibyte_char_to_multibyte)
19027 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
19028 charset_unibyte, not charset_primary.
19029
19030 * charset.h (charset_unibyte): Extern it instead of charset_primary.
19031
19032 * charset.c (charset_unibyte): Rename from charset_primary.
19033 (Funibyte_charset): Rename from Fprimary_charset.
19034 (Fset_unibyte_charset): Rename from Fset_primary_charset.
19035 (syms_of_charset): Adjust for the above changes.
19036
19037 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
19038 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
19039 it->multibyte_p is zero.
19040
19041 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
19042 Delete extern.
19043
19044 2008-02-01 Kenichi Handa <handa@m17n.org>
19045
19046 * coding.c (Fdefine_coding_system_internal): Fix category setting
19047 for a coding system of type iso-2022.
19048
19049 2008-02-01 Kenichi Handa <handa@m17n.org>
19050
19051 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
19052
19053 2008-02-01 Kenichi Handa <handa@m17n.org>
19054
19055 * syntax.c (Vnext_word_boundary_function_table): New variable.
19056 (next-word-boundary-function-table): Declare it as a Lisp variable
19057 in syms_of_syntax.
19058 (scan_words): Call functions in Vnext_word_boundary_function_table
19059 if any.
19060
19061 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
19062
19063 * fontset.c (fs_load_font): If fontp->charset is not negative,
19064 return fontp without setting its members.
19065
19066 2008-02-01 Dave Love <fx@gnu.org>
19067
19068 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
19069
19070 * m/sparc.h (HAVE_ALLOCA): Delete.
19071
19072 * s/irix6-5.h: Don't include strings.h.
19073 (bcopy, bzero, bcmp): Don't undef.
19074
19075 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
19076
19077 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
19078 (TIOCSIGSEND): Don't test IRIX6.
19079 (bcopy, bzero, bcmp): Define conditionally.
19080
19081 2008-02-01 Kenichi Handa <handa@m17n.org>
19082
19083 * buffer.c (Qas, Qmake, Qto): New variables.
19084 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
19085 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
19086
19087 * callproc.c (Fcall_process): Don't call insert_1_both directly if
19088 we are inserting a process output into a multibyte buffer.
19089
19090 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
19091 multibyte_char_to_unibyte.
19092
19093 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
19094 by the primary charset, make it eight-bit char.
19095 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
19096
19097 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
19098 (charset_8_bit__control, charset_8_bit_graphic)
19099 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
19100 (define_charset_internal): New function.
19101 (syms_of_charset): Call define_charset_internal for pre-defined
19102 charsets.
19103
19104 * charset.h (charset_8_bit): Extern it.
19105
19106 * coding.c (make_conversion_work_buffer): Adjust for the change
19107 of Fset_buffer_multibyte.
19108 (encode_coding_raw_text): Increment p0 in the loop.
19109
19110 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
19111
19112 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
19113 for the change of Fset_buffer_multibyte.
19114
19115 * fns.c (Fstring_to_multibyte): New function.
19116 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
19117
19118 2008-02-01 Dave Love <fx@gnu.org>
19119
19120 * xfns.c (x_put_x_image): Declare args.
19121
19122 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
19123 (try_font_list): Declare an arg.
19124
19125 * xdisp.c (message2_nolog, set_message): Declare an arg.
19126
19127 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
19128
19129 * syntax.c (scan_sexps_forward): Declare an arg.
19130
19131 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
19132 Declare an arg.
19133
19134 * lisp.h (Fnew_fontset): Declare.
19135
19136 * keymap.c (push_key_description): Call CHARACTERP correctly.
19137
19138 * fontset.c (fontset_add): Declare args. Call make_number correctly.
19139 (face_for_char): Delete unused vars.
19140 (Fset_fontset_font): Doc fix. Delete unused vars.
19141
19142 * doc.c (Fsubstitute_command_keys): Delete unused vars.
19143
19144 * composite.c (update_compositions): Declare arg.
19145
19146 * cm.c (calccost, cmgoto): Declare args.
19147
19148 * charset.c: Remove `emacs' conditional. Doc fixes.
19149 (map_char_table_for_charset): Declare.
19150
19151 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
19152
19153 * ccl.c: Remove `emacs' conditional.
19154
19155 2008-02-01 Kenichi Handa <handa@m17n.org>
19156
19157 The following changes are to allow specifying multiple font
19158 patterns for a character range (specified by script or charset).
19159
19160 * Makefile.in (abbrev.o): Depend on syntax.h.
19161 (xfaces.o): Depend on charset.h.
19162
19163 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
19164 SINGLE_BYTE_CHAR_P.
19165
19166 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
19167
19168 * character.h (Vchar_script_table): Extern it.
19169
19170 * character.c (Vscript_alist): Delete.
19171 (Vchar_script_table, Qchar_script_table): New variable.
19172 (syms_of_character): Declare Vchar_script_table as a lisp variable
19173 and initialize it.
19174
19175 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
19176 have property char-table-extra-slots, make no extra slot.
19177
19178 * dispextern.h (struct face): Delete member `charset'.
19179 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
19180 SINGLE_BYTE_CHAR_P.
19181 (choose_face_font, lookup_non_ascii_face, font_name_registry):
19182 Add prototypes.
19183 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
19184 (generate_ascii_font_name): Rename from generate_ascii_font.
19185
19186 * fontset.h (get_font_repertory_func): New prototype.
19187 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
19188 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
19189
19190 * fontset.c (Qprepend, Qappend): New variables.
19191 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
19192 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
19193 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
19194 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
19195 (fontset_ref_and_range, fontset_add, reorder_font_vector)
19196 (load_font_get_repertory): New functions.
19197 (fontset_set): Delete.
19198 (fontset_face): New arg FACE. Return face ID, not face.
19199 Complete re-write to handle new fontset structure. Change caller.
19200 (free_face_fontset): Use ASET istead of AREF (X) = Y.
19201 (face_for_char): Don't call lookup_face.
19202 (make_fontset_for_ascii_face): New arg FACE.
19203 (fs_load_font): New arg CHARSET_ID. Don't check
19204 Vfont_encoding_alist here.
19205 (find_font_encoding): New function.
19206 (list_fontsets): Use STRINGP, not ! NILP.
19207 (accumulate_script_ranges): New function.
19208 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
19209 re-written to handle new fontset structure.
19210 (Ffontset_font): Return a copy of element.
19211 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
19212 docstring of font-encoding-alist.
19213
19214 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
19215 (Fset_fotset_font): Fix arguments to 5.
19216
19217 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
19218
19219 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
19220 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
19221 (highlight_trailing_whitespace): Adjust for the change of
19222 lookup_named_face.
19223
19224 * xfaces.c: Include charset.h.
19225 (load_face_font): Delete argument C. Change caller.
19226 (generate_ascii_font_name): Rename from generate_ascii_font.
19227 (font_name_registry): New function.
19228 (cache_face): Store ascii faces before non-ascii faces in buckets.
19229 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
19230 Lookup only ascii faces.
19231 (lookup_non_ascii_face): New function.
19232 (lookup_named_face): Delete argument C. Change caller.
19233 (lookup_derived_face): Delete argument C. Change caller.
19234 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
19235 a string, just call font_list with it.
19236 (choose_face_font): Delete arguments FACE and C. New arg
19237 FONT_SPEC. Change caller.
19238 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
19239 Change caller.
19240 (realize_non_ascii_face): New function.
19241 (realize_x_face): Call load_face_font here.
19242 (realize_tty_face): Delete argument C. Change caller.
19243 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
19244 get a face ID.
19245 (dump_realized_face): Don't print charset of FACE.
19246
19247 * xfns.c (x_set_font): Always call x_new_fontset and
19248 store_frame_parameter.
19249 (Fx_create_frame): Call x_new_fontset, not x_new_font.
19250 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
19251
19252 * xterm.h (x_get_font_repertory): Extern it.
19253
19254 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
19255 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
19256 it->multibyte_p is zero.
19257 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
19258 (x_new_fontset): If FONTSETNAME doesn't match any existing
19259 fontsets, create a new one.
19260 (x_get_font_repertory): New function.
19261
19262 2008-02-01 Kenichi Handa <handa@m17n.org>
19263
19264 * coding.c (Ffind_coding_systems_region_internal): Detect an
19265 ASCII only string correctly.
19266
19267 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
19268 version is 0.
19269
19270 2008-02-01 Kenichi Handa <handa@m17n.org>
19271
19272 * lread.c: Include "coding.h".
19273 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
19274 (load_each_byte, unread_char): New variables.
19275 (readchar_backlog): Delete.
19276 (readchar): Return a character unless load_each_byte is nonzero.
19277 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
19278 cons. If unread_char is not -1, simply return it.
19279 (unreadchar): Handle the case that readcharfun is
19280 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
19281 (read_multibyte): Delete.
19282 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
19283 (read_emacs_mule_char): New functions.
19284 (Fload): Even if the file doesn't have the extension ".elc", if
19285 safe_to_load_p returns a positive version number, assume that the
19286 file contains bytecompiled code. If the version is less than 22,
19287 load the file while decoding multibyte sequences by emacs-mule.
19288 (readevalloop): Don't use readchar_backlog.
19289 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
19290 (Fread_from_string): Pay attention to the case that STREAM is a cons.
19291 (read_escape): Delete the arg BYTEREP.
19292 (read1): Set load_each_byte to 1 temporarily while handling
19293 #@NUMBER. Don't call read_multibyte.
19294 (read_vector): Call Fread with a cons. If readcharfun is
19295 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
19296 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
19297 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
19298 and Qload_force_doc_strings.
19299
19300 2008-02-01 Kenichi Handa <handa@m17n.org>
19301
19302 * xdisp.c (face_before_or_after_it_pos): Call
19303 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
19304
19305 2008-02-01 Kenichi Handa <handa@m17n.org>
19306
19307 * character.h (TRAILING_CODE_P): New macro.
19308 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
19309 (string_char_with_unification): Fix prototype.
19310 (Vscript_alist): Extern it.
19311
19312 * character.c (Vscript_alist): New variable.
19313 (string_char_with_unification, str_as_unibyte)
19314 (string_escape_byte8): Add `const' to local variables.
19315 (syms_of_character): Declare script-alist as a Lisp variable.
19316
19317 * charset.h (Vcharset_ordered_list): Extern it.
19318 (charset_ordered_list_tick): Extern it.
19319 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
19320 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
19321 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
19322 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
19323 (Funify_charset): Adjust for the change of Funify_charset.
19324
19325 * charset.c (charset_ordered_list_tick): New variable.
19326 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
19327 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
19328 deunify intead of unify a charset.
19329 (string_xstring_p): Add `const' to local variables.
19330 (find_charsets_in_text): Add `const' to arguments and local variables.
19331 (encode_char): Adjust for the change of Funify_charset. Fix
19332 detecting of invalid code.
19333 (Fset_charset_priority): Increment charset_ordered_list_tick.
19334 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
19335 and TO_CODE.
19336
19337 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
19338 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
19339 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
19340 (decode_coding_ccl, consume_chars)
19341 (Ffind_coding_systems_region_internal)
19342 (Fcheck_coding_systems_region): Add `const' to local variables.
19343
19344 * print.c (print_object): Use octal form for printing the
19345 contents of a bool vector.
19346
19347 2008-02-01 Dave Love <fx@gnu.org>
19348
19349 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
19350 <version == 20>: Refuse to load.
19351
19352 2008-02-01 Dave Love <fx@gnu.org>
19353
19354 * fns.c: Move coding.h.
19355 (Qcodeset, Qdays, Qmonths): New.
19356 (concat): Use CHARACTERP instead of INTEGERP.
19357 (Flocale_codeset): Delete.
19358 (Flanginfo): New function.
19359 (syms_of_fns): Change accordingly.
19360
19361 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
19362
19363 2008-02-01 Dave Love <fx@gnu.org>
19364
19365 * casetab.c (init_casetab_once, init_casetab_once): Fix
19366 CHAR_TABLE_SET call.
19367
19368 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
19369
19370 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
19371
19372 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
19373 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
19374 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
19375
19376 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
19377
19378 * coding.c (ENCODE_DESIGNATION, decode_eol)
19379 (make_conversion_work_buffer, code_conversion_restore)
19380 (Fdefine_coding_system_internal): Convert Lisp types.
19381 (code_conversion_restore): Use EQ, not ==.
19382 (Fencode_coding_string): Fix code_convert_string call.
19383
19384 * coding.h (code_convert_region): Fix prototype.
19385
19386 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
19387
19388 * fontset.c (fontset_ref, fontset_set, fs_load_font)
19389 (Ffontset_info): Convert Lisp types.
19390
19391 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
19392
19393 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
19394
19395 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
19396
19397 * chartab.c: Include "...h", not <...h> in some cases.
19398
19399 * callproc.c (Fcall_process): Remove unused variables.
19400
19401 2008-02-01 Dave Love <fx@gnu.org>
19402
19403 * coding.c (Fset_coding_system_priority): Allow null arg list.
19404
19405 2008-02-01 Dave Love <fx@gnu.org>
19406
19407 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
19408 (Fself_insert_and_exit): Use CHARACTERP.
19409
19410 * callproc.c (Fcall_process): Remove unused vars.
19411
19412 * xterm.c (XTread_socket): Add extra dead keysyms.
19413
19414 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
19415
19416 * dispextern.h: Remove prototypes for redraw_frame,
19417 redraw_garbaged_frames.
19418
19419 * cmds.c (Fself_insert_command): Use CHARACTERP.
19420
19421 * chartab.c (make_sub_char_table): Remove unused var.
19422 (Fset_char_table_default, Fmap_char_table): Doc fix.
19423
19424 * keymap.c (access_keymap): Remove generic char code.
19425 (push_key_description): Use CHARACTERP.
19426
19427 2008-02-01 Dave Love <fx@gnu.org>
19428
19429 * charset.c: Doc fixes.
19430 (Funify_charset): Extra checking.
19431
19432 2008-02-01 Dave Love <fx@gnu.org>
19433
19434 * lread.c: Remove some unused variables.
19435 (safe_to_load_p): If safe, return the magic number version byte.
19436 (Fload): Maybe use load-with-code-conversion.
19437
19438 2008-02-01 Kenichi Handa <handa@m17n.org>
19439
19440 * category.c (Fmodify_category_entry): Don't modify the contents
19441 of category_set for characters out of the range. Avoid
19442 unnecessary modification.
19443
19444 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
19445 Vchar_unify_table. The default value of the table is now nil.
19446
19447 * character.c (syms_of_character): Setup Vchar_width_table for
19448 eight-bit-control and raw-byte chars.
19449
19450 * charset.h (enum define_charset_arg_index): Delete
19451 charset_arg_parents and add charset_arg_subset and
19452 charset_arg_superset.
19453 (enum charset_attr_index): Delete charset_parents and add
19454 charset_subset and charset_superset.
19455 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
19456 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
19457 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
19458 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
19459 (CHARSET_SUPERSET): New macros.
19460 (charset_work): Extern it.
19461 (ENCODE_CHAR): Use charset_work.
19462 (CHAR_CHARSET_P): Adjust for the change of encoder format.
19463 (map_charset_chars): Extern it.
19464
19465 * charset.c (load_charset_map): Set the default value of encoder
19466 and deunifier char-tables to nil.
19467 (map_charset_chars): Change argument. Change callers. Use
19468 map_char_table_for_charset instead of map_char_table.
19469 (Fmap_charset_chars): New optional args from_code and to_code.
19470 (Fdefine_charset_internal): Adjust for the change of
19471 `define-charset' (:parents -> :subset or :superset).
19472 (charset_work): New variable.
19473 (encode_char, syms_of_charset): Adjust for the change of
19474 Fdefine_charset_internal.
19475 (Ffind_charset_string): Setup the vector `charsets' correctly.
19476
19477 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
19478 the previous change.
19479 (char_table_ref_and_range): Adjust for the above change.
19480 (map_sub_char_table_for_charset): New function.
19481 (map_char_table_for_charset): New function.
19482
19483 * keymap.c (describe_vector): Handle a char-table directly here.
19484 (describe_char_table): Delete.
19485
19486 * lisp.h (map_charset_chars): Delete.
19487
19488 2008-02-01 Dave Love <fx@gnu.org>
19489
19490 * fns.c (count_combining): Comment out (unused).
19491 (Flocale_codeset): New.
19492 (syms_of_fns): Defsubr it.
19493
19494 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
19495 (size_t): Remove.
19496
19497 2008-02-01 Dave Love <fx@gnu.org>
19498
19499 * Makefile.in (chartab.o): Depend on charset.h.
19500
19501 2008-02-01 Kenichi Handa <handa@m17n.org>
19502
19503 * character.c (syms_of_character): Set the default value of
19504 Vprintable_chars to Qnil.
19505
19506 2008-02-01 Dave Love <fx@gnu.org>
19507
19508 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
19509
19510 2008-02-01 Kenichi Handa <handa@m17n.org>
19511
19512 * charset.c (load_charset_map): Handle the case that from < to
19513 correctly.
19514
19515 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
19516 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
19517 Pay attention to raw-8-bit chars.
19518
19519 2008-02-01 Kenichi Handa <handa@m17n.org>
19520
19521 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
19522 It is not bytecompiled now.
19523
19524 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
19525 (charset_jisx0208): New variables.
19526 (Fdefine_charset_internal): Setup them if appropriate.
19527 (init_charset_once): Initialize them to -1.
19528
19529 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
19530 (charset_jisx0208): Extern them.
19531
19532 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
19533 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
19534 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
19535 (setup_iso_safe_charsets): Fix arguments to Fassq.
19536 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
19537 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
19538 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
19539 (encode_coding_iso_2022): Change the 1st arg to
19540 ENCODE_ISO_CHARACTER to a variable.
19541
19542 2008-02-01 Kenichi Handa <handa@m17n.org>
19543
19544 * charset.h (enum define_charset_arg_index): New enums
19545 charset_arg_min_code and charset_arg_max_code.
19546 (struct charset): New member char_index_offset.
19547
19548 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
19549 Take charset->char_index_offset into account.
19550 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
19551 args[charset_arg_max_code]. Setup charset.char_index_offset.
19552 (syms_of_charset): Fix args to Fdefine_charset_internal.
19553
19554 2008-02-01 Dave Love <fx@gnu.org>
19555
19556 * coding.c (decode_coding_utf_8): Reject overlong sequences.
19557
19558 2008-02-01 Dave Love <fx@gnu.org>
19559
19560 * coding.c: Doc fixes.
19561 (Fcoding_system_aliases): Fix return value.
19562 (Qmac): Remove (duplicated) definition.
19563
19564 2008-02-01 Dave Love <fx@gnu.org>
19565
19566 * charset.c (Fcharset_priority_list, Fset_charset_priority):
19567 New functions.
19568
19569 * character.c (Fstring): Doc fix.
19570
19571 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
19572
19573 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
19574 (font-encoding-alist): Doc fix.
19575
19576 2008-02-01 Dave Love <fx@gnu.org>
19577
19578 * term.c (costs_set): Declare static, non-initialized for pcc.
19579 (encode_terminal_code): Remove unused var.
19580
19581 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
19582 for K&R.
19583
19584 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
19585
19586 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
19587 (suffixes): Move out of make_subsidiaries for K&R.
19588
19589 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
19590
19591 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
19592
19593 2008-02-01 Dave Love <fx@gnu.org>
19594
19595 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
19596
19597 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
19598
19599 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
19600
19601 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
19602
19603 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
19604
19605 2008-02-01 Kenichi Handa <handa@m17n.org>
19606
19607 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
19608 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
19609
19610 2008-02-01 Kenichi Handa <handa@m17n.org>
19611
19612 * coding.c (decode_coding_charset): Adjust for the change of
19613 Fdefine_coding_system_internal.
19614 (Fdefine_coding_system_internal): For a coding system of
19615 `charset' type, store a list of charset IDs in
19616 `charset_attr_charset_valids' element of coding attributes.
19617
19618 2008-02-01 Kenichi Handa <handa@m17n.org>
19619
19620 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
19621 (emacs_mule_char): New arg src. Delete arg `composition'. Change
19622 caller. Handle 2-byte and 3-byte charsets correctly.
19623 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
19624 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
19625 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
19626 (DECODE_EMACS_MULE_21_COMPOSITION): Call
19627 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
19628 sequence.
19629 (decode_coding_emacs_mule): Handle composition correctly. Rewind
19630 `src' and `consumed_chars' correctly before calling emacs_mule_char.
19631 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
19632 and alt&rule composition.
19633 (decode_coding_iso_2022): Handle composition correctly.
19634 (init_coding_once): Setup emacs_mule_bytes for private charsets.
19635
19636 * charset.c (Fdefine_charset_internal): Fix bug for the case of
19637 re-defining a charset. If the charset has :emacs-mule-id, setup
19638 emacs_mule_bytes.
19639 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
19640
19641 2008-02-01 Kenichi Handa <handa@m17n.org>
19642
19643 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
19644 (encode_coding_big5, encode_coding_charset): If coding requires safe
19645 encoding, produce a character specified by
19646 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
19647
19648 2008-02-01 Dave Love <fx@gnu.org>
19649
19650 * xterm.c (XSetIMValues): Declare.
19651
19652 * process.c: Conditionally include sys/wait.h, pty.h.
19653
19654 * print.c (print_object): Fix print format for 64-bit systems.
19655
19656 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
19657
19658 * buffer.c (emacs_strerror): Declare.
19659
19660 * fontset.c (Fclear_face_cache): Declare.
19661 (accumulate_font_info): Comment-out (unused).
19662 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
19663 variables.
19664
19665 * character.h (string_escape_byte8): Declare.
19666
19667 * charset.c (load_charset_map, load_charset_map_from_file): Remove
19668 unused vars.
19669 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
19670 (Fmap_charset_chars): Doc fix.
19671
19672 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
19673 (Fset_coding_system_priority, Fset_coding_system_priority)
19674 (Fdefine_coding_system_internal): Doc fix.
19675
19676 2008-02-01 Dave Love <fx@gnu.org>
19677
19678 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
19679
19680 2008-02-01 Kenichi Handa <handa@m17n.org>
19681
19682 * character.c (string_escape_byte8): Make multibyte string with
19683 correct size.
19684
19685 * charset.c (Fmake_char): Delete unnecessary code.
19686
19687 2008-02-01 Kenichi Handa <handa@m17n.org>
19688
19689 * xfns.c (x_encode_text): Allocate coding.destination here, and
19690 call encode_coding_object with dst_object Qnil.
19691
19692 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
19693 multibyte form correctly.
19694
19695 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
19696 against Vfont_encoding_alist.
19697
19698 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
19699 handling of charset list.
19700 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
19701 (decode_coding_object): Move point to coding->dst_pos before
19702 calling post-read-conversion function.
19703 (encode_coding_object): Give correct arguments to
19704 pre-write-conversion. Ignore the return value of
19705 pre-write-conversion function. Pay attention to the case that
19706 pre-write-conversion changes the current buffer. If dst_object is
19707 Qt, even if coding->src_bytes is zero, allocate at least one byte
19708 to coding->destination.
19709
19710 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
19711
19712 * charset.c (Fmake_char): Make it more backward compatible.
19713 (Fmap_charset_chars): Fix docstring.
19714
19715 2008-02-01 Dave Love <fx@gnu.org>
19716
19717 * coding.c: Doc fixes.
19718 (Fdefine_coding_system_alias): Use names, not symbols, in
19719 coding-system-alist.
19720
19721 2008-02-01 Kenichi Handa <handa@m17n.org>
19722
19723 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
19724 of calling free_realized_face.
19725
19726 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
19727
19728 * charset.c (read_hex): Don't treat SPC as a comment starter.
19729 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
19730 (Fdecode_char): Fix typo.
19731
19732 2008-02-01 Kenichi Handa <handa@m17n.org>
19733
19734 * charset.h (struct charset): New member `code_space_mask'.
19735
19736 * coding.c (coding_set_source): Delete the local variable beg_byte.
19737 (encode_coding_charset, Fdefine_coding_system_internal):
19738 Delete the local variable charset.
19739 (Fdefine_coding_system_internal): Setup
19740 attrs[coding_attr_charset_valids] correctly.
19741
19742 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
19743 member to check if CODE is valid or not.
19744 (Fdefine_charset_internal): Initialize `code_space_mask' member.
19745 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
19746 is within the range of charset->min_code and carset->max_code.
19747
19748 2008-02-01 Dave Love <fx@gnu.org>
19749
19750 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
19751
19752 * dispextern.h (generate_ascii_font): Fix return type.
19753
19754 * xfaces.c (generate_ascii_font): Fix arg declaration.
19755
19756 * coding.c (coding_inherit_eol_type)
19757 (Fset_terminal_coding_system_internal)
19758 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
19759
19760 2008-02-01 Kenichi Handa <handa@m17n.org>
19761
19762 * coding.c (decode_coding_charset, encode_coding_charset): Handle
19763 multiple charsets correctly.
19764
19765 2008-02-01 Kenichi Handa <handa@m17n.org>
19766
19767 * search.c (boyer_moore): Fix handling of multibyte character
19768 translation.
19769
19770 * xdisp.c (display_mode_element): When the variable `elt' is
19771 changed, update `this' and `lisp_string'.
19772
19773 2008-02-01 Kenichi Handa <handa@m17n.org>
19774
19775 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
19776
19777 * callproc.c (Fcall_process): Be sure to give the current buffer
19778 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
19779
19780 * charset.c (struct charset_map_entries): New struct.
19781 (load_charset_map): Rename from parse_charset_map. New args
19782 entries and n_entries. Change caller.
19783 (load_charset_map_from_file): Rename from load_charset_map.
19784 Change caller. New arg control_flag. Call load_charset_map at
19785 the tail.
19786 (load_charset_map_from_vector): New function.
19787 (Fdefine_charset_internal): Setup charset.compact_codes_p.
19788 (encode_char): If the charset is compact, change a character index
19789 to a code point.
19790
19791 * coding.c (coding_alloc_by_making_gap): Check the case that the
19792 source and destination are the same correctly.
19793 (decode_coding_raw_text): Set coding->consumed_char and
19794 coding->consumed to 0.
19795 (produce_chars): If coding->chars_at_source is nonzero, update
19796 coding->consumed_char and coding->consumed before calling
19797 alloc_destination.
19798 (Fdefine_coding_system_alias): Register ALIAS in
19799 Vcoding_system_alist.
19800 (syms_of_coding): Define `no-conversion' coding system at the tail.
19801
19802 * fileio.c (Finsert_file_contents): Set coding_system instead of
19803 val. If the current buffer is multibyte, always call
19804 decode_coding_gap.
19805
19806 * xfaces.c (try_font_list): Give higher priority to fontset's
19807 family than face's family.
19808
19809 2008-02-01 Kenichi Handa <handa@m17n.org>
19810
19811 * callproc.c (Fcall_process): Be sure to give the current buffer
19812 to decode_coding_c_string.
19813
19814 * xfaces.c (try_font_list): Give a family specified in a fontset
19815 higher priority than a family specified in a face.
19816
19817 2008-02-01 Kenichi Handa <handa@m17n.org>
19818
19819 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
19820 Fix arguments to insert_from_buffer.
19821
19822 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
19823
19824 2008-02-01 Kenichi Handa <handa@m17n.org>
19825
19826 * coding.c (produce_chars): Set the variable `multibytep' correctly.
19827 (decode_coding_gap): Set coding->dst_multibyte correctly.
19828
19829 2008-02-01 Kenichi Handa <handa@m17n.org>
19830
19831 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
19832 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
19833 (encode_coding_utf_16): Substitute coding->default_char for
19834 non-Unicode characters.
19835 (decode_coding): Don't call record_insert here.
19836 (setup_coding_system): Initialize `surrogate' of
19837 coding->spec.utf_16 to 0.
19838 (EMIT_ONE_BYTE): Fix for multibyte case.
19839
19840 * insdel.c (insert_from_gap): Call record_insert.
19841
19842 2008-02-01 Kenichi Handa <handa@m17n.org>
19843
19844 * casefiddle.c (casify_region): Fix multibyte case.
19845
19846 * character.c (c_string_width): Add return type `int'.
19847 (char_string_with_unification): Delete arg ADVANCED.
19848
19849 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
19850 (CHAR_STRING): Adjust for the change of char_string_with_unification.
19851 (CHAR_STRING_ADVANCE): Make it do-while statement.
19852
19853 * chartab.c (sub_char_table_set_range): Optimize for the case
19854 DEPTH == 3. Add workaround code for a GCC optimization bug.
19855
19856 * charset.c (parse_charset_map): Remove an unused variable.
19857
19858 * coding.c: Delete unused variables.
19859
19860 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
19861 earlier. If inserted is zero and the coding system doesn't
19862 require flushing, don't call decode_coding_gap.
19863
19864 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
19865
19866 2008-02-01 Kenichi Handa <handa@m17n.org>
19867
19868 The following changes are for using Unicode as an internal
19869 character model, and use UTF-8 format for buffer/string
19870 representation.
19871
19872 * .gdbinit (xchartable): Adjust for the change of char table structure.
19873 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
19874
19875 * Makefile.in (obj): Add character.o and chartab.o.
19876 (lisp, shortlisp): Remove utf-8.elc.
19877 (*.o): For many files, change dependency on charset.h to
19878 character.h, and add dependency on character.h.
19879 (character.o, chartab.o): New targets.
19880
19881 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
19882 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
19883 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
19884 of "charset.h".
19885
19886 * dired.c, filelock.c: Include "character.h".
19887
19888 * alloc.c: Include "character.h" instead of "charset.h".
19889 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
19890 (syms_of_alloc): Remove defsubr for Smake_char_table.
19891
19892 * buffer.c: Include "character.h" instead of "charset.h", don't
19893 include "coding.h".
19894 (Fset_buffer_multibyte): Adjust for UTF-8.
19895
19896 * buffer.h: EXFUN Fbuffer_live_p.
19897
19898 * callproc.c: Include "character.h" instead of "charset.h".
19899 (Fcall_process): Big change for the new code-conversion APIs.
19900
19901 * casetab.c: Include "character.h" instead of "charset.h".
19902 (set_canon, set_identity, shuffle): Adjust for the new
19903 map_char_table spec.
19904 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
19905 accessing the char table structure.
19906
19907 * chartab.c: New file that implements char table.
19908
19909 * category.c: Include "character.h".
19910 (copy_category_entry): New function.
19911 (copy_category_table): Call map_char_table and copy_category_entry.
19912 (Fmake_category_table): Initialize all top-level slots.
19913 (char_category_set): New function.
19914 (modify_lower_category_set): Delete.
19915 (Fmodify_category_entry): Call char_table_ref_and_range.
19916
19917 * category.h (CATEGORY_SET): Just call char_category_set.
19918
19919 * ccl.c: Include "character.h".
19920 (Qccl, Qcclp): New variables.
19921 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
19922 it's less than 256.
19923 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
19924 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
19925 and DST type.
19926 (ccl_driver): Change types of argument, adjust code accordingly.
19927 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
19928 ccl_driver.
19929 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
19930
19931 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
19932 New members src_multibyte, dst_multibyte, consumed, and produced.
19933 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
19934 (CODING_SPEC_CCL_PROGRAM): New macro.
19935 (ccl_driver): Update prototype.
19936 (Qccl, Qcclp, Fccl_program_p): Extern them.
19937 (CHECK_CCL_PROGRAM): New macro.
19938
19939 * character.c, character.h, chartab.c: New files.
19940
19941 * charset.c: Mostly re-written. Move character and multibyte sequence
19942 handling codes to character.c.
19943
19944 * charset.h: Mostly re-written. Move character and multibyte sequence
19945 handling codes to character.h.
19946
19947 * coding.c, coding.h: Mostly re-written.
19948
19949 * composite.c: Include "character.h" instead of "charset.h".
19950 (CHAR_WIDTH): Move to character.h.
19951 (HASH_KEY, HASH_VALUE): Delete.
19952
19953 * composite.h (enum composition_method): Change order of enumeration
19954 symbols.
19955
19956 * data.c: Include "character.h" instead of "charset.h".
19957 (Faref): Call CHAR_TABLE_REF for a char table.
19958 (Faset): Call CHAR_TABLE_SET for a char table.
19959
19960 * dispextern.h (free_realized_face, check_face_attribytes)
19961 (generate_ascii_font): Extern them.
19962 (free_realized_multibyte_face): Delete extern.
19963
19964 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
19965 table structure.
19966
19967 * editfns.c: Include "character.h" instead of "charset.h".
19968 (Fchar_to_string): Always call CHAR_STRING.
19969
19970 * emacs.c (main): Call init_charset_once, init_charset,
19971 syms_of_chartab, and syms_of_character.
19972
19973 * fileio.c: Include "character.h" instead of "charset.h".
19974 (Finsert_file_contents): Big change for the new code-conversion API.
19975 (choose_write_coding_system, Fwrite_region): Likewise.
19976 (build_annotations_2): Delete.
19977 (e_write): Big change for the new code-conversion API.
19978
19979 * fns.c: Include "character.h" instead of "charset.h".
19980 (copy_sub_char_table): Move to chartab.c.
19981 (Fcopy_sequence): Call copy_char_table for a char table.
19982 (concat): Delete codes calling count_multibyte.
19983 (string_char_to_byte, string_byte_to_char): Adjust for the new
19984 multibyte form.
19985 (internal_equal): Adjust for the change of char table structure.
19986 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
19987 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
19988 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
19989 (char_table_translate, optimize_sub_char_table)
19990 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
19991 chartab.c.
19992 (char_table_ref_and_index): Delete.
19993 (HASH_KEY, HASH_VALUE): Move to lisp.h.
19994 (Fmd5): Call preferred_coding_system instead of accessing
19995 Vcoding_category_list. Adjust for the new code-conversion API.
19996 (syms_of_fns): Move defsubr for char table related functions to
19997 chartab.c.
19998
19999 * fontset.c: Mostly re-written.
20000
20001 * fontset.h (struct font_info): Change type of the member encoding_type.
20002 (enum FONT_SPEC_INDEX): New enum.
20003 (fontset_font_pattern, fs_load_font): Update prototype.
20004 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
20005
20006 * indent.c: Include "character.h" instead of "charset.h".
20007 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
20008
20009 * insdel.c: Include "character.h" instead of "charset.h".
20010 (copy_text): Don't refer to Vnonascii_translation_table.
20011 (insert_from_gap): New function.
20012
20013 * keyboard.c: Include "character.h" instead of "charset.h".
20014 (command_loop_1): Never call direct_output_forward_char before
20015 a non-ASCII character.
20016 (read_char): If Vkeyboard_translate_table is a char table, always
20017 translate a character.
20018
20019 * keymap.c: Include "character.h".
20020 (store_in_keymap): Handle the case that IDX is a cons.
20021 (Fdefine_key): Handle the case that KEY is a cons and the car part
20022 is also a cons (range).
20023 (push_key_description): Adjust for the new character code.
20024 (describe_vector): Call describe_char_table for a char table.
20025 (describe_char_table): New function.
20026
20027 * keymap.h (describe_char_table): Extern it.
20028
20029 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
20030 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
20031 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
20032 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
20033 Delete.
20034 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
20035 structure.
20036 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
20037 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
20038 (CHARTAB_SIZE_BITS_3): New macros.
20039 (chartab_size): Extern it.
20040 (struct Lisp_Char_Table): Re-design.
20041 (struct Lisp_Sub_Char_Table): New structure.
20042 (HASH_KEY, HASH_VALUE): Move from fns.c.
20043 (CHARACTERBITS): Define as 22.
20044 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
20045 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
20046 (GC_SUB_CHAR_TABLE_P): New macro.
20047 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
20048 (code_convert_string_norecord): Deleted extern.
20049 (init_character_once, syms_of_character, init_charset)
20050 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
20051
20052 * lread.c: Include "character.h".
20053 (read_multibyte): New arg NBYTES.
20054 (read_escape): Change the meaning of returned *BYTEREP.
20055 (to_multibyte): Delete.
20056 (read1): Adjust the handling of char table and string.
20057
20058 * print.c: Include "character.h" instead of "charset.h".
20059 (print_string): Convert 8-bit raw bytes to octal form by
20060 string_escape_byte8.
20061 (print_object): Adjust for the new multibyte form. Print 8-bit
20062 raw bytes always in octal form. Handle sub char table correctly.
20063
20064 * process.c: Include "character.h" instead of "charset.h".
20065 (read_process_output, send_process): Adjust for the new
20066 code-conversion API.
20067
20068 * puresize.h (BASE_PURESIZE): Increase.
20069
20070 * regex.c: Include "character.h" instead of "charset.h".
20071 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
20072 (regex_compile): Accept a range whose starting and ending
20073 character have different leading bytes.
20074 (analyse_first): Adjust for the above change.
20075
20076 * search.c: Include "character.h" instead of "charset.h".
20077 (search_buffer, boyer_moore): Adjust for the new multibyte form.
20078 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
20079
20080 * syntax.c: Include "character.h" instead of "charset.h".
20081 (syntax_parent_lookup): Delete.
20082 (Fmodify_syntax_entry): Accept a cons as CHAR.
20083 (skip_chars): Adjust for the new multibyte form.
20084 (init_syntax_once): Call char_table_set_range instead of directly
20085 accessing the structure of a char table.
20086
20087 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
20088 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
20089 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
20090 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
20091
20092 * term.c: Include "buffer.h" and "character.h".
20093 (encode_terminal_code, write_glyphs): Adjust for the new
20094 code-conversion API.
20095 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
20096
20097 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
20098
20099 * xdisp.c: Include "character.h".
20100 (get_next_display_element): Adjust for the new multibyte form.
20101 (disp_char_vector): Adjust for the new char table structure.
20102 (decode_mode_spec_coding): Adjust for the new structure of
20103 coding system.
20104 (decode_mode_spec): Adjust for the new code-conversion API.
20105
20106 * xfaces.c: Include "character.h" instead of "charset.h".
20107 (load_face_font): Adjust for the change of choose_face_font and
20108 FS_LOAD_FONT.
20109 (generate_ascii_font): New function.
20110 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
20111 (set_font_frame_param): Adjust for the change of choose_face_font.
20112 (free_realized_face): Make it public.
20113 (free_realized_faces_for_fontset): Rename from
20114 free_realized_multibyte_face. Free also faces realized for ASCII.
20115 (choose_face_font): Change arguments. Adjust for the change of
20116 fontset_font_pattern and FS_LOAD_FONT.
20117
20118 * xfns.c: Include "character.h".
20119 (x_encode_text): Adjust for the new code-conversion API.
20120
20121 * xselect.c: Don't include "charset.h".
20122 (selection_data_to_lisp_data): Adjust for the new code conversion API.
20123
20124 * xterm.c: Include "character.h".
20125 (x_encode_char): New argument CHARSET. Change caller.
20126 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
20127 Call ENCODE_CHAR instead of SPLIT_CHAR.
20128 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
20129 CHAR_WIDTH instead of CHARSET_WIDTH.
20130 (XTread_socket): Adjust for the new code-conversion API.
20131 (x_new_font): Adjust for the change of FS_LOAD_FONT.
20132 (x_load_font): Adjust for the change of struct font.
20133
20134 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
20135
20136 * xfaces.c (face_at_buffer_position): Remove unused vars.
20137
20138 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20139
20140 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
20141 Fix overflow checking.
20142
20143 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20144
20145 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
20146 Cancel previous change.
20147
20148 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
20149
20150 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
20151 ccl->eight_bit_control. Fix check for buffer overflow.
20152 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
20153 (ccl_driver): Initialize extra_bytes to 0.
20154
20155 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
20156
20157 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
20158 return it ORed with ctrl_modifier.
20159
20160 2008-01-29 Miles Bader <miles@gnu.org>
20161
20162 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
20163
20164 2008-01-28 Jason Rumney <jasonr@gnu.org>
20165
20166 * w32.c (stat): Don't double check for networked drive.
20167
20168 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
20169
20170 * window.c (run_window_configuration_change_hook): New function.
20171 Code extracted from set_window_buffer. Set the selected frame.
20172 (set_window_buffer): Use it.
20173 * window.h (run_window_configuration_change_hook): Declare.
20174 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
20175
20176 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
20177
20178 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
20179
20180 * Makefile.in: Remove references to unused macros.
20181
20182 2008-01-26 Eli Zaretskii <eliz@gnu.org>
20183
20184 * w32.c (g_b_init_get_sid_sub_authority)
20185 (g_b_init_get_sid_sub_authority_count): New static variables.
20186 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
20187 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
20188 (init_user_info): Use them to retrieve uid and gid.
20189 Use 500/513, the Windows defaults, as Administrator's uid/gid.
20190 (fstat): Use pw_uid and pw_gid from the_passwd structure for
20191 st_uid and st_gid of the file.
20192
20193 2008-01-26 Jason Rumney <jasonr@gnu.org>
20194
20195 * w32.c (logon_network_drive): New function.
20196 (stat): Use it.
20197
20198 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
20199
20200 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
20201 invisible text covered with an ellipsis.
20202
20203 2008-01-25 Richard Stallman <rms@gnu.org>
20204
20205 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
20206 jump back to beginning. Move some other initializations after that.
20207 (Qwindow_text_change_functions, Vwindow_text_change_functions):
20208 New variables.
20209 (syms_of_xdisp): Init them.
20210
20211 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
20212
20213 * buffer.c (reset_buffer_local_variables):
20214 Implement `permanent-local-hook'.
20215 (Qpermanent_local_hook): New variable.
20216 (syms_of_buffer): Init and staticpro it.
20217
20218 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
20219
20220 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
20221
20222 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
20223
20224 * fns.c (Fclrhash): Return TABLE.
20225
20226 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20227
20228 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
20229 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
20230 is set even without positional changes.
20231 (x_scroll_bar_clear): Set bar->redraw_needed_p.
20232
20233 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
20234
20235 2008-01-23 Jason Rumney <jasonr@gnu.org>
20236
20237 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
20238
20239 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
20240 the unicode range available in MULE by locale-coding-system.
20241 Improve dbcs lead byte detection. Set event timestamp and modifiers
20242 earlier.
20243
20244 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20245
20246 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
20247 [MAC_OSX] (init_mac_osx_environment): Initialize it.
20248 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
20249 when used on child processes.
20250
20251 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
20252
20253 * dbusbind.c (Fdbus_method_return_internal): Rename from
20254 Fdbus_method_return.
20255 (Fdbus_unregister_object): Move to dbus.el.
20256 (Fdbus_call_method, Fdbus_method_return_internal)
20257 (Fdbus_send_signal): Improve debug messages.
20258
20259 2008-01-20 Martin Rudalics <rudalics@gmx.at>
20260
20261 * undo.c (undo_inhibit_record_point): New variable.
20262 (syms_of_undo): Initialize it.
20263 (record_point): Don't record point when undo_inhibit_record_point
20264 is set.
20265
20266 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
20267
20268 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
20269
20270 * xdisp.c (Qauto_hscroll_mode): New var.
20271 (syms_of_xdisp): Initialize it.
20272 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
20273 window's buffer.
20274 (hscroll_windows): Don't check automatic_hscrolling_p here.
20275
20276 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
20277 vscroll if we're setting window-buffer to the value it already has.
20278
20279 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
20280
20281 * m/intel386.h: Remove references to XENIX.
20282
20283 2008-01-17 Andreas Schwab <schwab@suse.de>
20284
20285 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
20286 instead of HAVE_X86_64_LIB64_DIR.
20287 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
20288
20289 2008-01-17 Glenn Morris <rgm@gnu.org>
20290
20291 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
20292 to HAVE_X86_64_LIB64_DIR.
20293
20294 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
20295
20296 * s/irix3-3.h:
20297 * s/irix4-0.h:
20298 * s/386-ix.h:
20299 * s/domain.h:
20300 * s/hpux9-x11r4.h:
20301 * s/hpux9shxr4.h: Remove files for systems no longer supported.
20302
20303 * sysdep.c: Remove code containing references to symbols defined
20304 by unsupported systems.
20305
20306 2008-01-16 Glenn Morris <rgm@gnu.org>
20307
20308 * coding.c (select-safe-coding-system-function): Doc fix.
20309
20310 2008-01-15 Glenn Morris <rgm@gnu.org>
20311
20312 * config.in: Revert 2008-01-13 change: this is a generated file.
20313
20314 2008-01-13 Tom Tromey <tromey@redhat.com>
20315
20316 * lisp.h: Fix typo.
20317
20318 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
20319
20320 * m/sequent-ptx.h:
20321 * m/sequent.h:
20322 * s/ptx.h:
20323 * s/ptx4-2.h:
20324 * s/ptx4.h: Remove files for systems no longer supported.
20325
20326 * callproc.c (Fcall_process): Fix previous change.
20327
20328 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
20329
20330 * unexsunos4.c: Remove file, system not supported anymore.
20331
20332 * m/mips.h:
20333 * m/intel386.h:
20334 * callproc.c:
20335 * config.in:
20336 * ecrt0.c:
20337 * emacs.c:
20338 * fileio.c:
20339 * frame.c:
20340 * getpagesize.h:
20341 * keyboard.c:
20342 * lread.c:
20343 * process.c:
20344 * puresize.h:
20345 * sysdep.c:
20346 * systty.h:
20347 * syswait.h:
20348 * unexec.c:
20349 * xdisp.c:
20350 * alloc.c: Remove code containing references to symbols defined by
20351 unsupported systems.
20352
20353 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
20354
20355 * coding.c (detect_coding_mask): Fix previous change.
20356
20357 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
20358
20359 * coding.c (detect_coding_iso2022): New arg
20360 latin_extra_code_state. Allow Latin extra codes only
20361 when *latin_extra_code_state is nonzero.
20362 (detect_coding_mask): If there is a NULL byte, detect the encoding
20363 as UTF-16 or binary. If Latin extra codes exist, detect the
20364 encoding as ISO-2022 only when there's no other proper encoding is
20365 found.
20366
20367 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20368
20369 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
20370 #ifdef MAC_OS.
20371
20372 2008-01-08 Richard Stallman <rms@gnu.org>
20373
20374 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
20375
20376 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
20377
20378 * keyboard.c (parse_menu_item): Don't enclose key bindings on
20379 menu bar in parentheses.
20380
20381 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
20382
20383 * m/7300.h:
20384 * m/acorn.h:
20385 * m/alliant-2800.h:
20386 * m/alliant.h:
20387 * m/alliant1.h:
20388 * m/alliant4.h:
20389 * m/altos.h:
20390 * m/amdahl.h:
20391 * m/apollo.h:
20392 * m/att3b.h:
20393 * m/aviion-intel.h:
20394 * m/aviion.h:
20395 * m/celerity.h:
20396 * m/clipper.h:
20397 * m/cnvrgnt.h:
20398 * m/convex.h:
20399 * m/cydra5.h:
20400 * m/delta88k.h:
20401 * m/dpx2.h:
20402 * m/dual.h:
20403 * m/elxsi.h:
20404 * m/f301.h:
20405 * m/gould-np1.h:
20406 * m/gould.h:
20407 * m/i860.h:
20408 * m/ibmps2-aix.h:
20409 * m/ibmrt-aix.h:
20410 * m/ibmrt.h:
20411 * m/irist.h:
20412 * m/is386.h:
20413 * m/isi-ov.h:
20414 * m/mega68.h:
20415 * m/mg1.h:
20416 * m/news-r6.h:
20417 * m/news-risc.h:
20418 * m/news.h:
20419 * m/nh3000.h:
20420 * m/nh4000.h:
20421 * m/ns16000.h:
20422 * m/ns32000.h:
20423 * m/nu.h:
20424 * m/orion.h:
20425 * m/orion105.h:
20426 * m/paragon.h:
20427 * m/pfa50.h:
20428 * m/plexus.h:
20429 * m/pyramid.h:
20430 * m/pyrmips.h:
20431 * m/sh3el.h:
20432 * m/sps7.h:
20433 * m/sr2k.h:
20434 * m/stride.h:
20435 * m/sun1.h:
20436 * m/sun2.h:
20437 * m/sun3-68881.h:
20438 * m/sun3-fpa.h:
20439 * m/sun3-soft.h:
20440 * m/sun3.h:
20441 * m/sun386.h:
20442 * m/symmetry.h:
20443 * m/tad68k.h:
20444 * m/tahoe.h:
20445 * m/targon31.h:
20446 * m/tek4300.h:
20447 * m/tekxd88.h:
20448 * m/tower32.h:
20449 * m/tower32v3.h:
20450 * m/ustation.h:
20451 * m/wicat.h:
20452 * m/xps100.h:
20453 * s/cxux.h:
20454 * s/cxux7.h:
20455 * s/dgux.h:
20456 * s/dgux4.h:
20457 * s/dgux5-4-3.h:
20458 * s/dgux5-4r2.h:
20459 * s/esix.h:
20460 * s/esix5r4.h:
20461 * s/hiuxmpp.h:
20462 * s/hiuxwe2.h:
20463 * s/iris3-5.h:
20464 * s/iris3-6.h:
20465 * s/isc2-2.h:
20466 * s/isc3-0.h:
20467 * s/isc4-0.h:
20468 * s/isc4-1.h:
20469 * s/newsos5.h:
20470 * s/newsos6.h:
20471 * s/osf1.h:
20472 * s/osf5-0.h:
20473 * s/riscix1-1.h:
20474 * s/riscix12.h:
20475 * s/sco4.h:
20476 * s/sco5.h:
20477 * s/sunos4-0.h:
20478 * s/sunos4-1.h:
20479 * s/sunos413.h:
20480 * s/sunos4shr.h:
20481 * s/umax.h:
20482 * s/unipl5-2.h:
20483 * s/xenix.h:
20484 * cxux-crt0.s:
20485 * unexapollo.c:
20486 * unexconvex.c:
20487 * unexenix.c:
20488 * unexsni.c: Remove files for systems no longer supported.
20489
20490 * m/intel386.h: Remove references to unsupported systems.
20491
20492 * w32.c (get_emacs_configuration): Remove reference to i860.
20493
20494 * sysdep.c: Remove dead code.
20495
20496 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
20497
20498 * s/rtu.h:
20499 * m/masscomp.h: Remove files. Platform is obsolete.
20500
20501 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
20502
20503 * dbusbind.c (Fdbus_method_return): New function.
20504 (xd_read_message): Add the serial number to the event.
20505 (Fdbus_register_method): Activate the function.
20506
20507 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
20508
20509 * keyboard.c (read_key_sequence): Fix typo.
20510
20511 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
20512
20513 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
20514 (xd_signature, xd_append_arg): Handle element type detection for
20515 empty arrays.
20516 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
20517 SDATA () calls; this must be solved more general.
20518 (Fdbus_register_signal): Use SBYTES instead of strlen.
20519
20520 2008-01-03 Magnus Henoch <magnus@zemdatav>
20521
20522 * dbusbind.c (xd_append_arg): Use unsigned char instead of
20523 unsigned int for byte values (necessary for big-endian platform).
20524 (Fdbus_call_method): Handle the case of no returned arguments.
20525
20526 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
20527
20528 * dbusbind.c (xd_read_message): Use non-static input_event struct.
20529
20530 2007-12-31 Magnus Henoch <mange@freemail.hu>
20531
20532 * dbusbind.c (xd_signature): Signature of variant is just "v".
20533
20534 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
20535
20536 * dbusbind.c: Fix several errors and compiler warnings.
20537 Reported by Tom Tromey <tromey@redhat.com>.
20538 (XD_ERROR, XD_DEBUG_MESSAGE)
20539 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
20540 (xd_append_arg): Part for basic D-Bus types rewritten.
20541 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
20542 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
20543 appropriate.
20544 (xd_read_message): Return Qnil. Don't signal an error; it is not
20545 useful during event reading.
20546 (Fdbus_register_signal): Signal an error if the check for
20547 FUNCTIONP fails.
20548 (Fdbus_register_method): New function. The implementation is not
20549 complete, the call of the function signals an error therefore.
20550 (Fdbus_unregister_object): New function, renamed from
20551 Fdbus_unregister_signal. The initial check signals an error, if
20552 the object is not well formed.
20553
20554 2007-12-30 Richard Stallman <rms@gnu.org>
20555
20556 * textprop.c (get_char_property_and_overlay):
20557 Signal error if POSITION is out of range in a buffer.
20558
20559 2007-12-29 Martin Rudalics <rudalics@gmx.at>
20560
20561 * w32fns.c (Fx_create_frame): Make copy of frame parameters
20562 because the original parameters are in pure storage now.
20563
20564 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20565
20566 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
20567
20568 2007-12-22 Eli Zaretskii <eliz@gnu.org>
20569
20570 * callint.c (syms_of_callint) <command-history>: Add reference to
20571 history-length in the doc string.
20572
20573 2007-12-17 Jason Rumney <jasonr@gnu.org>
20574
20575 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
20576 before passing as wParam.
20577
20578 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
20579
20580 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
20581 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
20582 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
20583 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
20584 as number.
20585 (Fdbus_call_method): Fix docstring.
20586
20587 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
20588
20589 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
20590 New macros.
20591 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
20592 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
20593 Simplify.
20594 (xd_signature): New function.
20595 (xd_append_arg): Compute also signatures. Major rewrite.
20596 (xd_retrieve_arg): Make debug messages friendly.
20597 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
20598 Check for signatures of arguments.
20599
20600 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
20601
20602 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
20603 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
20604 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
20605 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
20606 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
20607 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
20608 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
20609 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
20610 (xd_retrieve_value): Remove. Functionality included in ...
20611 (xd_append_arg): New function.
20612 (Fdbus_call_method, Fdbus_send_signal): Apply it.
20613
20614 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
20615
20616 * dbusbind.c (top): Include <stdio.h>.
20617 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
20618 dbus_message_new_method_call and dbus_message_new_signal.
20619 (Fdbus_register_signal): Rename unique_name to uname.
20620 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
20621 non-existing unique name. Fix typos in matching rule. Return an
20622 object which is useful in Fdbus_unregister_signal.
20623 (Fdbus_unregister_signal): Reimplementation, in order to remove
20624 only the corresponding entry.
20625 (Vdbus_registered_functions_table): Change the order of entries.
20626 Apply these changes in xd_read_message and Fdbus_register_signal.
20627
20628 2007-12-16 Andreas Schwab <schwab@suse.de>
20629
20630 * fileio.c (Finsert_file_contents): Fix overflow check to not
20631 depend on undefined integer overflow.
20632
20633 2007-12-14 Jason Rumney <jasonr@gnu.org>
20634
20635 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
20636 for characters above 127.
20637
20638 2007-12-13 Jason Rumney <jasonr@gnu.org>
20639
20640 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
20641 before dereferencing array.
20642 (lookup_vk_code): Remove zero comparison.
20643
20644 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
20645
20646 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
20647 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
20648 Use `unsigned int' instead of `uint'.
20649 (xd_read_message, Fdbus_register_signal): Split expressions into
20650 multiple lines before operators "&&" and "||", according to the
20651 GNU Coding Standards.
20652
20653 2007-12-14 Eli Zaretskii <eliz@gnu.org>
20654
20655 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
20656
20657 2007-12-12 Juri Linkov <juri@jurta.org>
20658
20659 * buffer.c (Frename_buffer): In interactive spec replace
20660 `read-buffer' with `read-string' that uses `buffer-name-history'
20661 as history, and the current buffer's name as default.
20662
20663 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
20664
20665 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
20666 manipulating the backtrace manually.
20667 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
20668 (struct backtrace, backtrace_list): Remove.
20669 (command_loop_1): Remove dead var `no_direct'.
20670
20671 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
20672 preserve non-built-in buffer-local variables.
20673 (Fkill_all_local_variables): Don't re-create&re-set permanent
20674 buffer-local variables.
20675
20676 2007-12-09 Juri Linkov <juri@jurta.org>
20677
20678 * buffer.c (Frename_buffer): Change interactive spec from "s" to
20679 Lisp code that uses `read-buffer' with current buffer as default.
20680
20681 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
20682
20683 * dbusbind.c (xd_read_message): Generate an event for every
20684 registered handler. There might be several handlers registered
20685 for the same signal.
20686 (Fdbus_register_signal): Don't overwrite a registration for the
20687 same signal. Add a new registration if handlers are different.
20688 (Vdbus_registered_functions_table): Rework doc string.
20689
20690 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
20691
20692 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
20693 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
20694 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
20695 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
20696 Unify argument lists.
20697 (xd_read_message, Fdbus_register_signal): Reorder and extend event
20698 arguments and hash table keys. Use unique name for service.
20699 (Fdbus_unregister_signal): Remove checks.
20700 (Vdbus_registered_functions_table): Fix doc string.
20701
20702 2007-12-05 Magnus Henoch <mange@freemail.hu>
20703
20704 * process.c (make_process): Initialize pty_flag to 0.
20705
20706 2007-12-05 Jason Rumney <jasonr@gnu.org>
20707
20708 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
20709 specified XBMs.
20710
20711 2007-12-05 Richard Stallman <rms@gnu.org>
20712
20713 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
20714
20715 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20716
20717 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
20718 New variable.
20719 (mac_try_close_socket) [MAC_OSX]: New function.
20720 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
20721 Update cfsockets_for_select. Replace invalid CFRunLoop source.
20722
20723 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
20724 Use mac_try_close_socket.
20725
20726 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20727
20728 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
20729 reloc_base.
20730 (copy_dysymtab): Compute relocation base here.
20731 (rebase_reloc_address) [__ppc64__]: New function.
20732 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
20733 changed.
20734
20735 2007-12-05 Jason Rumney <jasonr@gnu.org>
20736
20737 * w32proc.c (sys_spawnve): Quote args with wildcards.
20738
20739 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20740
20741 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
20742 __objc_* sections.
20743 (unrelocate) [_LP64]: Set relocation base to address of data segment.
20744
20745 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
20746
20747 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
20748 Move check for Vdbus_registered_functions_table to
20749 xd_read_queued_messages.
20750 (xd_read_queued_messages): Protect xd_read_message calls by
20751 internal_condition_case_1.
20752
20753 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
20754
20755 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
20756 Qdbus_system_bus and Qdbus_session_bus, respectively.
20757 (Vdbus_intern_symbols): Remove.
20758 (Vdbus_registered_functions_table): New hash table.
20759 (XD_SYMBOL_INTERN_SYMBOL): Remove.
20760 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
20761 Rewrite in order to manage registered functions by hash table
20762 Vdbus_registered_functions_table.
20763
20764 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
20765
20766 * xterm.c: Update URL to Window Manager Specification in comment.
20767
20768 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
20769
20770 * config.in (HAVE_DBUS): Add.
20771
20772 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
20773 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
20774 (obj): Add $(DBUS_OBJ).
20775 (LIBES): Add $(DBUS_LIBS).
20776 (dbusbind.o): New target.
20777
20778 * dbusbind.c: New file.
20779
20780 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
20781
20782 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
20783 (Qdbus_event): New Lisp symbol.
20784 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
20785 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
20786 (keys_of_keyboard): Define dbus-event.
20787
20788 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
20789
20790 2007-12-01 Richard Stallman <rms@gnu.org>
20791
20792 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
20793
20794 2007-11-30 Jason Rumney <jasonr@gnu.org>
20795
20796 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
20797 (w32con_reset_terminal_modes): Clear screen buffer.
20798 (w32_face_attributes): Don't use color indexes that are out of range.
20799 Only reverse the default colors.
20800
20801 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
20802 WINDOWSNT.
20803
20804 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
20805
20806 2007-11-29 Jason Rumney <jasonr@gnu.org>
20807
20808 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
20809 (w32_face_attributes): Use Vtty_defined_color_alist to determine
20810 if the terminal colors are initialized.
20811 (unspecified_fg, unspecified_bg): Remove unused declarations.
20812
20813 2007-11-29 Andreas Schwab <schwab@suse.de>
20814
20815 * keyboard.c (apply_modifiers): Fix typo.
20816
20817 2007-11-29 Richard Stallman <rms@gnu.org>
20818
20819 * keymap.c (Fcurrent_local_map): Doc fix.
20820
20821 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
20822
20823 * s/gnu-kfreebsd.h: New file.
20824
20825 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
20826
20827 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
20828 Don't cast redundantly.
20829
20830 * keyboard.c (KEY_TO_CHAR): New macro.
20831 (parse_modifiers, apply_modifiers): Accept integer arguments.
20832 (read_key_sequence): Use them to unify the "shift->unshift" mapping
20833 for chars and symbol keys.
20834 After doing such remapping, apply function-key-map again.
20835
20836 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
20837
20838 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
20839 compiled anymore.
20840
20841 2007-11-26 Andreas Schwab <schwab@suse.de>
20842
20843 * process.c (list_processes_1): Fix indentation level of the
20844 command column.
20845
20846 2007-11-23 Andreas Schwab <schwab@suse.de>
20847
20848 * editfns.c (Fformat): Handle %c specially since it requires the
20849 argument to be of type int.
20850
20851 2007-11-23 Markus Triska <markus.triska@gmx.at>
20852
20853 * emacs.c (main): Call init_editfns before init_process, since
20854 init_process sets Vprocess_connection_type depending on OS release.
20855
20856 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
20857
20858 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
20859 (find_symbol_value): Use do_symval_forwarding.
20860
20861 * data.c (set_internal): Set the value in the `cons-cell' (for
20862 Buffer_Local_values) not only for frame-local variables.
20863
20864 2007-11-22 Andreas Schwab <schwab@suse.de>
20865
20866 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
20867 values to sprintf.
20868 * keymap.c (Fsingle_key_description): Likewise.
20869 * print.c (print_object): Likewise.
20870
20871 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
20872
20873 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
20874 file for image is nil.
20875
20876 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
20877
20878 * term.c: Include stdarg.h.
20879 (fatal): Implement using varargs.
20880 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
20881
20882 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
20883
20884 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
20885 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
20886 Update call to buffer_slot_type_mismatch.
20887 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
20888 (buffer_slot_type_mismatch): Update.
20889 * buffer.c (buffer_local_types): Remove.
20890 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
20891 (defvar_per_buffer): Set the type in the buffer_objfwd.
20892
20893 2007-11-21 Jason Rumney <jasonr@gnu.org>
20894
20895 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
20896 CreateFileMapping returns NULL on failure.
20897
20898 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
20899
20900 * search.c (Fset_match_data): Remove the `evaporate' feature.
20901 (unwind_set_match_data): Don't use the `evaporate' feature.
20902
20903 2007-11-21 Jason Rumney <jasonr@gnu.org>
20904
20905 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
20906
20907 * w32console.c (w32con_write_glyphs): Remove unused variables.
20908
20909 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
20910
20911 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
20912
20913 * s/darwin.h (MULTI_KBOARD): Remove.
20914
20915 * macfns.c (x_create_tip_frame, Fx_create_frame)
20916 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
20917
20918 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
20919
20920 * buffer.c (Fbuffer_local_value): Remove redundant test.
20921 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
20922 than in `current-buffer' to match the comment.
20923 Do the swap using swap_in_global_binding.
20924
20925 * data.c (store_symval_forwarding, set_internal):
20926 * eval.c (specbind): Remove dead code.
20927
20928 * coding.c (detect_coding, Fupdate_coding_systems_internal):
20929 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
20930 Since we do not want to see internal Lisp_*fwd objects here.
20931
20932 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
20933
20934 * sysdep.c (init_system_name): Use getaddrinfo if available.
20935
20936 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
20937 (x_scroll_bar_note_movement): start, end, with, height in struct
20938 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
20939
20940 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
20941
20942 * puresize.h (BASE_PURESIZE): Increase to 1190000.
20943
20944 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
20945
20946 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
20947 This undoes Richard's change of 14-Oct-2002.
20948
20949 * alloc.c (allocate_other_vector):
20950 * lisp.h (allocate_other_vector): Remove.
20951
20952 * window.c (struct save_window_data): Move non-lisp data to the end
20953 and make it `int' rather than Lisp_Object.
20954 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
20955 Done wrap/unwrap integer values.
20956 (Fset_window_configuration, compare_window_configurations):
20957 Update use of fields to their new types.
20958
20959 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
20960 Turn integer fields into `int'. Merge x_window_low and x_window_high.
20961 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
20962 (SET_SCROLL_BAR_X_WINDOW): Remove.
20963 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
20964 Access the new x_window field directly.
20965 * xterm.c (x_scroll_bar_create): Use a pseudovector.
20966 Don't wrap/unwrap integers into Lisp_Objects.
20967 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
20968 (x_scroll_bar_report_motion):
20969 Don't wrap/unwrap integers into Lisp_Objects.
20970 (x_term_init): Use SDATA.
20971 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
20972 (x_scroll_bar_set_handle, x_scroll_bar_remove)
20973 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
20974 (x_scroll_bar_report_motion, x_scroll_bar_clear):
20975 * xfns.c (x_set_background_color):
20976 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
20977 Access the new x_window field directly.
20978
20979 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
20980 (allocate_pseudovector): Make non-static.
20981
20982 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
20983 (allocate_pseudovector): Declare.
20984 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
20985
20986 2007-11-15 Andreas Schwab <schwab@suse.de>
20987
20988 * editfns.c (Fformat): Correctly format EMACS_INT values.
20989 Also take precision into account when formatting an integer.
20990
20991 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
20992
20993 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
20994
20995 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
20996 (syms_of_keyboard): Defsubr it.
20997
20998 * data.c (swap_in_global_binding): Fix longstanding bug where
20999 store_symval_forwarding was not called with the right second argument,
21000 thus causing objfwd-ing from being dropped.
21001
21002 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
21003
21004 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
21005 (Fx_display_pixel_height, Fx_display_planes)
21006 (Fx_display_color_cells, Fx_server_max_request_size)
21007 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
21008 (Fx_display_visual_class, Fx_display_save_under):
21009 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
21010 (Fx_display_pixel_height, Fx_display_planes)
21011 (Fx_display_color_cells, Fx_server_max_request_size)
21012 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
21013 (Fx_display_mm_height, Fx_display_mm_width)
21014 (Fx_display_backing_store, Fx_display_visual_class)
21015 (Fw32_select_font, Fx_display_save_under):
21016 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
21017 (Fx_display_pixel_height, Fx_display_planes)
21018 (Fx_display_color_cells, Fx_server_max_request_size)
21019 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
21020 (Fx_display_save_under): Fix typos in docstrings.
21021
21022 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
21023
21024 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
21025 corresponding to deleted entries; they are an implementation detail.
21026 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
21027 Remove variables.
21028 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
21029 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
21030 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
21031 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
21032 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
21033 (Fw32_define_rgb_color, Fw32_load_color_file)
21034 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
21035 Fix typos in docstrings.
21036 (Fx_server_version): Reflow docstring.
21037 (Fw32_shell_execute): Doc fixes.
21038
21039 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
21040
21041 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
21042 if w32_parse_hot_key returned nil.
21043
21044 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
21045
21046 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
21047
21048 2007-11-09 Jason Rumney <jasonr@gnu.org>
21049
21050 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
21051
21052 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
21053
21054 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
21055 Remove W32_SCROLL_BAR_CLICK_EVENT.
21056
21057 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
21058 Add MULTIMEDIA_KEY_EVENT.
21059
21060 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
21061 (lispy_multimedia_keys) [WINDOWSNT]: New array.
21062 (make_lispy_event) [WINDOWSNT]: Use it to translate
21063 MULTIMEDIA_KEY_EVENT.
21064
21065 * w32term.h (WM_APPCOMMAND): Define if not already.
21066 (GET_APPCOMMAND_LPARAM): Likewise.
21067
21068 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
21069 WM_APPCOMMAND.
21070
21071 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
21072 (syms_of_w32fns): Export and initialize it.
21073 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
21074
21075 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
21076
21077 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
21078 twice.
21079
21080 * xdisp.c (handle_face_prop): Fix last change.
21081
21082 2007-11-09 Richard Stallman <rms@gnu.org>
21083
21084 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
21085 not just for after-strings and before-strings.
21086 Call face_for_overlay_string and pass the overlay to it.
21087 (handle_display_prop): Determine whether property came from an overlay.
21088 Pass OVERLAY arg to handle_single_display_spec.
21089 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
21090 (load_overlay_strings): Fill in it->string_overlays.
21091 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
21092
21093 * xfaces.c (face_for_overlay_string): Function renamed from
21094 face_at_buffer_position_no_overlays, and add arg OVERLAY.
21095
21096 * dispextern.h (struct it): New elt string_overlays.
21097 New elt from_overlay, also in stack.
21098 Rearrange a few elements.
21099 (face_for_overlay_string): Decl renamed from
21100 face_at_buffer_position_no_overlays, and add argument.
21101
21102 2007-11-09 Richard Stallman <rms@gnu.org>
21103
21104 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
21105 to get the base face for an overlay string.
21106
21107 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
21108
21109 * xfaces.c (face_at_buffer_position_no_overlays): New function.
21110
21111 * xdisp.c (handle_stop): Move some code out of loop.
21112
21113 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21114
21115 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
21116 Fix conversion from Lisp object to ATSUFontID.
21117
21118 2007-11-09 Jason Rumney <jasonr@gnu.org>
21119
21120 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
21121
21122 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21123
21124 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
21125 Don't assume regions are aligned to page boundary.
21126 (print_load_command_name): Add LC_UUID if defined.
21127
21128 2007-11-09 Richard Stallman <rms@gnu.org>
21129
21130 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
21131
21132 2007-11-07 Jason Rumney <jasonr@gnu.org>
21133
21134 * s/windows95.h: Remove.
21135
21136 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
21137
21138 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
21139 abort with a message on unhandled store_type values.
21140
21141 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
21142
21143 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
21144 Remove HAVE_X11R5 and HAVE_X11R4.
21145
21146 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
21147
21148 * Makefile.in: Remove references to sunfns.c and sunfns.o.
21149
21150 2007-11-01 Johan Bockgård <bojohan@gnu.org>
21151
21152 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
21153 Don't set s->stippled_p here, since it has already been set by
21154 x_set_glyph_string_gc from x_draw_glyph_string.
21155
21156 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
21157
21158 * sunfns.c: Remove file.
21159
21160 * m/sun386.h:
21161 * m/sun2.h:
21162 * m/sparc.h: Remove Sun windows code.
21163
21164 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
21165
21166 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
21167 (init_keyboard): Set current_kboard's window-system to nil.
21168 (tty_read_avail_input): Typo.
21169 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
21170
21171 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
21172
21173 * s/usg5-4.h:
21174 * s/usg5-3.h:
21175 * s/ptx.h:
21176 * m/is386.h:
21177 * m/ibmps2-aix.h:
21178 * Makefile.in: Remove all mentions of X10.
21179
21180 * dispnew.c (syms_of_display): Don't mention version 10.
21181
21182 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
21183
21184 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
21185 ($(BLD)/abbrev.$(O)): Remove.
21186
21187 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
21188
21189 Rewrite abbrev.c in Elisp.
21190 * image.c (Qcount): Don't declare as extern.
21191 (syms_of_image): Initialize and staticpro `Qcount'.
21192 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
21193 * emacs.c (main): Don't call syms_of_abbrev.
21194 * Makefile.in (obj): Remove abbrev.o.
21195 (abbrev.o): Remove.
21196 * abbrev.c: Remove.
21197
21198 2007-10-26 Martin Rudalics <rudalics@gmx.at>
21199
21200 * window.c (window_min_size_2): Don't count header-line.
21201
21202 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
21203
21204 * frame.h (struct frame): Move all bit fields after the first bit
21205 field to take advantage of the available space. Group all the
21206 chars together to reduce wasted space due to padding.
21207
21208 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
21209
21210 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
21211
21212 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
21213 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
21214 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
21215 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
21216 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
21217 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
21218 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
21219 (last_marked, mark_object_loop_halt): Make static.
21220
21221 * frame.c (syms_of_frame) <delete-frame-functions>:
21222 Fix typo in docstring.
21223
21224 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
21225
21226 * w32.c (init_environment): Fix tiny memory leak.
21227 (w32_get_resource): Remove unused variable `ok'.
21228
21229 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
21230
21231 Make `window-system' into a keyboard-local variable (rather than
21232 frame-local as done originally by multi-tty).
21233
21234 * keyboard.h (struct kboard): Add Vwindow_system.
21235 * keyboard.c (init_kboard): Set a default for Vwindow_system.
21236 (mark_kboards): Mark Vwindow_system.
21237
21238 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
21239 (init_display): Don't set the obsolete `window-system' frame-param.
21240
21241 * xterm.c (x_term_init):
21242 * w32term.c (w32_create_terminal):
21243 * term.c (init_tty): Set Vwindow_system.
21244 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
21245 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
21246
21247 * xfns.c (Fx_create_frame, x_create_tip_frame):
21248 * w32fns.c (Fx_create_frame, x_create_tip_frame):
21249 * macfns.c (Fx_create_frame):
21250 Don't set the obsolete `window-system' frame-param.
21251
21252 * frame.h (Qwindow_system): Remove.
21253 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
21254 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
21255
21256 2007-10-24 Richard Stallman <rms@gnu.org>
21257
21258 * frame.c (x_figure_window_size): For fullscreen case,
21259 set USPosition | PPosition without clobbering rest of window_prompting.
21260
21261 * keyboard.c (Fcurrent_idle_time): Doc fix.
21262
21263 * print.c (Fwith_output_to_temp_buffer): Doc fix.
21264
21265 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
21266
21267 * process.c (unwind_request_sigio): Only define if __ultrix__.
21268
21269 * callproc.c (child_setup): Remove spurious *.
21270
21271 * lisp.h (Fget_text_property): Declare.
21272 (have_menus_p): Declare it here rather than in sys-dep header files.
21273 * macterm.h (have_menus_p):
21274 * msdos.h (have_menus_p):
21275 * xterm.h (have_menus_p): Remove.
21276
21277 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
21278 (Fmake_variable_frame_local): Just check the variable's const-ness
21279 rather than checking nil or t.
21280
21281 2007-10-22 Jason Rumney <jasonr@gnu.org>
21282
21283 * w32fns.c: Include math.h.
21284 (w32_abort): Declaration moved to nt/config.nt.
21285
21286 * s/ms-w32.h (HAVE_STDLIB_H): Define.
21287 (abort): Redefinition moved to nt/config.nt.
21288
21289 * m/windowsnt.h: Remove.
21290
21291 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
21292
21293 * emacs.c (Fdump_emacs): Fix typo in message.
21294 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
21295 <installation-directory>: Reflow docstring.
21296
21297 2007-10-22 Juri Linkov <juri@jurta.org>
21298
21299 * minibuf.c: Allow minibuffer default to be a list of default values.
21300 With empty input use the first element of this list as returned default.
21301 (string_to_object)
21302 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
21303 (read_minibuf): If defalt is cons, set histstring to its car.
21304 (Fread_string): If default_value is cons, set val to its car.
21305 (Fread_buffer): If def is cons, use its car.
21306 (Fcompleting_read): If defalt is cons, set val to its car.
21307
21308 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
21309
21310 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
21311
21312 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
21313
21314 * doc.c (Fdocumentation): Check for advice in all cases.
21315
21316 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
21317
21318 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
21319
21320 2007-10-19 Richard Stallman <rms@gnu.org>
21321
21322 * doc.c (Fdocumentation): Check for and handle an advised function.
21323
21324 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
21325
21326 * process.c (Fset_process_filter): Doc fix.
21327
21328 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
21329
21330 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
21331 which caused key-translation-map to applied repeatedly (thus breaking
21332 double-mode).
21333
21334 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
21335
21336 * xselect.c (x_own_selection, x_handle_selection_clear)
21337 (x_clear_frame_selections):
21338 * w32menu.c (list_of_panes, list_of_items):
21339 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
21340 * textprop.c (validate_plist, interval_has_all_properties)
21341 (interval_has_some_properties, interval_has_some_properties_list)
21342 (add_properties, text_property_list):
21343 * process.c (Fget_buffer_process, list_processes_1, status_notify):
21344 * minibuf.c (Fassoc_string):
21345 * macselect.c (x_own_selection, x_clear_frame_selections)
21346 (Fx_disown_selection_internal):
21347 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
21348 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
21349
21350 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
21351
21352 * process.c: Link to libs for calling res_init() if available.
21353 (Fmake_network_process): Call res_init() before getaddrinfo or
21354 gethostbyname, if possible.
21355
21356 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
21357
21358 * lread.c (read1): Set pvectype for char_tables.
21359
21360 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
21361 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
21362 Add type checks.
21363 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
21364
21365 * alloc.c (free_misc): Use XMISCTYPE.
21366 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
21367
21368 2007-10-17 Glenn Morris <rgm@gnu.org>
21369
21370 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
21371 (syms_of_minibuf): Add Qcompletion_ignore_case.
21372 * dired.c (Qcompletion_ignore_case): Change to external.
21373 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
21374 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
21375 (Fread_file_name): Use it rather than intern'ing.
21376
21377 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
21378 (Fread_coding_system): Ignore case of user input.
21379
21380 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21381
21382 * xdisp.c (handle_display_prop): Ignore display specs after
21383 replacing one when string text is being replaced.
21384 (handle_single_display_spec): Pretend as if characters with display
21385 property haven't been consumed only when buffer text is being replaced.
21386
21387 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
21388
21389 * xfns.c (Fx_create_frame, Fx_display_list):
21390 * window.c (window_fixed_size_p, enlarge_window)
21391 (shrink_window_lowest_first):
21392 * macterm.c (init_font_name_table):
21393 * macfns.c (Fx_create_frame, Fx_display_list):
21394 * lread.c (close_load_descs):
21395 * keyboard.c (read_char_x_menu_prompt):
21396 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
21397 * coding.c (code_convert_region_unwind): Test the type of an object
21398 rather than just !NILP before extracting data from it.
21399
21400 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
21401
21402 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
21403 (XMISCANY): New macro.
21404 (XMISCTYPE): Use it.
21405 (struct Lisp_Misc_Any): New type.
21406 (union Lisp_Misc): Use it.
21407 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
21408 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
21409 (find_symbol_value, set_internal, default_value, Fset_default)
21410 (Fmake_variable_buffer_local, Fmake_local_variable)
21411 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
21412 (Flocal_variable_if_set_p, Fvariable_binding_locus):
21413 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
21414 * alloc.c (allocate_buffer): Set the size and tag.
21415 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
21416 Use XMISCANY.
21417 (die): Follow the GNU convention for error messages.
21418 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
21419 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
21420 tag any more.
21421 (set_buffer_internal_1):
21422 * frame.c (store_frame_param):
21423 * eval.c (specbind):
21424 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
21425
21426 * doc.c (Fsnarf_documentation): Simplify.
21427
21428 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
21429
21430 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
21431 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
21432
21433 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
21434
21435 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
21436
21437 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
21438
21439 * eval.c (do_autoload): Don't save autoloads.
21440
21441 * data.c (Ffset): Save autoload of the function being set.
21442
21443 2007-10-07 John Paul Wallington <jpw@pobox.com>
21444
21445 * xfns.c (x_create_tip_frame): Set the `display-type' frame
21446 parameter before setting up faces.
21447
21448 2007-10-13 Eli Zaretskii <eliz@gnu.org>
21449
21450 * ccl.c (Fregister_code_conversion_map):
21451 * keyboard.c (append_tool_bar_item): Reformat last change.
21452
21453 * lisp.h (eabs): Rename from `abs'. All callers changed.
21454
21455 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
21456
21457 * buffer.c (add_overlay_mod_hooklist):
21458 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
21459 * fontset.c (make_fontset):
21460 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
21461 (append_tool_bar_item):
21462 * macmenu.c (grow_menu_items):
21463 * w32menu.c (grow_menu_items):
21464 * xmenu.c (grow_menu_items): Use larger_vector.
21465
21466 2007-10-13 Eli Zaretskii <eliz@gnu.org>
21467
21468 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
21469 selected frame'' on MSDOS).
21470
21471 2007-10-12 Martin Rudalics <rudalics@gmx.at>
21472
21473 * frame.c (Qexplicit_name): New variable.
21474 (x_report_frame_params): Report it in parameter alist.
21475 (syms_of_frame): Intern and staticpro it.
21476
21477 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
21478
21479 * macfns.c (x_create_tip_frame): Set terminal for frame.
21480
21481 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
21482
21483 * frame.c (Qenvironment): Remove.
21484 (syms_of_frame) <Qenvironment>: Don't initialize.
21485 (Fdelete_frame): Don't treat the `environment' param specially.
21486 * frame.h (Qenvironment): Don't declare.
21487 * callproc.c (set_initial_environment): Don't set unused frame param.
21488
21489 * frame.c (Fframe_with_environment): Remove.
21490 (syms_of_frame) <Sframe_with_environment>: Don't declare.
21491
21492 * lisp.h (Fframe_with_environment): Don't declare.
21493
21494 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
21495
21496 * indent.c (indent_tabs_mode, last_known_column)
21497 (last_known_column_modified): Make static.
21498 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
21499
21500 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
21501
21502 * puresize.h (BASE_PURESIZE): Increase to 1170000.
21503
21504 2007-10-09 Jason Rumney <jasonr@gnu.org>
21505
21506 * w32term.c (x_set_window_size): Disable code that attempts to tell
21507 Lisp code about a size change before it actually happens.
21508
21509 2007-10-09 Richard Stallman <rms@gnu.org>
21510
21511 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
21512 return HANDLED_RETURN.
21513
21514 2007-10-08 Martin Rudalics <rudalics@gmx.at>
21515
21516 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
21517 when there's an unread command event.
21518
21519 * frame.c (focus_follows_mouse): Move here from frame.el to allow
21520 window autoselection act appropriately when leaving selected frame.
21521 (syms_of_frame): Initialize focus_follows_mouse.
21522 * frame.h (focus_follows_mouse): Extern it.
21523 * macterm.c (XTread_socket): When focus_follows_mouse is nil
21524 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
21525 * msdos.c (dos_rawgetc): Likewise.
21526 * w32term.c (w32_read_socket): Likewise.
21527 * xterm.c (handle_one_xevent): Likewise.
21528 * xdisp.c (syms_of_xdisp): In doc-string of
21529 mouse-autoselect-window mention focus-follows-mouse.
21530
21531 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21532
21533 * macterm.c (mac_load_query_font): Fix missing return value.
21534 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
21535 Add BLOCK_INPUT.
21536
21537 2007-10-08 Richard Stallman <rms@gnu.org>
21538
21539 * xdisp.c (get_window_cursor_type): Implement documented behavior
21540 for cursor-in-non-selected-windows = t.
21541
21542 2007-10-08 Jason Rumney <jasonr@gnu.org>
21543
21544 * w32.c (w32_get_resource): Always close registry keys.
21545
21546 2007-10-08 Jason Rumney <jasonr@gnu.org>
21547
21548 * makefile.w32-in (LIBS): Add COMCTL32.
21549
21550 * w32fns.c (globals_of_w32fns): Init common controls.
21551
21552 2007-10-08 Richard Stallman <rms@gnu.org>
21553
21554 * image.c (our_memory_buffer): Rename from omfib_buffer.
21555
21556 2007-10-08 Richard Stallman <rms@gnu.org>
21557
21558 * buffer.c (Foverlays_at): Doc fix.
21559
21560 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
21561
21562 * fns.c (Fplist_put): Preserve uneven tail data.
21563
21564 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
21565
21566 * termhooks.h (enum event_kind): Remove trailing comma.
21567
21568 * frame.h (enum): Remove trailing comma.
21569
21570 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
21571
21572 * w32proc.c (delete_child): Don't terminate threads of zombies.
21573
21574 2007-10-08 Martin Rudalics <rudalics@gmx.at>
21575
21576 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
21577
21578 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
21579 last-repeatable-command.
21580 (init_kboard): Initialize Vlast_repeatable_command.
21581 (command_loop_1): Set it to real_this_command unless that was
21582 bound to an input event.
21583 (mark_kboards): Mark it.
21584
21585 2007-10-08 Richard Stallman <rms@gnu.org>
21586
21587 * eval.c (condition-case): Doc fix.
21588
21589 2007-10-08 Masatake YAMATO <jet@gyve.org>
21590
21591 * xfaces.c (tty_supports_face_attributes_p): Fix code
21592 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
21593 was copied and not edited.
21594
21595 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
21596
21597 Add new `input-decode-map' keymap and use it for terminal
21598 escape sequences.
21599 * keyboard.h (struct kboard): Add Vinput_decode_map.
21600 Remove Vlocal_key_translation_map.
21601 * keyboard.c (read_key_sequence): Add support for input-decode-map.
21602 (init_kboard): Init input-decode-map.
21603 Replace local-key-translation-map back with key-translation-map.
21604 (syms_of_keyboard): Declare input-decode-map.
21605 Remove local-key-translation-map. Update docstrings.
21606 (mark_kboards): Mark Vinput_decode_map.
21607 Don't mark Vlocal_key_translation_map.
21608 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
21609 Replace local-key-translation-map back with key-translation-map.
21610 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
21611 Bind in input-decode-map rather than function-key-map.
21612
21613 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
21614 This was made redundant by the previous introduction of XSETPVECTYPE.
21615
21616 2007-10-09 Richard Stallman <rms@gnu.org>
21617
21618 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
21619
21620 2007-09-29 Richard Stallman <rms@gnu.org>
21621
21622 * eval.c (internal_condition_case_2, internal_condition_case_1)
21623 (internal_condition_case): Reenable abort if x_catching_errors ()
21624 to see if that really happens and why.
21625
21626 2007-10-06 Andreas Schwab <schwab@suse.de>
21627
21628 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
21629
21630 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
21631
21632 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
21633
21634 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
21635
21636 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
21637
21638 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
21639
21640 * window.h (struct window):
21641 * window.c (struct save_window_data, struct saved_window):
21642 * termhooks.h (struct terminal):
21643 * process.h (struct Lisp_Process):
21644 * frame.h (struct frame):
21645 * buffer.h (struct buffer):
21646 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
21647 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
21648 The size field of (pseudo)vectors is now unsigned.
21649 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
21650
21651 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
21652 Turn `count' into an integer.
21653
21654 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
21655 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
21656 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
21657 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
21658 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
21659
21660 * alloc.c (allocate_pseudovector): New fun.
21661 (ALLOCATE_PSEUDOVECTOR): New macro.
21662 (allocate_window, allocate_terminal, allocate_frame)
21663 (allocate_process): Use it.
21664 (mark_vectorlike): New function.
21665 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
21666 (mark_terminals): Use it.
21667 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
21668 (Fmake_byte_code): Use XSETPVECTYPE.
21669
21670 * frame.c (Fframe_parameters): Minor simplification.
21671
21672 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
21673
21674 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
21675
21676 * buffer.c (Fget_buffer_create, init_buffer_once):
21677 * lread.c (defsubr):
21678 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
21679
21680 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
21681 defined differently in the m/*.h files.
21682 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
21683 (XSETPVECTYPE): New macro.
21684 (XSETPSEUDOVECTOR): Use it.
21685
21686 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
21687 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
21688
21689 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
21690 * lread.c (defvar_per_buffer):
21691 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
21692
21693 * window.c (candidate_window_p): Only consider as visible frames that
21694 are on the same terminal.
21695
21696 * m/ibms390x.h (MARKBIT): Remove unused macro.
21697
21698 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
21699
21700 * lread.c (Fload): Fix typo in docstring.
21701
21702 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
21703
21704 * floatfns.c (Fexpt): Manually check for overflows, so that a power
21705 of a non-zero value can't yield zero.
21706
21707 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
21708
21709 * term.c (term_clear_mouse_face, term_mouse_highlight)
21710 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
21711
21712 * print.c (safe_debug_print): Use XHASH.
21713
21714 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
21715 Lisp elements such as tags.
21716 (XHASH): New macro.
21717 (EQ): Use it.
21718 (SREF, SSET, STRING_COPYIN): Use SDATA.
21719 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
21720
21721 * alloc.c (mark_terminal): Remove left-over declaration.
21722 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
21723 (allocate_vectorlike): Remove type argument. Adjust callers.
21724 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
21725 Only handle the one remaining MEM_TYPE_VECTORLIKE.
21726
21727 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
21728 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
21729 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
21730 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
21731 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
21732 Use them.
21733
21734 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
21735 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
21736 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
21737
21738 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
21739
21740 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
21741 loaded by default.
21742
21743 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
21744
21745 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
21746 on this tty.
21747 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
21748
21749 * term.c (mouse_face_window): Rename from Qmouse_face_window.
21750 Update all users.
21751 (handle_one_term_event): Use Gpm_DrawPointer.
21752 (Fgpm_mouse_start): Rename from Fterm_open_connection.
21753 Signal errors instead of returning nil. Always return nil.
21754 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
21755 Make it a noop if gpm-mouse was not activated.
21756 (syms_of_term): Update names.
21757
21758 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
21759
21760 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
21761 (init_sys_modes): Check that gpm_tty is the current tty.
21762
21763 * alloc.c (allocate_terminal): Set the vector size to only count the
21764 lisp fields. Initialize those to nil.
21765 (mark_object): Don't treat terminals specially.
21766 (mark_terminal): Remove.
21767 (mark_terminals): Use mark_object instead.
21768
21769 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
21770 the GC to the beginning.
21771
21772 * indent.h:
21773 * indent.c: Use EMACS_INT for ints coming from Elisp data.
21774
21775 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
21776
21777 2007-09-25 Jason Rumney <jasonr@gnu.org>
21778
21779 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
21780
21781 * w32console.c (create_w32cons_output): Remove.
21782
21783 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
21784
21785 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
21786 (reset_sys_modes): Use reset_terminal_modes_hook.
21787
21788 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
21789
21790 * eval.c (do_autoload): Don't output any message.
21791
21792 2007-09-24 Juri Linkov <juri@jurta.org>
21793
21794 * emacs.c (standard_args): Change priority of "--no-splash"
21795 from 40 to 3. Add "--no-desktop" with the same priority.
21796
21797 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
21798
21799 * alloc.c (gc_sweep): Check cons cell mark bits word by word
21800 and optimize the case where they are all 1.
21801
21802 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
21803
21804 * lisp.h (abs): Define if not defined.
21805 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
21806 Don't define `abs', since it's defined in lisp.h.
21807
21808 2007-09-22 Eli Zaretskii <eliz@gnu.org>
21809
21810 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
21811 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
21812 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
21813 (init_tty): Use DEV_TTY instead of "/dev/tty".
21814 [WINDOWSNT]: No need to protect from NAME arg being null.
21815
21816 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
21817
21818 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
21819 up the tty state.
21820
21821 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
21822
21823 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
21824 (gpm_tty): Change its type.
21825 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
21826 (gpm_tty): Change its type and initialize it.
21827 (Fterm_open_connection): Check the frame is indeed a tty.
21828 Use the new gpm_tty.
21829 (Fterm_close_connection): Use the new gpm_tty.
21830 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
21831 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
21832
21833 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
21834
21835 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
21836 underline_color, to draw strike-through.
21837
21838 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
21839
21840 * lisp.h (allocate_terminal): Declare.
21841
21842 * window.c (candidate_window_p): Consider frames that are being placed
21843 by the user as somewhere between visible and iconified.
21844 (window_loop): Prefer windows on the current frame.
21845 (Fselect_window): Move the use of select-frame to the beginning so we
21846 can just delegate all the work (it'll call us back anyway).
21847
21848 * frame.c (Qdisplay_environment_variable):
21849 * frame.h (Qdisplay_environment_variable): Delete.
21850
21851 * .gdbinit (xbacktrace): Print the arg's address rather than the value
21852 of the first arg, since that value may be a union.
21853
21854 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
21855 parameter rather than Qdisplay_environment_variable. If all else
21856 fails, look for DISPLAY in initial-environment.
21857
21858 2007-09-21 Glenn Morris <rgm@gnu.org>
21859
21860 * Makefile.in (emacstool): Remove target.
21861 (lisp, shortlisp): Remove termdev.elc.
21862
21863 2007-09-21 Markus Triska <markus.triska@gmx.at>
21864
21865 * xterm.c (x_delete_display): Compile session management conditionally.
21866
21867 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
21868
21869 * callproc.c (getenv_internal_1): New function.
21870 (getenv_internal): Use it.
21871 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
21872
21873 * terminal.c (get_terminal): Don't accept ints to represent terminals.
21874 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
21875 (Fset_terminal_parameter): Work with dead terminals as well.
21876 (Fmodify_terminal_parameters): Remove.
21877
21878 * terminal.c (get_terminal): Handle terminals.
21879 Make sure the terminal returned is live.
21880 (create_terminal): Use allocate_terminal.
21881 (mark_terminals): Move to alloc.c.
21882 (delete_terminal): Use terminal->name as liveness status.
21883 NULL out fields after freeing their contents.
21884 Don't deallocate the object.
21885 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
21886 rather than an int.
21887 (Fterminal_live_p): Accept non-integer arguments.
21888 (Fterminal_list): Return terminal objects rather than an ints.
21889
21890 * alloc.c (enum mem_type): New member for `terminal' objects.
21891 (allocate_terminal): New function.
21892 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
21893 Handle terminals.
21894 (mark_terminal): New fun.
21895 (mark_terminals): Move from terminal.c.
21896
21897 * term.c (get_tty_terminal): Don't treat output_initial specially.
21898 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
21899 (delete_tty): Use terminal->name as liveness status.
21900
21901 * termhooks.h (struct terminal): Make it into a pseudovector.
21902 Remove `deleted' replaced by checking `name's nullness.
21903
21904 * print.c (print_object): Handle terminals.
21905
21906 * lisp.h (enum pvec_type): New `terminal' pseudovector.
21907 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
21908
21909 * frame.c (make_terminal_frame):
21910 * keyboard.c (tty_read_avail_input):
21911 * w32term.c (x_delete_terminal):
21912 * xfns.c (Fx_create_frame, x_create_tip_frame):
21913 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
21914
21915 2007-09-20 Glenn Morris <rgm@gnu.org>
21916
21917 * process.c (Fmake_network_process): Doc fix.
21918
21919 2007-09-19 Jason Rumney <jasonr@gnu.org>
21920
21921 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
21922
21923 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
21924
21925 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
21926 Fix a C warning regarding variable constness.
21927
21928 * xterm.c (handle_one_xevent): Fix a C warning.
21929
21930 2007-09-18 Jason Rumney <jasonr@gnu.org>
21931
21932 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
21933
21934 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
21935
21936 * gtkutil.c (gdpy_def): New variable.
21937 (xg_initialize): Initialize gdpy_def.
21938 (xg_display_close): If no other display exists, set gdpy_def to a
21939 new connection.
21940
21941 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
21942
21943 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
21944 when we have no file name for the icon.
21945 (xg_tool_bar_expose_callback): Remove.
21946 (xg_create_tool_bar): Don't connect expose signal to
21947 xg_tool_bar_expose_callback.
21948 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
21949
21950 2007-09-16 Andreas Schwab <schwab@suse.de>
21951
21952 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
21953 values instead of zapping them.
21954
21955 2007-09-14 Glenn Morris <rgm@gnu.org>
21956
21957 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
21958 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
21959 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
21960 scope and rename to omfib_buffer for clarity.
21961 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
21962
21963 2007-09-14 Kenichi Handa <handa@m17n.org>
21964
21965 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
21966
21967 2007-09-13 Jason Rumney <jasonr@gnu.org>
21968
21969 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
21970
21971 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
21972
21973 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
21974 (mac_term_init): Call here instead, passing rif.
21975
21976 2007-09-13 Glenn Morris <rgm@gnu.org>
21977
21978 * s/hpux.h: No longer define `static' as nothing.
21979
21980 2007-09-13 Johan Bockgård <bojohan@gnu.org>
21981
21982 * callint.c (Fcall_interactively): Remove unused var `fun'.
21983
21984 2007-09-12 Romain Francoise <romain@orebokech.com>
21985
21986 * window.c (prefer_window_split_horizontally, display_buffer):
21987 Revert 2007-09-08 change.
21988
21989 2007-09-12 Glenn Morris <rgm@gnu.org>
21990
21991 * alloca.c: Remove file.
21992 * Makefile.in (alloca): Do not undef.
21993 (allocaobj, alloca.o): Remove.
21994 (otherobj): Remove allocaobj.
21995 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
21996 * regex.c (C_ALLOCA): Remove all references and code that was only
21997 used when this was defined.
21998 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
21999 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
22000 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
22001
22002 * Makefile.in (SOURCES, unlock, relock): Delete.
22003
22004 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
22005 (menu_grab_callback): All uses changed.
22006
22007 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
22008 (x_reply_selection_request): All uses changed.
22009
22010 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
22011
22012 * lread.c (load_warn_old_style_backquotes): Change message to look
22013 better when it appears in the middle of byte-compiler messages.
22014
22015 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
22016
22017 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
22018
22019 * xterm.c (x_create_terminal): Add comment.
22020
22021 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
22022
22023 2007-09-10 Richard Stallman <rms@gnu.org>
22024
22025 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
22026
22027 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
22028
22029 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
22030 (DEFUN): Document `intspec', use it instead of `prompt'.
22031
22032 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
22033
22034 * data.c (Finteractive_form): If the interactive specification starts
22035 with a `(', use it as a Lisp form.
22036
22037 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
22038 name and file modes.
22039
22040 * callint.c (Fcall_interactively): Comment fixes.
22041
22042 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
22043
22044 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
22045 and compiled functions.
22046
22047 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
22048
22049 * window.c (prefer_window_split_horizontally): New variable.
22050 (display_buffer): Consider splitting window horizontally depending
22051 on prefer_window_split_horizontally.
22052
22053 2007-09-08 Eli Zaretskii <eliz@gnu.org>
22054
22055 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
22056
22057 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
22058
22059 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
22060
22061 * frame.c (x_set_frame_parameters): Check number is positive before
22062 using XFASTINT.
22063
22064 * window.c (freeze_window_start): Don't presume selected_window holds
22065 a window object.
22066 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
22067
22068 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
22069
22070 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
22071
22072 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
22073
22074 * window.c (Vsplit_window_preferred_function): New var.
22075 (Fdisplay_buffer): Use it.
22076 (syms_of_window): Export, and initialize it.
22077
22078 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
22079
22080 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
22081
22082 2007-09-06 Glenn Morris <rgm@gnu.org>
22083
22084 * gtkutil.c (menu_grab_callback) <cnt>:
22085 * xselect.c (x_reply_selection_request) <cnt>: Move static
22086 variable to file scope.
22087
22088 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
22089
22090 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
22091 consistent values of selected_frame and selected_window.
22092
22093 2007-09-04 Jason Rumney <jasonr@gnu.org>
22094
22095 * w32console.c (initialize_w32_display): Zero unused hooks.
22096
22097 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
22098
22099 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
22100 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
22101
22102 2007-09-04 Jason Rumney <jasonr@gnu.org>
22103
22104 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
22105 in w32console.c. Set up input. Remove XXX comments that have been
22106 confirmed as correct.
22107
22108 * s/ms-w32.h (MULTI_KBOARD): Define.
22109
22110 * w32console.c (one_and_only_w32cons): Remove.
22111 (initialize_w32_display): Take terminal argument.
22112
22113 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
22114 initialize_w32_display.
22115 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
22116
22117 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
22118
22119 * keyboard.c (discard_mouse_events): Discard it.
22120 (make_lispy_event): Translate it to a lisp event.
22121 (lispy_wheel_names): Add wheel-left and right events.
22122 (syms_of_keyboard): Enlarge wheel_syms.
22123
22124 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
22125 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
22126
22127 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
22128
22129 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
22130 from WM_MOUSEHWHEEL.
22131 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
22132
22133 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
22134 terminal.
22135
22136 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
22137 keyboard for the terminal.
22138
22139 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
22140
22141 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
22142 (Vresume_tty_hook): Rename from Vresume_tty_functions.
22143 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
22144 and resume-tty-function to resume-tty-hook.
22145 (Fsuspend_tty, Fresume_tty): Use new names.
22146
22147 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
22148
22149 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
22150 if it starts with "n:".
22151
22152 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
22153
22154 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
22155
22156 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
22157
22158 * frame.h:
22159 * frame.c (Qterm_environment_variable): Remove.
22160 (syms_of_frame): Don't init and staticpro it.
22161
22162 * callproc.c (getenv_internal): Remove special case for $TERM.
22163
22164 * callproc.c (Vinitial_environment): New variable.
22165 (set_initial_environment): Initialize it.
22166 (syms_of_callproc): Declare it.
22167 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
22168 TERM under which a process runs is never related to the TERM in which
22169 Emacs is running.
22170
22171 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
22172
22173 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
22174 * s/darwin.h: ... do it here.
22175
22176 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
22177
22178 * lisp.h (set_initial_environment): Rename from set_global_environment.
22179
22180 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
22181 removed by mistake on the multi-tty branch.
22182
22183 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
22184 (Fmodify_frame_parameters): Return a value.
22185
22186 * image.c (png_load): Comment-out var only used in commented-out code.
22187
22188 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
22189 before passing it to mark_object.
22190
22191 * xfaces.c (internal_resolve_face_name): Return a value.
22192 (internal_resolve_face_name, resolve_face_name_error): Comment out.
22193
22194 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
22195 (x_icon): Comment-out var only used in commented-out code.
22196
22197 2007-08-29 Romain Francoise <romain@orebokech.com>
22198
22199 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
22200 QUIT hasn't been provided.
22201
22202 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
22203
22204 * callproc.c (child_setup, getenv_internal): Use the
22205 display-environment-variable and term-environment-variable frame params.
22206 (set_initial_environment): Initialise Vprocess_environment.
22207
22208 * config.in: Disable multi-keyboard support on a mac.
22209
22210 * frame.c (Qterm_environment_variable)
22211 (Qdisplay_environment_variable): New variables.
22212 (syms_of_frame): Intern and staticpro them.
22213 (Fmake_terminal_frame): Disable output method test.
22214
22215 * frame.h: Declare them here.
22216
22217 * macfns.c (x_set_mouse_color): Get rif from the frame.
22218 (x_set_tool_bar_lines): Don't use updating_frame.
22219 (mac_window): Add 2 new parameters for consistency with other systems.
22220 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
22221 frame parameters following what is done in X11 and w32. Don't use
22222 FRAME_MAC_DISPLAY_INFO.
22223 (Fx_open_connection, start_hourglass): Remove window-system check.
22224 (x_create_tip_frame): Get the keyboard from the terminal.
22225
22226 * macmenu.c: Reorder includes.
22227 (Fx_popup_menu): Use terminal specific mouse_position_hook.
22228
22229 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
22230 terminal parameter.
22231 (x_clear_frame): Add a frame parameter.
22232 (note_mouse_movement): Get rif from the frame.
22233 (mac_term_init): Initialize the terminal.
22234 (mac_initialize): Make static and move terminal initialization ...
22235 (mac_create_terminal): ... to this new function.
22236
22237 * macterm.h (struct mac_display_info): Add terminal.
22238 (mac_initialize): Delete declaration.
22239
22240 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
22241
22242 * sysdep.c: Comment out text after #endif.
22243
22244 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
22245 is defined. Better initialize ttys in windows. Use terminal
22246 specific mouse_position_hook.
22247
22248 * termhooks.h (union display_info): Add mac_display_info.
22249
22250 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
22251 Set the default minibuffer frame, window_system and the rest of the
22252 frame parameters following what is done in X11.
22253
22254 * w32term.c (w32_initialize): Make static.
22255
22256 * xselect.c (x_handle_selection_clear): Only access
22257 terminal->kboard when MULTI_KBOARD is defined.
22258
22259 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
22260 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
22261
22262 2007-08-29 Jason Rumney <jasonr@gnu.org>
22263
22264 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
22265 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
22266
22267 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
22268 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
22269
22270 * keyboard.c (restore_kboard_configuration): Only define when
22271 MULTI_KBOARD defined.
22272
22273 * makefile.w32-in: Update dependancies from Makefile.in.
22274 (OBJ1): Add terminal.$(O)
22275
22276 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
22277 Don't define function body.
22278 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
22279
22280 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
22281
22282 * w32.c (request_sigio, unrequest_sigio): Remove.
22283
22284 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
22285 (w32con_clear_frame, w32con_clear_end_of_line)
22286 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
22287 (w32con_delete_glyphs, w32con_set_terminal_window)
22288 (scroll_line, w32_sys_ring_bell): Add frame arg.
22289 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
22290 Add terminal arg.
22291 (PICK_FRAME): Remove.
22292 (w32con_write_glyphs): Use frame specific terminal coding.
22293 (one_and_only_w32cons): New global variable.
22294 (initialize_w32_display): Use it for storing hooks.
22295 (create_w32cons_output): New function.
22296
22297 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
22298 arg a frame.
22299
22300 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
22301 Set window_system.
22302 (x_set_tool_bar_lines): Don't use updating_frame.
22303 (Fx_create_frame): Set terminal and ref count.
22304 (Fx_open_connection): Remove window-system check.
22305
22306 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
22307
22308 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
22309 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
22310 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
22311 Add frame arg.
22312 (x_delete_terminal, w32_create_terminal): New functions.
22313 (w32_term_init): Create a terminal.
22314 (w32_initialize): Move terminal specific initialization to
22315 w32_create_terminal.
22316
22317 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
22318 (w32_clear_rect, w32_clear_area): Use background from frame.
22319 (w32_display_info): Add terminal.
22320 (w32_sys_ring_bell, x_delete_display): Declare here.
22321
22322 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
22323
22324 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
22325
22326 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
22327
22328 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
22329 Fix get_named_tty calls for the controlling tty.
22330
22331 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
22332
22333 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
22334
22335 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
22336
22337 * term.c (tty_insert_glyphs): Add missing first parameter.
22338
22339 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
22340
22341 * buffer.c (Fbuffer_list, Fbury_buffer):
22342 Take frame->buried_buffer_list into account.
22343
22344 * cm.c (current_tty): New variable, for cmputc().
22345 (cmputc): Use it.
22346 (cmcheckmagic): Add tty parameter, look up terminal streams there.
22347 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
22348 (cmgoto): Add tty parameter. Pass it on to calccost().
22349 Use emacs_tputs() instead of tputs().
22350
22351 * cm.h (emacs_tputs): New macro to set current_tty, and then call
22352 tputs().
22353 (current_tty): New variable, for cmputc().
22354 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
22355
22356 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
22357 (internal_condition_case, internal_condition_case_1)
22358 (internal_condition_case_2): Don't abort when x_catching_errors.
22359
22360 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
22361 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
22362 prevent crashes caused by bogus longjmps in read_char.
22363
22364 * keymap.h (Fset_keymap_parent): Add EXFUN.
22365
22366 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
22367 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
22368 Remove redundant definition.
22369
22370 * macfns.c (x_set_mouse_color, x_make_gc):
22371 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22372
22373 * w32term.c (x_free_frame_resources):
22374 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22375 (w32_initialize): Use the accessor macros for terminal characteristics.
22376
22377 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
22378 Use the accessor macros for terminal characteristics.
22379 * msdos.c (internal_terminal_init): Use the accessor macros for
22380 terminal characteristics.
22381 (ScreenVisualBell, internal_terminal_init):
22382 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22383
22384 * termopts.h (no_redraw_on_reenter): Declare.
22385
22386 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
22387 (mark_terminals, mark_ttys): Declare.
22388 (Fgarbage_collect): Call them.
22389 (mark_object): Mark buried_buffer_list.
22390
22391 * prefix-args.c: Include stdlib.h for exit.
22392
22393 * syssignal.h: Add comment.
22394
22395 * indent.c: Include stdio.h.
22396
22397 * window.h (Vinitial_window_system): Declare.
22398 (Vwindow_system): Delete declaration.
22399
22400 * fontset.c (Finternal_char_font): Use FRAME_RIF.
22401
22402 * image.c (lookup_image): Don't initialize `c' until the xasserts
22403 have been run.
22404
22405 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
22406 FRAME_FOREGROUND_PIXEL.
22407
22408 * print.c (print_preprocess): Don't lose print_depth levels while
22409 iterating.
22410
22411 * widget.c (update_from_various_frame_slots):
22412 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22413
22414 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
22415 frames.
22416 (window_internal_height): Remove bogus make_number call.
22417 (init_window_once): Call make_terminal_frame with two zero parameters.
22418
22419 * fileio.c (Fread_file_name): Update comment.
22420
22421 * callint.c (Fcall_interactively):
22422 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
22423 Make sure it is correctly unwound.
22424
22425 * xsmfns.c (x_session_close): New function.
22426
22427 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
22428 Delete declarations.
22429
22430 * xterm.h: Remove declaration for x_fully_uncatch_errors.
22431 (x_output): Remove background_pixel and foreground_pixel fields.
22432 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
22433 (x_delete_device, x_session_close): Declare.
22434
22435 * lread.c: Include setjmp.h. Update declaration of `read_char'.
22436 (read_filtered_event): Call `read_char' with a local
22437 `wrong_kboard_jmpbuf'.
22438
22439 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
22440 Don't call single_kboard_state. Use FRAME_RIF.
22441
22442 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
22443 systems.
22444
22445 * lisp.h (set_process_environment): Rename to `set_global_environment'.
22446 (Fframe_with_environment, Fset_input_meta_mode)
22447 (Fset_quit_char): EXFUN.
22448 (x_create_device, tty_output, terminal, tty_display_info): Declare.
22449 (init_sys_modes, reset_sys_modes): Update prototypes.
22450 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
22451
22452 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
22453 Vlocal_key_translation_map, and Vkeyboard_translate_table.
22454 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
22455 Delete declarations.
22456 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
22457 (temporarily_switch_to_single_kboard, tty_read_avail_input):
22458 New declarations.
22459
22460 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
22461 already does that during init_display(). Call syms_of_keymap
22462 before syms_of_keyboard. Call `syms_of_terminal'.
22463 Call set_initial_environment, not set_process_environment.
22464 (shut_down_emacs): Call reset_all_sys_modes() instead of
22465 reset_sys_modes().
22466
22467 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
22468 (internal_resolve_face_name, resolve_face_name_error): New functions.
22469 (resolve_face_name): Protect against loops and errors thrown by Fget.
22470 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
22471 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
22472
22473 * scroll.c: Replace CURTTY() with local variables throughout the
22474 file (where applicable).
22475 (calculate_scrolling, calculate_direct_scrolling)
22476 (scrolling_1, scroll_cost): Use the accessor macros for terminal
22477 characteristics.
22478
22479 * keymap.c (Vfunction_key_map): Remove.
22480 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
22481 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
22482 (Vkey_translation_map): Remove.
22483 (syms_of_keymap): Remove DEFVAR for key-translation-map.
22484 (Fdescribe_buffer_bindings)
22485 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
22486 Update for terminal-local key-translation-map.
22487
22488 * Makefile.in (callproc.o): Update dependencies.
22489 (lisp, shortlisp): Add termdev.elc.
22490 (obj): Add terminal.o.
22491 (terminal.o): Add dependencies.
22492 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
22493 (data.o, fns.o): Add termhooks.h dependency.
22494 (SOME_MACHINE_LISP): Add dnd.elc.
22495 (minibuf.o): Fix typo.
22496 Update dependencies.
22497
22498 * data.c (do_symval_forwarding, store_symval_forwarding)
22499 (find_symbol_value): Use the selected frame's keyboard, not
22500 current_kboard.
22501
22502 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
22503 Vwindow_system.
22504
22505 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
22506 Fmenu_bar_open.
22507 (syms_of_xmenu): Update defsubr.
22508 (mouse_position_for_popup, Fx_popup_menu)
22509 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
22510 (set_frame_menubar, free_frame_menubar)
22511 (create_and_show_popup_menu, xmenu_show)
22512 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
22513 an X frame.
22514
22515 * xselect.c (x_own_selection): Abort if not an X frame.
22516 (some_frame_on_display): Check if it is an X frame.
22517 (x_handle_selection_clear): Deal with MULTI_KBOARD.
22518
22519 * coding.c: Include frame.h and termhooks.h.
22520 (terminal_coding, keyboard_coding): Delete.
22521 (Fset_terminal_coding_system_internal)
22522 (Fset_keyboard_coding_system_internal)
22523 (Fkeyboard_coding_system)
22524 (Fterminal_coding_system): Add a terminal parameter.
22525 Get terminal_coding from the terminal.
22526 (init_coding_once): Don't call setup_coding_system here.
22527
22528 * dispextern.h (set_scroll_region, turn_off_insert)
22529 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
22530 (tty_clear_end_of_line, tty_setup_colors)
22531 (delete_tty, updating_frame)
22532 (produce_special_glyphs, produce_glyphs, write_glyphs)
22533 (insert_glyphs): Remove.
22534 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
22535 (tty_turn_off_highlight, get_tty_size): Add declaration.
22536 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
22537
22538 * frame.h (enum output_method): Add output_initial.
22539 (struct x_output): Delete.
22540 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
22541 Access foreground_pixel and background_pixel directly from the frame.
22542 (tty_display): Delete.
22543 (struct frame): Add buried_buffer_list, foreground_pixel,
22544 background_pixel and terminal. Delete kboard.
22545 (union output_data): Add tty.
22546 (FRAME_KBOARD): Get the kboard from the terminal.
22547 (FRAME_INITIAL_P): New macro.
22548 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
22549 (Qterm_environment_variable, Qdisplay_environment_variable)
22550 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
22551 New declarations.
22552
22553 * termchar.h (tty_output, tty_display_info): New structures.
22554 (tty_list): Declare.
22555 (FRAME_TTY, CURTTY): New macros.
22556 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
22557 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
22558 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
22559 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
22560
22561 * callproc.c: Include frame.h and termhooks.h, for terminal
22562 parameters.
22563 (add_env): New function.
22564 (child_setup): Use it.
22565 (child_setup, getenv_internal): Handle the new Vprocess_environment.
22566 (getenv_internal): Fix get_terminal_param call.
22567 (Fgetenv_internal, egetenv): Update doc.
22568 (syms_of_callproc): Initialize Vprocess_environment to nil.
22569 Register and initialize them. Remove obsolete defvars. Update doc
22570 strings.
22571 (child_setup): Handle Vlocal_environment_variables.
22572 (getenv_internal): Add terminal parameter.
22573 Handle Vlocal_environment_variables.
22574 (Fgetenv_internal): Add terminal parameter.
22575 (child_setup, getenv_internal, Fgetenv_internal): Store the local
22576 environment in a frame (not terminal) parameter. Update doc strings.
22577 (set_initial_environment): Rename from set_global_environment.
22578 Store Emacs environment in initial frame parameter.
22579
22580 * xdisp.c (redisplay_internal): Update references to
22581 `previous_terminal_frame'.
22582 (display_mode_line, Fformat_mode_line): Replace calls to
22583 `push_frame_kboard' with `push_kboard'.
22584 (get_glyph_string_clip_rects): Add extra parentheses and
22585 braces to prevent compiler warnings.
22586 (calc_pixel_width_or_height): Add xassert to check that the
22587 frame is alive. Don't call `lookup_image' on a termcap frame.
22588 (message2_nolog, message3_nolog, redisplay_internal)
22589 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
22590 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
22591 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
22592 (Fx_display_pixel_width, Fx_display_pixel_height)
22593 (Fx_display_planes, Fx_display_color_cells)
22594 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
22595 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
22596 (Fx_display_backing_store, Fx_display_visual_class)
22597 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
22598 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
22599
22600 * xfns.c (x_set_foreground_color x_set_background_color)
22601 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
22602 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22603 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
22604 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
22605 terminal that is being deleted.
22606 (Fx_create_frame): Use `store_frame_param' to set `window-system'
22607 frame parameter, and make sure it overrides any user-supplied setting.
22608 (Fx_close_connection, Fx_synchronize): Unify argument names with
22609 the rest of the DEFUNs.
22610
22611 * dispnew.c (Fsend_string_to_terminal): Update call to
22612 `get_tty_terminal'.
22613 (Fredraw_frame, Fsend_string_to_terminal)
22614 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
22615 FRAME_TERMCAP_P and FRAME_TTY.
22616 (window_change_signal): Don't believe width/height values that are
22617 impossibly small.
22618 (Vinitial_window_system): Rename from Vwindow_system.
22619 (termscript, Wcm, rif): Delete.
22620
22621 * termhooks.h (struct terminal): New struct containing the
22622 previously global text display hooks and new members NAME,
22623 DELETED and PARAM_ALIST.
22624 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
22625 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
22626 (FRAME_RIF): New macros.
22627 (get_terminal_param, get_device): New declarations.
22628 (termscript): Delete declaration.
22629
22630 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
22631 (XTflash, x_free_frame_resources, x_scroll_bar_create)
22632 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
22633 FRAME_FOREGROUND_PIXEL.
22634 (x_fully_uncatch_errors): Disable definition.
22635 (x_scroll_bar_expose): Fix reference to foreground pixel.
22636 (XTread_socket): Disable loop on all X displays.
22637 (x_delete_terminal): Don't set terminal->deleted and let
22638 delete_terminal delete the frames on the terminal.
22639 (x_delete_display): Doc update to reflect changes in
22640 delete_terminal.
22641 (x_display_info) <terminal>: Move member earlier in the struct.
22642 (deleting_tty): Remove old variable.
22643 (Fsuspend_tty): Call clear_tty_hooks.
22644 (Fresume_tty, init_tty): Call set_tty_hooks.
22645 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
22646 errors on X frames.
22647 (x_catch_errors_unwind): Abort if x_error_message is NULL.
22648 (handle_one_xevent): Initialize `f' to NULL.
22649 (x_delete_terminal, x_create_terminal): New functions.
22650 (XTset_terminal_modes, XTreset_terminal_modes)
22651 (XTread_socket, x_connection_closed, x_term_init)
22652 (x_term_init, x_delete_display): Add terminal parameter.
22653 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
22654 X connections.
22655
22656 * frame.c: Include termchar.h.
22657 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
22658 (Qwindow_system, Qenvironment, Qterm_environment_variable)
22659 (Qdisplay_environment_variable): New vars.
22660 (Fframep): Deal with output_initial.
22661 (Fframe-live-p): Doc fix.
22662 (Fwindow-system): New function.
22663 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
22664 (make_terminal_frame): Don't create frames on a terminal that is
22665 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22666 (store_frame_param): Check for found_for_frame before calling XFRAME.
22667 (Fmake_terminal_frame): Handle NULL tty names correctly.
22668 (syms_of_frame): Enhance doc string of `default-frame-alist'.
22669 (Fdelete_frame): Remove unused variable `count'. Don't allow other
22670 frames to refer to a deleted frame in their 'environment parameter.
22671 (Fframe_with_environment): New function.
22672 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
22673 (get_future_frame_param): New function.
22674 (Fmake_terminal_frame): Use it.
22675 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
22676
22677 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
22678 * sysdep.c (reset_sys_modes): Update for renames.
22679
22680 * keyboard.c (tty_read_avail_input): New function.
22681 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
22682 (syms_of_keyboard): Defsubr them.
22683 (Fset_input_meta_mode, Fset_quit_char): New functions.
22684 (Fset_input_mode): Split to above functions.
22685 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
22686 parameter. Use it in call to `read_char'.
22687 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
22688 Set wrong_kboard_jmpbuf correctly in recursive calls.
22689 Use current_kboard to access Vkeyboard_translate_table.
22690 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
22691 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
22692 Update longjmp invocations. Remember the original current_kboard,
22693 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
22694 changes it. Comment out unnecessary calls to
22695 `record_single_kboard_state' and `any_kboard_state'.
22696 Update recursive calls.
22697 (wrong_kboard_jmpbuf): Remove global variable.
22698 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
22699 Handle deleted interrupted_kboards correctly; that is a legal
22700 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
22701 and read_char calls. Abort if interrupted_kboard died in read_char.
22702 (any_kboard_state, single_kboard_state)
22703 (push_frame_kboard): Remove function.
22704 (pop_kboard): Switch out of single_kboard mode if the kboard has
22705 been deleted. Remove unused variable. Help debugging by not
22706 changing current_kboard unnecessarily. Set current_kboard to the
22707 kboard of the selected frame when the stored kboard object has
22708 been deleted before pop_kboard.
22709 (temporarily_switch_to_single_kboard): Change first parameter to a
22710 frame pointer. Throw an error when caller wants to change kboards
22711 while in single_kboard mode. Don't push_kboard if we weren't in
22712 single kboard state. Don't pop_kboard if we popped into any
22713 kboard state.
22714 (restore_kboard_configuration): Abort if pop_kboard changed the
22715 kboard in single_kboard mode. Call pop_kboard only after setting
22716 up single_kboard mode.
22717 (Frecursive_edit): Switch to single_kboard mode only in nested
22718 command loops.
22719 (cmd_error, command_loop, command_loop_1, timer_check):
22720 Comment out unnecessary call to `any_kboard_state' and
22721 `record_single_kboard_state'.
22722 (delete_kboard): Exit single_kboard mode if we have just deleted
22723 that kboard. Use FRAME_KBOARD.
22724 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
22725 `fatal_error_signal'.
22726 (record_single_kboard_state): Don't push_kboard if we weren't in
22727 single kboard state. Don't pop_kboard if we popped into any
22728 kboard state.
22729 (push_frame_kboard): Rename to push_kboard.
22730 (kbd_buffer_get_event): Use FRAME_TERMINAL.
22731 (read_avail_input): Read input from all terminals.
22732 (mark_kboards): Also mark Vkeyboard_translate_table.
22733 (kbd_buffer_store_event_hold): Simplify condition.
22734 (read_key_sequence): Reinitialize fkey and keytran at each replay.
22735 (Vkeyboard_translate_table): Move to struct kboard.
22736 (init_kboard): Initialize Vkeyboard_translate_table.
22737 (syms_of_keyboard): Use DEFVAR_KBOARD to define
22738 Vkeyboard_translate_table. Update doc strings. Update docs of
22739 local-function-key-map and function-key-map.
22740
22741 * terminal.c: New file.
22742
22743 * term.c: Include errno.h.
22744 (Vring_bell_function, device_list, initial_device)
22745 (next_device_id, ring_bell, update_begin, update_end)
22746 (set_terminal_window, cursor_to, raw_cursor_to)
22747 (clear_to_end, clear_frame, clear_end_of_line)
22748 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
22749 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
22750 (syms_of_term): Move their initialization to terminal.c.
22751 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
22752 (Ftty_display_color_cells)
22753 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
22754 (clear_tty_hooks, set_tty_hooks)
22755 (init_tty, maybe_fatal): New functions.
22756 (Ftty_type): Return nil if terminal is not on a tty instead of
22757 throwing an error. Doc update.
22758 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
22759 Doc update. Initialize new subrs and variables.
22760 (delete_tty): Use terminal->deleted.
22761 (tty_set_terminal_modes): Rename from set_terminal_modes.
22762 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
22763 (set_scroll_region): Rename to `tty_set_scroll_region'.
22764 (turn_on_insert): Rename to `tty_turn_on_insert'.
22765 (turn_off_insert): Rename to `tty_turn_off_insert'.
22766 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
22767 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
22768 (toggle_highligh): Rename to `tty_toggle_highlight'.
22769 (background_highlight): Rename to `tty_background_highlight'.
22770 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
22771 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
22772 (tty_set_scroll_region, tty_background_highlight)
22773 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
22774 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
22775 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
22776 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
22777 Add static modifier.
22778 (tty_reset_terminal_modes, tty_set_terminal_window)
22779 (tty_set_scroll_region, tty_background_highlight)
22780 (tty_highlight_if_desired, tty_cursor_to)
22781 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
22782 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
22783 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
22784 renames.
22785
22786 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
22787
22788 * keyboard.c: Qrtl is new.
22789 (parse_tool_bar_item): Handle :rtl keyword.
22790 (syms_of_keyboard): Intern :rtl keyword.
22791
22792 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
22793
22794 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
22795 so no Lisp code is executed.
22796 (file_for_image, find_rtl_image): New functions.
22797 (xg_get_image_for_pixmap): Use file_for_image.
22798 (update_frame_tool_bar): If direction is RTL, use RTL image if
22799 defined. Use Gtk stock images if defined.
22800
22801 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22802
22803 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
22804 for nonexistent or zero-width glyph in composition glyph.
22805
22806 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
22807
22808 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
22809
22810 * xdisp.c (Finvisible_p): New function.
22811 (syms_of_xdisp): defsubr it.
22812
22813 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
22814
22815 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
22816 Doc fixes.
22817
22818 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22819
22820 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
22821
22822 2007-08-24 Martin Rudalics <rudalics@gmx.at>
22823
22824 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
22825 whether decoding has modified buffer contents.
22826
22827 2007-08-24 Jason Rumney <jasonr@gnu.org>
22828
22829 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
22830 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
22831 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
22832 (init_svg_functions) [HAVE_NTGUI]: New function.
22833 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
22834 (svg_load_image): Use them.
22835 (svg_load_image) [HAVE_NTGUI]: Implement background.
22836
22837 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22838
22839 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
22840 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
22841 (LIBX): Remove @RSVG_LIBS@.
22842 (LIBES): Add $(RSVG_LIBS).
22843
22844 * image.c (svg_load_image): Blend with specified background if exists.
22845 Use IMAGE_BACKGROUND. Add Mac OS Support.
22846
22847 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
22848 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
22849 Remove macros.
22850 [MAC_OSX] (socket_callback): Do nothing.
22851 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
22852 ReceiveNextEvent.
22853 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
22854 socket_callback.
22855 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
22856
22857 2007-08-22 Glenn Morris <rgm@gnu.org>
22858
22859 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
22860
22861 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
22862
22863 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
22864
22865 * image.c: Add support for SVG images. Some additional comments
22866 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
22867 (svg_image_p): New function to test for SVG image.
22868 (svg_load): New function to load SVG image.
22869 (svg_load_image): New function, helper for svg_load.
22870 (Qsvg): New Lisp_object.
22871 (svg_keyword_index): New enum.
22872 (svg_format): New static `image_keyword' struct.
22873 (svg_type): New static `image_type' struct.
22874 (librsvg/rsvg.h): Include it.
22875
22876 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
22877
22878 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
22879
22880 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
22881
22882 * lread.c (Qold_style_backquotes): New var.
22883 (syms_of_lread): Init and staticpro it.
22884 (load_warn_old_style_backquotes): New fun.
22885 (Fload): Use them to warn about old style backquotes.
22886 (end_of_file_error, Fload): Remove unused vars.
22887
22888 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
22889
22890 * lread.c (Vold_style_backquotes): New var.
22891 (syms_of_lread): Init and export it to Elisp.
22892 (read1): Set it when we find an old-style (back)quote.
22893
22894 2007-08-22 Jason Rumney <jasonr@gnu.org>
22895
22896 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
22897
22898 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
22899
22900 * puresize.h (BASE_PURESIZE): Increase to 1140000.
22901
22902 2007-08-19 Richard Stallman <rms@gnu.org>
22903
22904 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
22905
22906 2007-08-19 Andreas Schwab <schwab@suse.de>
22907
22908 * alloc.c (pure): Round PURESIZE up.
22909
22910 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
22911
22912 * xterm.c (handle_one_xevent): Remove check that mouse click is in
22913 active frame.
22914
22915 2007-08-16 Richard Stallman <rms@gnu.org>
22916
22917 * eval.c (Fcommandp): Add parens to clarify.
22918
22919 * minibuf.c (Fall_completions): Use enum for type of table.
22920
22921 * emacs.c (USAGE2): Improve text.
22922
22923 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
22924
22925 * term.c (tty_default_color_capabilities): Declare static
22926 variables in file scope, to avoid HPUX compiler problem.
22927
22928 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
22929
22930 * gtkutil.c (update_frame_tool_bar): Use -1 as index
22931 to gtk_toolbar_insert.
22932
22933 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
22934
22935 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
22936
22937 * insdel.c (reset_var_on_error): New fun.
22938 (signal_before_change, signal_after_change):
22939 Use it to reset (after|before)-change-functions to nil in case of error.
22940 Bind inhibit-modification-hooks to t.
22941 Don't bind (after|before)-change-functions to nil while they run.
22942
22943 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22944
22945 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
22946 filling pixmap with stippled background.
22947
22948 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22949
22950 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
22951 Don't use invisible frame as parent window for repositioning.
22952
22953 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
22954
22955 * print.c (new_backquote_output): Rename from old_backquote_output.
22956 (print): Inverse its logic (according to its name) so as to match the
22957 behavior of new_backquote_flag in lread.c.
22958
22959 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22960
22961 * gmalloc.c (posix_memalign): New function.
22962
22963 * macterm.c (frame_highlight, frame_unhighlight): Don't call
22964 ActivateControl/DeactivateControl here.
22965 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
22966 frame-notice-user-settings is non-nil.
22967 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
22968 for kEventParamFMFontStyle.
22969 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
22970 mac_pass_command_to_system and mac_pass_control_to_system here.
22971 (XTread_socket): Call ActivateControl/DeactivateControl here.
22972 (XTread_socket) [TARGET_API_MAC_CARBON]:
22973 Check mac_pass_command_to_system and mac_pass_control_to_system here.
22974 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
22975 for window repositioning.
22976
22977 2007-08-08 Glenn Morris <rgm@gnu.org>
22978
22979 * Replace `iff' in doc-strings and comments.
22980
22981 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
22982
22983 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
22984
22985 2007-08-07 Martin Rudalics <rudalics@gmx.at>
22986
22987 * fileio.c (Finsert_file_contents): Run format-decode and
22988 after_insert_file_functions on entire buffer when REPLACE is
22989 non-nil and inhibit modification_hooks and point_motion_hooks.
22990 For consistency, run after_insert_file_functions iff something
22991 got inserted. Move signal_after_change and update_compositions
22992 after code running after_insert_file_functions. Make sure that
22993 undo_list doesn't record intermediate steps of the decoding process.
22994
22995 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22996
22997 * emacs.c (main)
22998 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
22999 Call malloc_enable_thread on interactive startup.
23000
23001 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
23002 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
23003 [USE_PTHREAD]: Conditionalize with it.
23004 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
23005 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
23006 New functions.
23007
23008 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
23009
23010 * xdisp.c (redisplay_window): When restoring original buffer
23011 position, make sure it is still valid.
23012
23013 * image.c (png_load): Ignore png-supplied background color.
23014
23015 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23016
23017 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
23018 Use kCFAbsoluteTimeIntervalSince1970.
23019
23020 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
23021 New variable.
23022 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
23023 event loop should be quit.
23024 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
23025 Quit dialog event loop if quit_dialog_event_loop is set.
23026
23027 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
23028 (Selection): New typedef. Use instead of ScrapRef.
23029 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
23030 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
23031 (mac_clear_selection): Rename from clear_scrap.
23032 (get_flavor_type_from_symbol): New argument SEL and subsume function of
23033 scrap_has_target_type. All uses changed.
23034 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
23035 (mac_selection_has_target_p): New functions.
23036 (mac_put_selection_value): Rename from put_scrap_string.
23037 (mac_get_selection_value): Rename from get_scrap_string.
23038 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
23039 (put_scrap_private_timestamp, scrap_has_target_type)
23040 (get_scrap_private_timestamp): Remove functions.
23041 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
23042 (x_own_selection, x_get_local_selection):
23043 Use mac_valid_selection_value_p.
23044 (x_own_selection): Don't use put_scrap_private_timestamp.
23045 Record OWNERSHIP-INFO into Vselection_alist instead.
23046 (x_get_local_selection): Don't check type if request is local.
23047 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
23048 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
23049
23050 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
23051
23052 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
23053 add comment explaining why.
23054
23055 2007-08-03 Richard Stallman <rms@gnu.org>
23056
23057 * fileio.c (Fvisited_file_modtime): Use make_time.
23058
23059 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
23060
23061 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
23062 build.
23063
23064 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
23065
23066 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
23067
23068 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
23069
23070 * puresize.h (BASE_PURESIZE): Increase to 1130000.
23071
23072 2007-07-30 Richard Stallman <rms@gnu.org>
23073
23074 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
23075
23076 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
23077
23078 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
23079
23080 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
23081
23082 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
23083 remote default-directory.
23084
23085 * buffer.c (mode-line-format): Update doc string.
23086
23087 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23088
23089 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
23090 scroll bar gap.
23091 (x_scroll_bar_create): Set bar->fringe_extended_p.
23092 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
23093 on frame edge. Check fringe background extension. Don't clear
23094 extended fringe background area.
23095
23096 * w32term.h (struct scroll_bar): New member fringe_extended_p.
23097 (w32_fill_area): Enclose multiple statements with do ... while (0).
23098
23099 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
23100 Extend fringe background to scroll bar gap.
23101 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
23102 Set bar->fringe_extended_p.
23103 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
23104 Put leftmost/rightmost scroll bars on frame edge. Check fringe
23105 background extension. Don't clear extended fringe background area.
23106
23107 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
23108 New member fringe_extended_p.
23109
23110 2007-07-25 Glenn Morris <rgm@gnu.org>
23111
23112 * Relicense all FSF files to GPLv3 or later.
23113
23114 * COPYING: Switch to GPLv3.
23115
23116 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
23117
23118 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
23119
23120 * data.c (Finteractive_form): Check for the presence of an
23121 `interactive-form' symbol property more thoroughly.
23122
23123 * data.c (Finteractive_form): Use an `interactive-form' property if
23124 present, analogous to the function-documentation property.
23125
23126 2007-07-24 Jason Rumney <jasonr@gnu.org>
23127
23128 * w32fns.c (x_real_positions): Get real position from OS instead of
23129 calculating it.
23130
23131 2007-07-23 Jason Rumney <jasonr@gnu.org>
23132
23133 * filelock.c (current_lock_owner): Allow for @ sign in username.
23134
23135 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
23136
23137 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
23138 remote default-directory.
23139
23140 * buffer.c (mode-line-format): Describe above case in doc string.
23141
23142 2007-07-20 Eli Zaretskii <eliz@gnu.org>
23143
23144 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
23145 Define if not defined.
23146
23147 2007-07-18 Jason Rumney <jasonr@gnu.org>
23148
23149 * w32proc.c (w32_executable_type): Handle 64 bit executables.
23150
23151 2007-07-18 Richard Stallman <rms@gnu.org>
23152
23153 * data.c (Fsetq_default): Doc fix.
23154
23155 * eval.c (Fsetq): Doc fix.
23156
23157 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
23158
23159 * coding.c (Ffind_operation_coding_system):
23160 * eval.c (For, Fand): Doc fixes.
23161 Reported by Johan Bockgård.
23162
23163 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
23164
23165 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
23166
23167 * xterm.h: Declare x_ewmh_activate_frame.
23168
23169 * xterm.c (x_ewmh_activate_frame): New function.
23170 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
23171
23172 2007-07-17 Martin Rudalics <rudalics@gmx.at>
23173
23174 * window.c (Fdisplay_buffer): If largest or LRU window is the
23175 only window, split it even if it is not eligible for splitting.
23176 This restores the original behavior broken by the 2007-07-15
23177 change.
23178
23179 2007-07-17 Glenn Morris <rgm@gnu.org>
23180
23181 * abbrev.c (abbrev_check_chars): New function.
23182 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
23183 Call abbrev_check_chars to check abbrev characters are word
23184 constituents. Doc fix.
23185
23186 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
23187
23188 * process.c (Fstart_process, Fmake_network_process)
23189 (read_process_output): Fix up last changes.
23190
23191 2007-07-16 Eli Zaretskii <eliz@gnu.org>
23192
23193 * makefile.w32-in (clean): Don't delete *~.
23194
23195 2007-07-16 Andreas Schwab <schwab@suse.de>
23196
23197 * window.c (Fdisplay_buffer): Use NILP.
23198 (Fset_window_scroll_bars): Likewise.
23199
23200 2007-07-15 Martin Rudalics <rudalics@gmx.at>
23201
23202 * window.c (window_min_size_2): New function.
23203 (window_min_size_1, size_window, Fdisplay_buffer)
23204 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
23205 windows without mode- or header-lines when window-min-height is
23206 too small.
23207 (size_window): Reset nodelete_p after testing it, following an
23208 earlier note by Kim F. Storm.
23209 (display_buffer): Do not set split_height_threshold to twice the
23210 value of window_min_height to avoid changing the value of a
23211 customizable variable. Rather explicitly check whether the
23212 height of the window that shall be splitted is at least as large
23213 as split_height_threshold.
23214 (Fwindow_full_width_p): New defun.
23215 (syms_of_window): Defsubr it.
23216
23217 * window.h: Add EXFUN for Fwindow_full_width_p.
23218
23219 2007-07-14 Jason Rumney <jasonr@gnu.org>
23220
23221 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
23222
23223 2007-07-14 Richard Stallman <rms@gnu.org>
23224
23225 * eval.c (maybe_call_debugger): New function.
23226 (find_handler_clause): Use maybe_call_debugger.
23227 Call it when the handler says `debug'.
23228 Eliminate DEBUGGER_VALUE_PTR.
23229 (Fsignal): Eliminate debugger_value.
23230 (Qdebug): New variable.
23231 (syms_of_eval): Initialize it.
23232
23233 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
23234
23235 * eval.c (Fprogn):
23236 * keyboard.c (Ftrack_mouse):
23237 * print.c (Fwith_output_to_temp_buffer):
23238 * window.c (Fsave_window_excursion): Doc fix.
23239
23240 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
23241
23242 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
23243
23244 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
23245
23246 * process.h (struct Lisp_Process): Turn slots infd, outfd,
23247 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
23248 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
23249 read_output_delay, and read_output_skip from Lisp_Objects to ints.
23250 Remove unused encoding_carryover.
23251 * process.c: Adjust all functions accordingly.
23252
23253 2007-07-12 Richard Stallman <rms@gnu.org>
23254
23255 * term.c: Include unistd.h only if HAVE_UNISTD_H.
23256
23257 2007-07-11 Jason Rumney <jasonr@gnu.org>
23258
23259 * makefile.w32-in (LIBS): Include OLE32.
23260
23261 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
23262 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
23263
23264 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
23265
23266 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
23267 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
23268 from a Lisp_Object into a bare pointer.
23269 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
23270 Adjust the code correspondingly.
23271
23272 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
23273
23274 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
23275 (term_show_mouse_face): Remove unused var `j'.
23276 (handle_one_term_event): Remove unused vars `i' and `j'.
23277 Don't cast return value of ttyname since it's not necessary.
23278
23279 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
23280
23281 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
23282 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
23283
23284 * fns.c (map_char_table): Use an array of int for `indices' rather than
23285 an array of Lisp_Objects (which are only ever integers anyway).
23286 (Fmap_char_table): Update caller.
23287 * lisp.h: Update prototype.
23288 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
23289 * fontset.c (Ffontset_info):
23290 * casetab.c (set_case_table): Update callers.
23291
23292 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
23293
23294 * keymap.c (struct accessible_keymaps_data)
23295 (struct where_is_internal_data): New structures.
23296 (accessible_keymaps_1, where_is_internal_1): Use them to change
23297 interface to adhere to the one used by map_keymap.
23298 (Faccessible_keymaps, where_is_internal): Use map_keymap.
23299 (accessible_keymaps_char_table, where_is_internal_2): Remove.
23300
23301 * keymap.h (map_keymap_function_t): More informative prototype.
23302
23303 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
23304
23305 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
23306 (looking_at_1): Don't change search_regs and last_thing_searched
23307 if `inhibit-changing-match-data' is non-nil.
23308 (string_match_1, search_buffer, set_search_regs): Likewise.
23309 (syms_of_search): Add Lisp level definition for
23310 `inhibit-changing-match-data' and set it to nil.
23311 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
23312 start and end of the match, instead of using values in search_regs.
23313
23314 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
23315
23316 * minibuf.c (Fcompleting_read): New value `confirm-only'
23317 for `require-match'.
23318
23319 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
23320
23321 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
23322 part of the 2007-06-27 change to syms_of_fileio.
23323
23324 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23325
23326 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
23327 Check WINDOWP before using XWINDOW. Consolidate return statements.
23328
23329 2007-06-27 Richard Stallman <rms@gnu.org>
23330
23331 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
23332
23333 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
23334
23335 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
23336
23337 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23338
23339 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
23340 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
23341 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
23342 (_free_internal, memalign): Use them.
23343 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
23344 Initialize to PTHREAD_MUTEX_INITIALIZER.
23345 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
23346 (morecore_nolock): Rename from morecore. All uses changed.
23347 Use only nolock versions of internal allocation functions.
23348 (_malloc_internal_nolock, _realloc_internal_nolock)
23349 (_free_internal_nolock): New functions created from
23350 _malloc_internal, _realloc_internal, and _free_internal.
23351 (_malloc_internal, _realloc_internal, _free_internal): Use them.
23352 Copy hook value to automatic variable before its use.
23353 (memalign): Copy hook value to automatic variable before its use.
23354
23355 2007-06-26 Kenichi Handa <handa@m17n.org>
23356
23357 * coding.c (Ffind_operation_coding_system): Docstring improved.
23358 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
23359
23360 2007-06-25 David Kastrup <dak@gnu.org>
23361
23362 * keymap.c (Fcurrent_active_maps): Add `position' argument.
23363 (Fwhere_is_internal): Adjust call to `current-active-maps' to
23364 cater for additional parameter.
23365
23366 * keymap.h: Adjust number of parameters to `current-active-maps'.
23367
23368 * doc.c (Fsubstitute_command_keys): Adjust call of
23369 `current-active-maps'.
23370
23371 2007-06-25 David Kastrup <dak@gnu.org>
23372
23373 * callint.c (Fcall_interactively): Make the parsing of interactive
23374 specs somewhat more readable.
23375
23376 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23377
23378 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
23379 to scroll bar gap also when bitmap fills fringe. Draw only foreground
23380 if extended background has already been filled.
23381
23382 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23383
23384 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
23385 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
23386
23387 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
23388 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
23389 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
23390 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
23391 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
23392 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
23393 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
23394 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
23395 Run timers during dialog popup.
23396 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
23397
23398 2007-06-21 Jason Rumney <jasonr@gnu.org>
23399
23400 * image.c (convert_mono_to_color_image): Swap fore and background.
23401
23402 2007-06-20 Jason Rumney <jasonr@gnu.org>
23403
23404 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
23405 (w32_free_bdf_font): Unmap memory not handle.
23406
23407 2007-06-20 Sam Steingold <sds@gnu.org>
23408
23409 * gmalloc.c (__morecore): Fix the declaration to comply with the
23410 definition.
23411
23412 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
23413
23414 * w32term.c (w32_delete_display): Remove leftover declaration.
23415 (w32_define_cursor, w32_initialize): Make static.
23416
23417 * w32.c (_wsa_errlist): Fix typo in error message.
23418 (init_environment): Ignore any environment variable from the
23419 registry having a null value.
23420
23421 2007-06-20 Glenn Morris <rgm@gnu.org>
23422
23423 * Makefile.in (LIBGIF): Default to -lgif.
23424
23425 2007-06-17 Jason Rumney <jasonr@gnu.org>
23426
23427 * w32menu.c (add_menu_item): Don't use multibyte string functions on
23428 unicode strings.
23429
23430 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
23431
23432 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
23433 Fix typo in docstring.
23434
23435 2007-06-16 Eli Zaretskii <eliz@gnu.org>
23436
23437 * w32menu.c (add_menu_item): Escape `&' characters in menu items
23438 and their keybindings.
23439
23440 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
23441
23442 * composite.c (update_compositions): Fix last fix.
23443
23444 2007-06-14 Jason Rumney <jasonr@gnu.org>
23445
23446 * w32.c (get_process_times_fn): New function pointer.
23447 (globals_of_w32): Intialize it if present in kernel32.dll.
23448 (w32_get_internal_run_time): New function.
23449
23450 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
23451
23452 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
23453
23454 * composite.c (update_compositions): Check the validness of
23455 compositions.
23456
23457 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23458
23459 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
23460 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
23461
23462 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
23463 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
23464
23465 * macgui.h (USE_MAC_TOOLBAR): New define.
23466
23467 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
23468 Return immediately unless popup is activated.
23469
23470 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
23471 background to scroll bar gap.
23472 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
23473 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
23474 scroll bars on frame edge. Check fringe background extension.
23475 Don't clear extended fringe background area.
23476 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
23477 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
23478 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
23479 [USE_MAC_TOOLBAR]: New macros.
23480 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
23481 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
23482 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
23483 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
23484 [USE_MAC_TOOLBAR]: New functions.
23485 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
23486 manually if previous repositioning has failed.
23487 (mac_handle_keyboard_event): Use precomputed event kind.
23488 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
23489 as tool bar item click. Handle mouse movement over tool bar items.
23490
23491 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
23492 toolbar_win_gravity.
23493 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
23494 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
23495 Add externs.
23496
23497 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
23498 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
23499
23500 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
23501
23502 * image.c (search_image_cache): Remove unused variable.
23503
23504 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
23505
23506 * xfns.c, xmenu.c: Link to xaw3d if available.
23507
23508 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23509
23510 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
23511 frame_foreground and frame_background.
23512
23513 * image.c (lookup_image): Save frame foreground and background colors.
23514 (search_image_cache): Check if saved and current frame colors match.
23515
23516 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
23517
23518 * regex.c (regex_compile): Remove the `regnum' counter.
23519 Use bufp->re_nsub instead. Add support for \(?N:RE\).
23520
23521 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
23522
23523 * term.c: Include intervals.h to declare Fget_text_property.
23524
23525 2007-06-10 Jason Rumney <jasonr@gnu.org>
23526
23527 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
23528
23529 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
23530
23531 * callint.c (Fcall_interactively):
23532 * editfns.c (Fdelete_and_extract_region):
23533 * fileio.c (Fread_file_name):
23534 * fns.c (Fmapconcat):
23535 * keyboard.c (cmd_error_internal):
23536 * keymap.c (Fkey_description):
23537 * lread.c (openp):
23538 * minibuf.c (read_minibuf):
23539 * search.c (wordify):
23540 * sunfns.c (sel_read):
23541 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
23542 * xfns.c (x_default_scroll_bar_color_parameter):
23543 * xmenu.c (menu_help_callback):
23544 * xselect.c (Fx_get_atom_name):
23545 * xterm.c (x_term_init): Use empty_unibyte_string.
23546
23547 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
23548
23549 * alloc.c (init_strings): Initialize canonical empty strings.
23550 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
23551 canonical empty string when the requested size is 0.
23552
23553 * emacs.c (empty_unibyte_string): Rename from empty_string.
23554 (empty_multibyte_string): New canonical empty string.
23555 (syms_of_emacs): Don't initialize empty_string.
23556
23557 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
23558 string, if appropriate.
23559 (empty_unibyte_string, empty_multibyte_string): New externs.
23560 (empty_string): Remove extern.
23561
23562 * lread.c (syms_of_lread): Use empty_unibyte_string.
23563
23564 2007-06-07 Jason Rumney <jasonr@gnu.org>
23565
23566 * s/ms-w32.h: Don't define HAVE_TZNAME.
23567
23568 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
23569
23570 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23571
23572 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
23573
23574 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
23575 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
23576
23577 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
23578 Don't call next handler.
23579 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
23580 Remove argument. Install handler to application.
23581 (set_frame_menubar): Don't change deep_p.
23582 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
23583 FRAME_OUTER_TO_INNER_DIFF_Y.
23584 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
23585 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
23586 [HAVE_DIALOGS]: New macros.
23587 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
23588 Use them.
23589 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
23590
23591 * macselect.c [MAC_OSX] (install_service_handler): Rename from
23592 init_service_handler. All callers changed. Return OSStatus value.
23593
23594 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
23595 All callers changed so as not to call SetPortWindowPort.
23596 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
23597 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
23598 mac_draw_string_common.
23599 (mac_draw_image_string_qd): Likewise.
23600 (mac_draw_string_common): Use them. Add INLINE.
23601 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
23602 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
23603 GetGlobalMouse.
23604 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
23605 and FRAME_OUTER_TO_INNER_DIFF_Y.
23606 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
23607 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
23608 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
23609 repositioning window to mac_handle_window_event.
23610 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
23611 saving window location to mac_handle_window_event
23612 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
23613 (install_menu_target_item_handler): Remove argument in extern.
23614 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
23615 Also accept command events.
23616 (do_keystroke): New function created from XTread_socket.
23617 (init_command_handler): Remove functions.
23618 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
23619 and save window location by kEventWindowShowing and kEventWindowHiding
23620 handlers here. Don't call next handler for window state change and
23621 focus events.
23622 (mac_handle_application_event, mac_handle_keyboard_event)
23623 [TARGET_API_MAC_CARBON]: New functions.
23624 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
23625 kEventWindowShowing and kEventWindowHiding events. Move installation
23626 of mouse, font, text input and menu target item handlers to
23627 install_application_handler.
23628 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
23629 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
23630 New function.
23631 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
23632 Register it.
23633 (XTread_socket) [TARGET_API_MAC_CARBON]:
23634 Consolidate SendEventToEventTarget calls.
23635 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
23636 Move application activation handler to mac_handle_application_event.
23637 Move keyboard handler to mac_handle_keyboard_event.
23638 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
23639 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
23640 init_command_handler. Call install_application_handler.
23641
23642 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
23643 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
23644
23645 2007-06-07 Glenn Morris <rgm@gnu.org>
23646
23647 * emacs.c (main): Use `emacs-copyright' in --version output.
23648
23649 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
23650
23651 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
23652
23653 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23654
23655 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
23656
23657 * macgui.h: Replace WindowPtr with WindowRef.
23658
23659 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
23660 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
23661 Replace ControlHandle with ControlRef.
23662 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
23663
23664 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
23665 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
23666 Replace ControlHandle with ControlRef.
23667 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
23668 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
23669
23670 * macterm.h (struct scroll_bar): Rename member control_handle_low
23671 and control_handle_high to control_ref_low and control_ref_high.
23672 All uses changed.
23673 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
23674 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
23675 respectively. All uses changed.
23676 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
23677 (install_window_handler, remove_window_handler): Replace WindowPtr
23678 with WindowRef in externs.
23679
23680 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
23681
23682 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
23683
23684 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
23685
23686 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
23687
23688 * frame.c (Fmouse_position, Fmouse_pixel_position):
23689 Condition on HAVE_GPM too.
23690
23691 * term.c (term_mouse_highlight): Remove unused variables.
23692 (Fterm_open_connection): Set gpm_zerobased to 1.
23693 (term_mouse_movement, term_mouse_click, handle_one_term_event):
23694 Use zero based co-ordinates.
23695 (handle_one_term_event): Report a drag as mouse movement too.
23696
23697 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
23698
23699 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
23700
23701 * image.c (search_image_cache): New function. Require background
23702 color match if background color is unspecified in the image spec.
23703 (uncache_image, lookup_image): Use it.
23704
23705 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
23706
23707 * window.c (Fshrink_window): Reflow docstring.
23708
23709 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
23710
23711 * Version 22.1 released.
23712
23713 2007-06-01 Richard Stallman <rms@gnu.org>
23714
23715 * xfns.c (x_encode_text): Add GCPRO.
23716
23717 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23718
23719 * xfns.c (x_set_name_internal): Save encoded name before
23720 x_encode_text in case string data is relocated.
23721
23722 2007-05-31 Richard Stallman <rms@gnu.org>
23723
23724 * buffer.c (syms_of_buffer): Doc fix.
23725
23726 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
23727
23728 * sysdep.c (init_sys_modes): Add rather than replace with
23729 O_NONBLOCK.
23730
23731 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
23732 term_mouse_moveto.
23733
23734 * termhooks.h (term_mouse_moveto): New extern.
23735
23736 * term.c (mouse_face_window): Rename...
23737 (Qmouse_face_window): ...to this.
23738 (term_show_mouse_face, term_clear_mouse_face)
23739 (term_mouse_highlight): Use Qmouse_face_window.
23740 (term_mouse_moveto): New function.
23741 (term_mouse_position): Make it work.
23742 (syms_of_term): Uncomment assignment to mouse_position_hook.
23743 Staticpro Qmouse_face_window.
23744
23745 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23746
23747 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
23748 around current_column call.
23749
23750 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
23751
23752 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
23753 * xdisp.c (next_element_from_buffer):
23754 * window.c (delete_window):
23755 * term.c (term_mouse_highlight):
23756 * msdos.c (getdefdir):
23757 * macterm.c (mac_create_bitmap_from_bitmap_data)
23758 (init_font_name_table):
23759 * fns.c (Fsxhash):
23760 * data.c (Fmake_local_variable):
23761 * ccl.c (ccl_driver): Likewise.
23762
23763 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23764
23765 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
23766 Call mac_wakeup_from_rne on window size change.
23767
23768 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
23769
23770 * image.c (uncache_image): Fix typo.
23771
23772 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
23773
23774 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
23775
23776 2007-05-22 Richard Stallman <rms@gnu.org>
23777
23778 * xterm.c (x_connection_closed): Remove NO_RETURN.
23779
23780 2007-05-22 Martin Rudalics <rudalics@gmx.at>
23781
23782 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
23783
23784 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
23785
23786 * image.c (uncache_image): New function.
23787 (Fimage_refresh): New function.
23788
23789 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
23790
23791 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
23792
23793 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
23794
23795 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
23796 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
23797
23798 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
23799
23800 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
23801 conditional on [HAVE_GPM_H].
23802
23803 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
23804
23805 * syntax.c (skip_chars): Update syntax-table only after we checked that
23806 the new location is valid.
23807
23808 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23809
23810 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
23811 mac_get_window_bounds.
23812
23813 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
23814
23815 * Makefile.in (LIBGPM): Allow it to be set from configure.
23816 If set then link Emacs with it.
23817
23818 * config.in: Regenerate.
23819
23820 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
23821 New externs.
23822
23823 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
23824 Include gpm.h.
23825 (handle_one_term_event, term_gpm): New externs.
23826
23827 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
23828 and allow it to be interrupted by SIGIO.
23829
23830 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
23831 (wait_reading_process_output): Wait on gpm_fd too.
23832 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
23833 (add_gpm_wait_descriptor_called_flag): New variable.
23834 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
23835
23836 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
23837 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
23838 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
23839 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
23840 (make_lispy_event): Add case GPM_CLICK_EVENT.
23841 (read_avail_input): Handle mouse input.
23842
23843 * term.c (write_glyphs_with_face): New function.
23844 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
23845 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
23846 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
23847 (mouse_face_face_id, term_gpm, pos_x, pos_y)
23848 (last_mouse_x, last_mouse_y): New variables.
23849 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
23850 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
23851 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
23852 (Fterm_close_connection): New functions.
23853 (term_init): Initialise mouse_face_window.
23854
23855 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
23856
23857 * xdisp.c (redisplay_window): If first window line is a
23858 continuation line, recompute the new window start instead of
23859 recentering.
23860
23861 2007-05-18 Glenn Morris <rgm@gnu.org>
23862
23863 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
23864 Suggested by Alfred M. Szmidt <ams@gnu.org>.
23865
23866 2007-05-17 Glenn Morris <rgm@gnu.org>
23867
23868 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
23869
23870 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23871
23872 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
23873 dead key repeat and up events.
23874
23875 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
23876
23877 * image.c (pbm_load): Check image size for monochrome pbm.
23878
23879 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
23880
23881 * xterm.c (XTread_socket): Revert last change.
23882
23883 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
23884
23885 * image.c (pbm_load): Correctly check image size for greyscale pbm.
23886
23887 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
23888
23889 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23890
23891 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
23892 mixup (YAILOM).
23893
23894 2007-05-07 Andreas Schwab <schwab@suse.de>
23895
23896 * keymap.c (Flookup_key): Fix typo in last change.
23897
23898 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23899
23900 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
23901 mapping for unibyte strings.
23902
23903 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23904
23905 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
23906 (Fx_popup_dialog) [MAC_OSX]: Likewise.
23907
23908 2007-04-29 Richard Stallman <rms@gnu.org>
23909
23910 * insdel.c (replace_range): For undo, record insertion first.
23911
23912 2007-04-29 Andreas Schwab <schwab@suse.de>
23913
23914 * lisp.h (VECSIZE): Use OFFSETOF.
23915
23916 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23917
23918 * xdisp.c (try_window_reusing_current_matrix): Fix number of
23919 disabled lines.
23920
23921 2007-04-28 Richard Stallman <rms@gnu.org>
23922
23923 * lread.c (read_escape): In a string, \s is always space.
23924
23925 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
23926
23927 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
23928
23929 * gtkutil.c (xg_update_menubar, create_menus): Create empty
23930 submenu for menu bar items.
23931
23932 See ChangeLog.10 for earlier changes.
23933
23934 ;; Local Variables:
23935 ;; coding: utf-8
23936 ;; add-log-time-zone-rule: t
23937 ;; End:
23938
23939 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
23940
23941 This file is part of GNU Emacs.
23942
23943 GNU Emacs is free software: you can redistribute it and/or modify
23944 it under the terms of the GNU General Public License as published by
23945 the Free Software Foundation, either version 3 of the License, or
23946 (at your option) any later version.
23947
23948 GNU Emacs is distributed in the hope that it will be useful,
23949 but WITHOUT ANY WARRANTY; without even the implied warranty of
23950 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23951 GNU General Public License for more details.
23952
23953 You should have received a copy of the GNU General Public License
23954 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23955
23956 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40